:root {
  --bg: #f5fbf3;
  --bg-soft: #e8f4e7;
  --panel: rgba(255, 255, 255, 0.74);
  --panel-strong: rgba(255, 255, 255, 0.9);
  --line: rgba(28, 96, 49, 0.12);
  --text: #173824;
  --muted: #607563;
  --accent: #1f8f45;
  --accent-2: #79cf8e;
  --cyan: #42b56f;
  --shadow: 0 26px 60px rgba(28, 96, 49, 0.14);
  --radius: 28px;
  --container: min(1200px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(121, 207, 142, 0.24), transparent 26%),
    radial-gradient(circle at 86% 12%, rgba(66, 181, 111, 0.16), transparent 22%),
    linear-gradient(180deg, #fbfef9 0%, #f1f8ee 46%, #eef7eb 100%);
  font-family: "Onest", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(28, 96, 49, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 96, 49, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 84%);
  pointer-events: none;
  z-index: -1;
}

body.is-ready {
  overflow-y: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.topbar {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 34px rgba(28, 96, 49, 0.12);
}

.brand {
  font-family: "Unbounded", sans-serif;
  max-width: 360px;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.topnav,
.topbar__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topnav a,
.ghost-link {
  color: var(--muted);
  transition: color 180ms ease;
}

.topnav a:hover,
.ghost-link:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #ffffff;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
  box-shadow: 0 16px 30px rgba(31, 143, 69, 0.22);
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.button--secondary {
  border-color: rgba(31, 143, 69, 0.14);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  box-shadow: none;
}

.button--small {
  min-height: 42px;
  padding: 0 18px;
}

.page {
  width: 100%;
}

.panel {
  width: var(--container);
  min-height: auto;
  margin: 0 auto;
  padding: 132px 0 84px;
  display: grid;
  align-items: center;
  scroll-snap-align: start;
}

.hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 40px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-2);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.coverage__copy h2,
.lead__copy h2 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.35rem, 4.8vw, 4.6rem);
  line-height: 1.01;
  letter-spacing: -0.04em;
}

.hero h1 span {
  display: inline-block;
  color: var(--cyan);
}

.hero__text,
.section-head p,
.coverage__copy p,
.lead__copy p,
.insight-card p,
.type-card p,
.timeline-card p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero__cta,
.lead__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero__stats--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 560px;
}

.stat-card {
  padding: 18px 18px 20px;
  border: 1px solid rgba(31, 143, 69, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.hero__bullets {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__bullets li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  box-shadow: 0 0 18px rgba(31, 143, 69, 0.22);
}

.hero--minimal {
  grid-template-columns: 1fr;
  gap: 0;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  gap: 22px;
  width: 100%;
  padding: 46px;
  border: 1px solid rgba(31, 143, 69, 0.1);
  border-radius: 36px;
  background:
    radial-gradient(circle at left top, rgba(121, 207, 142, 0.22), transparent 30%),
    radial-gradient(circle at 82% 45%, rgba(66, 181, 111, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(247, 252, 245, 0.9)),
    var(--panel-strong);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 64px rgba(28, 96, 49, 0.14);
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero__chips span {
  padding: 10px 14px;
  border: 1px solid rgba(31, 143, 69, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 0.9rem;
}

.hero--minimal .hero__copy {
  max-width: 560px;
  align-self: center;
}

.hero--minimal .hero__text {
  max-width: 500px;
}

.hero__bullets--compact li {
  font-size: 0.98rem;
}

.hero__visual {
  position: relative;
}

.hero__visual--minimal {
  display: grid;
  place-items: center;
  align-self: stretch;
}

.hero__phone {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  min-height: 56px;
  padding: 12px 18px;
  border: 1px solid rgba(31, 143, 69, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.hero__phone span {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__phone strong {
  font-size: 1rem;
}

.foundation-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 640px;
}

.foundation-stage--minimal {
  min-height: 760px;
  width: 100%;
}

.foundation-stage__frame {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --shift-x: 0px;
  --shift-y: 0px;
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 941 / 1672;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(31, 143, 69, 0.14);
  background:
    radial-gradient(circle at top right, rgba(121, 207, 142, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  box-shadow: 0 26px 56px rgba(28, 96, 49, 0.16);
  transform:
    perspective(1100px)
    rotateX(calc(9deg + var(--tilt-x)))
    rotateY(calc(-10deg + var(--tilt-y)))
    translate3d(0, 0, 0);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
  will-change: transform;
  cursor: grab;
}

.foundation-stage__frame:hover {
  box-shadow: 0 34px 70px rgba(28, 96, 49, 0.2);
}

.foundation-stage__frame.is-interacting {
  box-shadow: 0 34px 70px rgba(28, 96, 49, 0.2);
}

.foundation-stage__frame:active {
  cursor: grabbing;
}

.foundation-stage__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(28, 96, 49, 0.08)),
    radial-gradient(circle at top left, rgba(121, 207, 142, 0.18), transparent 28%);
  pointer-events: none;
  transition: opacity 220ms ease;
}

.foundation-stage__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: translate3d(var(--shift-x), var(--shift-y), 0) scale(1.035);
  transition: transform 220ms ease;
  will-change: transform;
}

.stage-badge {
  position: absolute;
  right: 7%;
  bottom: 8%;
  padding: 12px 18px;
  border: 1px solid rgba(31, 143, 69, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  letter-spacing: 0.06em;
  backdrop-filter: blur(16px);
}

.stage-badge--top {
  top: 7%;
  left: 6%;
  right: auto;
  bottom: auto;
}

.hero-note {
  position: absolute;
  max-width: 250px;
  padding: 18px 20px;
  border: 1px solid rgba(31, 143, 69, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 40px rgba(28, 96, 49, 0.14);
  backdrop-filter: blur(16px);
}

.hero-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.hero-note--bottom {
  right: 2%;
  bottom: 7%;
}

.foundation-stage__frame.is-interacting::after {
  opacity: 0.78;
}

.glass-card {
  position: absolute;
  width: min(280px, 52vw);
  padding: 18px 20px;
  border: 1px solid rgba(31, 143, 69, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.glass-card span,
.timeline-card span,
.insight-card__index,
.type-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(121, 207, 142, 0.16);
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.glass-card strong,
.insight-card h3,
.type-card h3,
.timeline-card h3 {
  display: block;
  margin-top: 14px;
  font-size: 1.3rem;
}

.glass-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.glass-card--primary {
  top: 8%;
  left: -4%;
}

.glass-card--secondary {
  right: -5%;
  bottom: 12%;
}

.ribbons {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: -70px;
  margin-bottom: -10px;
}

.ribbon {
  position: relative;
  left: 50%;
  width: 106vw;
  margin-left: -53vw;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(31, 143, 69, 0.08);
  border-bottom: 1px solid rgba(31, 143, 69, 0.08);
}

.ribbon--light {
  transform: rotate(-2.4deg);
  background: rgba(255, 255, 255, 0.64);
}

.ribbon--accent {
  transform: rotate(1.75deg);
  background: rgba(121, 207, 142, 0.2);
}

.ribbon__track {
  display: inline-flex;
  gap: 26px;
  min-width: 100%;
  padding: 18px 22px;
  animation: marquee 28s linear infinite;
}

.ribbon__track--reverse {
  animation-direction: reverse;
}

.ribbon__track span {
  font-family: "Unbounded", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head--process {
  max-width: 920px;
}

.process__intro {
  max-width: 620px;
}

.insight-grid,
.types-grid,
.timeline,
.faq-grid {
  display: grid;
  gap: 20px;
}

.insight-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.insight-grid--minimal {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.insight-card--centered {
  grid-column: 1 / -1;
  width: min(520px, 100%);
  justify-self: center;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.insight-card,
.type-card,
.timeline-card,
.faq-item,
.lead-form,
.coverage__map {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 44px rgba(28, 96, 49, 0.12);
}

.insight-card,
.type-card,
.timeline-card {
  padding: 24px;
}

.type-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.type-card li::before {
  content: "— ";
  color: var(--cyan);
}

.types-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.types-grid--minimal {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.timeline-card {
  transform: none;
}

.timeline--minimal {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 22px;
}

.timeline--minimal::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 39px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(121, 207, 142, 0.12),
    rgba(31, 143, 69, 0.4),
    rgba(66, 181, 111, 0.28),
    rgba(31, 143, 69, 0.08)
  );
}

.timeline--minimal .timeline-card {
  position: relative;
  padding: 26px 24px 24px;
  min-height: 240px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 251, 243, 0.92)),
    rgba(255, 255, 255, 0.76);
}

.timeline--minimal .timeline-card::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 38px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  box-shadow: 0 0 20px rgba(31, 143, 69, 0.22);
}

.timeline--minimal .timeline-card h3 {
  margin-top: 18px;
  font-size: 1.45rem;
}

.timeline--minimal .timeline-card p {
  max-width: 26ch;
  font-size: 1rem;
  line-height: 1.65;
}

.trust-shell {
  display: grid;
  gap: 16px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-card,
.trust-band {
  display: grid;
  gap: 12px;
  padding: 24px 24px 22px;
  border: 1px solid rgba(31, 143, 69, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 245, 0.98)),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(28, 96, 49, 0.08);
}

.trust-card {
  min-height: 220px;
}

.trust-card--featured {
  border-color: rgba(72, 174, 96, 0.22);
  background:
    radial-gradient(circle at top right, rgba(108, 199, 129, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(241, 251, 243, 0.98), rgba(248, 252, 247, 1)),
    rgba(255, 255, 255, 0.96);
}

.trust-card__label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-card strong {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.3;
}

.trust-card p,
.trust-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.trust-band {
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
  align-items: center;
  gap: 18px 28px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.trust-band .trust-card__label {
  grid-column: 1 / -1;
  margin-bottom: -2px;
}

.trust-band strong {
  font-size: clamp(1.5rem, 2.1vw, 2.15rem);
  line-height: 1.25;
  max-width: 18ch;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-card {
  display: grid;
  gap: 18px;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 250, 242, 0.94)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 44px rgba(28, 96, 49, 0.1);
}

.review-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.review-card__stars {
  color: var(--accent);
  letter-spacing: 0.18em;
  font-size: 0.98rem;
}

.review-card__meta {
  display: grid;
  gap: 6px;
}

.review-card__meta strong {
  font-size: 1rem;
}

.review-card__meta span {
  color: var(--muted);
  font-size: 0.95rem;
}

.coverage {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 32px;
}

.coverage__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.coverage__chips span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(31, 143, 69, 0.1);
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
}

.coverage__map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.coverage__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(31, 143, 69, 0.12);
  animation: pulse 4s ease-in-out infinite;
}

.coverage__ring--outer {
  width: 78%;
  aspect-ratio: 1;
}

.coverage__ring--middle {
  width: 56%;
  aspect-ratio: 1;
  animation-delay: 0.5s;
}

.coverage__ring--inner {
  width: 34%;
  aspect-ratio: 1;
  animation-delay: 1s;
}

.coverage__core {
  position: relative;
  display: grid;
  place-items: center;
  width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(121, 207, 142, 0.42), rgba(31, 143, 69, 0.16));
  border: 1px solid rgba(31, 143, 69, 0.16);
  box-shadow: 0 0 40px rgba(31, 143, 69, 0.18);
}

.coverage__core span {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
}

.coverage__core strong {
  font-family: "Unbounded", sans-serif;
  font-size: 2rem;
}

.lead {
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 0.95fr);
  gap: 28px;
}

.lead--minimal {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 28px;
}

.lead-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1fr);
  gap: 42px;
  width: 100%;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 250, 242, 0.92)),
    rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 48px rgba(28, 96, 49, 0.12);
}

.lead__copy {
  min-width: 0;
  align-self: center;
}

.lead__copy h2 {
  max-width: 8ch;
  font-size: clamp(2.2rem, 3.3vw, 3.5rem);
  line-height: 1.02;
  overflow-wrap: normal;
}

.lead--minimal .lead__copy p {
  max-width: 27rem;
}

.lead--minimal .lead__contact {
  max-width: 27rem;
}

.lead__list {
  margin: 26px 0 0;
  padding: 0;
  margin-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.lead__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
}

.lead__list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  flex: 0 0 auto;
}

.lead__contact a {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(31, 143, 69, 0.12);
  background: rgba(255, 255, 255, 0.74);
}

.lead__contact--minimal {
  margin-top: 24px;
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  min-width: 0;
}

.lead-form--minimal {
  gap: 16px;
  width: 100%;
  padding: 0;
  justify-self: stretch;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.lead-form label {
  display: grid;
  gap: 10px;
}

.lead-form span {
  color: var(--muted);
  font-size: 0.95rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 16px 18px;
  border: 1px solid rgba(31, 143, 69, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.lead-form textarea {
  min-height: 126px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(31, 143, 69, 0.55);
  box-shadow: 0 0 0 4px rgba(121, 207, 142, 0.16);
  transform: translateY(-1px);
}

.lead-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lead-form__choices {
  display: grid;
  gap: 12px;
}

.lead-form__choices-title {
  color: var(--muted);
  font-size: 0.95rem;
}

.lead-form__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lead-form__chips--large {
  gap: 12px;
}

.lead-form__chips button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 143, 69, 0.14);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  font-size: 0.95rem;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.lead-form__chips--large button {
  min-height: 50px;
  padding: 0 18px;
  border-radius: 18px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.82);
}

.lead-form__chips button:hover,
.lead-form__chips button.is-active {
  border-color: rgba(31, 143, 69, 0.4);
  background: rgba(121, 207, 142, 0.18);
  transform: translateY(-1px);
}

.lead-form__chips--large button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 10px 24px rgba(31, 143, 69, 0.18);
}

.lead-form__agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.lead-form__agree input {
  width: 18px;
  min-height: auto;
  margin-top: 4px;
}

.lead-form__agree span {
  color: var(--muted);
}

.lead-form__footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

.lead-form__footer .button {
  min-width: 240px;
}

.lead-form__hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.lead-form__status {
  min-height: 24px;
  margin: 0;
  font-weight: 600;
}

.lead-form__status[data-state="success"] {
  color: #1f8f45;
}

.lead-form__status[data-state="error"] {
  color: #ff9c9c;
}

.faq-item {
  padding: 24px 28px 26px;
}

.faq-item h3 {
  margin: 0 0 14px;
  font-family: "Unbounded", sans-serif;
  font-size: 1.05rem;
  line-height: 1.45;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.lead-form__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.footer {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.footer--minimal {
  padding-top: 8px;
  border-top: 1px solid rgba(31, 143, 69, 0.08);
}

.footer strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fbfef9 0%, #eef7eb 100%);
  transition:
    opacity 420ms ease,
    visibility 420ms ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(28, 96, 49, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 96, 49, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
}

.loader__inner {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100vw - 48px));
}

.loader__inner h1 {
  margin: 0 0 22px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.02;
}

.loader__bar {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(31, 143, 69, 0.1);
  overflow: hidden;
}

.loader__fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  box-shadow: 0 0 30px rgba(31, 143, 69, 0.22);
}

.loader__steps {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  color: var(--muted);
}

.progress-line {
  position: fixed;
  inset: 0 0 auto;
  z-index: 35;
  height: 3px;
  background: rgba(31, 143, 69, 0.08);
}

.progress-line span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
}

.reveal {
  opacity: 0;
  transform: translateY(28px) rotateX(6deg);
  transition:
    opacity 640ms ease,
    transform 640ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.4;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .topnav {
    display: none;
  }

  .hero,
  .hero--minimal,
  .hero-shell,
  .coverage,
  .lead,
  .lead--minimal,
  .insight-grid,
  .timeline,
  .hero__stats,
  .insight-grid--minimal,
  .reviews-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .types-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    padding: 30px;
    gap: 28px;
  }

  .hero__stats--compact {
    max-width: none;
  }

  .trust-band {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .foundation-stage--minimal {
    min-height: 680px;
  }

  .foundation-stage__frame {
    width: min(100%, 460px);
  }

  .lead-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 26px;
  }

  .timeline--minimal {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .timeline--minimal::before {
    display: none;
  }

  .timeline--minimal .timeline-card::before {
    top: 30px;
    left: auto;
    right: 24px;
  }

  .glass-card--primary {
    left: 2%;
  }

  .glass-card--secondary {
    right: 2%;
  }
}

@media (max-width: 780px) {
  :root {
    --container: min(100vw - 28px, 100%);
  }

  html {
    scroll-snap-type: none;
  }

  .topbar {
    inset: 14px 14px auto;
    padding: 12px 14px;
  }

  .brand {
    max-width: 250px;
    font-size: 0.66rem;
    letter-spacing: 0.04em;
  }

  .topbar__actions .ghost-link {
    display: none;
  }

  .panel {
    min-height: auto;
    padding: 112px 0 64px;
  }

  .hero h1,
  .section-head h2,
  .coverage__copy h2,
  .lead__copy h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-shell {
    padding: 24px;
    border-radius: 28px;
  }

  .foundation-stage {
    min-height: 520px;
  }

  .foundation-stage--minimal {
    min-height: 560px;
  }

  .foundation-stage__frame {
    width: min(100%, 340px);
  }

  .foundation-stage__frame {
    transform:
      perspective(1100px)
      rotateX(calc(6deg + var(--tilt-x)))
      rotateY(calc(-4deg + var(--tilt-y)))
      translate3d(0, 0, 0);
  }

  .hero-note {
    position: static;
    max-width: none;
    width: 100%;
    margin-top: 14px;
  }

  .stage-badge--top {
    top: auto;
    left: auto;
    right: 10%;
    bottom: 10%;
  }

  .glass-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .stage-badge {
    right: 10%;
    bottom: 10%;
  }

  .lead-form__row,
  .lead-form__footer,
  .footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer {
    padding-bottom: 26px;
  }

  .loader__steps {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .foundation-stage__frame,
  .foundation-stage__image,
  .foundation-stage__frame::after {
    transition: none;
  }
}
