/* ──────────────────────────────────────────────────────────────
   Euvita — temporary lead-gen site
   System: Geist (sans), Instrument Serif italic (accent)
   Palette: trust-blue + warm orange on cool neutrals
   ──────────────────────────────────────────────────────────── */

html, body { overflow-x: hidden; }

:root {
  /* ── Brand book palette ─────────────────────────── */
  /* Anchors */
  --ink: #1E2228;              /* logo anchor — darkest */
  --ink-2: #1E3548;            /* Clinical Blue Deep — primary brand */
  --ink-3: #25516E;            /* Slate */
  --muted: #7A8494;            /* mid neutral */
  --muted-2: #B1B7C2;
  --line: #E0E4EC;             /* Mist Gray — borders */
  --line-soft: #EEF1F5;
  --surface: #FFFFFF;
  --surface-2: #FAF7F2;        /* Alabaster — warm surface */
  --surface-3: #E0E9F7;        /* Mist — cool surface */
  --surface-cool-tint: #DCEEFF; /* Sky Tint */

  /* Primary = Action Blue from brand book */
  --primary: #4394FF;          /* Action / Identity */
  --primary-ink: #2878E8;      /* Deep Blue — hover */
  --primary-deeper: #1D7AAD;   /* Harbor — accent */
  --primary-deep: #1E3548;     /* Clinical Blue Deep */
  --primary-soft: #DCEEFF;     /* Sky Tint */
  --primary-mist: #E0E9F7;     /* Mist */

  /* Warm accent = Ember */
  --accent: #E8632A;           /* Ember */
  --accent-ink: #C44D1A;       /* Ember Deep */
  --accent-soft: #FFE8D6;      /* Ember Tint */
  --accent-warm: #F2C96E;      /* Golden Hr */
  --accent-linen: #EDE4D3;     /* Linen — warm bg */
  --accent-peach: #FAE8D1;     /* Sand Peach */

  --ok: #1D7AAD;               /* Use Harbor for success — keeps cool */
  --warn: #B85C20;             /* Copper */
  --err: #B85C20;              /* keep within palette */

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(30,34,40,.04), 0 1px 1px rgba(30,34,40,.04);
  --shadow-md: 0 8px 24px -8px rgba(30,53,72,.14), 0 2px 6px rgba(30,53,72,.06);
  --shadow-lg: 0 24px 60px -20px rgba(30,53,72,.28);

  --container: 1180px;
  --container-narrow: 940px;

  /* Brand fonts: Sora (Gotham Black sub) for display, Inter for everything else */
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Instrument Serif", "Times New Roman", serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

img, svg, video { display: block; max-width: 100%; }

button { font-family: inherit; cursor: pointer; }

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

::selection { background: var(--primary); color: white; }

/* ── Type scale ─────────────────────────────────────────── */
.h-eyebrow {
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
  font-family: var(--font-sans);
}
.h-display {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 0;
  color: var(--primary-deep);
}
.h-display .ser {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--primary);
  letter-spacing: -0.01em;
  font-size: 1.05em;
  line-height: 0.85;
}
.h-1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.028em;
  font-weight: 800;
  margin: 0;
  color: var(--primary-deep);
}
.h-1 .ser { color: var(--primary); font-weight: 400; font-style: italic; font-family: var(--font-serif); letter-spacing: -0.005em; font-size: 1.05em; line-height: 0.9; }
.h-2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.022em;
  font-weight: 800;
  margin: 0;
  color: var(--primary-deep);
}
.h-2 .ser, .h-3 .ser { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--primary); font-size: 1.05em; line-height: 0.9; }
.h-3 {
  font-family: var(--font-display);
  font-size: 20px; line-height: 1.25; letter-spacing: -0.01em; font-weight: 700;
  margin: 0;
  color: var(--primary-deep);
}
.lede { font-size: clamp(16px, 1.2vw, 19px); line-height: 1.55; color: var(--ink-3); font-weight: 400; }
.meta { font-size: 13px; color: var(--muted); }

.wordmark { display: inline-flex; align-items: center; line-height: 1; }
.wordmark-img { display: block; height: 100%; width: auto; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 6px 16px -6px color-mix(in oklab, var(--primary) 55%, transparent); }
.btn-primary:hover { background: var(--primary-ink); }
.btn-ember { background: var(--accent); color: white; box-shadow: 0 6px 16px -6px color-mix(in oklab, var(--accent) 55%, transparent); }
.btn-ember:hover { background: var(--accent-ink); }
.btn-blue { background: var(--primary-ink); color: white; box-shadow: 0 6px 16px -6px color-mix(in oklab, var(--primary-ink) 55%, transparent); }
.btn-blue:hover { background: var(--primary-deep); }
.btn-outline-blue { background: white; color: var(--primary-ink); border-color: var(--primary); }
.btn-outline-blue:hover { background: var(--primary-soft); }
.btn-outline { background: white; color: var(--primary-deep); border-color: var(--line); }
.btn-outline:hover { border-color: var(--primary-deep); }
.btn-ghost { background: transparent; color: var(--primary-deep); }
.btn-ghost:hover { background: var(--surface-2); }
.btn-sm { height: 38px; padding: 0 16px; font-size: 13.5px; }
.btn-lg { height: 56px; padding: 0 28px; font-size: 16px; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ── Pills ─────────────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  height: 42px; padding: 0 18px;
  border-radius: 999px;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-size: 14.5px; font-weight: 500;
  background: white;
  transition: all .15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.pill:hover { background: var(--primary-soft); }
.pill[aria-pressed="true"], .pill.is-active {
  background: var(--primary); color: white;
}

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  height: 24px; padding: 0 10px;
  font-size: 11.5px; font-weight: 500;
  border-radius: 999px;
  background: var(--primary-soft); color: var(--primary-ink);
  white-space: nowrap;
}

/* ── Containers ────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

section { position: relative; }

/* ── Nav ───────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--primary);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.is-stuck {
  background: var(--primary-ink);
  border-bottom-color: rgba(255,255,255,.1);
  box-shadow: 0 4px 24px -12px rgba(30,53,72,.4);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-size: 14.5px; color: rgba(255,255,255,.85);
}
.nav-link { display: inline-flex; align-items: center; gap: 4px; cursor: pointer; white-space: nowrap; transition: color .15s ease; }
.nav-link:hover { color: white; }
.nav-ctas { display: flex; align-items: center; gap: 10px; }
.nav .btn-ghost { color: rgba(255,255,255,.9); }
.nav .btn-ghost:hover { background: rgba(255,255,255,.1); color: white; }
.nav .btn-primary {
  background: white;
  color: var(--primary-deep);
  box-shadow: 0 6px 16px -6px rgba(0,0,0,.2);
}
.nav .btn-primary:hover { background: var(--surface-2); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-inner { height: 64px; }
  .nav-ctas .btn-ghost { display: none; }
}

/* ── Placeholder media ─────────────────────────────────── */
.media-placeholder {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(15,26,46,.04) 0 1px,
      transparent 1px 14px
    ),
    var(--surface-2);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .02em;
  overflow: hidden;
}
.media-placeholder .pl-label {
  background: white;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-2);
}
.media-placeholder.dark {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.04) 0 1px,
      transparent 1px 14px
    ),
    #1c2738;
  border-color: #2c3a52;
  color: #8294b0;
}
.media-placeholder.dark .pl-label {
  background: #243149; border-color: #324361; color: #c8d2e3;
}

/* ── Sections shared ───────────────────────────────────── */
.section-pad { padding: clamp(56px, 7vw, 96px) 0; }
.section-pad-sm { padding: clamp(24px, 3vw, 40px) 0 clamp(40px, 5vw, 64px); }
.section-tinted { background: var(--surface-2); }

/* ── Forms ─────────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 500; color: var(--ink-2); }
.field .hint { font-size: 12px; color: var(--muted); }
.field .err-msg { font-size: 12.5px; color: var(--err); }
.input, .select, .textarea {
  height: 48px; padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.textarea { height: auto; padding: 12px 14px; min-height: 96px; resize: vertical; line-height: 1.4; }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(45,127,240,.14);
}
.input.is-invalid, .select.is-invalid { border-color: var(--err); box-shadow: 0 0 0 4px rgba(200,49,42,.1); }

.select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'><path d='M4 6L8 10L12 6' stroke='%235B6B82' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--ink-2);
  cursor: pointer;
  line-height: 1.4;
}
.check input { margin-top: 2px; accent-color: var(--primary); width: 16px; height: 16px; flex: none; }

/* ── Cards ─────────────────────────────────────────────── */
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.card-pad { padding: clamp(20px, 2vw, 28px); }

/* ── Hero variants ─────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
}

/* Cinematic variant */
.hero-cine {
  min-height: clamp(560px, 78vh, 760px);
  background: var(--primary-deep);
  color: white;
  display: flex; align-items: flex-end;
  padding: 32px 0 48px;
}
.hero-cine .bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(232,99,42,.28), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(67,148,255,.32), transparent 55%),
    linear-gradient(180deg, #163049 0%, #1E3548 100%);
  z-index: 0;
}
.hero-cine .bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.018) 0 1px,
      transparent 1px 14px
    );
  pointer-events: none;
}
.hero-cine .bg-label {
  position: absolute; top: 20px; left: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
}
.hero-cine .container { position: relative; z-index: 1; }
.hero-cine .h-display { color: white; max-width: 14ch; }
.hero-cine .lede { color: rgba(255,255,255,.78); max-width: 56ch; }
.hero-cine .hsa { color: rgba(255,255,255,.65); font-size: 12.5px; margin-top: 16px; display: inline-flex; gap: 10px; align-items: center; }
.hero-cine .play-btn {
  position: absolute; right: 24px; bottom: 32px;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.hero-cine .play-btn .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #ec6a3c;
  box-shadow: 0 0 0 4px rgba(236,106,60,.25);
  animation: pulse 2s infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(236,106,60,.05); } }

/* Split variant */
.hero-split { padding: 64px 0 72px; }
.hero-split .grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero-split .copy .h-display { max-width: 14ch; }
.hero-split .copy .lede { max-width: 50ch; margin-top: 18px; }
.hero-split .visual { aspect-ratio: 4/5; border-radius: var(--radius-xl); }
@media (max-width: 880px) {
  .hero-split .grid { grid-template-columns: 1fr; }
  .hero-split .visual { aspect-ratio: 4/3; }
}

/* Editorial variant */
.hero-ed { padding: 80px 0 64px; background: var(--surface); }
.hero-ed .center { text-align: center; max-width: 22ch; margin: 0 auto; }
.hero-ed .center .h-display { font-size: clamp(48px, 7vw, 92px); }
.hero-ed .lede { max-width: 56ch; margin: 20px auto 0; text-align: center; }
.hero-ed .data-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 40px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-ed .data-cell {
  background: white;
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.hero-ed .data-cell .n {
  font-family: var(--font-serif);
  font-size: 38px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.hero-ed .data-cell .l {
  font-size: 12.5px; color: var(--muted);
  font-family: var(--font-mono); letter-spacing: .04em;
}
@media (max-width: 720px) {
  .hero-ed .data-strip { grid-template-columns: repeat(2, 1fr); }
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-ed .hero-ctas { justify-content: center; }

/* Trust line under hero CTAs */
.hero-trustline {
  display: inline-flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  justify-content: inherit;
}
.hero-ed .hero-trustline { justify-content: center; }
.hero-trustline > span { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.hero-trustline b { font-weight: 600; color: var(--ink-2); white-space: nowrap; }
.hero-trustline .dot-sep {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--line);
  flex: none;
}
.hero-trustline.dark { color: rgba(255,255,255,.7); }
.hero-trustline.dark b { color: white; }
.hero-trustline.dark .dot-sep { background: rgba(255,255,255,.3); }

/* ── Goals grid ─────────────────────────────────────────── */
.goals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}
.goal-acc {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.goal-acc:hover { border-color: var(--primary); }
.goal-acc.is-open { border-color: var(--primary); box-shadow: var(--shadow-md); }
.goal {
  width: 100%;
  display: flex; align-items: center; justify-content: flex-start;
  gap: 14px;
  padding: 12px 16px 12px 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .15s ease;
}
.goal:hover { background: var(--primary-soft); }
.goal-acc.is-open .goal { background: var(--primary-soft); }
.goal-thumb {
  width: 56px; height: 56px;
  flex: none;
  border-radius: 10px;
  object-fit: cover;
  background: var(--surface-2);
}
.goal-thumb-fallback {
  width: 56px; height: 56px;
  flex: none;
  border-radius: 10px;
  background: var(--primary-soft);
  display: none;
  align-items: center; justify-content: center;
  color: var(--primary-ink);
}
.goal-text { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 2px; }
.goal-name { font-size: 16px; font-weight: 600; color: var(--ink); }
.goal-meta { font-size: 12.5px; color: var(--muted); }
.goal-chev {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--primary);
  background: white;
  border: 1px solid var(--line);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  flex: none;
}
.goal-chev .chev-svg { transition: transform .25s ease; }
.goal-acc.is-open .goal-chev { background: var(--primary); color: white; border-color: var(--primary); }
.goal-acc.is-open .goal-chev .chev-svg { transform: rotate(180deg); }

.goal-panel {
  border-top: 1px solid var(--line-soft);
  background: white;
}
.goal-panel[hidden] { display: none; }
.goal-panel-inner {
  padding: 20px 22px 24px;
  display: flex; flex-direction: column; gap: 16px;
  animation: goalFade .25s ease;
}
@keyframes goalFade { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.goal-detail { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--ink-2); }
.goal-includes-label {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.goal-includes ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
}
.goal-includes li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--ink-2);
  line-height: 1.5;
}
.goal-includes li .check-dot {
  width: 18px; height: 18px;
  flex: none;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.goal-includes li > span:last-child { flex: 1; }
.goal-panel-inner .btn { align-self: flex-start; }
@media (max-width: 720px) { .goals { grid-template-columns: 1fr; } }

.svc-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 8px;
}
.svc-eyebrow::before {
  content: ""; width: 18px; height: 1px; background: rgba(67,148,255,.8);
}

/* ── Service pills row ──────────────────────────────────── */
.svc-pills {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding: 8px 0 14px;
}
@media (max-width: 1100px) { .svc-pills { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .svc-pills { grid-template-columns: 1fr 1fr; } }
.svc-pill {
  height: auto;
  min-height: 76px;
  padding: 12px 16px;
  border-radius: 14px;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  gap: 4px;
  text-align: left;
  white-space: normal;
}
.svc-pill-key {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
.svc-pill-teaser {
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.35;
  opacity: 0.85;
}
.svc-pill.is-active .svc-pill-teaser { opacity: 0.9; color: rgba(255,255,255,.95); }

/* ── Dual card ──────────────────────────────────────────── */
.dual {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 20px;
  margin-top: 28px;
}
@media (max-width: 880px) { .dual { grid-template-columns: 1fr; } }
.dual-left {
  position: relative;
  background: var(--primary-deep);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  max-height: 520px;
  color: white;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
}
.dual-left .bg {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 1px, transparent 1px 14px),
    radial-gradient(circle at 70% 30%, rgba(232,99,42,.18), transparent 60%),
    linear-gradient(180deg, #1E3548 0%, #14283A 100%);
}
.dual-left .bg-label {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px;
}
.dual-left .inner { position: relative; animation: svcFade .28s ease; }
.dual-left .inner > * { position: relative; }
@keyframes svcFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dual-left .h-2 { color: white; max-width: 18ch; }
.dual-left p { color: rgba(255,255,255,.72); max-width: 38ch; margin: 12px 0 22px; font-size: 14.5px; line-height: 1.55; }

.dual-right { display: flex; flex-direction: column; gap: 14px; }
.dual-right .card { padding: 24px; }
.dual-right .biomarker-aside {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  font-size: 14px;
  color: var(--ink-2);
}
.dual-right .biomarker-aside b { color: var(--ink); }

/* ── Quick-pick goals strip ─────────────────────────────── */
.qp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.qp-wrap { position: relative; }
.qp-card {
  width: 100%;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all .18s ease;
  text-align: center;
  position: relative;
}
.qp-card:hover { border-color: var(--primary); transform: translateY(-1px); }
.qp-wrap.is-open .qp-card,
.qp-card.is-active {
  border-color: var(--primary);
  background: var(--primary-soft);
}
.qp-card .ic {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3);
}
.qp-wrap.is-open .qp-card .ic { background: var(--primary); color: white; }
.qp-card .l { font-size: 14px; font-weight: 600; color: var(--ink); }
.qp-card .s { font-size: 12px; color: var(--muted); }
.qp-chev {
  position: absolute; top: 12px; right: 12px;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--muted);
  background: white;
  border: 1px solid var(--line);
  transition: all .2s ease;
}
.qp-chev .chev-svg { transition: transform .25s ease; }
.qp-wrap.is-open .qp-chev { background: var(--primary); color: white; border-color: var(--primary); }
.qp-wrap.is-open .qp-chev .chev-svg { transform: rotate(180deg); }
@media (max-width: 720px) { .qp { grid-template-columns: 1fr 1fr; } }

.qp-panel {
  margin-top: 16px;
  background: white;
  border: 1.5px solid var(--primary);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  animation: qpFade .25s ease;
}
@keyframes qpFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.qp-panel-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  padding: 28px 32px 32px;
}
@media (max-width: 720px) { .qp-panel-inner { grid-template-columns: 1fr; gap: 20px; padding: 24px; } }
.qp-panel-text { display: flex; flex-direction: column; gap: 12px; }
.qp-panel-text p { color: var(--ink-3); font-size: 15px; line-height: 1.6; margin: 0; }
.qp-panel-text .btn { align-self: flex-start; margin-top: 8px; }
.qp-panel-eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--primary);
}
.qp-panel-side {
  background: var(--surface-2);
  border-radius: 12px;
  padding: 20px 22px;
}
.qp-includes-label {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.qp-panel-side ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
}
.qp-panel-side li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--ink-3);
  line-height: 1.5;
}
.qp-panel-side .check-dot {
  width: 18px; height: 18px; flex: none;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

/* ── Process timeline ───────────────────────────────────── */
.process { margin-top: 48px; }
.process-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.process-cards.five {
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 1100px) { .process-cards.five { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .process-cards.five { grid-template-columns: 1fr; } }
@media (max-width: 880px) { .process-cards { grid-template-columns: 1fr; } }
.proc-card.is-featured {
  box-shadow: 0 20px 48px -24px rgba(67,148,255,.4), 0 4px 10px rgba(30,53,72,.06);
  transform: translateY(-8px);
}
@media (max-width: 760px) {
  .proc-card.is-featured { transform: none; }
}
.step-tag {
  display: inline-flex; align-items: center;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  margin-left: auto;
}
.proc-card .step-num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.proc-card.is-featured .step-num { color: var(--accent-ink); }
.proc-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.proc-card .visual {
  aspect-ratio: 5/3;
  border-radius: 0;
}
.proc-card .body { padding: 24px 24px 28px; }
.proc-card .step-num {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.proc-card .step-num::before {
  content: ""; width: 18px; height: 1px; background: var(--primary);
}
.proc-card .h-3 { margin-bottom: 8px; }
.proc-card p { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; margin: 0; }
.proc-rail {
  margin-top: 24px;
  height: 6px;
  background: var(--line-soft);
  border-radius: 999px;
  overflow: hidden;
}
.proc-rail .fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--primary-ink)); border-radius: 999px; transition: width .3s ease; }

/* ── Testimonials ───────────────────────────────────────── */
.tm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 980px) { .tm-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .tm-grid { grid-template-columns: 1fr; } }
.tm-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
  aspect-ratio: 3/4;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px;
  color: white;
  isolation: isolate;
}
.tm-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, transparent 35%, rgba(0,0,0,.65) 100%),
    repeating-linear-gradient(135deg, rgba(0,0,0,.03) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, #d8dde4 0%, #b9c1cc 100%);
}
.tm-card .pl-mid {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(15,26,46,.55);
  background: rgba(255,255,255,.7);
  padding: 5px 9px; border-radius: 6px;
}
.tm-card .stars { color: #FFB400; font-size: 12px; letter-spacing: 2px; }
.tm-card .quote { font-size: 13.5px; line-height: 1.45; margin: 6px 0 10px; }
.tm-card .who { font-size: 11.5px; color: rgba(255,255,255,.75); font-family: var(--font-mono); letter-spacing: .04em; }
.tm-card .cta { margin-top: 12px; }

.tm-stars-row {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.tm-stars-row .stars { color: #FFB400; font-size: 18px; letter-spacing: 4px; }

/* ── Lead form ──────────────────────────────────────────── */
.lead-section {
  position: relative;
  background: var(--primary-deep);
  color: white;
  padding: clamp(72px, 9vw, 128px) 0 clamp(64px, 8vw, 112px);
  overflow: hidden;
}
.lead-section::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(67,148,255,.28), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(232,99,42,.12), transparent 55%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.018) 0 1px, transparent 1px 14px);
  pointer-events: none;
}
.lead-section .container { position: relative; }
.lead-section .section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 44px;
}
.lead-section .section-head .h-1 { color: white; max-width: 22ch; }
.lead-section .section-head .lede { color: rgba(255,255,255,.7); max-width: 52ch; }
.lead-section .section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 14px;
  white-space: nowrap;
}
.lead-section .section-eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--primary);
}
.lead-section .stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 28px;
}
.lead-section .stats .cell {
  background: rgba(255,255,255,.04);
  padding: 18px 18px;
}
.lead-section .stats .n {
  font-family: var(--font-serif); font-size: 28px; color: white; line-height: 1; letter-spacing: -0.01em;
}
.lead-section .stats .l {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 6px;
}

.lead {
  background: white;
  color: var(--ink);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  box-shadow:
    0 1px 0 rgba(255,255,255,.06) inset,
    0 40px 100px -30px rgba(0,0,0,.55),
    0 12px 32px -16px rgba(0,0,0,.35);
  position: relative;
}
.lead::before {
  content: "";
  position: absolute;
  top: -2px; left: clamp(28px, 4vw, 56px); right: clamp(28px, 4vw, 56px);
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 0 0 6px 6px;
}
@media (max-width: 880px) {
  .lead { grid-template-columns: 1fr; }
  .lead > * { min-width: 0; }
  .lead-section .stats { grid-template-columns: repeat(3, 1fr); }
  .lead-section .stats .cell { padding: 14px 10px; min-width: 0; }
  .lead-section .stats .n { font-size: 22px; }
  .lead-section .stats .l { font-size: 9.5px; letter-spacing: .08em; }
  .lead-trust-row { font-size: 12.5px; }
}
.lead-side { display: flex; flex-direction: column; gap: 16px; }
.lead-side .h-1 { max-width: 18ch; }
.lead-trust {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.lead-trust-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--ink-2);
}
.lead-trust-row svg { color: var(--primary); flex: none; }

.lead-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 20px;
}
.lead-stepper {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--muted);
  font-family: var(--font-mono); letter-spacing: .04em;
  white-space: nowrap;
}
.lead-stepper .step-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: var(--muted);
  background: white;
}
.lead-stepper .step-dot.is-active { background: var(--primary); color: white; border-color: var(--primary); }
.lead-stepper .step-dot.is-done { background: var(--primary-soft); color: var(--primary-ink); border-color: var(--primary); }
.lead-stepper .step-line { flex: 1; height: 1px; background: var(--line); }
.lead-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.lead-grid .span-2 { grid-column: 1 / -1; }
@media (max-width: 560px) { .lead-grid { grid-template-columns: 1fr; } .lead-grid .span-2 { grid-column: auto; } }

.lead-goal-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.lead-goal-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  background: white;
  text-align: left;
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  transition: all .15s ease;
}
.lead-goal-opt:hover { border-color: var(--primary); }
.lead-goal-opt.is-active { border-color: var(--primary); background: var(--primary-soft); color: var(--primary-ink); }
.lead-goal-opt .radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid var(--line-soft); flex: none;
  background: white;
  display: inline-flex; align-items: center; justify-content: center;
}
.lead-goal-opt.is-active .radio {
  border-color: var(--primary);
}
.lead-goal-opt.is-active .radio::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
}

.lead-success {
  text-align: center;
  padding: 32px 8px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.lead-success .check-ring {
  width: 64px; height: 64px;
  background: var(--ok); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(30,138,91,.12);
}

/* ── FAQ ───────────────────────────────────────────────── */
.faq-tabs {
  display: flex; gap: 6px;
  border-bottom: 1px solid var(--line);
  margin: 36px 0 8px;
}
.faq-tab {
  background: transparent;
  border: none;
  padding: 12px 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 10px 10px 0 0;
  position: relative;
  cursor: pointer;
}
.faq-tab.is-active {
  color: var(--primary);
  background: var(--primary-soft);
}
.faq-tab.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--primary);
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: transparent; border: none;
  padding: 20px 8px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer;
}
.faq-q .chev { transition: transform .25s ease; color: var(--muted); }
.faq-item.is-open .faq-q .chev { transform: rotate(180deg); color: var(--primary); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.6;
  padding: 0 8px;
}
.faq-item.is-open .faq-a {
  max-height: 400px;
  padding: 0 8px 24px;
}

/* ── Sticky CTA bar ────────────────────────────────────── */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 40;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(100%);
  transition: transform .35s ease;
  padding: 12px 0;
}
.sticky-cta.is-shown { transform: translateY(0); }
.sticky-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.sticky-cta .label { font-size: 14px; color: var(--ink-2); }
.sticky-cta .label b { color: var(--ink); }
@media (max-width: 560px) {
  .sticky-cta .label { display: none; }
}

/* ── Cookie banner ─────────────────────────────────────── */
.cookie-banner {
  position: fixed; left: 16px; bottom: 16px; right: 16px;
  z-index: 60;
  max-width: 460px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  border-radius: 16px;
  padding: 18px;
  display: flex; flex-direction: column; gap: 12px;
  transform: translateY(8px); opacity: 0; pointer-events: none;
  transition: transform .3s ease, opacity .25s ease;
}
.cookie-banner.is-shown { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-banner h4 { margin: 0; font-size: 15px; font-weight: 600; }
.cookie-banner p { margin: 0; font-size: 13px; color: var(--ink-2); line-height: 1.5; }
.cookie-banner .row { display: flex; gap: 8px; justify-content: flex-end; }

/* ── Exit-intent modal ─────────────────────────────────── */
.modal-shade {
  position: fixed; inset: 0;
  background: rgba(8,15,30,.55);
  backdrop-filter: blur(4px);
  z-index: 70;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease;
}
.modal-shade.is-shown { opacity: 1; pointer-events: auto; }
.modal {
  background: white;
  border-radius: 22px;
  width: 100%; max-width: 480px;
  padding: 32px;
  position: relative;
  transform: scale(.96);
  transition: transform .2s ease;
}
.modal-shade.is-shown .modal { transform: scale(1); }
.modal .x {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: var(--surface-2); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.modal .x:hover { background: var(--line-soft); }
.modal .pill-tag {
  display: inline-block;
  font-family: var(--font-mono); font-size: 11px;
  background: var(--accent-soft); color: var(--accent-ink);
  padding: 5px 10px; border-radius: 999px;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 12px;
}
.modal .h-2 { margin-bottom: 8px; }
.modal p { color: var(--ink-2); font-size: 14.5px; margin: 0 0 18px; }
.modal-form { display: flex; gap: 8px; }
.modal-form .input { flex: 1; }

/* ── Footer ─────────────────────────────────────────────── */
.footer { background: var(--surface-2); padding: 56px 0 28px; margin-top: 0; }
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer h5 {
  font-size: 12.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: var(--ink-2); font-size: 14px; }
.footer a:hover { color: var(--ink); }
.footer-news {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.footer-news h5 { margin-bottom: 10px; }
.footer-news .row {
  display: flex; gap: 6px; margin-bottom: 12px;
}
.footer-news .row .input { height: 40px; font-size: 13.5px; }
.footer-news .icons { display: flex; gap: 8px; margin: 14px 0 6px; }
.footer-news .icons a {
  width: 32px; height: 32px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-2);
}
.footer-news .icons a:hover { border-color: var(--primary); color: var(--primary); }
.footer-news .phone { font-size: 13.5px; color: var(--ink-2); display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; }
.footer-news p { font-size: 12.5px; color: var(--muted); margin: 12px 0 0; line-height: 1.5; }

.footer-wordmark {
  text-align: center;
  margin: 48px 0 32px;
  user-select: none;
  opacity: 0.18;
  display: flex; justify-content: center;
  overflow: hidden;
}
.footer-wordmark .wordmark-img { width: 60%; max-width: 760px; height: auto; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--muted);
}
.footer-bottom .links { display: flex; gap: 16px; }
@media (max-width: 560px) { .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* ── State checker ─────────────────────────────────────── */
.state-check {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 6px 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
  flex-wrap: nowrap;
  align-self: flex-start;
  max-width: 100%;
}
.state-check.is-light {
  background: white;
  border-color: var(--line);
  color: var(--ink-2);
}
.state-check select {
  background: transparent;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: 13px;
  outline: none;
  padding: 4px 8px;
  cursor: pointer;
}
.state-check.is-light select { color: var(--ink); }
.state-check .ok-tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(30,138,91,.18);
  color: #7cd9aa;
  font-size: 11.5px;
  padding: 3px 8px; border-radius: 999px;
  font-family: var(--font-mono); letter-spacing: .04em;
}
.state-check.is-light .ok-tag {
  background: rgba(30,138,91,.12); color: var(--ok);
}

/* ── Utility ───────────────────────────────────────────── */
.row { display: flex; align-items: center; gap: 12px; }
.col { display: flex; flex-direction: column; gap: 12px; }
.stack-tight { display: flex; flex-direction: column; gap: 8px; }
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 20px; }
.mt-lg { margin-top: 36px; }
.mt-xl { margin-top: 64px; }
.center-text { text-align: center; }
.muted { color: var(--muted); }
.bold { font-weight: 600; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }

/* Hide scrollbar for horizontal scrollers visually */
.scroll-x { overflow-x: auto; scrollbar-width: thin; -webkit-overflow-scrolling: touch; }

/* ── Narrow-mobile overrides (placed last so they win the cascade) ───── */
@media (max-width: 480px) {
  .lead-goal-grid { grid-template-columns: 1fr; gap: 8px; }
  .lead-goal-opt { padding: 12px 14px; font-size: 14px; }
  .footer-wordmark .wordmark-img {
    height: auto !important;
    max-width: 88%;
    width: auto;
  }
  /* Stack Back + Submit on narrow mobile so submit can be full-width
     instead of overflowing past the right edge */
  .lead-form .row {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 10px;
  }
  .lead-form .row .btn-primary { width: 100%; }
  .lead-form .row .btn-ghost { align-self: center; }
}
