/* ===== Design tokens ===== */
:root {
  --aaa-blue: #003a8c;      /* AAA deep blue */
  --aaa-blue-700: #002a66;
  --aaa-red: #d8232a;       /* AAA red */
  --aaa-red-700: #b81d24;
  --ink: #16202e;
  --muted: #5a6b7e;
  --line: #e4e9f0;
  --bg: #ffffff;
  --bg-alt: #f4f7fb;
  --bg-deep: #0a1f44;
  --bg-deepest: #07142e;
  --gold: #ffb300;
  --gold-bright: #ffd24a;    /* brighter gold for stats/figures on dark */
  --ink-2: #2c3e52;          /* darker body text on light surfaces */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 14px 40px rgba(10, 31, 68, 0.12);
  --shadow-sm: 0 4px 16px rgba(10, 31, 68, 0.08);
  --shadow-lg: 0 28px 70px rgba(10, 31, 68, 0.18);
  --ring: 0 0 0 3px rgba(0, 58, 140, 0.30);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3 { line-height: 1.12; letter-spacing: -0.025em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.45rem); font-weight: 800; }
p { margin: 0 0 1rem; }
a { color: var(--aaa-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
.muted { color: var(--muted); }
.center { text-align: center; }
.container { width: min(1120px, 92vw); margin: 0 auto; }
.container.narrow { width: min(760px, 92vw); }

/* Accessible focus ring */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid transparent; box-shadow: var(--ring);
}

/* Skip to content link — visible only on keyboard focus */
.skip-link {
  position: fixed;
  left: 50%;
  top: .75rem;
  transform: translate(-50%, -150%);
  z-index: 200;
  padding: .7rem 1.1rem;
  background: var(--aaa-blue);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform .18s ease;
}
.skip-link:focus { transform: translate(-50%, 0); text-decoration: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: linear-gradient(180deg, #e23a40 0%, var(--aaa-red) 60%, var(--aaa-red-700) 100%);
  color: #fff; font-weight: 700;
  padding: .72rem 1.35rem; border-radius: 999px; border: 1px solid var(--aaa-red-700);
  cursor: pointer; font-size: 1rem; line-height: 1.1;
  box-shadow: 0 4px 14px rgba(216, 35, 42, 0.28);
  transition: transform .14s ease, box-shadow .14s ease, filter .14s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(216, 35, 42, 0.34); text-decoration: none; filter: brightness(1.04); }
.btn:active { transform: translateY(0); box-shadow: 0 3px 10px rgba(216, 35, 42, 0.3); }
.btn-lg { padding: .95rem 1.8rem; font-size: 1.08rem; }
.btn-sm { padding: .48rem 1.05rem; font-size: .95rem; box-shadow: 0 3px 10px rgba(216,35,42,.24); }
.btn-block { display: flex; width: 100%; }
.btn-ghost {
  background: #fff; color: var(--aaa-blue); border: 1px solid #c6d2e6; box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { background: var(--aaa-blue); color: #fff; border-color: var(--aaa-blue); filter: none; box-shadow: 0 10px 24px rgba(0,58,140,.26); }

/* ===== Icons & graphics ===== */
.svgi { width: 1.1em; height: 1.1em; flex: none; vertical-align: -.18em; }
.btn .svgi { width: 1.15rem; height: 1.15rem; margin-right: -.1rem; }
.brand-mark svg { width: 1.7rem; height: 1.7rem; color: var(--aaa-blue); display: block; }
.contact-list li { display: flex; align-items: center; gap: .7rem; }
.contact-list .svgi { width: 1.15rem; height: 1.15rem; color: #ff8b8f; }
.social-row a svg { width: 1.15rem; height: 1.15rem; display: block; }
.hero-art {
  position: absolute; right: max(2.5vw, 1rem); bottom: 26px; width: clamp(170px, 20vw, 250px);
  height: auto; z-index: 1; pointer-events: none;
  filter: drop-shadow(0 18px 22px rgba(10,31,68,.18));
}

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: .5rem 0; }
.brand { display: flex; align-items: center; gap: .55rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-mark { font-size: 1.6rem; display: inline-flex; align-items: center; }
.brand-logo { height: 46px; width: auto; max-width: 150px; object-fit: contain; display: block; }
.brand-divider { width: 1px; align-self: stretch; min-height: 32px; margin: 2px .15rem; background: var(--line); }
/* Stacked AAA AutoSource logo — shown small (never upscaled) so the low-res source stays crisp. */
.badge-logo { height: 56px; width: auto; max-width: 132px; object-fit: contain; display: block; }
.hero-badge:has(.badge-logo) { padding: .55rem .8rem; }
/* Footer: dark background, so the dark-blue wordmark needs a light chip to stay legible. */
.footer-logo { display: none; }
.footer-logo.has-logo {
  display: inline-block; margin-top: .85rem;
  background: #fff; padding: .5rem .7rem; border-radius: 10px; box-shadow: var(--shadow-sm);
}
.footer-logo-img { height: 52px; width: auto; max-width: 150px; object-fit: contain; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { color: var(--ink); font-size: 1.08rem; letter-spacing: -.01em; }
.brand-text small { color: var(--muted); font-size: .76rem; }
.nav-links { display: flex; align-items: center; gap: 1.4rem; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: .95rem; }
.nav-links a:hover { color: var(--aaa-red); text-decoration: none; }
.nav-toggle { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; margin-right: -.4rem; background: none; border: 0; cursor: pointer; color: var(--aaa-blue); line-height: 0; }
.nav-toggle svg { width: 1.6rem; height: 1.6rem; display: block; }

/* ===== Hero ===== */
.hero { position: relative; background: linear-gradient(155deg, #eef3fb 0%, #e7eefb 55%, #dde8fb 100%); padding: clamp(2.5rem, 6vw, 5rem) 0 5.5rem; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -18%; right: -8%; width: 38rem; height: 38rem; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0,58,140,.10), transparent 62%); pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; bottom: 8%; left: -10%; width: 26rem; height: 26rem; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(216,35,42,.07), transparent 64%); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; position: relative; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-weight: 800; font-size: .8rem; color: var(--aaa-red); margin-bottom: .6rem; }
.hero-copy .subhead { font-size: 1.22rem; font-weight: 700; color: var(--aaa-blue); margin: -.2rem 0 .8rem; max-width: 32ch; }
.hero-copy .lead { font-size: 1.1rem; color: #33485f; max-width: 42ch; }

/* Google rating badge */
.rating-badge {
  display: inline-flex; align-items: center; gap: .6rem; margin: 1.3rem 0 .2rem;
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .5rem .95rem .5rem .6rem;
  box-shadow: var(--shadow-sm); color: var(--ink); font-size: .92rem; transition: transform .14s, box-shadow .14s;
}
.rating-badge:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow); }
.rating-badge .rb-g { width: 1.2rem; height: 1.2rem; flex: none; display: inline-flex; }
.rating-badge .rb-g svg { width: 100%; height: 100%; display: block; }
.rating-badge .rb-stars { color: var(--gold); letter-spacing: .06em; font-size: 1rem; }
.rating-badge .rb-text { color: var(--ink-2); }
.rating-badge .rb-text strong { color: var(--aaa-blue); }

.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; margin: 1.4rem 0 1.4rem; }
.hero-trust { list-style: none; display: flex; gap: 1.6rem; padding: 0; margin: 0; flex-wrap: wrap; color: var(--muted); font-size: .95rem; }
.hero-trust strong { color: var(--aaa-blue); font-size: 1.05rem; }

.hero-card { position: relative; }
.hero-photo {
  aspect-ratio: 4/5; border-radius: 20px; background-size: cover; background-position: center;
  box-shadow: var(--shadow); background-color: #d7e2f3;
}
.hero-photo.placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #6f86a6; text-align: center; font-weight: 600;
  border: 2px dashed #aebfd8; background: #eef3fb;
}
.hero-photo.placeholder small { font-weight: 400; font-size: .8rem; margin-top: .3rem; }
.hero-photo.placeholder code { background: #dde6f4; padding: .05rem .3rem; border-radius: 4px; }
.hero-badge {
  position: absolute; right: -14px; bottom: -14px; background: #fff; border-radius: 14px;
  box-shadow: var(--shadow); padding: .7rem 1rem; display: flex; align-items: center; gap: .55rem;
  font-weight: 700; font-size: .82rem; color: var(--aaa-blue); line-height: 1.05;
}
.badge-aaa {
  background: var(--aaa-red); color: #fff; font-weight: 900; letter-spacing: .04em;
  padding: .35rem .5rem; border-radius: 8px; font-size: .95rem;
}
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; height: 60px; background: var(--bg);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%); }

/* ===== Sections ===== */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-alt { background: var(--bg-alt); }
.section h2 { max-width: 22ch; }

/* ===== Cards (services) ===== */
.grid { display: grid; gap: 1.2rem; }
.cards { grid-template-columns: repeat(3, 1fr); margin-top: 2rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.4rem; box-shadow: var(--shadow-sm);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--aaa-red), var(--aaa-blue));
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d4ddec; }
.card:hover::before { transform: scaleX(1); }
.card .ico {
  font-size: 1.5rem; width: 3rem; height: 3rem; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #eef3fb, #e2ebf9); box-shadow: inset 0 0 0 1px rgba(0,58,140,.06);
  transition: background .18s ease, box-shadow .18s ease;
}
.card .ico svg { width: 1.6rem; height: 1.6rem; color: var(--aaa-blue); transition: color .18s ease; }
.card:hover .ico { background: linear-gradient(160deg, var(--aaa-blue), var(--aaa-blue-700)); box-shadow: 0 6px 16px rgba(0,58,140,.28); }
.card:hover .ico svg { color: #fff; }
.card h3 { font-size: 1.15rem; margin: .8rem 0 .35rem; color: var(--aaa-blue); }
.card p { color: var(--muted); margin: 0; font-size: .96rem; }

/* ===== Steps ===== */
.steps { list-style: none; counter-reset: step; padding: 0; margin: 2rem 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.steps li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; position: relative; box-shadow: var(--shadow-sm); }
.steps .num {
  width: 2.2rem; height: 2.2rem; border-radius: 50%; background: var(--aaa-blue); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: .7rem;
}
.steps h3 { font-size: 1.05rem; margin: 0 0 .3rem; }
.steps p { color: var(--muted); font-size: .92rem; margin: 0; }
.steps + .center { margin-top: 1rem; }

/* ===== Why ===== */
.why-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 2.5rem; align-items: start; }
.checklist { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .7rem; }
.checklist li { position: relative; padding-left: 1.9rem; color: var(--ink-2); }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #fff; background: var(--aaa-red); width: 1.3rem; height: 1.3rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 900; }
.why-aside { background: var(--bg-deep); color: #fff; border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
.why-aside h3 { margin: 0 0 .4rem; color: #fff; font-size: 1.16rem; }
.stat-row { display: flex; align-items: baseline; gap: .7rem; padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.stat-num { font-size: 1.8rem; font-weight: 800; color: var(--gold-bright); }
.why-aside .btn { margin-top: 1.2rem; }
.checklist-light li { color: rgba(255,255,255,.92); }
.checklist-light li::before { background: var(--gold-bright); color: var(--aaa-blue-700); }

/* ===== Financing callout ===== */
.finance-callout {
  margin-top: 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem 1.05rem;
  box-shadow: var(--shadow-sm);
}
.finance-callout h3 { margin: 0 0 .5rem; color: var(--aaa-blue); font-size: 1.12rem; }
.finance-list { margin-top: .7rem; }

/* ===== Personal story ===== */
.story {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, #f7faff 0%, #eaf1fb 60%, #e4edfa 100%);
}
.story::before {
  content: ""; position: absolute; top: -22%; left: -10%; width: 30rem; height: 30rem; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0,58,140,.07), transparent 64%); pointer-events: none;
}
.story-grid {
  position: relative; display: grid; grid-template-columns: .92fr 1.08fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.story-copy h2 { max-width: 16ch; }
.story-lead { font-size: 1.18rem; font-weight: 700; color: var(--aaa-blue); max-width: 34ch; }
.story-copy p { color: var(--ink-2); max-width: 50ch; }
.story-kicker { font-weight: 700; color: var(--ink); }
.story-copy .btn { margin-top: .6rem; }

.story-media { display: grid; gap: 1.1rem; }
.story-fig {
  margin: 0; background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.7);
}
.story-fig img { display: block; width: 100%; height: auto; transition: transform .5s cubic-bezier(.2,.0,.2,1); }
.story-fig:hover img { transform: scale(1.035); }
.story-fig figcaption {
  padding: .6rem .9rem .7rem; font-size: .84rem; font-weight: 600; color: var(--muted);
  letter-spacing: .01em;
}
.story-fig--inset { width: 80%; margin-left: auto; box-shadow: var(--shadow-lg); }

/* ===== Testimonials ===== */
.testimonials { grid-template-columns: repeat(3, 1fr); margin-top: 2rem; }
.tstmnl { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.tstmnl .stars { color: #ffb300; letter-spacing: .1em; margin-bottom: .5rem; }
.tstmnl blockquote { margin: 0 0 1rem; font-size: 1.02rem; color: #28384a; }
.tstmnl .who { font-weight: 700; color: var(--aaa-blue); }
.tstmnl .detail { color: var(--muted); font-size: .88rem; }

/* ===== Contact ===== */
.section-contact { background: var(--bg-deep); color: #fff; }
.section-contact .muted { color: #b9c6da; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 3rem; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 1.2rem 0; display: grid; gap: .6rem; font-size: 1.05rem; }
.contact-list a { color: #fff; }
.social-row { display: flex; gap: .6rem; margin-top: 1rem; }
.social-row a { width: 2.75rem; height: 2.75rem; border-radius: 50%; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.social-row a:hover { background: var(--aaa-red); }

.lead-form { background: #fff; color: var(--ink); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
.lead-form .row { margin-bottom: .9rem; }
.lead-form .row.two { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.lead-form label { display: flex; flex-direction: column; font-weight: 600; font-size: .9rem; gap: .35rem; color: var(--ink-2); }
.lead-form input, .lead-form select, .lead-form textarea {
  font: inherit; font-size: 1rem; min-height: 44px; padding: .6rem .75rem; border: 1px solid #cdd7e5; border-radius: 9px; background: #fbfcfe; color: var(--ink);
}
.lead-form textarea { min-height: 88px; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: 2px solid var(--aaa-blue); border-color: var(--aaa-blue); }
.lead-form .check { flex-direction: row; align-items: center; gap: .5rem; font-weight: 500; margin: .2rem 0 1rem; }
.lead-form .check input { width: auto; min-height: 0; }
.form-note { font-size: .9rem; margin: .8rem 0 0; min-height: 1.2em; }
.form-note.ok { color: #1f8a4c; font-weight: 600; }
.form-note.err { color: var(--aaa-red); font-weight: 600; }

/* ===== FAQ ===== */
.faq { margin-top: 1.5rem; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 1.1rem 0; font-size: 1.08rem; font-weight: 700; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq-q .chev { color: var(--aaa-red); transition: transform .2s; font-size: 1.2rem; }
.faq-item.open .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; color: var(--muted); }
.faq-item.open .faq-a { max-height: 60rem; }
.faq-a p { padding: 0 0 1.1rem; margin: 0; }

/* ===== Footer ===== */
.site-footer { background: var(--bg-deepest); color: #c4d0e2; padding: 2.5rem 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.5rem 2rem; align-items: start; }
.site-footer strong { color: #fff; font-size: 1.1rem; }
.site-footer .muted { color: #9aa9c0; }
.footer-links { display: flex; gap: 1.3rem; flex-wrap: wrap; }
.footer-links a { color: #c4d0e2; font-weight: 600; }
.footer-links a:hover { color: #fff; }
.fineprint { grid-column: 1 / -1; font-size: .78rem; color: #7c8aa3; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.2rem; margin: .5rem 0 0; }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .wizard-step { animation: none; }
  .to-top { transition: opacity .25s ease, background .15s; }
  .tst-track { transition: none; }
  .story-fig img { transition: none; }
  .story-fig:hover img { transform: none; }
}

/* ===== Header scrolled + active nav ===== */
.site-header.scrolled { box-shadow: 0 6px 22px rgba(10,31,68,.10); background: rgba(255,255,255,.97); }
.nav-links a.active { color: var(--aaa-red); }
.nav-links a:not(.btn).active::after {
  content: ""; display: block; height: 2px; background: var(--aaa-red); border-radius: 2px; margin-top: 2px;
}

/* ===== Back to top ===== */
.to-top {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 60;
  width: 2.9rem; height: 2.9rem; border-radius: 50%; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: var(--aaa-blue); color: #fff; line-height: 0;
  box-shadow: var(--shadow); opacity: 0; transform: translateY(12px) scale(.9); pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .15s;
}
.to-top svg { width: 1.25rem; height: 1.25rem; display: block; }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--aaa-red); }

/* ===== Testimonial slider ===== */
.tst-slider { margin-top: 2rem; position: relative; }
.tst-viewport { overflow: hidden; border-radius: var(--radius); }
.tst-track { display: flex; align-items: stretch; transition: transform .5s cubic-bezier(.4,.0,.2,1); }
.tst-track .tstmnl {
  flex: 0 0 100%; box-sizing: border-box; margin: 0; border-radius: var(--radius);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  padding: 2.6rem clamp(1.5rem, 5vw, 3.4rem); min-height: 320px;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(0,58,140,.05), transparent 55%),
    #fff;
}
.tst-track .stars { font-size: 1.15rem; }
.tst-track blockquote {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem); line-height: 1.55; font-weight: 500;
  color: #1f2d3d; max-width: 46ch; margin: 0 0 1.3rem; position: relative;
}
.tst-track .who { font-size: 1.05rem; }
.tst-track .detail { margin-top: .15rem; }
.tst-controls { display: flex; align-items: center; justify-content: center; gap: 1.1rem; margin-top: 1.2rem; }
.tst-arrow {
  width: 2.75rem; height: 2.75rem; flex: none; border-radius: 50%; border: 1px solid var(--line); background: #fff;
  color: var(--aaa-blue); font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); transition: background .15s, color .15s, transform .12s;
}
.tst-arrow:hover { background: var(--aaa-blue); color: #fff; transform: translateY(-1px); }
.tst-dots { display: flex; align-items: center; gap: 0; }
.tst-dot {
  width: 2rem; height: 44px; flex: none; border: 0; background: transparent; cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center; -webkit-tap-highlight-color: transparent;
}
.tst-dot::before {
  content: ""; width: .65rem; height: .65rem; border-radius: 50%; background: #c3cfdf;
  transition: background .2s, transform .2s;
}
.tst-dot:hover::before { background: #9fb0c8; }
.tst-dot.active::before { background: var(--aaa-red); transform: scale(1.25); }

/* ===== Trade-in highlight band ===== */
.trade-band {
  position: relative; overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background:
    radial-gradient(120% 130% at 12% 0%, #0e2a5c 0%, transparent 60%),
    linear-gradient(150deg, var(--bg-deep) 0%, var(--bg-deepest) 100%);
  color: #fff;
}
.trade-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.trade-copy h2 { color: #fff; max-width: 18ch; }
.trade-copy p { color: #c7d4e8; max-width: 56ch; font-size: 1.06rem; }
.trade-copy strong { color: var(--gold); font-weight: 800; }
.trade-band .hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.trade-steps {
  list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem;
  counter-reset: none;
}
.trade-steps li {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius); padding: 1.1rem 1.25rem;
}
.trade-steps .ts-num {
  flex: none; width: 2.2rem; height: 2.2rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--aaa-red); color: #fff; font-weight: 800; font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(216, 35, 42, 0.4);
}
.trade-steps li > div { display: grid; gap: .15rem; }
.trade-steps strong { color: #fff; font-size: 1.05rem; }
.trade-steps span:not(.ts-num) { color: #aebfd8; font-size: .92rem; line-height: 1.5; }
@media (max-width: 760px) {
  .trade-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===== Payment estimator ===== */
.calc-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center; margin-top: 2rem; }
.calc-controls { display: grid; gap: 1.3rem; }
.calc-field { display: grid; gap: .4rem; }
.calc-field .calc-label { display: flex; justify-content: space-between; align-items: baseline; font-weight: 700; color: var(--ink-2); }
.calc-field .calc-val { color: var(--aaa-blue); font-weight: 800; }
.calc-field input[type="range"] { width: 100%; accent-color: var(--aaa-red); height: 1.4rem; }
.calc-result { background: var(--bg-deep); color: #fff; border-radius: var(--radius); padding: 2rem; text-align: center; box-shadow: var(--shadow); }
.calc-result .calc-pay { font-size: clamp(2.4rem, 6vw, 3.4rem); font-weight: 900; color: var(--gold-bright); line-height: 1; }
.calc-result .calc-pay small { font-size: 1rem; font-weight: 600; color: #b9c6da; }
.calc-result .calc-meta { color: #b9c6da; font-size: .9rem; margin: 1rem 0 1.2rem; display: grid; gap: .25rem; }
.calc-disclaimer { font-size: .78rem; color: var(--muted); margin-top: 1.2rem; }

/* ===== Multi-step wizard ===== */
.wizard-progress { display: flex; align-items: center; margin-bottom: 1.4rem; }
.wizard-progress .wp-step {
  flex: 1; text-align: center; position: relative; font-size: .78rem; font-weight: 700; color: var(--muted);
}
.wizard-progress .wp-dot {
  position: relative; z-index: 1;
  width: 1.9rem; height: 1.9rem; border-radius: 50%; background: var(--line); color: #8094aa;
  display: flex; align-items: center; justify-content: center; font-weight: 800; margin: 0 auto .35rem;
  border: 2px solid var(--line); transition: background .2s, color .2s, border-color .2s;
}
.wizard-progress .wp-step:not(:last-child)::after {
  content: ""; position: absolute; top: calc(.95rem - 1px); left: calc(50% + 1.15rem); right: calc(-50% + 1.15rem);
  height: 2px; background: var(--line); z-index: 0;
}
.wizard-progress .wp-step.active .wp-dot { background: var(--aaa-blue); color: #fff; border-color: var(--aaa-blue); }
.wizard-progress .wp-step.done .wp-dot { background: var(--aaa-red); color: #fff; border-color: var(--aaa-red); }
.wizard-progress .wp-step.active { color: var(--aaa-blue); }
.wizard-progress .wp-step.done { color: var(--aaa-red); }
.wizard-step { display: none; animation: wzfade .3s ease; }
.wizard-step.current { display: block; }
@keyframes wzfade { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: none; } }
.wizard-nav { display: flex; gap: .8rem; margin-top: 1rem; }
.wizard-nav .btn { flex: 1; }
.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.opt-card {
  position: relative;
  border: 2px solid #cdd7e5; border-radius: 11px; padding: .8rem .8rem .8rem 1rem; cursor: pointer; text-align: center;
  font-weight: 600; color: var(--ink-2); background: #fbfcfe;
  transition: border-color .15s, background .15s, color .15s, box-shadow .15s, transform .1s; user-select: none;
}
.opt-card:hover:not(.sel) { border-color: #9fb3d4; background: #f1f6fd; transform: translateY(-1px); }
.opt-card.sel {
  border-color: var(--aaa-blue); background: #e9f1fc; color: var(--aaa-blue);
  box-shadow: 0 0 0 1px var(--aaa-blue) inset, 0 4px 14px rgba(0, 58, 140, 0.14);
}
.opt-card.sel::after {
  content: ""; position: absolute; top: .55rem; right: .6rem;
  width: 1.05rem; height: 1.05rem; border-radius: 50%; background: var(--aaa-blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4 4 10-10'/%3E%3C/svg%3E");
  background-size: .72rem; background-position: center; background-repeat: no-repeat;
}
/* Keep the radio in the DOM & focus order (not display:none) so it stays keyboard-
   and screen-reader-operable; the visual state lives on .opt-card. */
.opt-card input {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.opt-card:focus-within { border-color: var(--aaa-blue); box-shadow: var(--ring); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 1rem 6vw 1.4rem; gap: 1rem; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm);
  }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 320px; }
  .hero-art { display: none; }
  .cards, .testimonials { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .why-grid, .contact-grid, .footer-grid, .calc-grid, .story-grid { grid-template-columns: 1fr; }
  .story-fig--inset { width: 100%; }
}
@media (max-width: 520px) {
  .lead-form .row.two { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-trust { gap: 1rem; }
}
