/* ==========================================================================
   American Drive — design system
   Display: Overpass (derived from US Federal Highway Administration signage)
   Body/UI: Inter
   ========================================================================== */

:root {
  /* Brief palette */
  --primary: #0B3A66;
  --secondary: #1E73BE;
  --text: #17202A;
  --muted: #5D6B7F;
  --background: #FFFFFF;
  --light-section: #F5F7FA;
  --border: #E2E8F0;

  /* Extensions (states + signage motif) */
  --primary-900: #072742;
  --secondary-700: #175C97;
  --secondary-050: #EAF2FB;
  --signal: #0F7A5A;      /* verified / positive, highway-guide green */
  --signal-050: #E8F5F0;
  --warn: #9A5B00;        /* advisory, signage amber */
  --warn-050: #FFF6E6;
  --danger: #B3261E;
  --danger-050: #FDECEA;
  --text-inverse: #FFFFFF;

  /* Spacing scale (8px base) */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px; --s5: 24px;
  --s6: 32px; --s7: 48px; --s8: 64px; --s9: 88px; --s10: 120px;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(11, 58, 102, .06), 0 1px 3px rgba(11, 58, 102, .08);
  --shadow: 0 4px 12px rgba(11, 58, 102, .07), 0 2px 4px rgba(11, 58, 102, .05);
  --shadow-lg: 0 18px 40px rgba(11, 58, 102, .12), 0 4px 12px rgba(11, 58, 102, .06);

  --font-display: "Overpass", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw: 1200px;
  --maxw-narrow: 760px;
  --header-h: 76px;
}

/* --------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--background);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
[id] { scroll-margin-top: 92px; }
a { color: var(--secondary-700); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--primary);
  margin: 0 0 var(--s4);
  letter-spacing: -0.015em;
  font-weight: 700;
}
h1 { font-size: clamp(34px, 5.2vw, 60px); line-height: 1.06; }
h2 { font-size: clamp(27px, 3.6vw, 40px); line-height: 1.12; }
h3 { font-size: clamp(20px, 2.1vw, 26px); line-height: 1.2; }
h4 { font-size: 18px; line-height: 1.3; }
p  { margin: 0 0 var(--s4); }
ul, ol { margin: 0 0 var(--s4); padding-left: 1.25em; }
li { margin-bottom: var(--s2); }
strong { font-weight: 650; }

:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: var(--s4); top: -100px; z-index: 200;
  background: var(--primary); color: #fff; padding: var(--s3) var(--s5);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); font-weight: 600;
}
.skip-link:focus { top: 0; }

.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;
}

/* ------------------------------------------------------------- layout */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s5); }
.wrap--narrow { max-width: var(--maxw-narrow); }
.section { padding: var(--s9) 0; }
.section--tight { padding: var(--s7) 0; }
.section--light { background: var(--light-section); }
.section--navy { background: var(--primary); color: #E8EEF5; }
.section--navy h2, .section--navy h3 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: var(--s7); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 18px; margin: 0; }
.section--navy .section-head p { color: #B9C9DA; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--secondary-700); margin: 0 0 var(--s3);
}
.section--navy .eyebrow { color: #7FB2E4; }

.grid { display: grid; gap: var(--s5); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ------------------------------------------------------------ buttons */
.btn {
  white-space: nowrap;
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  font-family: var(--font-display); font-weight: 700; font-size: 16px; line-height: 1;
  padding: 15px var(--s5); border-radius: var(--radius-sm); border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none !important; transition: background-color .15s ease, border-color .15s ease, color .15s ease;
  min-height: 48px;
}
.btn--primary { background: var(--secondary); color: #fff; }
.btn--primary:hover { background: var(--secondary-700); }
.btn--primary:active { background: var(--primary); }
.btn--dark { background: var(--primary); color: #fff; }
.btn--dark:hover { background: var(--primary-900); }
.btn--ghost { background: #fff; color: var(--primary); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--secondary); color: var(--secondary-700); }
.btn--onnavy { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.45); }
.btn--onnavy:hover { background: rgba(255,255,255,.16); }
.btn--lg { font-size: 18px; padding: 18px var(--s6); min-height: 56px; }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; }

.link-arrow { font-family: var(--font-display); font-weight: 700; color: var(--secondary-700); }
.link-arrow::after { content: " →"; }

/* ------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header .wrap { max-width: 1320px; }
.header-inner { display: flex; align-items: center; gap: var(--s5); height: var(--header-h); }
.site-header.is-scrolled .header-inner { height: 64px; transition: height .18s ease; }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none !important; flex: 0 0 auto; }
.brand__mark { width: 34px; height: 34px; flex: 0 0 34px; }
.brand__name {
  font-family: var(--font-display); font-weight: 800; letter-spacing: .04em;
  font-size: 17px; color: var(--primary); text-transform: uppercase; white-space: nowrap;
}
.brand__name span { color: var(--secondary); }

.nav { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.nav a {
  font-size: 15.5px; font-weight: 550; color: var(--text); text-decoration: none;
  padding: 8px 2px; border-bottom: 2px solid transparent; white-space: nowrap;
}
.nav a:hover { color: var(--secondary-700); text-decoration: none; border-bottom-color: var(--secondary); }
.nav a[aria-current="page"] { color: var(--primary); border-bottom-color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: var(--s3); margin-left: var(--s5); }
.support-cta { display: inline-flex; flex-direction: column; line-height: 1.15; font-size: 12px; color: var(--muted); text-decoration: none; }
.support-cta strong { font-family: var(--font-display); font-size: 15px; color: var(--primary); }
.support-cta:hover strong { color: var(--secondary-700); }

.nav-toggle {
  display: none; margin-left: auto; width: 46px; height: 46px; align-items: center; justify-content: center;
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-sm); cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--primary); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--primary);
}
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ------------------------------------------------------------ mobile bottom CTA */
.sticky-cta { display: none; }

/* --------------------------------------------------------------- hero */
.hero { position: relative; background: var(--primary-900); color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img, .hero__media svg { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(96deg, rgba(7,39,66,.92) 0%, rgba(7,39,66,.74) 46%, rgba(7,39,66,.34) 100%);
}
.hero__inner { position: relative; padding: var(--s9) 0 calc(var(--s10) + 40px); max-width: 720px; }
.hero h1 { color: #fff; margin-bottom: var(--s5); }
.hero__sub { font-size: clamp(17px, 2vw, 20px); color: #C9DAEA; margin-bottom: var(--s6); max-width: 44em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s3); }
.hero__note {
  margin-top: var(--s6); font-size: 14.5px; color: #A9C1D6; display: flex; gap: 10px; align-items: flex-start;
  max-width: 48em;
}
.hero__note svg { flex: 0 0 18px; margin-top: 2px; }
.hero--compact .hero__inner { padding: var(--s8) 0 calc(var(--s9) + 30px); }

/* ------------------------------------------------------- search card */
.search-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: var(--s6);
}
.search-card--overlap { margin-top: -96px; position: relative; z-index: 5; }
.search-card__title { font-size: 24px; margin-bottom: var(--s2); }
.search-card__hint { color: var(--muted); font-size: 15px; margin-bottom: var(--s5); }

.field-grid { display: grid; gap: var(--s4); grid-template-columns: 2fr 1fr 1fr 1fr 1fr; align-items: end; }
.field-grid--drop { grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: var(--s4); }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.form-grid .field { min-width: 0; }
.field > label { overflow-wrap: break-word; }
.field > label { font-size: 13.5px; font-weight: 650; color: var(--primary); letter-spacing: .01em; }
.field input, .field select {
  font-family: var(--font-body); font-size: 16px; color: var(--text);
  padding: 13px var(--s3); border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: #fff; width: 100%; min-height: 50px;
}
.field input:hover, .field select:hover { border-color: #C7D3E0; }
.field input:focus-visible, .field select:focus-visible { border-color: var(--secondary); outline-offset: 0; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--danger); background: var(--danger-050); }
.field__error { font-size: 13px; color: var(--danger); font-weight: 600; min-height: 0; }
.field__error:empty { display: none; }

.checkline { display: flex; align-items: center; gap: 10px; margin-top: var(--s4); font-size: 15px; }
.checkline input { width: 20px; height: 20px; accent-color: var(--secondary); }

.search-actions { display: flex; align-items: center; gap: var(--s4); margin-top: var(--s5); flex-wrap: wrap; }
.search-actions .btn { flex: 0 0 auto; }
.search-foot { font-size: 13.5px; color: var(--muted); margin: 0; }

.form-alert {
  display: none; gap: 10px; align-items: flex-start; padding: var(--s3) var(--s4);
  border-radius: var(--radius-sm); font-size: 15px; margin-bottom: var(--s4); border: 1px solid;
}
.form-alert.is-visible { display: flex; }
.form-alert--error { background: var(--danger-050); border-color: #F0C0BC; color: #7A1912; }
.form-alert--ok { background: var(--signal-050); border-color: #BFE3D5; color: #0B5A42; }
.form-alert--info { background: var(--warn-050); border-color: #F0DDB8; color: #6E4200; }

.is-loading .btn--primary { position: relative; color: transparent !important; }
.is-loading .btn--primary::after {
  content: ""; position: absolute; width: 18px; height: 18px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.4); border-top-color: #fff; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------- trust strip */
.trust-strip { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: var(--s5); padding: var(--s7) 0; }
.trust-item { display: flex; gap: var(--s3); align-items: flex-start; }
.trust-item > div { min-width: 0; }
.trust-item svg { flex: 0 0 26px; color: var(--secondary); }
.trust-item h3 { font-size: 16px; margin: 0 0 2px; }
.trust-item p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* --------------------------------------------------------------- cards */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .16s ease, border-color .16s ease;
}
.card:hover { box-shadow: var(--shadow); border-color: #CBD9E6; }
.card__media { aspect-ratio: 16 / 10; background: var(--light-section); }
.card__media img, .card__media svg { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: var(--s5); display: flex; flex-direction: column; gap: var(--s2); flex: 1; }
.card__body h3 { margin: 0; font-size: 20px; }
.card__body p { margin: 0; color: var(--muted); font-size: 15px; }
.card__body .link-arrow { margin-top: auto; padding-top: var(--s3); }
.card a.stretched::after { content: ""; position: absolute; inset: 0; }
.card { position: relative; }
.card__kicker { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.plain-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: var(--s5); box-shadow: var(--shadow-sm);
}
.plain-card h3 { font-size: 19px; margin-bottom: var(--s2); }
.plain-card p:last-child { margin-bottom: 0; }
.plain-card__icon { color: var(--secondary); margin-bottom: var(--s3); }

/* ------------------------------------------------------- how it works */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: var(--s5); position: relative; }
.steps::before {
  content: ""; position: absolute; top: 27px; left: 8%; right: 8%; height: 3px;
  background: repeating-linear-gradient(90deg, #C6D6E6 0 22px, transparent 22px 40px);
}
.step { position: relative; }
.step__marker {
  width: 56px; height: 56px; border-radius: 10px; background: var(--primary); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--s4);
  border: 3px solid #fff; box-shadow: 0 0 0 3px var(--primary);
}
.step h3 { font-size: 20px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15.5px; margin: 0; }

.disclosure {
  margin-top: var(--s7); background: var(--secondary-050); border: 1px solid #C7DDF3;
  border-left: 5px solid var(--secondary); border-radius: var(--radius);
  padding: var(--s5) var(--s6); display: flex; gap: var(--s4); align-items: flex-start;
}
.disclosure svg { flex: 0 0 24px; color: var(--secondary-700); margin-top: 2px; }
.disclosure h3 { font-size: 18px; margin-bottom: 6px; }
.disclosure p { margin: 0; font-size: 16px; color: #1F3A52; }

.notice {
  background: var(--warn-050); border: 1px solid #F0DDB8; border-radius: var(--radius);
  padding: var(--s4) var(--s5); font-size: 15px; color: #5F3A00;
}
.notice p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------ reviews */
.reviews-empty {
  border: 2px dashed var(--border); border-radius: var(--radius); background: #fff;
  padding: var(--s8) var(--s5); text-align: center; color: var(--muted);
}
.reviews-empty h3 { color: var(--primary); margin-bottom: var(--s2); }
.review { background:#fff; border:1px solid var(--border); border-radius: var(--radius); padding: var(--s5); }
.review__head { display:flex; justify-content:space-between; gap: var(--s3); align-items:baseline; margin-bottom: var(--s3); }
.review__name { font-family: var(--font-display); font-weight:700; color: var(--primary); }
.review__meta { font-size:13px; color: var(--muted); }

/* ---------------------------------------------------------------- faq */
.faq { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 650; font-size: 18px; color: var(--primary);
  padding: var(--s5) 44px var(--s5) 0; position: relative; line-height: 1.35;
}
.faq__q:hover { color: var(--secondary-700); }
.faq__q::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 12px; height: 12px;
  border-right: 2.5px solid currentColor; border-bottom: 2.5px solid currentColor;
  transform: translateY(-70%) rotate(45deg); transition: transform .18s ease;
}
.faq__q[aria-expanded="true"]::after { transform: translateY(-30%) rotate(-135deg); }
.faq__a { padding: 0 40px var(--s5) 0; color: #33465C; font-size: 16.5px; }
.faq__a[hidden] { display: none; }
.faq__a p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------ footer */
.site-footer { background: var(--primary-900); color: #B9C9DA; padding: var(--s9) 0 var(--s5); font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: var(--s6); }
.site-footer h2, .site-footer h3 { color: #fff; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: var(--s4); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #B9C9DA; }
.site-footer a:hover { color: #fff; }
.footer-brand p { max-width: 34em; }
.footer-contact { margin-top: var(--s5); }
.footer-contact dt { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: #7E97AE; }
.footer-contact dd { margin: 0 0 var(--s3); color: #E4ECF3; }
.footer-legal {
  margin-top: var(--s8); padding-top: var(--s5); border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: var(--s4); justify-content: space-between; font-size: 13.5px; color: #8FA6BC;
}
.placeholder {
  background: rgba(255,255,255,.10); border: 1px dashed rgba(255,255,255,.35);
  padding: 1px 7px; border-radius: 4px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12.5px;
}
.placeholder--light { background: #FFF6E6; border-color: #E0C48A; color: #6E4200; }

/* --------------------------------------------------------- breadcrumbs */
.crumbs { font-size: 14px; color: var(--muted); padding: var(--s4) 0 0; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.crumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #B6C3D1; }

/* ------------------------------------------------------------- prose */
.prose h2 { margin-top: var(--s7); }
.prose h3 { margin-top: var(--s6); }
.prose > :first-child { margin-top: 0; }
.prose ul { padding-left: 1.2em; }

/* --------------------------------------------------------- ads landing */
.lp-header { border-bottom: 1px solid var(--border); background: #fff; }
.lp-header .header-inner { justify-content: space-between; gap: 12px; }
.lp-header .support-cta { display: flex; min-width: 0; align-items: flex-end; text-align: right; }
.lp-header .support-cta strong { overflow-wrap: anywhere; font-size: 14px; }
@media (max-width: 400px) { .lp-header .support-cta { font-size: 11px; } .lp-header .support-cta strong { font-size: 12.5px; } }
.lp-foot { background: var(--light-section); padding: var(--s6) 0; font-size: 14px; color: var(--muted); }
.lp-foot a { color: var(--muted); text-decoration: underline; }

/* --------------------------------------------------- results / states */
.state {
  text-align: center; max-width: 620px; margin: 0 auto; padding: var(--s8) 0;
}
.state__icon { margin: 0 auto var(--s5); color: var(--secondary); }
.state__actions { display: flex; flex-wrap: wrap; gap: var(--s3); justify-content: center; margin-top: var(--s5); }
.recap {
  background: var(--light-section); border: 1px solid var(--border); border-radius: var(--radius);
  padding: var(--s5); text-align: left; margin: var(--s5) 0;
}
.recap dl { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--s3) var(--s5); margin: 0; }
.recap dt { font-size: 12.5px; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.recap dd { margin: 0; font-weight: 600; color: var(--primary); }

.offer-summary { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-align: left; }
.offer-summary__head { background: var(--primary); color: #fff; padding: var(--s5); }
.offer-summary__head h2 { color: #fff; margin: 0; font-size: 22px; }
.offer-summary table { width: 100%; border-collapse: collapse; }
.offer-summary th, .offer-summary td { text-align: left; padding: var(--s3) var(--s5); border-bottom: 1px solid var(--border); font-size: 15.5px; vertical-align: top; }
.offer-summary th { width: 42%; color: var(--muted); font-weight: 600; }
.offer-summary tr:last-child th, .offer-summary tr:last-child td { border-bottom: 0; }

/* ------------------------------------------------------ contact form */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--s4); }
.field--full { grid-column: 1 / -1; }
.field textarea {
  font-family: var(--font-body); font-size: 16px; padding: 13px var(--s3);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm); min-height: 150px; resize: vertical; width: 100%;
}
.field textarea:focus-visible { border-color: var(--secondary); }
.field textarea[aria-invalid="true"] { border-color: var(--danger); background: var(--danger-050); }

/* -------------------------------------------------------- help search */
.help-search { position: relative; max-width: 560px; }
.help-search input { padding-left: 44px; }
.help-search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.help-cat { margin-bottom: var(--s7); }
.help-cat[hidden] { display: none; }

/* ------------------------------------------------------ split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s8); align-items: center; }
.split > * { min-width: 0; }
.checklist { list-style: none; padding: 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: var(--s3); }
.checklist svg { flex: 0 0 20px; color: var(--signal); margin-top: 3px; }


/* ---------------------------------------------- fleet / examples */
.card__example { font-size: 14px; color: var(--muted); margin: 0; }
.card__example span { font-style: italic; }
.or-similar {
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  color: var(--muted); letter-spacing: 0; text-transform: none; white-space: nowrap;
}
.card__media img, .card__media picture { width: 100%; height: 100%; }
.card__media picture { display: block; }
.card__media picture img { object-fit: cover; }
.hero__media picture { display: block; width: 100%; height: 100%; }
.hero__media picture img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------------- responsive */
@media (max-width: 1400px) {
  .nav { gap: 18px; }
  .nav a { font-size: 15px; }
  .header-actions { margin-left: var(--s4); gap: var(--s3); }
  .header-actions .btn { padding: 13px 16px; font-size: 15px; }
  .support-cta { display: none; }
}

@media (max-width: 1180px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0; background: #fff;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg); padding: var(--s3) var(--s5) var(--s5);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.is-open { display: flex; }
  .nav a { white-space: normal; }
  .nav a { padding: 15px 0; border-bottom: 1px solid var(--border); }
  .nav a:hover { border-bottom-color: var(--border); }
  .header-actions { display: none; }
  .nav .header-actions { display: flex; flex-direction: column; align-items: stretch; margin: var(--s4) 0 0; gap: var(--s3); }
  .nav .support-cta { display: flex; }
  .site-header { position: sticky; }
  .header-inner { position: relative; }

  .field-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .field-grid .field--location { grid-column: 1 / -1; }
  .steps { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .steps::before { display: none; }
  .split { grid-template-columns: 1fr; gap: var(--s6); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s6); }
  .trust-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 720px) {
  body { font-size: 16px; padding-bottom: 76px; }
  .section { padding: var(--s7) 0; }
  .wrap { padding: 0 var(--s4); }
  .grid-2, .grid-3, .grid-4, .trust-strip { grid-template-columns: 1fr; }
  .search-card { padding: var(--s5) var(--s4); }
  .search-card--overlap { margin-top: -60px; }
  .field-grid, .field-grid--drop { grid-template-columns: 1fr; }
  .hero__inner { padding: var(--s7) 0 var(--s8); }
  .hero__actions .btn, .search-actions .btn, .state__actions .btn { width: 100%; }
  .search-actions { flex-direction: column; align-items: stretch; }
  .form-grid { grid-template-columns: 1fr; }
  .recap dl { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s5); }
  .site-footer { padding-bottom: 96px; }
  .offer-summary th, .offer-summary td { display: block; width: 100%; padding: var(--s2) var(--s4); }
  .offer-summary th { padding-top: var(--s3); border-bottom: 0; }

  .sticky-cta {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    background: rgba(255,255,255,.97); border-top: 1px solid var(--border);
    padding: 10px var(--s4) calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -6px 20px rgba(11,58,102,.10);
  }
  .sticky-cta .btn { width: 100%; }
  .sticky-cta__row { display: flex; gap: var(--s2); }
  .sticky-cta__row .btn--ghost { flex: 0 0 54px; padding: 0; }
}

@media (max-width: 380px) {
  .wrap { padding: 0 14px; }
  .brand__name { font-size: 15px; }
}

@media print {
  .site-header, .sticky-cta, .site-footer { display: none; }
}
