/* ============================================================
   GO DETAILING AUTO SPA — Wireframe Design Tokens
   Low-fi exploration. Final visuals refined in build phase.
   ============================================================ */
:root {
  /* Brand */
  --brand-red: #E60012;
  --brand-red-dark: #B8000E;
  --chrome: #C0C5CC;
  --chrome-light: #E5E8EC;
  --carbon: #0F1115;
  --showroom: #FAF8F4;
  --steam: #D8E3EC;
  --slate: #6B7280;
  --slate-light: #9CA3AF;
  --body: #1F2530;
  --line: #E6E6E6;

  /* Wireframe specifics — visible placeholders */
  --wf-stroke: #B8BCC2;
  --wf-fill: #F0F1F3;
  --wf-fill-dark: #DDE0E4;
  --wf-label: #6B7280;

  /* Type */
  --font-display: 'Geist', 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Spacing scale */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  /* Radius */
  --r-sm: 6px; --r-md: 12px; --r-lg: 16px; --r-xl: 24px; --r-full: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(15,17,21,.06);
  --shadow-md: 0 4px 16px rgba(15,17,21,.08);
  --shadow-lg: 0 12px 40px rgba(15,17,21,.12);

  /* Layout */
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--showroom);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* WIREFRAME ANNOTATIONS — dotted boxes that label each section */
.wf-section {
  position: relative;
  border: 2px dashed var(--wf-stroke);
  margin: var(--s-4) 0;
  background: white;
  border-radius: var(--r-md);
}
.wf-section::before {
  content: attr(data-label);
  position: absolute;
  top: -10px;
  left: 16px;
  background: var(--carbon);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-full);
  z-index: 2;
}
.wf-section[data-label]::before {
  font-family: var(--font-display);
}

/* Placeholder boxes */
.wf-placeholder {
  background: var(--wf-fill);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wf-label);
  font-size: 13px;
  text-align: center;
  font-weight: 500;
}
.wf-image-box {
  background:
    linear-gradient(135deg, var(--wf-fill) 25%, transparent 25%),
    linear-gradient(225deg, var(--wf-fill) 25%, transparent 25%),
    linear-gradient(45deg, var(--wf-fill) 25%, transparent 25%),
    linear-gradient(315deg, var(--wf-fill) 25%, var(--wf-fill-dark) 25%);
  background-size: 14px 14px;
  background-position: 7px 0, 7px 0, 0 0, 0 0;
  background-color: var(--wf-fill-dark);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--carbon);
  font-size: 13px;
  font-weight: 600;
  min-height: 120px;
}
.wf-video-box {
  background: linear-gradient(135deg, #2a2e35, #0F1115);
  color: white;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--s-3);
  min-height: 120px;
}
.wf-video-box .play {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid white;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}

/* Typography */
.h-display { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.h1 { font-size: clamp(36px, 5vw, 64px); }
.h2 { font-size: clamp(28px, 3.5vw, 44px); }
.h3 { font-size: clamp(22px, 2.5vw, 30px); }
.h4 { font-size: 20px; font-weight: 600; }
.lead { font-size: 18px; color: var(--slate); }
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-red);
}
.label { color: var(--wf-label); font-size: 13px; font-weight: 500; }
.tiny { font-size: 12px; color: var(--slate); }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--s-5); }
.container-tight { max-width: 920px; margin: 0 auto; padding: 0 var(--s-5); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s-2);
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s ease-out;
  min-height: 44px;
}
.btn-primary {
  background: var(--brand-red);
  color: white;
}
.btn-primary:hover { background: var(--brand-red-dark); transform: translateY(-1px); }
.btn-secondary {
  background: white;
  color: var(--carbon);
  border: 1.5px solid var(--carbon);
}
.btn-ghost {
  background: transparent;
  color: var(--carbon);
  border: 1.5px solid var(--line);
}
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-block { width: 100%; }

/* Section spacing */
.section-spacing { padding: var(--s-8) 0; }

/* Card */
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  box-shadow: var(--shadow-sm);
}
.card-elevated {
  box-shadow: var(--shadow-md);
  border: 2px solid var(--carbon);
  position: relative;
}
.card-elevated::after {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: var(--r-full);
}

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

/* ====================================================================
   FLOATING GLASS NAVBAR — premium dark glass that floats over the hero
   ==================================================================== */
.wf-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  padding: 14px 20px 0;
  pointer-events: none; /* let clicks pass through outside the pill */
}
.wf-topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 18px 12px 24px;
  gap: var(--s-5);
  background: rgba(10, 12, 15, 0.62);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
  pointer-events: auto;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, padding .35s ease;
}
.wf-topbar.is-scrolled .wf-topbar-inner {
  background: rgba(10, 12, 15, 0.86);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}

/* ---- Logo ---- */
.wf-logo {
  display: flex; align-items: center;
  text-decoration: none;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.55));
  flex-shrink: 0;
}
.wf-logo img.wf-logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 200px;
}
/* Larger version (footer) */
.wf-logo-lg img.wf-logo-img { height: 70px; max-width: 260px; }

/* Legacy text logo (kept as fallback if img missing) */
.wf-logo-mark {
  background: var(--brand-red);
  color: white;
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  display: none; /* hidden in favour of img */
  align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
  flex-shrink: 0;
  margin-right: var(--s-2);
}
.wf-logo-text { display: none; }

/* ---- Nav links ---- */
.wf-nav {
  display: flex;
  gap: 6px;
  align-items: center;
}
.wf-nav a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 10px 16px;
  border-radius: 12px;
  position: relative;
  transition: color .25s ease, background .25s ease;
}
.wf-nav a:hover {
  color: #ffffff;
  background: rgba(239, 0, 21, 0.18);
}
.wf-nav a::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 5px;
  height: 2px;
  background: var(--brand-red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.wf-nav a:hover::after { transform: scaleX(1); }

/* ---- CTA group ---- */
.wf-cta-group { display: flex; gap: 10px; align-items: center; }

.wf-cta-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.wf-cta-icon:hover {
  background: rgba(239, 0, 21, 0.22);
  border-color: rgba(239, 0, 21, 0.55);
  transform: translateY(-1px);
}

.wf-topbar .btn.btn-primary {
  background: #ef0015;
  color: white;
  border: none;
  border-radius: 999px;
  padding: 13px 26px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(239, 0, 21, 0.30);
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
  display: inline-block;
}
.wf-topbar .btn.btn-primary:hover {
  background: #d40012;
  box-shadow: 0 14px 32px rgba(239, 0, 21, 0.45);
  transform: translateY(-1px);
}

/* ---- Hamburger (mobile) ---- */
.wf-burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.wf-burger span {
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease, top .3s ease;
}
.wf-burger span:nth-child(1) { top: 14px; }
.wf-burger span:nth-child(2) { top: 21px; }
.wf-burger span:nth-child(3) { top: 28px; }
.wf-burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.wf-burger.is-open span:nth-child(2) { opacity: 0; }
.wf-burger.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---- Mobile menu panel ---- */
.wf-mobile-menu {
  display: none;
  margin: 10px auto 0;
  max-width: 1240px;
  background: rgba(10, 12, 15, 0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  pointer-events: auto;
}
.wf-mobile-menu:not([hidden]) { display: block; }
.wf-mobile-menu a {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
}
.wf-mobile-menu a + a { border-top: 1px solid rgba(255, 255, 255, 0.06); }
.wf-mobile-menu a:hover { color: #ef0015; background: rgba(239, 0, 21, 0.10); }
.wf-mobile-menu .wf-mobile-menu__cta {
  background: #ef0015;
  color: white;
  text-align: center;
  margin-top: 8px;
  border-radius: 999px;
  border-top: none !important;
}
.wf-mobile-menu .wf-mobile-menu__cta:hover { background: #d40012; color: white; }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .wf-nav { display: none; }
  .wf-burger { display: block; }
  /* Hide secondary CTA button on tight screens, keep phone + burger */
  .wf-topbar .btn.btn-primary { display: none; }
  .wf-topbar-inner { padding: 10px 12px 10px 16px; }
  .wf-logo img.wf-logo-img { height: 38px; }
}
@media (max-width: 420px) {
  .wf-cta-group { gap: 6px; }
  .wf-cta-icon { width: 40px; height: 40px; }
}

/* Mobile sticky bottom CTA bar */
.mobile-sticky {
  display: none;
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  background: var(--carbon); color: white;
  padding: 14px;
  border-radius: var(--r-lg);
  z-index: 100;
  justify-content: space-between; align-items: center;
  box-shadow: var(--shadow-lg);
  gap: var(--s-3);
}
@media (max-width: 700px) {
  .mobile-sticky { display: flex; }
}

/* Subtle wireframe watermark */
.wf-watermark {
  position: fixed;
  bottom: 12px;
  left: 12px;
  font-size: 11px;
  color: var(--slate-light);
  background: white;
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-weight: 500;
  z-index: 200;
  letter-spacing: 0.5px;
}

/* Annotation chips inside sections */
.annot {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--brand-red);
  background: rgba(230,0,18,.08);
  padding: 3px 8px;
  border-radius: var(--r-full);
  margin-bottom: var(--s-3);
}

/* Lines/dividers */
hr.div { border: 0; border-top: 1px dashed var(--line); margin: var(--s-7) 0; }

/* Trust bar */
.trust-row {
  display: flex; gap: var(--s-5); flex-wrap: wrap;
  align-items: center; justify-content: center;
  padding: var(--s-3) 0;
}
.trust-item { font-size: 13px; color: var(--slate); font-weight: 500; }

/* Pill */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: white; border: 1px solid var(--line);
  border-radius: var(--r-full);
  font-size: 12px; font-weight: 500; color: var(--body);
}

/* ====================================================================
   PREMIUM FOOTER — 3-column dark with red glow accent
   ==================================================================== */
footer.wf-footer {
  position: relative;
  background: linear-gradient(180deg, #0d1015 0%, #101318 60%, #0a0c10 100%);
  color: #ffffff;
  padding: 80px 0 32px;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
/* Red glow accent at the very top */
footer.wf-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 90px;
  background: radial-gradient(ellipse at top, rgba(239, 0, 21, 0.55) 0%, rgba(239, 0, 21, 0.18) 35%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
footer.wf-footer .footer-container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
footer.wf-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

/* ---- Brand column ---- */
footer.wf-footer .footer-brand img.wf-logo-img {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 22px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}
footer.wf-footer .footer-brand .tagline {
  font-size: 15px;
  color: #aeb4bd;
  margin: 0 0 16px;
  line-height: 1.5;
}
footer.wf-footer .footer-brand .tagline-rule {
  width: 48px;
  height: 2px;
  background: #ef0015;
  border: none;
  margin: 16px 0;
}
footer.wf-footer .footer-brand .footer-website {
  font-weight: 700;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 22px;
}
footer.wf-footer .footer-brand .footer-website:hover { color: #ef0015; }
footer.wf-footer .footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
footer.wf-footer .footer-socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(239, 0, 21, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  padding: 0;
  transition: border-color .25s ease, color .25s ease, background .25s ease, transform .25s ease;
}
footer.wf-footer .footer-socials a:hover {
  border-color: #ef0015;
  background: rgba(239, 0, 21, 0.12);
  color: #ef0015;
  transform: translateY(-2px);
}

/* ---- Section headings (Quick Links / Contact & Hours) ---- */
footer.wf-footer .footer-heading {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin: 0 0 4px;
}
footer.wf-footer .footer-heading-rule {
  width: 40px;
  height: 2px;
  background: #ef0015;
  border: none;
  margin: 0 0 22px;
}

/* ---- Quick Links column ---- */
footer.wf-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer.wf-footer .footer-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
footer.wf-footer .footer-links li:last-child { border-bottom: none; }
footer.wf-footer .footer-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d8dbe0;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
footer.wf-footer .footer-links a::before {
  content: '›';
  color: #ef0015;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  transition: transform .2s ease;
}
footer.wf-footer .footer-links a:hover {
  color: #ffffff;
}
footer.wf-footer .footer-links a:hover::before {
  transform: translateX(3px);
  color: #ef0015;
}

/* ---- Contact column ---- */
footer.wf-footer .footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
footer.wf-footer .footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}
footer.wf-footer .footer-contact-list .ico {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(239, 0, 21, 0.55);
  background: rgba(239, 0, 21, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ef0015;
}
footer.wf-footer .footer-contact-list a,
footer.wf-footer .footer-contact-list span {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 0;
  display: inline;
}
footer.wf-footer .footer-contact-list a:hover { color: #ef0015; }

footer.wf-footer .footer-hours {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
footer.wf-footer .footer-hours .ico {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.30);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-top: -2px;
}
footer.wf-footer .footer-hours .hours-content { line-height: 1.65; }
footer.wf-footer .footer-hours .hours-content .hours-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 4px;
  display: block;
}
footer.wf-footer .footer-hours .hours-content .hours-row {
  color: #ffffff;
  font-size: 15px;
}
footer.wf-footer .footer-hours .hours-content .hours-row .sep {
  color: #ef0015;
  margin: 0 8px;
}
footer.wf-footer .footer-hours .hours-content .hours-closed {
  color: #8a8f97;
  font-size: 14px;
  margin-top: 2px;
}

/* ---- Bottom bar ---- */
footer.wf-footer .footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 56px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer.wf-footer .footer-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #aeb4bd;
  font-size: 13.5px;
}
footer.wf-footer .footer-copy .shield-ico {
  color: #ef0015;
  flex-shrink: 0;
}
footer.wf-footer .footer-legal {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}
footer.wf-footer .footer-legal a {
  color: #d8dbe0;
  text-decoration: none;
  font-weight: 500;
  padding: 0;
  display: inline;
  transition: color .2s ease;
}
footer.wf-footer .footer-legal a:hover { color: #ffffff; }
footer.wf-footer .footer-legal .sitemap-link { color: #ef0015; }
footer.wf-footer .footer-legal .sitemap-link:hover { color: #ffffff; }
footer.wf-footer .footer-legal .sep {
  color: rgba(239, 0, 21, 0.55);
  font-weight: 400;
}

/* ---- Mobile ---- */
@media (max-width: 900px) {
  footer.wf-footer { padding: 48px 0 28px; }
  footer.wf-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  footer.wf-footer::before { width: 220px; height: 70px; }
  footer.wf-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 36px;
  }
  footer.wf-footer .footer-brand img.wf-logo-img { height: 56px; }
}

/* Step number circles */
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-red); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: var(--s-3);
}

/* Form */
.field {
  display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--s-4);
}
.field label { font-size: 13px; font-weight: 600; color: var(--body); }
.field input, .field select, .field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  font-size: 15px;
  font-family: var(--font-body);
  background: white;
  min-height: 44px;
  transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-red);
}
.field-hint { font-size: 12px; color: var(--slate); margin-top: 2px; }

/* Tag/chip select */
.choice-grid { display: grid; gap: var(--s-3); grid-template-columns: 1fr; }
.choice {
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--s-4);
  cursor: pointer;
  display: flex; gap: var(--s-3); align-items: flex-start;
  background: white;
  transition: all .15s;
}
.choice:hover { border-color: var(--carbon); }
.choice.selected { border-color: var(--brand-red); background: rgba(230,0,18,.03); }
.choice-radio {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--line);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
}
.choice.selected .choice-radio {
  border-color: var(--brand-red);
}
.choice.selected .choice-radio::after {
  content: ''; width: 10px; height: 10px;
  background: var(--brand-red); border-radius: 50%;
}
.choice-body { flex: 1; }
.choice-title { font-weight: 600; font-size: 16px; margin-bottom: 2px; }
.choice-desc { font-size: 13px; color: var(--slate); }
.choice-price { font-weight: 700; color: var(--carbon); font-size: 18px; }

/* Progress steps */
.progress-track {
  display: flex; align-items: center; gap: var(--s-2);
  margin-bottom: var(--s-7);
}
.progress-step {
  display: flex; align-items: center; gap: var(--s-2);
  flex: 1;
}
.progress-step:not(:last-child)::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--line);
  margin: 0 var(--s-2);
}
.progress-step.complete:not(:last-child)::after,
.progress-step.active:not(:last-child)::after {
  background: var(--brand-red);
}
.progress-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  color: var(--slate);
  flex-shrink: 0;
}
.progress-step.active .progress-dot {
  background: var(--brand-red); color: white; border-color: var(--brand-red);
}
.progress-step.complete .progress-dot {
  background: var(--carbon); color: white; border-color: var(--carbon);
}
.progress-label {
  font-size: 12px; font-weight: 600;
  color: var(--slate);
}
.progress-step.active .progress-label { color: var(--brand-red); }
.progress-step.complete .progress-label { color: var(--carbon); }
@media (max-width: 700px) {
  .progress-label { display: none; }
}

/* Sidebar (account dashboard) */
.dashboard-grid {
  display: grid; grid-template-columns: 240px 1fr;
  gap: var(--s-6);
}
.sidebar {
  background: white; border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  height: fit-content;
  position: sticky; top: 80px;
}
.sidebar-item {
  display: flex; gap: var(--s-3); align-items: center;
  padding: 10px 12px;
  border-radius: var(--r-md);
  color: var(--body);
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  cursor: pointer;
}
.sidebar-item:hover { background: var(--showroom); }
.sidebar-item.active {
  background: var(--carbon); color: white;
}
.sidebar-item .icon { width: 18px; text-align: center; }
@media (max-width: 900px) {
  .dashboard-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

/* Stats row */
.stat-card {
  background: white; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--s-4);
}
.stat-card .num {
  font-family: var(--font-display);
  font-weight: 700; font-size: 28px;
  color: var(--carbon);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-card .lbl {
  font-size: 12px; color: var(--slate); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.stat-card .delta {
  font-size: 12px; color: #16A34A; font-weight: 600;
}

/* Maintenance banner */
.maint-banner {
  background: linear-gradient(135deg, #FFF6F7, #FFE9EB);
  border: 1.5px solid var(--brand-red);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  display: flex; gap: var(--s-4); align-items: center;
}
.maint-banner-icon {
  width: 48px; height: 48px;
  background: var(--brand-red); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
@media (max-width: 700px) {
  .maint-banner { flex-direction: column; align-items: flex-start; }
}

/* Service history list item */
.history-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: var(--s-4); padding: var(--s-4) 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.history-item:last-child { border-bottom: 0; }
@media (max-width: 700px) {
  .history-item { grid-template-columns: 1fr; gap: var(--s-2); }
}
.history-thumb {
  width: 80px; height: 60px;
  border-radius: var(--r-sm);
  background: var(--wf-fill-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}

/* Tab strip on wireframes */
.wireframe-tabs {
  display: flex; gap: var(--s-2); margin-bottom: var(--s-5);
  border-bottom: 1px solid var(--line);
  padding: 0 var(--s-5);
  position: sticky; top: 0; background: var(--showroom); z-index: 40;
}
.wireframe-tabs a {
  padding: var(--s-3) var(--s-4);
  color: var(--slate);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.wireframe-tabs a.active {
  color: var(--carbon);
  border-bottom-color: var(--brand-red);
}

/* Bento grid for steam tech section */
.bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--s-4);
  min-height: 400px;
}
.bento > div {
  background: white; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--s-5);
  display: flex; flex-direction: column; justify-content: space-between;
}
.bento > div:first-child { grid-row: span 2; background: var(--carbon); color: white; }
.bento .icon-circle {
  width: 48px; height: 48px;
  background: rgba(230,0,18,.1);
  color: var(--brand-red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: var(--s-3);
}
@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .bento > div:first-child { grid-row: auto; }
}

/* Faq item */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: var(--s-4) 0;
}
.faq-q { font-weight: 600; font-size: 16px; display: flex; justify-content: space-between; cursor: pointer; }
.faq-a { color: var(--slate); margin-top: var(--s-2); font-size: 14px; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q span:last-child { transform: rotate(45deg); }
.faq-q span:last-child { transition: transform .2s; font-size: 22px; color: var(--slate); }

/* Tag / badge */
.badge-success { background: #DCFCE7; color: #166534; padding: 3px 10px; border-radius: var(--r-full); font-size: 12px; font-weight: 600; }
.badge-warn { background: #FEF3C7; color: #92400E; padding: 3px 10px; border-radius: var(--r-full); font-size: 12px; font-weight: 600; }
.badge-info { background: var(--steam); color: #1E3A5F; padding: 3px 10px; border-radius: var(--r-full); font-size: 12px; font-weight: 600; }

/* Package tier ribbons */
.tier-ribbon {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  border-radius: var(--r-full);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}
.tier-bronze { background: linear-gradient(135deg, #C97B43, #8B4513); color: white; }
.tier-silver { background: linear-gradient(135deg, #C0C5CC, #8A9099); color: var(--carbon); }
.tier-platinum { background: linear-gradient(135deg, #1F2530, #0F1115); color: white; }

/* Google review card */
.google-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  position: relative;
}
.google-card::before {
  content: '';
  position: absolute; top: var(--s-3); right: var(--s-3);
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%234285F4' d='M22.5 12.3c0-.8-.1-1.5-.2-2.2H12v4.3h5.9c-.3 1.4-1 2.6-2.2 3.3v2.8h3.6c2.1-1.9 3.2-4.8 3.2-8.2z'/><path fill='%2334A853' d='M12 23c2.9 0 5.4-1 7.2-2.6l-3.6-2.8c-1 .7-2.3 1.1-3.6 1.1-2.8 0-5.1-1.9-6-4.4H2.3v2.8C4.1 20.6 7.8 23 12 23z'/><path fill='%23FBBC05' d='M6 14.3c-.2-.7-.4-1.5-.4-2.3s.1-1.6.4-2.3V6.9H2.3C1.5 8.5 1 10.2 1 12s.5 3.5 1.3 5.1L6 14.3z'/><path fill='%23EA4335' d='M12 5.4c1.6 0 3 .5 4.1 1.6L19.3 4C17.4 2.2 14.9 1 12 1 7.8 1 4.1 3.4 2.3 6.9L6 9.7c.9-2.5 3.2-4.3 6-4.3z'/></svg>");
  background-size: contain; background-repeat: no-repeat;
}
.google-card .stars { color: #F59E0B; font-size: 14px; letter-spacing: 1px; margin-bottom: var(--s-2); }
.google-card .review-text { font-size: 14px; line-height: 1.55; color: var(--body); margin-bottom: var(--s-3); }
.google-card .reviewer { display: flex; gap: var(--s-2); align-items: center; }
.google-card .reviewer-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--wf-fill-dark); color: var(--carbon); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:13px; }
.google-card .reviewer-info .name { font-size: 13px; font-weight: 600; }
.google-card .reviewer-info .date { font-size: 11px; color: var(--slate); }

/* Live data dot */
.live-dot {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--slate);
}
.live-dot::before {
  content: ''; width: 8px; height: 8px;
  background: #16A34A; border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(22,163,74,.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(22,163,74,.18); }
  50% { box-shadow: 0 0 0 7px rgba(22,163,74,.05); }
}

/* Pay-after trust banner */
.trust-banner {
  background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
  border: 1.5px solid #16A34A;
  border-radius: var(--r-lg);
  padding: var(--s-4) var(--s-5);
  display: flex; gap: var(--s-3); align-items: center;
  color: #15803D;
  font-weight: 600;
  font-size: 15px;
}
.trust-banner-icon {
  width: 40px; height: 40px;
  background: #16A34A; color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}

/* ============================================================
   v3 HOMEPAGE — Aria-style hero, action cards, scroll reveal,
   vehicle type selector
   ============================================================ */

/* ---------- Aria-inspired hero (full-bleed video) ---------- */
.hero-v {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: var(--r-lg);
  margin: var(--s-4);
}
.hero-v-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-v-wrap video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-v-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(15,17,21,.55) 0%,
    rgba(15,17,21,.45) 40%,
    rgba(15,17,21,.78) 100%);
}
.hero-v-content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(64px, 14vh, 160px) var(--s-5) clamp(48px, 10vh, 96px);
}
.hero-v-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 0.9rem + 3.2vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-4);
  max-width: 820px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.tw-wrap { display: inline; }
.tw-text { color: var(--brand-red); font-weight: 800; }
.tw-cursor {
  display: inline-block;
  color: var(--brand-red);
  font-weight: 300;
  animation: blink-cursor .75s step-end infinite;
  margin-left: 2px;
}
@keyframes blink-cursor { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-form {
  margin-bottom: var(--s-6);
  max-width: 760px;
}
.hero-form-fields {
  display: flex; flex-direction: column;
  gap: var(--s-3);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-xl);
  padding: var(--s-3);
}
@media (min-width: 768px) {
  .hero-form-fields {
    flex-direction: row;
    align-items: center;
    gap: var(--s-2);
    padding: 6px;
    border-radius: var(--r-full);
  }
}
.hero-form-group {
  display: flex; align-items: center; gap: var(--s-2);
  background: #FFFFFF;
  border-radius: var(--r-md);
  padding: 12px 16px;
  flex: 1; min-width: 0;
}
@media (min-width: 768px) {
  .hero-form-group { border-radius: var(--r-full); }
}
.hero-form-group svg {
  color: var(--brand-red);
  flex-shrink: 0;
  width: 18px; height: 18px;
}
.hero-form-group input,
.hero-form-group select {
  border: none; outline: none; background: transparent;
  font-size: 14px;
  color: var(--body);
  width: 100%; min-width: 0;
  font-family: var(--font-body);
}
.hero-form-group input::placeholder { color: var(--slate-light); }
.hero-form-btn {
  white-space: nowrap; flex-shrink: 0;
  padding: 14px 26px;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
  border-radius: var(--r-md);
  min-height: 48px;
  background: var(--brand-red);
  color: white;
  border: none; cursor: pointer;
  font-family: var(--font-body);
}
.hero-form-btn:hover { background: var(--brand-red-dark); }
@media (min-width: 768px) {
  .hero-form-btn { border-radius: var(--r-full); padding: 14px 32px; }
}

.hero-trust {
  display: flex; flex-wrap: wrap;
  gap: var(--s-4) var(--s-6);
}
.hero-trust-item {
  display: flex; align-items: center; gap: var(--s-2);
  font-size: 14px; color: rgba(255,255,255,.88);
  font-weight: 500;
}
.hero-trust-item svg {
  width: 18px; height: 18px;
  color: var(--brand-red);
  flex-shrink: 0;
}

/* ---------- Action step cards (How It Works) ---------- */
.step-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .25s ease-out, box-shadow .25s ease-out;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-card .step-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-lg);
  background: rgba(230,0,18,.08);
  color: var(--brand-red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-4);
}
.step-card .step-icon svg { width: 32px; height: 32px; }
.step-card .step-badge {
  position: absolute;
  top: var(--s-4); right: var(--s-4);
  background: var(--carbon); color: white;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  font-family: var(--font-display);
}

/* ---------- Scroll-reveal cards ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease-out, transform .7s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Steam-tech cards (replacement for bento grid) */
.steam-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
@media (max-width: 900px) {
  .steam-grid { grid-template-columns: 1fr; }
}
.steam-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  box-shadow: var(--shadow-sm);
}
.steam-card.steam-card--hero {
  grid-column: span 2;
  background: var(--carbon);
  color: white;
  border: none;
}
@media (max-width: 900px) {
  .steam-card.steam-card--hero { grid-column: span 1; }
}
.steam-card .icon-pill {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: rgba(230,0,18,.08);
  color: var(--brand-red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-3);
}
.steam-card--hero .icon-pill {
  background: rgba(216,227,236,.18);
  color: var(--steam);
}
.steam-card .icon-pill svg { width: 22px; height: 22px; }

/* ---------- Vehicle type selector ---------- */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}
@media (max-width: 900px) { .vehicle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .vehicle-grid { grid-template-columns: 1fr 1fr; } }
.vehicle-card {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  cursor: pointer;
  text-align: center;
  transition: all .18s ease-out;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.vehicle-card:hover { border-color: var(--carbon); transform: translateY(-2px); }
.vehicle-card.active {
  border-color: var(--brand-red);
  background: rgba(230,0,18,.04);
  box-shadow: 0 0 0 3px rgba(230,0,18,.08);
}
.vehicle-card .v-icon {
  width: 56px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--carbon);
}
.vehicle-card.active .v-icon { color: var(--brand-red); }
.vehicle-card .v-icon svg { width: 100%; height: 100%; }
.vehicle-card .v-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--carbon);
}
.vehicle-card .v-sub {
  font-size: 11px;
  color: var(--slate);
}

/* ---------- Packages v3 (Bronze · Silver · Platinum) ---------- */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  align-items: stretch;
}
@media (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr; } }
.pkg-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  display: flex; flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease-out;
}
.pkg-card:hover { transform: translateY(-3px); }
.pkg-card--popular {
  border: 2px solid var(--brand-red);
  box-shadow: var(--shadow-md);
}
.pkg-card--popular .popular-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand-red);
  color: white;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.2px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.pkg-card .pkg-features {
  list-style: none; padding: 0;
  display: flex; flex-direction: column;
  gap: 10px;
  margin-bottom: var(--s-5);
  flex: 1;
  font-size: 14px;
  color: var(--body);
}
.pkg-card .pkg-cta {
  margin-top: auto;
}


/* All pkg-cards need extra top padding so the absolute-positioned tier ribbon doesn't overlap content */
.pkg-card { padding-top: var(--s-7); }

/* On the popular card the popular-tag sits at the top (-14px); push the tier ribbon below it (~+18px) */
.pkg-card--popular .tier-ribbon {
  top: 14px;
}


/* ════════════════════════════════════════════════════════════════
   HERO — copy revision (Edit 1)
   ════════════════════════════════════════════════════════════════ */
.hero-sub {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.4vw + 10px, 30px);
  font-style: italic;
  font-weight: 500;
  letter-spacing: .002em;
  line-height: 1.25;
  max-width: 720px;
  margin: 4px 0 28px;
  padding-left: 14px;
  border-left: 3px solid var(--brand-red);
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: var(--r-full);
  text-decoration: none;
  letter-spacing: .01em;
  box-shadow: 0 8px 24px rgba(230,0,18,.35);
  transition: transform .15s ease, box-shadow .15s ease;
  border: none;
}
.hero-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(230,0,18,.45);
}

.hero-cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 22px;
  border: 1.5px solid rgba(255,255,255,.45);
  border-radius: var(--r-full);
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background .15s ease, border-color .15s ease;
}
.hero-cta-ghost:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.7);
}

.hero-microline {
  color: rgba(255,255,255,.82);
  font-size: 13px;
  margin: 6px 0 22px;
  letter-spacing: .01em;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}

/* Use a star for the rating item */
.hero-trust .hero-trust-item:first-child svg {
  color: #FFC700;
}

/* Hero transition link (bottom of hero) */
.hero-transition {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: .04em;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--r-full);
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(4px);
  animation: bobDown 2.4s ease-in-out infinite;
  z-index: 4;
}
.hero-transition:hover {
  background: rgba(0,0,0,.45);
  color: #fff;
}
@keyframes bobDown {
  0%,100% { transform: translate(-50%, 0); }
  50%     { transform: translate(-50%, 6px); }
}
@media (max-width: 720px) {
  .hero-transition { bottom: 14px; font-size: 12px; padding: 8px 14px; }
}


/* ════════════════════════════════════════════════════════════════
   REVIEWS — single-row infinite marquee (Edit 2)
   ════════════════════════════════════════════════════════════════ */
.reviews-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* edge fade-out */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  padding: 6px 0;
}

.reviews-track {
  display: flex;
  gap: var(--s-4);
  width: max-content;
  animation: reviewsScroll 70s linear infinite;
  will-change: transform;
}

.reviews-marquee:hover .reviews-track { animation-play-state: paused; }

.reviews-track .google-card {
  flex: 0 0 360px;
  width: 360px;
  min-width: 360px;
  white-space: normal;
}

@keyframes reviewsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }   /* track is duplicated, so -50% = one full set */
}

@media (max-width: 640px) {
  .reviews-track .google-card {
    flex-basis: 280px;
    width: 280px;
    min-width: 280px;
  }
  .reviews-track { animation-duration: 55s; }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; }
}


/* ════════════════════════════════════════════════════════════════
   AREAS WE SERVE — Aria-style (Edit 3)
   ════════════════════════════════════════════════════════════════ */
.areas-v2 { background: var(--showroom, #FAF8F4); }

.areas-v2-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--carbon);
  margin-bottom: var(--s-7);
  text-transform: uppercase;
}

.areas-v2-hero {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 2.8 / 1;
  box-shadow: var(--shadow-lg);
}

.areas-v2-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.areas-v2-city {
  position: absolute;
  bottom: 28px;
  left: 36px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 900;
  color: #fff;
  letter-spacing: .04em;
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
}

.areas-v2-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: var(--s-7);
}

.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: var(--carbon, #0F1115);
  color: #fff;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.area-pill:hover {
  background: var(--brand-red);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(230,0,18,.32);
}
.area-pill svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: .75;
}

.areas-v2-foot {
  text-align: center;
  font-size: 13px;
  color: var(--slate);
  margin-top: var(--s-5);
}

@media (max-width: 640px) {
  .areas-v2-hero { aspect-ratio: 2 / 1; }
  .areas-v2-city { bottom: 16px; left: 18px; }
  .areas-v2-pills { gap: 8px; }
  .area-pill { padding: 8px 14px; font-size: 12.5px; }
}


/* Inline typewriter inside hero sub-headline (Edit: smaller, inline-flowing) */
.tw-wrap--inline {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}
.tw-wrap--inline .tw-text {
  color: var(--brand-red);
  font-weight: 700;
  letter-spacing: .002em;
  /* slightly heavier than the body weight so it pops without becoming a heading */
}
.tw-wrap--inline .tw-cursor {
  margin-left: 1px;
  font-weight: 400;
}

/* ──────────────────────────────────────────────────────────────
   SECTION 02 — CUSTOMER TRUST BAND (Aria-style, GoDetailing palette)
   ────────────────────────────────────────────────────────────── */
.trust-stats-bar {
  position: relative;
  padding: clamp(28px, 4vw, 56px) 0;
  background:
    radial-gradient(circle at top left, rgba(230, 0, 18, 0.06), transparent 35%),
    linear-gradient(180deg, var(--showroom) 0%, #F3EEE4 100%);
  border-top: 1px solid rgba(15, 17, 21, 0.06);
  border-bottom: 1px solid rgba(15, 17, 21, 0.06);
}
.trust-band {
  display: grid;
  gap: clamp(18px, 2.5vw, 32px);
  align-items: center;
}
@media (min-width: 960px) {
  .trust-band {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  }
}
.trust-band-copy { max-width: 560px; }
.trust-band-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand-red);
}
.trust-band-kicker::before {
  content: ""; width: 28px; height: 2px; background: currentColor;
}
.trust-band-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 1rem + 1.6vw, 2.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--carbon);
  max-width: 18ch;
  margin: 0 0 14px;
}
.trust-band-text {
  font-size: clamp(0.95rem, 0.9rem + 0.15vw, 1.05rem);
  line-height: 1.6;
  color: var(--slate);
  max-width: 56ch;
  margin: 0;
}
.trust-band-pill-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 18px;
}
.trust-band-pill {
  display: inline-flex; align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(15, 17, 21, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 6px 16px rgba(15, 17, 21, 0.05);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--carbon);
}

.trust-ratings {
  display: grid;
  gap: 12px;
}
.rating-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(15, 17, 21, 0.07);
  box-shadow: 0 12px 28px rgba(15, 17, 21, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.rating-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(15, 17, 21, 0.09);
}
.rating-card-logo {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 800; line-height: 1;
  flex-shrink: 0;
}
.rating-card-logo svg { width: 28px; height: 28px; }
.rating-card-logo--google {
  color: #fff;
  background: conic-gradient(from 210deg, #34a853 0 27%, #4285f4 27% 52%, #ea4335 52% 78%, #fbbc05 78% 100%);
}
.rating-card-logo--payafter {
  color: #15803D;
  background: rgba(34, 197, 94, 0.14);
}
.rating-card-logo--steam {
  color: var(--brand-red);
  background: rgba(230, 0, 18, 0.10);
}
.rating-card-body { min-width: 0; }
.rating-card-score-wrap {
  display: flex; flex-wrap: wrap;
  align-items: baseline; gap: 10px;
}
.rating-card-score {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1rem + 0.6vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--carbon);
}
.rating-card-stars {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-red);
}
.rating-card-platform {
  margin: 4px 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--carbon);
}
.rating-card-reviews {
  margin: 2px 0 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--slate);
}

/* ──────────────────────────────────────────────────────────────
   COMBINED VEHICLE+PACKAGES SECTION — seat-count chip + soft divider
   ────────────────────────────────────────────────────────────── */
.vehicle-card { position: relative; }
.v-seats {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(15, 17, 21, 0.06);
  color: var(--slate);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}
.vehicle-card.active .v-seats {
  background: rgba(230, 0, 18, 0.12);
  color: var(--brand-red);
}

.combo-divider {
  width: 100%;
  height: 1px;
  margin: var(--s-6) 0 0;
  background: linear-gradient(90deg, transparent 0%, rgba(15,17,21,0.10) 50%, transparent 100%);
}

/* 4-up grid for vehicle picker (was 5-up with coupe) */
.vehicle-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .vehicle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .vehicle-grid { grid-template-columns: 1fr 1fr; } }
