/* A+ Driving School — site.css */
:root {
  --bg: #ffffff;          --bg-soft: #f4f7fb;      --surface: #ffffff;
  --text: #0f172a;        --text-muted: #475569;   --border: #e2e8f0;
  --navy: #0f1f3d;        --navy-2: #16294f;       --on-navy: #ffffff;   --on-navy-muted: #b7c3d9;
  --brand: #0a5cff;       --brand-hover: #0047d1;  --brand-soft: #e8f0ff; --brand-ink: #ffffff;
  --accent: #e02b20;      --gold: #f5b301;
  --grad: linear-gradient(135deg, #0a5cff, #3b82f6);
  --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 24px; --r-pill: 999px;
  --sh-sm: 0 1px 2px rgba(15,23,42,.06);
  --sh-md: 0 4px 12px rgba(15,23,42,.08), 0 1px 3px rgba(15,23,42,.06);
  --sh-lg: 0 20px 40px -12px rgba(15,23,42,.18);
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-6: 24px; --s-8: 32px;
  --s-12: 48px; --s-16: 64px; --s-24: 96px; --s-32: 128px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.2,.8,.2,1);
  --container: 1200px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b1020; --bg-soft: #0f172a; --surface: #131c31;
    --text: #e5e7eb; --text-muted: #9ca3af; --border: #24304a;
    --brand-soft: #16264a;
    --sh-md: 0 4px 12px rgba(0,0,0,.4), 0 1px 3px rgba(0,0,0,.3);
    --sh-lg: 0 20px 40px -12px rgba(0,0,0,.6);
  }
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font); font-size: 17px; line-height: 1.6;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brand-hover); }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -.02em; font-weight: 800; }
h1 { font-size: clamp(2.5rem, 5.5vw, 4.25rem); letter-spacing: -.03em; line-height: 1.05; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: var(--r-sm); }
.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; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--s-6); }
.section { padding-block: clamp(64px, 8vw, 112px); }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: var(--on-navy); }
.section-head { max-width: 720px; margin-bottom: var(--s-12); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--text-muted); font-size: 1.125rem; margin-top: var(--s-4); }
.section--navy .section-head p { color: var(--on-navy-muted); }
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: .8125rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand); margin-bottom: var(--s-4);
}
.section--navy .eyebrow { color: #7fb0ff; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  padding: 14px 24px; border-radius: var(--r-pill); font-weight: 600; font-size: 1rem;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--brand); color: var(--brand-ink); box-shadow: 0 8px 20px -8px rgba(10,92,255,.6); }
.btn--primary:hover { background: var(--brand-hover); color: var(--brand-ink); box-shadow: 0 12px 24px -8px rgba(10,92,255,.7); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--text-muted); color: var(--text); background: var(--surface); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { color: var(--navy); background: #f1f5f9; }
.btn--outline-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(8px); }
.btn--outline-light:hover { color: #fff; background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.6); }
.btn--sm { padding: 10px 18px; font-size: .9375rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; gap: var(--s-6); height: 76px; }
.brand { display: flex; align-items: center; gap: var(--s-3); color: var(--text); flex: none; }
.brand:hover { color: var(--text); }
.brand__logo { width: 52px; height: 52px; }
.brand__name { font-weight: 800; letter-spacing: -.02em; font-size: 1.125rem; line-height: 1.1; }
.brand__name span { color: var(--accent); }
.brand__tag { display: block; font-size: .75rem; font-weight: 500; color: var(--text-muted); letter-spacing: .02em; }
.nav { margin-left: auto; display: flex; align-items: center; gap: var(--s-6); }
.nav__list { display: flex; gap: var(--s-1); }
.nav__list a {
  display: block; white-space: nowrap; padding: 8px 12px; border-radius: var(--r-sm); color: var(--text-muted); font-weight: 500; font-size: .9375rem;
}
.nav__list a:hover { color: var(--text); background: var(--bg-soft); }
.nav__phone { display: inline-flex; }
.nav-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px; border-radius: var(--r-sm);
  border: 1px solid var(--border); background: var(--surface); color: var(--text); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 1100px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 76px; margin: 0;
    flex-direction: column; align-items: stretch; gap: var(--s-2);
    padding: var(--s-4) var(--s-6) var(--s-6);
    background: var(--bg); border-bottom: 1px solid var(--border); box-shadow: var(--sh-lg);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__list a { padding: 12px 8px; font-size: 1.0625rem; border-bottom: 1px solid var(--border); border-radius: 0; }
  .nav__phone { margin-top: var(--s-2); }
}
@media (max-width: 480px) { .brand__tag { display: none; } .brand__logo { width: 44px; height: 44px; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; color: #fff; overflow: hidden;
  min-height: min(88vh, 820px); display: flex; align-items: center;
  padding-block: clamp(96px, 12vw, 160px) clamp(128px, 14vw, 200px);
}
.hero__img { position: absolute; inset: 0; z-index: -2; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: 68% 50%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(12,26,56,.94) 0%, rgba(12,26,56,.82) 38%, rgba(12,26,56,.35) 68%, rgba(12,26,56,.15) 100%),
    linear-gradient(180deg, rgba(12,26,56,.25) 0%, rgba(12,26,56,0) 40%, rgba(12,26,56,.55) 100%);
}
.hero__content { max-width: 640px; }
.hero .eyebrow { color: #9cc0ff; }
.hero .eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 4px rgba(52,211,153,.25); }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: #9cc0ff; }
.hero__sub { margin-top: var(--s-6); font-size: clamp(1.0625rem, 1.5vw, 1.25rem); color: #d6e0f2; max-width: 56ch; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-8); }
.hero__trust { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-6); margin-top: var(--s-8); font-size: .9375rem; color: #d6e0f2; }
.hero__trust li { display: inline-flex; align-items: center; gap: var(--s-2); }
.hero__trust svg { width: 18px; height: 18px; color: #34d399; flex: none; }
@media (max-width: 720px) {
  /* Stacked hero: portrait photo on top fading into navy, copy below. Works on any phone height. */
  .hero { display: block; min-height: 0; padding: 0 0 88px; background: #0c1a38; }
  .hero::before { display: none; }
  .hero__img { position: relative; inset: auto; z-index: auto; height: clamp(280px, 46svh, 480px); overflow: hidden; }
  .hero__img img { object-position: 50% 48%; }
  .hero__img::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 40%; background: linear-gradient(180deg, rgba(12,26,56,0) 0%, rgba(12,26,56,.75) 60%, #0c1a38 100%); }
  .hero > .container { position: relative; margin-top: -64px; }
  .hero h1 { font-size: clamp(2.25rem, 10vw, 3rem); }
  .hero__sub { margin-top: var(--s-4); }
  .hero__ctas { margin-top: var(--s-6); }
  .hero__ctas .btn { width: 100%; }
  .hero__trust { margin-top: var(--s-6); gap: var(--s-2) var(--s-4); font-size: .875rem; }
}
}

/* Stats card overlapping hero */
.stats { position: relative; z-index: 2; margin-top: -72px; }
.stats__card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); box-shadow: var(--sh-lg);
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
}
.stat { padding: var(--s-6) var(--s-8); border-left: 1px solid var(--border); }
.stat:first-child { border-left: 0; }
.stat__num { font-size: clamp(1.6rem, 2.4vw, 2.1rem); font-weight: 800; letter-spacing: -.03em; color: var(--text); line-height: 1.1; }
.stat__num span { color: var(--brand); }
.stat__label { color: var(--text-muted); font-size: .9375rem; margin-top: var(--s-1); }
@media (max-width: 900px) {
  .stats__card { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: var(--s-4) var(--s-6); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--border); }
}
@media (max-width: 720px) { .stats { margin-top: -48px; } }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: var(--s-6); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1024px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); padding: var(--s-8);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.card p { color: var(--text-muted); }

/* Audience cards */
.audience { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.audience__img { aspect-ratio: 3 / 2; overflow: hidden; }
.audience__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.audience:hover .audience__img img { transform: scale(1.04); }
.audience__body { padding: var(--s-6) var(--s-8) var(--s-8); display: flex; flex-direction: column; gap: var(--s-3); flex: 1; }
.audience__body p { flex: 1; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }

/* Pricing */
.price-card { display: flex; flex-direction: column; gap: var(--s-4); position: relative; }
.price-card--featured { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand), var(--sh-lg); }
.price-card__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--r-pill); white-space: nowrap;
}
.price-card__name { font-size: 1.125rem; font-weight: 700; }
.price-card__meta { color: var(--text-muted); font-size: .9375rem; }
.price-card__price { font-size: 2.5rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.price-card__price small { font-size: 1rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0; margin-left: 6px; }
.price-card__save { display: inline-block; font-size: .8125rem; font-weight: 700; color: #047857; background: #d1fae5; border-radius: var(--r-pill); padding: 3px 10px; width: fit-content; }
.price-card__list { display: grid; gap: var(--s-2); align-content: start; color: var(--text-muted); font-size: .9375rem; flex: 1; }
.price-card__list li { display: flex; gap: var(--s-2); align-items: flex-start; }
.price-card__list svg { width: 18px; height: 18px; color: var(--brand); flex: none; margin-top: 3px; }
.pricing-note { text-align: center; color: var(--text-muted); font-size: .9375rem; margin-top: var(--s-8); }

/* Wide feature card (DMV test day) */
.feature-wide {
  margin-top: var(--s-12); display: grid; grid-template-columns: 1.1fr 1fr; overflow: hidden; padding: 0;
  background: var(--navy); color: var(--on-navy); border: 0;
}
.feature-wide:hover { transform: none; }
.feature-wide__img { min-height: 320px; }
.feature-wide__img img { width: 100%; height: 100%; object-fit: cover; }
.feature-wide__body { padding: clamp(32px, 4vw, 56px); display: flex; flex-direction: column; gap: var(--s-4); justify-content: center; }
.feature-wide__body p { color: var(--on-navy-muted); }
.feature-wide__body h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 800; }
.feature-wide__price { font-size: 2rem; font-weight: 800; letter-spacing: -.03em; }
.feature-wide__price small { font-size: 1rem; font-weight: 500; color: var(--on-navy-muted); margin-left: 6px; }
.feature-wide .price-card__list { color: #d6e0f2; }
.feature-wide .price-card__list svg { color: #34d399; }
@media (max-width: 860px) { .feature-wide { grid-template-columns: 1fr; } .feature-wide__img { min-height: 240px; } }

/* Why us */
.why { display: flex; flex-direction: column; gap: var(--s-3); }
.why__icon {
  width: 48px; height: 48px; border-radius: var(--r-md); display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand); margin-bottom: var(--s-2);
}
.why__icon svg { width: 24px; height: 24px; }

/* Split (how it works) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split__img { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); position: relative; }
.split__img img { width: 100%; height: 100%; object-fit: cover; }
.split__float {
  position: absolute; left: var(--s-6); bottom: var(--s-6); right: var(--s-6);
  background: rgba(255,255,255,.82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.6); border-radius: var(--r-lg); padding: var(--s-4) var(--s-6);
  display: flex; align-items: center; gap: var(--s-4); color: #0f172a;
}
.split__float strong { display: block; font-size: 1rem; }
.split__float span { font-size: .875rem; color: #475569; }
.split__float .stars { color: var(--gold); letter-spacing: 2px; font-size: 1.1rem; flex: none; }
.steps { display: grid; gap: var(--s-6); margin-top: var(--s-8); }
.step { display: flex; gap: var(--s-4); }
.step__num {
  flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--grad); color: #fff;
  font-weight: 800; display: grid; place-items: center; font-size: 1.05rem;
}
.step h3 { margin-bottom: var(--s-1); }
.step p { color: var(--text-muted); }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split__img { order: -1; } }

/* Reviews */
.review { display: flex; flex-direction: column; gap: var(--s-4); }
.review__stars { color: var(--gold); letter-spacing: 3px; font-size: 1.1rem; }
.review__quote { color: var(--text); font-size: 1.0625rem; flex: 1; }
.review__who { display: flex; align-items: center; gap: var(--s-3); }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--brand-soft); color: var(--brand);
  font-weight: 700; display: grid; place-items: center; flex: none;
}
.review__who strong { display: block; font-size: .9375rem; }
.review__who span { color: var(--text-muted); font-size: .875rem; }
.reviews__cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--s-4); margin-top: var(--s-12); }
.reviews__cta p { color: var(--text-muted); }

/* Service area */
.area { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.area__list { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.area__list li {
  padding: 8px 14px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06); color: #e2e8f0; font-size: .9375rem; font-weight: 500;
}
.area__list li.is-hq { background: var(--brand); border-color: var(--brand); color: #fff; }
.area p { color: var(--on-navy-muted); margin-top: var(--s-4); }
.area .btn { margin-top: var(--s-8); }
@media (max-width: 860px) { .area { grid-template-columns: 1fr; } }

/* Online courses */
.course { display: flex; gap: var(--s-6); align-items: flex-start; }
.course__icon { flex: none; width: 56px; height: 56px; border-radius: var(--r-md); background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; }
.course__icon svg { width: 28px; height: 28px; }
.course__body { display: flex; flex-direction: column; gap: var(--s-3); flex: 1; }
.course__price { font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em; }
.course__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-2); }
@media (max-width: 480px) { .course { flex-direction: column; } }

/* FAQ */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: var(--s-3); }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 0 var(--s-6); transition: box-shadow .2s var(--ease); }
.faq details[open] { box-shadow: var(--sh-md); }
.faq summary {
  list-style: none; cursor: pointer; padding: var(--s-4) 0; font-weight: 600; font-size: 1.0625rem;
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-4);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--brand-soft);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 14px no-repeat, linear-gradient(#000,#000);
  -webkit-mask-composite: xor; mask-composite: exclude;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 14px no-repeat, linear-gradient(#000,#000);
  background: var(--brand); transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__a { padding: 0 0 var(--s-4); color: var(--text-muted); max-width: 65ch; }

/* Contact / CTA */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.contact__info h2 { color: #fff; }
.contact__info > p { color: var(--on-navy-muted); font-size: 1.125rem; margin-top: var(--s-4); max-width: 48ch; }
.contact__lines { display: grid; gap: var(--s-4); margin-top: var(--s-8); }
.contact__line { display: flex; gap: var(--s-4); align-items: flex-start; }
.contact__line svg { width: 22px; height: 22px; color: #7fb0ff; flex: none; margin-top: 3px; }
.contact__line strong { display: block; color: #fff; }
.contact__line span, .contact__line a { color: var(--on-navy-muted); }
.contact__line a:hover { color: #fff; }
.contact__line a.big { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.form {
  background: var(--surface); color: var(--text); border-radius: var(--r-xl); padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--sh-lg); display: grid; gap: var(--s-4);
}
.form h3 { font-size: 1.375rem; font-weight: 800; }
.form > p { color: var(--text-muted); font-size: .9375rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.field { display: grid; gap: 6px; }
.field label { font-size: .875rem; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--text); background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--r-sm); padding: 12px 14px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(10,92,255,.15); }
.field textarea { min-height: 96px; resize: vertical; }
.form__fine { font-size: .8125rem; color: var(--text-muted); text-align: center; }
.honey { position: absolute; left: -9999px; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .form__row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: #0a162e; color: var(--on-navy-muted); padding-block: var(--s-16) var(--s-8); font-size: .9375rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--s-12); }
.footer__brand .brand { color: #fff; }
.footer__brand .brand__tag { color: var(--on-navy-muted); }
.footer__brand p { margin-top: var(--s-4); max-width: 36ch; }
.footer__col h4 { color: #fff; font-size: .9375rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: var(--s-4); font-weight: 700; }
.footer__col ul { display: grid; gap: var(--s-2); }
.footer__col a { color: var(--on-navy-muted); }
.footer__col a:hover { color: #fff; }
.footer__social { display: flex; gap: var(--s-2); margin-top: var(--s-6); }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; color: #fff;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.footer__social a:hover { background: var(--brand); border-color: var(--brand); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom {
  margin-top: var(--s-12); padding-top: var(--s-6); border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-3); font-size: .875rem;
}
.footer__bottom a { color: var(--on-navy-muted); }
.footer__bottom a:hover { color: #fff; }
@media (max-width: 960px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-8); } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

/* Mobile call bar */
.callbar { display: none; }
@media (max-width: 720px) {
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    padding: var(--s-3) var(--s-4) calc(var(--s-3) + env(safe-area-inset-bottom));
    background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
  }
  body { padding-bottom: 80px; }
}

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .08s; }
.js .reveal[data-delay="2"] { transition-delay: .16s; }
.js .reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* Stats: dd first, dt label second (no inline styles) */
.stats__card { margin: 0; }
.stat { display: flex; flex-direction: column; }
.stat dd { margin: 0; }
.stat__label { order: 2; }
.hero__ctas--tight { margin-top: var(--s-2); }

/* ---------- Inner pages ---------- */
.page-hero { background: var(--navy); color: #fff; padding-block: clamp(56px, 7vw, 96px); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -10%; top: -40%; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(closest-side, rgba(10,92,255,.35), transparent 70%); pointer-events: none; }
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); color: #fff; max-width: 20ch; }
.page-hero .eyebrow { color: #7fb0ff; }
.page-hero__sub { color: var(--on-navy-muted); font-size: 1.125rem; max-width: 60ch; margin-top: var(--s-4); }
.page-hero .hero__ctas { margin-top: var(--s-8); }
.page-hero .hero__trust { margin-top: var(--s-6); }
.breadcrumb { font-size: .875rem; color: var(--on-navy-muted); margin-bottom: var(--s-4); display: flex; gap: var(--s-2); flex-wrap: wrap; }
.breadcrumb a { color: var(--on-navy-muted); }
.breadcrumb a:hover { color: #fff; }

.prose { max-width: 72ch; }
.prose h2 { font-size: 1.75rem; margin-top: var(--s-12); }
.prose h3 { margin-top: var(--s-8); }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p, .prose ul, .prose ol { margin-top: var(--s-4); }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-top: var(--s-2); }
.prose li::marker { color: var(--brand); font-weight: 700; }
.prose img { border-radius: var(--r-lg); margin-top: var(--s-8); box-shadow: var(--sh-md); }
.prose .lead { font-size: 1.25rem; color: var(--text-muted); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.post-meta { color: var(--text-muted); font-size: .9375rem; display: flex; gap: var(--s-3); flex-wrap: wrap; align-items: center; }
.post-meta .review__avatar { width: 32px; height: 32px; font-size: .875rem; }

.checklist { display: grid; gap: var(--s-3); }
.checklist li { display: flex; gap: var(--s-3); align-items: flex-start; }
.checklist svg { width: 22px; height: 22px; color: var(--brand); flex: none; margin-top: 2px; }
.checklist--tight { gap: var(--s-2); }

.team { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-8); }
.team__card { display: grid; grid-template-columns: 180px 1fr; gap: var(--s-6); padding: var(--s-6); }
.team__card:hover { transform: none; }
.team__photo { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 3 / 4; }
.team__photo img { width: 100%; height: 100%; object-fit: cover; }
.team__role { color: var(--brand); font-weight: 600; font-size: .9375rem; margin-bottom: var(--s-3); }
.team__card p { color: var(--text-muted); margin-top: var(--s-3); }
@media (max-width: 900px) { .team { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .team__card { grid-template-columns: 1fr; } .team__photo { max-width: 240px; } }

.post-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.post-card__img { aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-soft); }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: var(--s-6) var(--s-8) var(--s-8); display: flex; flex-direction: column; gap: var(--s-3); }
.post-card__body p { flex: 1; }
.post-card h3 a { color: var(--text); }
.post-card h3 a:hover { color: var(--brand); }

.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-8); flex-wrap: wrap; }
.cta-band__inner > div:first-child { max-width: 56ch; }
.cta-band h2 { color: #fff; }
.cta-band p:not(.eyebrow) { color: var(--on-navy-muted); font-size: 1.125rem; margin-top: var(--s-4); }
.cta-band .hero__ctas { margin-top: 0; }
@media (max-width: 720px) { .cta-band .hero__ctas { width: 100%; } .cta-band .hero__ctas .btn { width: 100%; } }

.two-col { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.two-col .sticky { position: sticky; top: 100px; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } .two-col .sticky { position: static; } }

.info-box { background: var(--brand-soft); border: 1px solid color-mix(in srgb, var(--brand) 25%, transparent); border-radius: var(--r-lg); padding: var(--s-6); }
.info-box h3 { margin-bottom: var(--s-2); }
.info-box p { color: var(--text-muted); }

.section--tight { padding-block: clamp(48px, 5vw, 72px); }
.mt-8 { margin-top: var(--s-8); }
.mt-12 { margin-top: var(--s-12); }
.big-404 { font-size: clamp(5rem, 18vw, 10rem); font-weight: 800; line-height: 1; letter-spacing: -.05em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Utilities */
.mt-0 { margin-top: 0 !important; } .mt-3 { margin-top: var(--s-3); } .mt-4 { margin-top: var(--s-4); } .mt-6 { margin-top: var(--s-6); }
.mb-4 { margin-bottom: var(--s-4); } .mx-auto { margin-inline: auto; } .text-center { text-align: center; } .text-muted { color: var(--text-muted); } .jc-center { justify-content: center; }
.contact__info h1 { color: #fff; font-size: clamp(2.25rem, 4.5vw, 3.5rem); }
.contact__info .breadcrumb { margin-bottom: var(--s-6); }
.form__title { font-size: 1.375rem; font-weight: 800; }
.audience[href] { color: inherit; }
.audience[href] h3 { color: var(--brand); }

.form__error { color: #b91c1c; background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--r-sm); padding: var(--s-3) var(--s-4); font-size: .9375rem; }
