:root {
  --ah-black: #0d0d0d;
  --ah-black-soft: #161616;
  --ah-card: #1c1c1c;
  --ah-yellow: #FFC72C;
  --ah-yellow-dim: #E6B326;
  --ah-text: #F5F5F0;
  --ah-text-dim: #A8A8A0;
  --ah-line: #2c2c2c;
  --ah-green: #4CAF50;
  --ah-red: #E5484D;
  --radius: 14px;
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--ah-black);
  color: var(--ah-text);
  font-family: var(--font-body);
  padding-bottom: 90px; /* room for sticky CTA */
  -webkit-tap-highlight-color: transparent;
}

.wrap { max-width: 480px; margin: 0 auto; padding: 0 16px; }

header.topbar {
  background: var(--ah-black-soft);
  border-bottom: 3px solid var(--ah-yellow);
  padding: 14px 16px;
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
}
header.topbar .logo { display: flex; align-items: center; }
header.topbar .logo img {
  height: 26px;
  width: auto;
  display: block;
}
header.topbar .step {
  margin-left: auto;
  font-size: 12px;
  color: var(--ah-text-dim);
  font-variant-numeric: tabular-nums;
}

.hero {
  padding: 28px 0 8px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  margin: 0 0 6px;
  letter-spacing: 0.3px;
}
.hero h1 .accent { color: var(--ah-yellow); }
.hero p { color: var(--ah-text-dim); margin: 0; font-size: 14.5px; }

.card {
  background: var(--ah-card);
  border: 1px solid var(--ah-line);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
}

label.field-label {
  display: block;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--ah-text-dim);
  margin-bottom: 6px;
  font-weight: 600;
}

input[type=text], input[type=tel], input[type=number], input[type=datetime-local], select {
  width: 100%;
  background: var(--ah-black-soft);
  border: 1.5px solid var(--ah-line);
  border-radius: 10px;
  color: var(--ah-text);
  padding: 13px 14px;
  font-size: 16px; /* prevents iOS zoom-on-focus */
  font-family: var(--font-body);
  margin-bottom: 14px;
}
input:focus, select:focus {
  outline: none;
  border-color: var(--ah-yellow);
}
input::placeholder { color: #6b6b64; }

.autocomplete-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--ah-black-soft);
  border: 1.5px solid var(--ah-yellow);
  border-radius: 10px;
  overflow-y: auto;
  max-height: 280px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  z-index: 100; /* above .sticky-cta (60) so results are never obscured by the fixed footer */
  display: none;
}
.autocomplete-results.active { display: block; }
.autocomplete-item {
  padding: 12px 14px;
  border-bottom: 1px solid var(--ah-line);
  cursor: pointer;
  font-size: 15px;
}
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover, .autocomplete-item.highlighted { background: #262620; }
.autocomplete-item .cat-tag {
  float: right;
  font-size: 10.5px;
  color: var(--ah-yellow);
  border: 1px solid var(--ah-yellow-dim);
  border-radius: 999px;
  padding: 2px 8px;
}

.btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--ah-yellow);
  color: var(--ah-black);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  padding: 15px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-body);
}
.btn:active { background: var(--ah-yellow-dim); }
.btn.secondary {
  background: transparent;
  color: var(--ah-text);
  border: 1.5px solid var(--ah-line);
}
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, var(--ah-black) 60%, transparent);
  padding: 18px 16px 20px;
  z-index: 60;
}
.sticky-cta .wrap { padding: 0; }

.section-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin: 22px 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-title .badge {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  background: var(--ah-yellow);
  color: var(--ah-black);
  border-radius: 999px;
  padding: 2px 9px;
}

.oil-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1.5px solid var(--ah-line);
  border-radius: 12px;
  margin-bottom: 8px;
  cursor: pointer;
}
.oil-option.selected {
  border-color: var(--ah-yellow);
  background: rgba(255,199,44,0.06);
}
.oil-option .info { flex: 1; }
.oil-option .brand-line { font-weight: 700; font-size: 15px; }
.oil-option .grade-line { font-size: 12.5px; color: var(--ah-text-dim); margin-top: 2px; }
.oil-option .tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 5px;
  margin-top: 5px;
}
.tag.best-value { background: #2c3f22; color: #8FD14F; }
.tag.performance { background: #2a2440; color: #B39DFF; }
.tag.budget { background: #3a2a1c; color: #E8A96B; }
.oil-option .price { font-weight: 700; font-size: 17px; white-space: nowrap; }

/* ---------- Back / start-over bar ---------- */
.flow-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px 0;
}
.flow-nav a {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 4px;
}
.flow-nav .back-link { color: var(--ah-text); }
.flow-nav .back-link::before { content: "← "; }
.flow-nav .reset-link { color: var(--ah-text-dim); }

/* ---------- Step pills ---------- */
.step-pills {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 14px 16px 4px;
  scrollbar-width: none;
}
.step-pills::-webkit-scrollbar { display: none; }
.step-pill {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--ah-line);
  color: var(--ah-text-dim);
  white-space: nowrap;
}
.step-pill .num {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ah-line);
  color: var(--ah-text-dim);
  font-size: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-pill.done { border-color: var(--ah-green); color: var(--ah-text); }
.step-pill.done .num { background: var(--ah-green); color: #0d0d0d; }
.step-pill.current { border-color: var(--ah-yellow); color: var(--ah-text); background: rgba(255,199,44,0.08); }
.step-pill.current .num { background: var(--ah-yellow); color: #0d0d0d; }

/* ---------- Tier toggle (Fully/Semi) ---------- */
.tier-toggle {
  display: flex;
  gap: 8px;
  margin: 14px 0 14px;
}
.tier-tab {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  border: 1.5px solid var(--ah-line);
  background: var(--ah-card);
  color: var(--ah-text-dim);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.tier-tab.active {
  border-color: var(--ah-yellow);
  color: var(--ah-text);
  background: rgba(255,199,44,0.08);
}
.tier-tab-star { color: var(--ah-yellow); }

/* ---------- Recommendation cards (oil options) ---------- */
.rec-card {
  position: relative;
  background: var(--ah-card);
  border: 1.5px solid var(--ah-line);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 10px;
  cursor: pointer;
}
.rec-card.selected { border-color: var(--ah-green); box-shadow: 0 0 0 1px var(--ah-green); }
.rec-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.rec-badge.recommended { background: var(--ah-green); color: #0d1a0d; }
.rec-badge.best-value { background: var(--ah-yellow); color: #1a1400; }
.rec-badge.premium { background: #B39DFF; color: #1a1030; }
.rec-card .rec-name { font-weight: 700; font-size: 16px; margin-bottom: 2px; }
.rec-card .rec-grade { font-size: 12.5px; color: var(--ah-text-dim); margin-bottom: 8px; }
.rec-card .rec-desc { font-size: 12.5px; color: var(--ah-text-dim); margin-bottom: 10px; line-height: 1.4; }
.rec-card .rec-price { font-size: 22px; font-weight: 700; color: var(--ah-yellow); margin-bottom: 8px; }
.rec-card .rec-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--ah-text-dim);
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 4px;
}
.rec-card .confidence-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  margin-right: 4px;
}
.confidence-dot.high { background: var(--ah-green); }
.confidence-dot.medium { background: var(--ah-yellow); }
.confidence-dot.low { background: var(--ah-red); }
.rec-card .rec-select-btn {
  width: 100%;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13.5px;
  border: 1.5px solid var(--ah-line);
  color: var(--ah-text);
  background: transparent;
}
.rec-card.selected .rec-select-btn {
  background: var(--ah-green);
  border-color: var(--ah-green);
  color: #0d1a0d;
}

/* ---------- Transmission card ---------- */
.trans-card {
  background: var(--ah-card);
  border: 1.5px solid var(--ah-line);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
}
.trans-card .trans-title {
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.trans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 12px;
}
.trans-grid .label { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.4px; color: var(--ah-text-dim); margin-bottom: 4px; }
.trans-grid .value { font-size: 13px; line-height: 1.4; }
.trans-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(140,220,140,0.12);
  color: #8FD14F;
  margin-bottom: 12px;
}
.trans-add-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--ah-line);
}
.trans-add-row .trans-add-label { display: flex; align-items: center; gap: 10px; font-size: 13.5px; }
.trans-add-row .trans-price { font-weight: 700; color: var(--ah-yellow); }

/* ---------- Gearbox chip selector (step 1) ---------- */
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.chip {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--ah-line);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ah-text-dim);
  cursor: pointer;
}
.chip.selected { border-color: var(--ah-yellow); color: var(--ah-yellow); background: rgba(255,199,44,0.08); }

.item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ah-line);
}
.item-row:last-child { border-bottom: none; }
.item-row .check {
  width: 22px; height: 22px;
  border: 2px solid var(--ah-line);
  border-radius: 6px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.item-row.checked .check { background: var(--ah-yellow); border-color: var(--ah-yellow); }
.item-row .check svg { display: none; width: 14px; height: 14px; }
.item-row.checked .check svg { display: block; }
.item-row .name { flex: 1; font-size: 14.5px; }
.item-row .name .bm { display: block; font-size: 12px; color: var(--ah-text-dim); }
.item-row .due-flag {
  font-size: 10px; font-weight: 700; color: var(--ah-black);
  background: var(--ah-yellow); border-radius: 999px; padding: 2px 8px; margin-left: 6px;
}
.item-row .item-price { font-size: 14px; color: var(--ah-text-dim); white-space: nowrap; }

.symptom-row {
  padding: 13px 14px;
  border: 1.5px solid var(--ah-line);
  border-radius: 12px;
  margin-bottom: 8px;
  cursor: pointer;
}
.symptom-row.selected { border-color: var(--ah-yellow); background: rgba(255,199,44,0.06); }
.symptom-row .s-label { font-weight: 600; font-size: 14.5px; }
.symptom-row .s-range { font-size: 13px; color: var(--ah-yellow); margin-top: 3px; }
.symptom-row .s-note { font-size: 12px; color: var(--ah-text-dim); margin-top: 4px; }

.total-bar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 2px 12px;
}
.total-bar .label { font-size: 13px; color: var(--ah-text-dim); }
.total-bar .amount { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--ah-yellow); }

.notice {
  font-size: 12.5px;
  color: var(--ah-text-dim);
  background: var(--ah-black-soft);
  border-left: 3px solid var(--ah-yellow);
  padding: 10px 12px;
  border-radius: 6px;
  margin: 10px 0 4px;
}

.confirm-box { text-align: center; padding: 30px 0; }
.confirm-box .ref {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--ah-yellow);
  letter-spacing: 1px;
  margin: 10px 0;
}

/* ---------- Conversion-focused v2 additions ---------- */
.conversion-hero {
  padding: 24px 0 18px;
  text-align: left;
}
.conversion-hero .eyebrow, .summary-kicker {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--ah-yellow);
  margin-bottom: 8px;
}
.conversion-hero h1 {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1.02;
  margin: 0 0 10px;
}
.conversion-hero h1 span { color: var(--ah-yellow); }
.conversion-hero p { margin: 0; color: var(--ah-text-dim); line-height: 1.5; font-size: 14px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}
.trust-grid div {
  background: var(--ah-card);
  border: 1px solid var(--ah-line);
  border-radius: 12px;
  padding: 11px 8px;
  text-align: center;
}
.trust-grid strong { display:block; color:var(--ah-yellow); font-size:16px; }
.trust-grid span { display:block; color:var(--ah-text-dim); font-size:10.5px; margin-top:2px; }
.hero.compact { padding-top: 14px; }
.hero.compact h2 { font-family:var(--font-display); margin:0 0 5px; font-size:24px; }
.service-strip {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 3px 0 13px;
  scrollbar-width: none;
}
.service-strip::-webkit-scrollbar { display:none; }
.service-strip span {
  flex: 0 0 auto;
  border: 1px solid var(--ah-line);
  background: var(--ah-card);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11.5px;
  color: var(--ah-text-dim);
}
.booking-summary { border-color: rgba(255,199,44,.35); }
.duration-pill {
  display:inline-block;
  margin-top:10px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,199,44,.08);
  color:var(--ah-yellow);
  font-size:11.5px;
  font-weight:600;
}
.field-help { color:var(--ah-text-dim); font-size:11.5px; margin-top:-7px; }
.confirm-actions { display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-top:10px; }
.confirm-actions a { font-size:13px; padding:12px 8px; }
@media (min-width: 700px) {
  .wrap { max-width: 620px; }
  .conversion-hero h1 { font-size: 46px; }
}

/* ==========================================================
   Home page light theme — V3
   Scoped to .home-light so the rest of the booking flow and
   the admin panel keep their existing styling.
   ========================================================== */
.home-light {
  --ah-black: #15171c;
  --ah-black-soft: #f6f7f9;
  --ah-card: #ffffff;
  --ah-yellow: #ffbd00;
  --ah-yellow-dim: #e9a900;
  --ah-text: #191b20;
  --ah-text-dim: #686d76;
  --ah-line: #e4e6eb;
  background: #fff;
  color: var(--ah-text);
  padding-bottom: 112px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
.home-light .wrap { max-width: 560px; }
.home-header {
  height: 74px;
  max-width: 560px;
  margin: 0 auto;
  padding: 12px 18px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #eef0f3;
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(12px);
}
.home-logo { display:flex; justify-content:center; }
.home-logo img { width:auto; height:30px; display:block; }
.header-icon {
  width: 42px; height: 42px; border: 1px solid #e7e9ed; border-radius: 12px;
  background:#fff; display:flex; align-items:center; justify-content:center; padding:0;
}
.header-icon svg { width:22px; height:22px; fill:none; stroke:#202228; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.header-icon.phone { background:var(--ah-yellow); border-color:var(--ah-yellow); }
.header-icon.phone svg { width:20px; }
.home-wrap { padding-top: 16px; }
.home-light .advisor-banner { border-radius:14px; }
.home-hero {
  min-height: 322px;
  border-radius: 22px;
  padding: 27px 24px 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,#f4f5f7 0%,#fff 62%,#fff5d7 100%);
  border:1px solid #eceef1;
  box-shadow:0 14px 38px rgba(24,27,34,.07);
}
.hero-copy { position:relative; z-index:3; width:68%; }
.home-eyebrow { color:#6f737b; font-size:10px; font-weight:800; letter-spacing:1.15px; margin-bottom:11px; }
.home-hero h1 { margin:0; font-size:34px; line-height:1.05; letter-spacing:-1.2px; font-weight:800; }
.home-hero h1 span { color:var(--ah-yellow-dim); }
.hero-benefits { list-style:none; margin:20px 0 0; padding:0; display:grid; gap:9px; font-size:11.5px; font-weight:650; }
.hero-benefits li { display:flex; align-items:center; gap:8px; }
.hero-benefits li::before { content:"✓"; display:grid; place-items:center; flex:0 0 17px; height:17px; border-radius:50%; color:#fff; background:var(--ah-yellow); font-size:10px; font-weight:900; }
.hero-visual { position:absolute; right:-34px; bottom:0; width:56%; height:72%; z-index:1; }
.car-shape { position:absolute; right:-8px; bottom:30px; width:230px; transform:rotate(-1deg); filter:drop-shadow(0 15px 13px rgba(0,0,0,.19)); z-index:2; }
.car-shape svg { width:100%; overflow:visible; }
.car-shape path { fill:#f8f8f8; stroke:#393d45; stroke-width:3; }
.car-shape circle { fill:#25282e; }
.car-shape .wheel-inner { fill:#a7abb3; stroke:#f5f5f5; stroke-width:4; }
.hero-slash { position:absolute; right:8px; bottom:-80px; width:96px; height:350px; background:var(--ah-yellow); transform:rotate(25deg); opacity:.95; }
.home-light .step-pills { margin:22px 0 6px; padding:0 2px; overflow:visible; display:grid; grid-template-columns:repeat(4,1fr); gap:0; }
.home-light .step-pill { border:0; border-radius:0; padding:0; flex-direction:column; gap:6px; text-align:center; font-size:9px; color:#858991; position:relative; white-space:normal; line-height:1.2; background:transparent; }
.home-light .step-pill::after { content:""; height:2px; background:#e2e4e8; position:absolute; top:12px; left:50%; width:100%; z-index:-1; }
.home-light .step-pill:last-child::after { display:none; }
.home-light .step-pill .num { width:25px; height:25px; font-size:11px; background:#dfe2e7; color:#6b7079; }
.home-light .step-pill.current { color:#202228; font-weight:800; }
.home-light .step-pill.current .num { background:var(--ah-yellow); color:#17191d; box-shadow:0 0 0 4px #fff; }
.service-section,.vehicle-section { padding-top:29px; }
.section-heading h2 { margin:0; font-size:21px; line-height:1.2; letter-spacing:-.4px; }
.section-heading p { margin:7px 0 0; color:var(--ah-text-dim); font-size:13px; line-height:1.5; }
.service-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:9px; margin-top:16px; }
.service-tile { min-height:86px; padding:10px 4px; border:1px solid #e6e8ec; border-radius:13px; background:#fff; color:#2c2f35; display:flex; flex-direction:column; justify-content:center; align-items:center; gap:8px; font-family:inherit; font-size:10.5px; font-weight:650; box-shadow:0 4px 13px rgba(26,28,34,.035); }
.service-tile .service-icon { width:36px; height:36px; display:grid; place-items:center; border-radius:11px; background:#f7f8fa; font-size:21px; filter:saturate(.85); }
.service-tile.active { border-color:#ffc21a; background:#fffaf0; box-shadow:0 0 0 1px rgba(255,189,0,.18); }
.service-tile.active .service-icon { background:#fff0bf; }
.home-form-card { margin-top:16px; padding:20px; border:1px solid #e7e9ed; border-radius:18px; background:#fff; box-shadow:0 10px 30px rgba(22,25,31,.055); }
.home-light label.field-label { color:#3e4249; font-size:11px; letter-spacing:.5px; margin-bottom:8px; }
.home-light input[type=text],.home-light input[type=number] { background:#fff; border:1.5px solid #dfe2e7; color:#202228; border-radius:12px; padding:15px; margin-bottom:17px; box-shadow:inset 0 1px 2px rgba(0,0,0,.025); }
.home-light input::placeholder { color:#a1a5ad; }
.home-light input:focus { border-color:var(--ah-yellow); box-shadow:0 0 0 3px rgba(255,189,0,.13); }
.home-light .autocomplete-results { background:#fff; border-color:var(--ah-yellow); color:#23262b; box-shadow:0 14px 35px rgba(20,22,27,.16); }
.home-light .autocomplete-item { border-color:#eceef1; }
.home-light .autocomplete-item:hover,.home-light .autocomplete-item.highlighted { background:#fff8df; }
.home-light .autocomplete-item .cat-tag { color:#8b6700; }
.home-error { display:none; color:#d73535; font-size:12px; margin:-9px 0 14px; }
.home-light .chip { border-color:#dde0e5; color:#686d76; }
.home-light .chip.selected { border-color:var(--ah-yellow); color:#7c5b00; background:#fff8df; }
.mileage-help { display:flex; gap:11px; align-items:flex-start; padding:13px; background:#fff8e7; border:1px solid #ffe2a0; border-radius:11px; color:#676b73; font-size:11.5px; line-height:1.45; }
.mileage-help strong { color:#292c31; }
.help-bulb { font-size:19px; }
.security-note { margin:18px 0 4px; padding:15px 18px; border:1px solid #e6e8ec; border-radius:15px; display:flex; align-items:center; gap:13px; font-size:11.5px; color:#737780; }
.security-note strong { color:#272a30; }
.shield-icon { display:grid; place-items:center; width:34px; height:34px; flex:0 0 34px; border:2px solid var(--ah-yellow); border-radius:50% 50% 48% 48%; color:#a87800; font-weight:900; }
.home-sticky { background:linear-gradient(to top,#fff 72%,rgba(255,255,255,0)); padding:20px 16px 22px; }
.home-primary { border-radius:12px; min-height:58px; display:flex; align-items:center; justify-content:space-between; padding:15px 20px; font-size:15px; box-shadow:0 8px 22px rgba(229,166,0,.25); }
.home-primary span { font-size:22px; font-weight:400; }
@media (max-width:390px) {
  .home-hero { min-height:310px; padding:23px 19px; }
  .home-hero h1 { font-size:30px; }
  .hero-copy { width:73%; }
  .car-shape { width:205px; right:-24px; }
  .hero-benefits { font-size:10.5px; }
  .service-grid { gap:7px; }
  .service-tile { min-height:80px; font-size:9.5px; }
}
