/* Studnie Chłonne — premium landing styles */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --text: #0f172a;
  --muted: #475569;
  --muted-2: #64748b;
  --border: #e2e8f0;
  --navy: #071b34;
  --navy-soft: #0b1220;
  --accent: #059669;
  --accent-2: #0d9488;
  --accent-light: #10b981;
  --accent-bg: rgba(5, 150, 105, 0.08);
  --accent-glow: rgba(16, 185, 129, 0.18);
  --focus: rgba(13, 148, 136, 0.28);
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 6px 20px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 16px 48px rgba(15, 23, 42, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --radius-xs: 12px;
  --max: 1180px;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent-2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-thickness: 2px;
}

.brand__link,
.nav-link,
.btn,
.text-link,
.skip-link,
.footer a,
.publisher-blog__card,
.publisher-blog__btn {
  text-decoration: none;
}

.brand__link:hover,
.nav-link:hover,
.btn:hover,
.text-link:hover,
.footer a:hover,
.publisher-blog__card:hover,
.publisher-blog__btn:hover,
.publisher-blog__card:focus-visible,
.publisher-blog__btn:focus-visible {
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 8px;
}

.container {
  width: min(var(--max), calc(100% - 2 * 24px));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
}

.section--subtle {
  background: linear-gradient(180deg, var(--surface-2), rgba(248, 250, 252, 0));
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
  max-width: 720px;
}

.section-head--center {
  text-align: center;
  margin-inline: auto;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  margin: 0 0 16px;
  font-weight: 800;
}

h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 0;
  font-weight: 800;
}

h3 {
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: 700;
}

p {
  margin: 0 0 14px;
}

.muted {
  color: var(--muted);
}

.fineprint {
  color: var(--muted-2);
  font-size: 13px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-sm);
  transform: translateY(-140%);
  transition: transform 160ms ease;
  z-index: 1000;
  color: var(--text);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
}

.brand__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.brand__logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 24px var(--accent-glow);
  flex-shrink: 0;
}

.brand__logo svg {
  width: 24px;
  height: 24px;
}

.brand__name {
  font-weight: 800;
  font-size: 17px;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.site-nav {
  justify-self: center;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-xs);
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  transition: background 140ms ease, color 140ms ease;
}

.nav-link:hover {
  background: var(--accent-bg);
  color: var(--accent);
}

.header-cta {
  display: flex;
  justify-content: flex-end;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
}

.nav-toggle__icon {
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  border-radius: 999px;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, top 0.2s ease;
}

.nav-toggle__icon {
  transition: background 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-overlay {
  display: none;
}

.nav-drawer__cta {
  display: none;
}

.nav-toggle__icon::before {
  top: -6px;
}

.nav-toggle__icon::after {
  top: 6px;
}

.nav-link--cta {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border-radius: var(--radius-xs);
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #fff;
  box-shadow: 0 12px 28px var(--accent-glow);
}

.btn--primary:hover {
  box-shadow: 0 16px 36px rgba(5, 150, 105, 0.28);
}

.btn--secondary {
  background: var(--surface);
  color: var(--navy);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  border-color: rgba(13, 148, 136, 0.35);
  background: rgba(255, 255, 255, 0.95);
}

.btn--dark {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 28px rgba(7, 27, 52, 0.22);
}

.btn--dark:hover {
  background: var(--navy-soft);
}

.btn--sm {
  height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

.btn--lg {
  height: 52px;
  padding: 0 28px;
  font-size: 15px;
}

.text-link {
  font-weight: 700;
  color: var(--accent);
}

.text-link:hover {
  color: var(--accent-2);
}

/* Hero */
.hero {
  padding: 56px 0 40px;
  background:
    radial-gradient(900px 400px at 18% 0%, rgba(16, 185, 129, 0.12), transparent),
    radial-gradient(700px 360px at 88% 8%, rgba(13, 148, 136, 0.1), transparent),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.hero-content {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-bg);
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 24px;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding-top: 8px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.hero-visual {
  min-width: 0;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 30%, rgba(16, 185, 129, 0.12), transparent 55%),
    #ffffff;
  padding: clamp(12px, 2vw, 24px);
  overflow: hidden;
}

.hero-visual-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  border-radius: inherit;
  text-align: left;
}

.hero-visual-trigger:focus-visible {
  outline: 3px solid rgba(16, 185, 129, 0.55);
  outline-offset: 6px;
}

.hero-visual-picture {
  display: block;
  width: 100%;
}

.hero-visual-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(15, 23, 42, 0.18));
  transition: transform 0.35s ease;
}

.hero-visual-trigger:hover .hero-visual-image {
  transform: translateY(-2px) scale(1.01);
}

.image-lightbox {
  border: none;
  padding: clamp(16px, 3vw, 32px);
  margin: auto;
  max-width: min(96vw, 1400px);
  width: max-content;
  background: transparent;
  overflow: visible;
}

.image-lightbox::backdrop {
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(6px);
}

.image-lightbox__close {
  position: fixed;
  top: clamp(12px, 2vw, 24px);
  right: clamp(12px, 2vw, 24px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.image-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: scale(1.05);
}

.image-lightbox__close:focus-visible {
  outline: 3px solid rgba(16, 185, 129, 0.55);
  outline-offset: 3px;
}

.image-lightbox__figure {
  margin: 0;
}

.image-lightbox__image {
  display: block;
  max-width: min(92vw, 1400px);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.hero-figure__caption {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* Benefit strip */
.benefit-strip {
  padding: 0 0 56px;
  margin-top: -8px;
}

.benefit-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.benefit-item__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent-bg);
  color: var(--accent);
  flex-shrink: 0;
}

.benefit-item__icon svg {
  width: 22px;
  height: 22px;
}

.benefit-item__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
}

.benefit-item__desc {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Cards grid */
.grid {
  display: grid;
  gap: 20px;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(16, 185, 129, 0.25);
}

.card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent-bg);
  color: var(--accent);
  margin-bottom: 16px;
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-bg), var(--accent), var(--accent-bg));
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.step__num {
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}

.step__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}

.step__desc {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Cost section */
.cost-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: linear-gradient(165deg, var(--navy) 0%, #0f2847 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.price-card h3 {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
}

.price-card__amount {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  background: linear-gradient(135deg, #6ee7b7, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-card__note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.price-card .checklist {
  margin-bottom: 28px;
}

.price-card .checklist li {
  color: rgba(255, 255, 255, 0.85);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-bg);
  border: 2px solid var(--accent);
}

.price-card .checklist li::before {
  border-color: var(--accent-light);
  background: rgba(16, 185, 129, 0.2);
}

.cost-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cost-table h3 {
  padding: 24px 28px 0;
  color: var(--navy);
}

.cost-table table {
  width: 100%;
  border-collapse: collapse;
}

.cost-table th,
.cost-table td {
  padding: 16px 28px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.cost-table th {
  font-weight: 700;
  color: var(--navy);
  width: 35%;
}

.cost-table td {
  color: var(--muted);
}

.cost-table tr:last-child th,
.cost-table tr:last-child td {
  border-bottom: none;
}

.service-link-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-link-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(16, 185, 129, 0.35);
  text-decoration: none;
}

.service-link-card h3 {
  color: var(--navy);
}

.service-link-card .text-link {
  margin-top: auto;
  padding-top: 12px;
  display: inline-block;
}

.cause-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  list-style: none;
  padding: 28px;
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.cause-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--muted);
}

.cause-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

@media (max-width: 768px) {
  .cause-list {
    grid-template-columns: 1fr;
  }
}

.compare-grid {
  align-items: stretch;
}

.compare-card h3 {
  margin-bottom: 16px;
  color: var(--navy);
}

.compare-card--featured {
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 16px 40px rgba(5, 150, 105, 0.12);
}

.compare-card--featured h3 {
  color: var(--accent);
}

.price-card__amount--text {
  font-size: clamp(22px, 3vw, 30px);
  background: none;
  -webkit-text-fill-color: #6ee7b7;
  color: #6ee7b7;
}

/* Realizations */
.grid--realizations {
  gap: 24px;
}

.realization-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ecfdf5, #0f172a);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.realization-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.18);
}

.realization-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  z-index: 0;
}

.realization-card:hover .realization-card__image {
  transform: scale(1.04);
}

.realization-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.05) 0%,
    rgba(15, 23, 42, 0.25) 42%,
    rgba(15, 23, 42, 0.88) 100%
  );
  z-index: 1;
}

.realization-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
}

.realization-card__content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #ffffff;
}

.realization-card__content h3 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 1.05rem;
}

.realization-card__content p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.realization-card__content span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
}

.realization-card__content span svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Testimonials */
.testimonial {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial__quote {
  flex: 1;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

.testimonial__quote::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 32px;
  color: var(--accent);
  font-weight: 800;
  line-height: 1;
}

.testimonial__author {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}

.testimonial__meta {
  font-size: 13px;
  color: var(--muted-2);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
  color: #fbbf24;
}

.stars svg {
  width: 16px;
  height: 16px;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 140ms ease;
}

.faq-item[open] {
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 140ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Contact CTA */
.section--cta {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  padding: 80px 0;
}

.section--cta h2 {
  color: #fff;
}

.section--cta .muted {
  color: rgba(255, 255, 255, 0.75);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-info__item svg {
  width: 20px;
  height: 20px;
  color: var(--accent-light);
  flex-shrink: 0;
}

.contact-info__item a {
  color: #fff;
}

.contact-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(8px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.form-field input,
.form-field select,
.form-field textarea {
  height: 46px;
  padding: 0 14px;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 140ms ease, background 140ms ease;
}

.form-field textarea {
  height: auto;
  min-height: 100px;
  padding: 12px 14px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-field select option {
  color: var(--text);
  background: var(--surface);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent-light);
  background-color: rgba(255, 255, 255, 0.12);
}

.form-actions {
  margin-top: 20px;
}

.form-note {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* Footer */
.site-footer {
  background: var(--navy-soft);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.footer-brand .brand__name {
  color: #fff;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  transition: color 140ms ease;
}

.footer-col a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom__legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.section-link {
  text-align: center;
  margin-top: 32px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid,
  .cost-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .benefit-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps::before {
    display: none;
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.nav-open .site-header {
    z-index: 1120;
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.98);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-inner > .site-nav {
    grid-column: auto;
    grid-row: auto;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 1120;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1100;
  }

  .nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    width: min(85vw, 360px);
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 72px 22px 24px;
    background: var(--surface);
    border-bottom: none;
    box-shadow: -12px 0 40px rgba(15, 23, 42, 0.18);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1110;
    overflow-y: auto;
    pointer-events: none;
  }

  .site-nav.is-open {
    display: flex;
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav-link {
    width: 100%;
    height: auto;
    padding: 13px 0;
    font-size: 15px;
    font-weight: 600;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-link.is-active {
    color: var(--accent);
    font-weight: 700;
    background: none;
  }

  .nav-list li:has(+ li .nav-link--cta) .nav-link {
    border-bottom: none;
  }

  .nav-list li:has(.nav-link--cta) {
    width: 100%;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }

  .nav-link--cta {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-top: 0;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    background: none;
    border: none;
    border-bottom: none;
    border-left: none;
    border-radius: 0;
    box-shadow: none;
  }

  .nav-link--cta:hover {
    background: var(--accent-bg);
    color: var(--accent);
  }

  .nav-link--cta.is-active {
    color: var(--accent);
    background: none;
    border-left: none;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .site-nav {
    width: min(72vw, 300px);
  }

  .benefit-strip__inner,
  .grid--2,
  .grid--3,
  .grid--4,
  .steps {
    grid-template-columns: 1fr;
  }

  .realization-card {
    min-height: 220px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }
}

/* ===== Lead popups (fly-in + exit-intent) ===== */
.lead-flyin {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: min(92vw, 520px);
  z-index: 999999;
  display: none;
  font: 16px/1.4 var(--font);
}

.lead-flyin__box {
  background: var(--surface);
  color: var(--text);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.22s, opacity 0.22s, box-shadow 0.2s;
}

.lead-flyin--visible .lead-flyin__box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.lead-flyin__head {
  padding: 10px 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  position: relative;
}

.lead-flyin__close {
  position: absolute;
  right: 8px;
  top: 6px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.lead-flyin__body {
  padding: 0;
  margin: 0;
  background: var(--surface);
}

.lead-flyin__body .mtw-widget-container {
  width: 100%;
  overflow: visible;
  background: var(--surface);
  min-height: 180px;
  padding: 0;
  margin: 0;
}

.lead-flyin__body [data-mtw-widget] {
  margin: 0 !important;
}

@media (min-width: 1280px) {
  .lead-flyin {
    right: 28px;
    bottom: 28px;
  }
}

.lead-pop__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 27, 52, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.lead-pop__modal {
  width: min(92vw, 560px);
  background: var(--surface);
  color: var(--text);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  position: relative;
  font: 16px/1.4 var(--font);
}

.lead-pop__head {
  padding: 10px 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

.lead-pop__body {
  padding: 0;
  margin: 0;
  background: var(--surface);
}

.lead-pop__body .mtw-widget-container {
  width: 100%;
  overflow: visible;
  background: var(--surface);
  min-height: 180px;
  padding: 0;
  margin: 0;
}

.lead-pop__body [data-mtw-widget] {
  margin: 0 !important;
}

.lead-pop__close {
  position: absolute;
  right: 10px;
  top: 8px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

/* Status po wysłaniu formularza (fly-in + exit-intent) */
.lead-flyin__box,
.lead-pop__modal,
.lead-delivery {
  color-scheme: light;
}

.lead-delivery {
  padding: 22px 20px 20px;
  background: var(--surface);
  color: var(--text);
  font: 16px/1.4 var(--font);
}

.lead-delivery__top {
  text-align: center;
  margin-bottom: 18px;
}

.lead-delivery__title {
  margin: 0 0 8px;
  font-size: 23px;
  line-height: 1.2;
  font-weight: 900;
  color: var(--text);
}

.lead-delivery__desc {
  margin: 0 auto;
  max-width: 440px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.lead-delivery__panel {
  margin-top: 18px;
  padding: 18px 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f0fdf4 0%, var(--surface) 100%);
  border: 1px solid rgba(5, 150, 105, 0.22);
}

.lead-delivery__headline {
  margin: 0 0 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 900;
  color: var(--text);
}

.lead-delivery__track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
  position: relative;
  padding: 0 4px;
}

.lead-delivery__track::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 18%;
  right: 18%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--accent) 0%, var(--accent) 42%, var(--accent-2) 58%, #d1d5db 72%, #d1d5db 100%);
  z-index: 0;
  transition: background 0.55s ease;
}

.lead-delivery__track--phase2::before {
  background: linear-gradient(to right, var(--accent) 0%, var(--accent) 72%, var(--accent-2) 86%, #d1d5db 100%);
}

.lead-delivery__step {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.lead-delivery__circle {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  background: var(--surface);
  border: 2px solid #d1d5db;
  color: #9ca3af;
  margin-bottom: 10px;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.lead-delivery__step--done .lead-delivery__circle {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-size: 16px;
}

.lead-delivery__step--active .lead-delivery__circle {
  background: var(--surface);
  border-color: var(--accent-2);
  color: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
}

.lead-delivery__step--pending .lead-delivery__circle {
  background: var(--surface);
  border-color: #d1d5db;
  color: #9ca3af;
}

.lead-delivery__step-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  max-width: 110px;
}

.lead-delivery__step-sub {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  transition: color 0.35s ease;
}

.lead-delivery__step--done .lead-delivery__step-sub {
  color: var(--accent);
}

.lead-delivery__step--active .lead-delivery__step-sub {
  color: var(--accent-2);
}

.lead-delivery__step--pending .lead-delivery__step-sub {
  color: #9ca3af;
}

.lead-delivery__step--waiting .lead-delivery__circle {
  position: relative;
  border-color: rgba(5, 150, 105, 0.22);
  color: var(--accent);
  background: var(--surface);
}

.lead-delivery__step--waiting .lead-delivery__circle::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--accent);
  border-right-color: rgba(5, 150, 105, 0.55);
  animation: leadSpinner 2s linear infinite;
}

.lead-delivery__step--waiting .lead-delivery__step-sub {
  color: var(--accent);
}

@keyframes leadSpinner {
  to { transform: rotate(360deg); }
}

@keyframes leadStepDone {
  0% { transform: scale(0.82); }
  65% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.lead-delivery__circle--pop {
  animation: leadStepDone 0.45s ease;
}

@keyframes leadStepPulse {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.72; transform: translateY(-1px); }
}

.lead-delivery__step-title--pulse {
  animation: leadStepPulse 2.2s ease-in-out infinite;
}

.lead-delivery__note {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 13px;
  background: #f7f7f7;
  color: #5d5d5d;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.lead-delivery__actions {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.lead-delivery__btn {
  appearance: none;
  border: 0;
  border-radius: 13px;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 26px var(--accent-glow);
  transition: transform 0.15s, filter 0.15s, box-shadow 0.15s;
}

.lead-delivery__btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
  box-shadow: 0 16px 32px var(--accent-glow);
}

@media (max-width: 420px) {
  .lead-delivery__step-title {
    font-size: 11px;
    max-width: 92px;
  }

  .lead-delivery__track::before {
    left: 14%;
    right: 14%;
  }
}

.contact-form .contact-form-embed,
.contact-form #contact-widget-container {
  width: 100%;
  border: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.contact-form #contact-widget-iframe {
  width: 100%;
  border: 0;
  min-height: 420px;
  display: block;
  background: transparent;
}

/* Legal pages */
.legal-page .section {
  padding-top: 48px;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: clamp(28px, 4vw, 36px);
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.2;
}

.legal-content h2 {
  font-size: 20px;
  color: var(--navy);
  margin: 36px 0 12px;
  line-height: 1.3;
}

.legal-content h3 {
  font-size: 17px;
  color: var(--navy);
  margin: 24px 0 10px;
  line-height: 1.35;
}

.legal-content p,
.legal-content li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content ul {
  margin: 0 0 14px;
  padding-left: 1.4em;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--accent-dark, var(--navy));
}

.legal-content code {
  font-size: 0.9em;
  background: var(--surface-2, #f1f5f9);
  padding: 2px 6px;
  border-radius: 4px;
}

.legal-updated {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px !important;
}

.legal-contact {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* Cookie banner */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  z-index: 1000000;
  display: none;
  font: 15px/1.55 var(--font);
  color: #fff;
  background: linear-gradient(135deg, rgba(7, 27, 52, 0.98) 0%, rgba(11, 18, 32, 0.98) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 -18px 60px rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(5, 150, 105, 0.28);
  animation: cookieSlideUp 0.5s ease-out;
  padding-bottom: max(2px, env(safe-area-inset-bottom, 0));
}

@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__lead {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner__lead p {
  margin: 0;
  opacity: 0.95;
}

.cookie-banner__lead a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__lead a:hover {
  color: #6ee7b7;
}

.cookie-banner__privacy {
  margin-top: 0.6em;
  font-size: 0.9em;
  opacity: 0.9;
}

.cookie-banner__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-btn {
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 2px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
  font-family: inherit;
}

.cookie-btn:focus {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.cookie-btn--primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  box-shadow: 0 10px 26px rgba(5, 150, 105, 0.28);
}

.cookie-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(5, 150, 105, 0.34);
}

.cookie-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-settings {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 22px;
  display: none;
}

#cookie-banner[data-view="settings"] .cookie-settings {
  display: block;
}

.cookie-settings__wrap {
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  align-items: start;
}

.cookie-settings__left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-cats {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-cat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.3s ease;
  cursor: pointer;
}

.cookie-cat:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-cat input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.cookie-cat__title span {
  color: #6ee7b7;
}

.cookie-cat--required {
  opacity: 0.92;
  cursor: default;
}

.cookie-cat--required input {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-settings__right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  justify-content: flex-end;
}

.cookie-save {
  height: 46px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  font-size: 15px;
  font-family: inherit;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(5, 150, 105, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.cookie-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(5, 150, 105, 0.28);
}

.cookie-save:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

#cookie-banner[data-view="settings"] .cookie-banner__actions {
  display: none;
}

@media (max-width: 920px) {
  .cookie-banner__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-settings__wrap {
    grid-template-columns: 1fr;
  }
}
