/* ============================================================
   Apex Health Advisors - stopgap marketing site
   Plain CSS, mobile-first, no framework. DARK MODE ONLY.
   Brand: "Ascent" - Summit Ink base, Altitude Teal hero,
   Beacon Gold / amber accent. National independent agency,
   sibling to a wealth-advisory firm. Self-hosted fonts (no CDN).
   ============================================================ */

/* ---- Self-hosted brand fonts (variable, latin subset) ---- */
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("fonts/bricolage.woff2") format("woff2");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("fonts/hanken.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Surfaces: layered elevation, deep teal-ink (Summit Ink) */
  --bg:          #0B2027;  /* base page - Summit Ink */
  --bg-soft:     #0E2A30;  /* elevation 1: alternating sections */
  --surface:     #11313A;  /* elevation 2: cards, form panel */
  --surface-2:   #163F49;  /* elevation 3: card hover */
  --bg-quote:    #081A20;  /* deep quote band */
  --bg-footer:   #06141A;  /* darkest, footer */
  --input-bg:    #0C2830;  /* form fields */

  /* Text */
  --ink:    #EAF1F0;  /* Mist - body */
  --slate:  #9FB6BA;  /* muted secondary (teal-gray) */
  --ink-on-accent: #06241F; /* dark text on bright teal/gold buttons */

  /* Accents - teal hero + gold/amber accent.
     Existing var names kept (less churn); values remapped to Ascent. */
  --navy:        #0E3D43;  /* deep brand teal, brand mark depth only */
  --blue:        #16C2AE;  /* Altitude Teal: links, eyebrows, accents */
  --blue-bright: #2AD0BC;  /* brighter teal hover */
  --blue-btn:    #FFB52E;  /* hotter amber for the solid CTA fill (pops) */
  --blue-btn-hi: #FFC24D;  /* CTA hover */
  --green:       #16C2AE;  /* teal secondary accent (was green) */
  --green-soft:  #2AD0BC;  /* bright teal eyebrow on dark bands */
  --gold:        #F2A93C;  /* Beacon Gold: brand accent, summit */

  /* Lines / borders */
  --line:        #21434B;  /* card + field borders */
  --line-soft:   #16323A;

  --radius: 14px;
  --shadow:    0 6px 24px rgba(0, 0, 0, 0.38);
  --shadow-lg: 0 18px 48px rgba(0, 0, 0, 0.52);
  --max: 1120px;
  --serif: "Bricolage Grotesque", ui-serif, Georgia, serif; /* display */
  --sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; /* body */
  color-scheme: dark;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color-scheme: dark;
}

/* Visible keyboard focus on all interactive elements.
   3px amber ring, 9:1 contrast against dark surfaces (well above 3:1). */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.consent-label input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #ffb300;
  outline-offset: 2px;
  border-radius: 4px;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px; /* >=16px so iOS does not zoom form inputs */
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

h1, h2, h3 { font-family: var(--serif); line-height: 1.1; color: var(--ink); margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.018em; }
h1 { font-size: clamp(2.1rem, 5.4vw, 3.4rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.3rem); letter-spacing: -0.018em; }
h3 { font-size: 1.2rem; letter-spacing: -0.008em; }
p { margin: 0 0 1rem; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-bright); text-decoration: underline; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 .6rem;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  min-height: 44px;       /* tap target */
  padding: .72rem 1.3rem;
  border-radius: 10px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .08s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease, color .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--blue-btn); color: var(--ink-on-accent); font-weight: 700; }
.btn-primary:hover { background: var(--blue-btn-hi); color: var(--ink-on-accent); }
.btn-ghost { background: transparent; color: var(--blue); border-color: rgba(22,194,174,.50); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-bright); }
.btn-lg { padding: .95rem 1.7rem; font-size: 1.05rem; min-height: 52px; }
.btn-sm { padding: .5rem 1rem; font-size: .92rem; min-height: 40px; }
.btn-block { width: 100%; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  /* Steel band (Proposal C): lighter than the navy page so the logo's navy middle reads
     without a white header. Slight translucency keeps the blur. */
  background: rgba(39,74,82,.94);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid #34555d;
  box-shadow: 0 2px 12px rgba(0,0,0,.28);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: .55rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-mark { display: inline-flex; }
.brand-text { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--ink); letter-spacing: -0.01em; }
.header-nav { display: flex; align-items: center; gap: 1.4rem; }
.header-nav a { color: var(--slate); font-weight: 500; font-size: .95rem; display: inline-flex; align-items: center; min-height: 44px; padding: 0 .15rem; }
.header-nav a:hover { color: var(--blue); text-decoration: none; }
.header-nav .btn { color: var(--ink-on-accent); }
.header-nav .btn:hover { color: var(--ink-on-accent); }

@media (max-width: 720px) {
  .header-nav a:not(.btn) { display: none; }
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 480px at 82% -12%, rgba(22,194,174,.14), transparent 60%),
    radial-gradient(820px 380px at 10% 4%, rgba(242,169,60,.10), transparent 64%),
    linear-gradient(180deg, var(--bg-soft), var(--bg) 82%);
  padding: clamp(3.2rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
/* Signature: faint topographic summit contours behind the hero */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='520' preserveAspectRatio='none' fill='none'%3E%3Cg stroke='%2316C2AE' stroke-width='1.4' fill='none'%3E%3Cpath d='M-40 470 Q 380 360 600 380 T 1240 300'/%3E%3Cpath d='M-40 430 Q 400 300 640 320 T 1240 250'/%3E%3Cpath d='M-40 392 Q 430 245 690 268 T 1240 205'/%3E%3Cpath d='M120 360 Q 520 200 760 232 T 1240 165'/%3E%3Cpath d='M320 340 Q 640 170 860 205 T 1240 132'/%3E%3C/g%3E%3Cpath d='M520 330 Q 760 165 960 192 T 1240 108' stroke='%23F2A93C' stroke-width='1.6' opacity='0.8' fill='none'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center top;
  opacity: .16;
  pointer-events: none;
}
.hero-inner, .hero-copy { position: relative; z-index: 1; }
.hero-copy { max-width: 720px; }
.hero h1 { margin-bottom: .35em; }
.lede { font-size: 1.18rem; color: var(--slate); max-width: 640px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 1.1rem; }
.hero-trust { font-size: .95rem; color: var(--slate); font-weight: 500; }

/* ---------------- Sections ---------------- */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-alt { background: var(--bg-soft); }
.section-head { max-width: 680px; margin: 0 0 2.4rem; }
.section-sub { font-size: 1.1rem; color: var(--slate); }

/* ---------------- Cards (what we do) ---------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.2rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform .12s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: var(--surface-2);
  border-color: #1f5159;
}
.card-icon {
  font-size: 1.7rem;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: #0C2830;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  margin-bottom: .9rem;
}
.card h3 { margin-bottom: .4rem; color: var(--ink); }
.card p { color: var(--slate); font-size: .97rem; margin-bottom: .5rem; }
.card-note { font-size: .85rem; color: var(--green); font-style: italic; }
.card-accent {
  background: linear-gradient(160deg, #11424A, #0B2C33);
  border: 1px solid #1d5a5f;
}
.card-accent h3, .card-accent p { color: #eafaf7; }
.card-accent .card-icon { background: rgba(22,194,174,.16); border-color: rgba(22,194,174,.32); }
.card-link { color: var(--blue-bright); font-weight: 700; }
.card-link:hover { color: #fff; }

/* ---------------- Features (why us) ---------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem 2rem;
}
.feature-num {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--green);
  font-weight: 600;
  border-bottom: 2px solid var(--green);
  display: inline-block;
  padding-bottom: .15rem;
  margin-bottom: .7rem;
}
.feature h3 { margin-bottom: .35rem; color: var(--ink); }
.feature p { color: var(--slate); margin: 0; }

/* ---------------- States ---------------- */
.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.state-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow);
}
.state-card h3 { color: var(--blue); margin-bottom: .7rem; }
.state-card ul { margin: 0; padding-left: 1.1rem; color: var(--slate); }
.state-card li { margin-bottom: .35rem; font-size: .96rem; }
.states-more { margin-top: 1.6rem; color: var(--slate); font-weight: 500; }

/* ---------------- Quote section ---------------- */
.section-quote { background: var(--bg-quote); color: var(--ink); }
.section-quote .eyebrow { color: var(--green-soft); }
.section-quote h2 { color: var(--ink); }
.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.6rem;
  align-items: start;
}
.quote-copy p { color: var(--slate); }
.quote-bullets { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.quote-bullets li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: .6rem;
  color: var(--ink);
}
.quote-bullets li::before {
  content: "\2713";
  position: absolute; left: 0;
  color: var(--green-soft);
  font-weight: 700;
}

/* ---------------- Form ---------------- */
.quote-form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: var(--shadow-lg);
}
.lead-form .field { margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-narrow { max-width: 100%; }
label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: .35rem; }
.optional { font-weight: 400; color: var(--slate); }
input, select, textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;            /* >=16px so iOS does not zoom on focus */
  color: var(--ink);
  padding: .72rem .85rem;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  background: var(--input-bg);
  min-height: 46px;           /* comfortable tap target */
  transition: border-color .12s ease, box-shadow .12s ease;
}
input::placeholder, textarea::placeholder { color: #7e90a4; }
select { appearance: none; -webkit-appearance: none; }
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22,194,174,.32);
}
/* Drop the default focus ring only for mouse/touch (not keyboard).
   The focus-visible rule above provides the keyboard ring. */
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: none;
}
input.invalid, select.invalid, textarea.invalid {
  border-color: #f08585;
  box-shadow: 0 0 0 3px rgba(240,133,133,.22);
}
textarea { resize: vertical; min-height: 92px; }

.consent-field { margin-top: .4rem; }
.consent-label {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-weight: 400;
  font-size: .85rem;
  color: var(--slate);
  line-height: 1.45;
  cursor: pointer;
}
.consent-label input {
  width: 24px; height: 24px;
  min-height: 0;
  margin: 0; flex: 0 0 auto;
  cursor: pointer;
  accent-color: var(--blue);
}

.form-error {
  color: #f3a0a0;
  font-size: .9rem;
  font-weight: 500;
  margin: .8rem 0 0;
}
.form-fineprint { font-size: .78rem; color: var(--slate); margin: .9rem 0 0; }
.form-fineprint a { color: var(--blue); }

button[disabled] { opacity: .65; cursor: progress; }

/* ---------------- Success ---------------- */
.form-success { text-align: center; padding: 2.5rem 1rem; }
.success-check {
  width: 60px; height: 60px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--green);
  color: #05201a;
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
}
.form-success h3 { color: var(--ink); }
.form-success p { color: var(--slate); }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--bg-footer); color: var(--slate); border-top: 1px solid var(--line-soft); }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  padding: 3rem 22px 2rem;
}
.footer-brand .brand-text { color: var(--ink); font-size: 1.2rem; }
.footer-contact { margin-top: .7rem; font-size: .95rem; }
.footer-contact a { color: var(--blue); }
.footer-compliance p { font-size: .86rem; margin-bottom: .8rem; color: var(--slate); }
.footer-compliance .disclaimer { font-weight: 600; color: #c7d6e4; }
.footer-compliance a { color: var(--blue); }
.footer-bar { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bar p { margin: 0; padding: 1rem 0; font-size: .82rem; color: #7d90a4; }

/* ---------------- Responsive ---------------- */
@media (max-width: 820px) {
  .quote-inner { grid-template-columns: 1fr; gap: 1.8rem; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .field-row .field { margin-bottom: 1rem; }
  .footer-inner { grid-template-columns: 1fr; padding: 2.4rem 18px 1.6rem; }
  .quote-form-wrap { padding: 1.4rem; }
  .hero-cta .btn { flex: 1 1 100%; }
  .lede { font-size: 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* ---------------- Header logo mark ---------------- */
.brand-mark svg { display: block; height: 36px; width: auto; }

/* ---------------- How it works (steps) ---------------- */
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow);
}
.step-num {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(22,194,174,.14);
  border: 1.5px solid var(--green);
  color: var(--green);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: .9rem;
}
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--slate); margin: 0; }

/* ---------------- Meet the team ---------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .12s ease, box-shadow .15s ease, border-color .15s ease;
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: #1f5159; }
.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: var(--surface-2);
  border-bottom: 3px solid var(--green);
}
.team-body { padding: 1.3rem 1.4rem 1.5rem; }
.team-body h3 { margin-bottom: .15rem; }
.team-role { color: var(--green); font-weight: 600; font-size: .92rem; margin: 0 0 .7rem; }
.team-body p:last-child { color: var(--slate); font-size: .96rem; margin: 0; }

/* ---------------- Coming-soon state card ---------------- */
.state-card-soon { border-top-color: var(--green); }
.state-card-soon h3 { color: var(--green); }
.soon-note { color: var(--slate); font-size: .96rem; margin: 0; }

/* ============================================================
   Phase 0 multi-page components (master plan build 2026-06-16)
   ============================================================ */

/* Brand wordmark accent */
.brand-h { color: var(--blue); }

/* Header nav: dropdown items, phone, toggle */
.nav-item { position: relative; display: inline-flex; align-items: center; }
.phone-link { color: var(--ink); font-weight: 700; font-size: .95rem; }
.phone-link:hover { color: var(--blue); text-decoration: none; }
.phone-link.strong { font-size: 1.1rem; }
.nav-toggle { display: none; background: none; border: 0; color: var(--ink); font-size: 1.6rem; cursor: pointer; min-height: 44px; min-width: 44px; }
.mobile-nav { display: none; flex-direction: column; padding: .5rem 22px 1rem; border-top: 1px solid var(--line-soft); background: var(--bg); }
.mobile-nav a { color: var(--ink); padding: .85rem .2rem; border-bottom: 1px solid var(--line-soft); font-weight: 600; }
.mobile-nav.open { display: flex; }

@media (max-width: 860px) {
  .header-nav { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
}

/* Mobile sticky CTA bar */
.mobile-cta-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; gap: .6rem; padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom)); background: rgba(8,20,26,.94); backdrop-filter: blur(10px); border-top: 1px solid var(--line); }
.mobile-cta-bar .btn { flex: 1; }
.mcta-call { display: flex; align-items: center; justify-content: center; width: 52px; border-radius: 10px; border: 1.5px solid var(--blue); color: var(--blue); font-size: 1.3rem; text-decoration: none; }
@media (max-width: 860px) { .mobile-cta-bar { display: flex; } body { padding-bottom: 76px; } }

/* Hero sub (interior pages) */
.hero-sub { padding-top: clamp(2.4rem, 5vw, 4rem); }
.btn-call { background: var(--blue); color: var(--ink-on-accent); }
.btn-call:hover { background: var(--blue-bright); color: var(--ink-on-accent); }
.agent-line { font-size: .82rem; color: var(--slate); margin-top: .9rem; font-style: italic; }

/* Trust band */
.trust-band { background: var(--bg-soft); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.trust-items { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; padding: 1.5rem 0; }
.trust-item { text-align: center; }
.trust-item strong { display: block; color: var(--blue); font-family: var(--serif); font-size: 1.05rem; }
.trust-item span { font-size: .85rem; color: var(--slate); }
@media (max-width: 720px) { .trust-items { grid-template-columns: repeat(2,1fr); gap: 1.2rem; } }

/* Router cards (home two-lane) */
.router-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.router-card { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); transition: transform .12s ease, border-color .15s ease, background .15s ease; }
.router-card:hover { transform: translateY(-3px); border-color: var(--blue); text-decoration: none; background: var(--surface-2); }
.router-card h3 { color: var(--ink); font-size: 1.4rem; }
.router-card p { color: var(--slate); }
.router-card .link-arrow { color: var(--blue); font-weight: 700; }
@media (max-width: 720px) { .router-grid { grid-template-columns: 1fr; } }

.link-arrow { font-weight: 700; color: var(--blue); }
.center-cta { text-align: center; margin-top: 2rem; }

/* "Why free" box */
.free-box { background: linear-gradient(160deg, #11424A, #0B2C33); border: 1px solid #1d5a5f; border-radius: var(--radius); padding: 1.8rem 2rem; max-width: 820px; margin: 0 auto; }
.free-box h3 { color: #eafaf7; }
.free-box p { color: #cfeee9; margin: 0; }

/* Pedigree */
.pedigree { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.4rem; align-items: center; }
.pedigree-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.8rem; }
.pc-row { display: flex; align-items: center; gap: .7rem; padding: .55rem 0; color: var(--ink); font-weight: 500; border-bottom: 1px solid var(--line-soft); }
.pc-row:last-child { border-bottom: 0; }
.pc-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex: 0 0 auto; }
@media (max-width: 760px) { .pedigree { grid-template-columns: 1fr; } }

/* Answer-first paragraph (GEO) */
.answer-first { font-size: 1.15rem; line-height: 1.55; color: var(--ink); max-width: 760px; margin-bottom: 2rem; }

/* FAQ */
.faq { max-width: 800px; }
.faq-item { border: 1px solid var(--line); border-radius: 10px; margin-bottom: .8rem; background: var(--surface); }
.faq-item summary { padding: 1rem 1.2rem; font-weight: 600; cursor: pointer; color: var(--ink); }
.faq-item p { padding: 0 1.2rem 1.1rem; color: var(--slate); margin: 0; }

/* Disclaimers */
.disclaimer-section { padding-top: 0; }
.disclaimer-box { background: var(--bg-soft); border: 1px solid var(--line-soft); border-radius: 10px; padding: 1.2rem 1.5rem; }
.disclaimer-box p { font-size: .82rem; color: var(--slate); margin-bottom: .6rem; }
.disclaimer-box p:last-child { margin-bottom: 0; }

/* Final CTA */
.final-cta { text-align: center; max-width: 680px; margin: 0 auto; }
.final-cta .hero-cta { justify-content: center; }

/* About */
.team-photo-ph { display: flex; align-items: center; justify-content: center; background: var(--surface-2); }
.license-block { margin-top: 1.8rem; padding: 1.2rem 1.5rem; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; color: var(--slate); font-size: .95rem; }
.muted { color: var(--slate); font-size: .85rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.4rem; align-items: start; }
.contact-info p { color: var(--ink); }
.contact-info a { color: var(--blue); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* States */
.state-body { max-width: 800px; }
.state-body h2 { margin-top: 1.6rem; }
.state-list { color: var(--slate); padding-left: 1.1rem; }
.state-list li { margin-bottom: .4rem; }

/* Quote page */
.quote-header { position: static; }
.quote-main { padding: clamp(2rem,5vw,4rem) 0 4rem; background: linear-gradient(180deg, var(--bg-soft), var(--bg) 70%); min-height: 70vh; }
.quote-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 2.6rem; align-items: start; }
.quote-pitch h1 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
.quote-pitch p { color: var(--slate); }
.quote-trust { font-size: .85rem; color: var(--slate); margin-top: 1rem; }
@media (max-width: 820px) { .quote-layout { grid-template-columns: 1fr; gap: 1.6rem; } }

/* 3-step form */
.form-progress { height: 6px; background: var(--input-bg); border-radius: 4px; overflow: hidden; margin-bottom: 1.4rem; }
.form-progress-bar { height: 100%; background: var(--blue); transition: width .25s ease; }
.form-step legend { font-family: var(--serif); font-weight: 700; font-size: 1.1rem; color: var(--ink); margin-bottom: 1rem; padding: 0; }
.form-step { border: 0; padding: 0; margin: 0; }
.field-label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: .5rem; }
.field-help { display: block; font-size: .8rem; color: var(--slate); margin-top: .3rem; }
.field-help.above { margin-top: 0; margin-bottom: .4rem; }
.radio-row { display: grid; grid-template-columns: repeat(3,1fr); gap: .6rem; }
.radio-card { position: relative; display: flex; align-items: center; justify-content: center; text-align: center; padding: .9rem .5rem; min-height: 56px; border: 1.5px solid var(--line); border-radius: 10px; cursor: pointer; font-weight: 600; font-size: .9rem; color: var(--ink); background: var(--input-bg); }
.radio-card input { position: absolute; opacity: 0; }
.radio-card:has(input:checked) { border-color: var(--blue); background: rgba(22,194,174,.12); color: var(--blue); }
.form-nav { display: flex; gap: .8rem; align-items: center; justify-content: space-between; margin-top: .4rem; }
.form-nav .btn-primary { margin-left: auto; }
@media (max-width: 480px) { .radio-row { grid-template-columns: 1fr; } }

.footer-license { font-weight: 600; color: #c7d6e4; }
.footer-links a { color: var(--blue); }

/* ---- Dropdown nav (product menus) ---- */
.nav-item.has-menu { position: relative; }
.caret { font-size: .7em; opacity: .7; margin-left: 1px; }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 232px;
  background: #0E2A30; border: 1px solid var(--line); border-radius: 11px;
  padding: .45rem; box-shadow: var(--shadow-lg);
  display: none; flex-direction: column; z-index: 60;
}
.nav-item.has-menu:hover .dropdown,
.nav-item.has-menu:focus-within .dropdown { display: flex; }
.dropdown a { color: var(--slate); padding: .58rem .8rem; border-radius: 7px; font-size: .92rem; white-space: nowrap; min-height: 0; }
.dropdown a:hover { background: var(--surface); color: var(--blue); text-decoration: none; }

/* Mobile nav grouping */
.mobile-nav .mnav-head { font-weight: 700; color: var(--ink); }
.mobile-nav .mnav-sub { padding-left: 1.1rem; font-weight: 400; color: var(--slate); font-size: .92rem; }

/* Product-page disclosure note */
.disclosure-note { font-size: .82rem; color: var(--slate); font-style: italic; border-left: 3px solid var(--gold); padding-left: .85rem; margin-top: 1.5rem; }
