/* ==========================================================================
   Global Wash — Mobile Auto Detailing
   Token system: ink / steel / chrome / brand-blue / signal-yellow / racing-red
   ========================================================================== */

:root {
  --ink: #05070c;
  --ink-soft: #0a0e17;
  --steel: #161d2b;
  --steel-line: #26304a;
  --chrome-100: #f1f4f9;
  --chrome-500: #9aa4b2;
  --blue: #1447c4;
  --blue-bright: #2f6bff;
  --yellow: #f7b500;
  --yellow-soft: #ffd166;
  --red: #e0242f;
  --green: #25d366;
  --text: #e8ecf3;
  --text-dim: #9099ab;

  --display: "Orbitron", "Arial Narrow", sans-serif;
  --head: "Oswald", "Arial Narrow", sans-serif;
  --body: "Inter", system-ui, sans-serif;

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* -------------------------------- utility -------------------------------- */

.chrome-text {
  background: linear-gradient(180deg, var(--chrome-100) 0%, var(--chrome-500) 55%, var(--chrome-100) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-family: var(--head);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--yellow);
  display: inline-block;
}

.btn {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  position: relative;
  overflow: hidden;
  background: transparent;
}
.btn:focus-visible { outline: 2px solid var(--yellow-soft); outline-offset: 3px; }

.btn-primary {
  background: var(--yellow);
  color: #150f00;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(247, 181, 0, 0.28); }

.btn-ghost {
  background: transparent;
  border-color: var(--steel-line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--chrome-500); background: rgba(255,255,255,0.03); }

.btn-sm { padding: 11px 22px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

/* ripple / wet reflection on primary buttons */
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--rx, 50%) var(--ry, 50%), rgba(255,255,255,0.35), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.btn-primary:hover::after { opacity: 1; }

/* -------------------------------- nav -------------------------------- */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(5, 7, 12, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-nav .wrap {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand small {
  font-family: var(--head);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.brand-logo { height: 58px; width: auto; max-width: 220px; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav-links > li { position: relative; list-style: none; }
.nav-links a { color: var(--text-dim); transition: color 0.15s ease; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -22px;
  height: 2px;
  background: var(--yellow);
}

.has-dropdown > a { display: flex; align-items: center; gap: 6px; }
.has-dropdown { position: relative; }
.has-dropdown::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 220px;
  height: 28px;
}
.has-dropdown .caret { width: 9px; height: 9px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.15s ease; }
.has-dropdown:hover .caret { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  background: var(--steel);
  border: 1px solid var(--steel-line);
  border-radius: 4px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 3px;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.dropdown-menu a:hover { background: rgba(255,255,255,0.05); color: var(--yellow); }

.nav-cta { display: flex; align-items: center; gap: 18px; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--head);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.lang-toggle a { color: var(--text-dim); transition: color 0.15s ease; }
.lang-toggle a:hover { color: var(--text); }
.lang-toggle a.active { color: var(--yellow); }
.lang-toggle span { color: var(--steel-line); }

.nav-toggle { display: none; }

/* -------------------------------- hero -------------------------------- */

.hero {
  position: relative;
  padding: 168px 0 120px;
  background:
    radial-gradient(1100px 560px at 82% -10%, rgba(20, 71, 196, 0.35), transparent 60%),
    radial-gradient(700px 420px at 10% 110%, rgba(224, 36, 47, 0.10), transparent 60%),
    var(--ink);
  overflow: hidden;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 18px 0 14px;
}
.hero h1 .line-accent { color: var(--yellow); }

.hero p.lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 0 20px;
}
@media (min-width: 981px) {
  .hero-photo .lede { max-width: none; white-space: nowrap; }
}

.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-actions .btn-primary svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.4; }

/* -------------------------------- full-bleed photo hero -------------------------------- */

.hero-photo {
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 148px 0 70px;
}
.hero-photo > .wrap { margin: 0; width: 100%; max-width: none; }
.hero-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 38%;
  background-color: var(--ink);
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,7,12,0.94) 0%, rgba(5,7,12,0.82) 40%, rgba(5,7,12,0.35) 68%, rgba(5,7,12,0.1) 100%),
    linear-gradient(0deg, rgba(5,7,12,1) 0%, rgba(5,7,12,0.6) 10%, transparent 32%);
}
.hero-photo-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
@media (min-width: 981px) {
  .hero-photo-content { margin-left: clamp(60px, 10vw, 160px); }
}

.hero-social {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.hero-social a:hover { border-color: var(--yellow); background: rgba(255,255,255,0.06); }
.hero-social svg { width: 17px; height: 17px; stroke: currentColor; fill: none; }
.hero-social a[aria-label="WhatsApp"] svg { fill: currentColor; }

/* compact hero used on interior/exterior/full landing pages */
.hero-compact { padding: 168px 0 76px; }

.hero-video { position: relative; overflow: hidden; padding-bottom: 140px; }
.hero-video + .pkg-combined .pkg-table,
.hero-video + .pkg-table { padding-top: 90px; }
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(5,7,12,0.92) 0%, rgba(5,7,12,0.78) 45%, rgba(5,7,12,0.55) 100%);
}
.hero-video .wrap { position: relative; z-index: 2; }
.hero-compact .eyebrow { font-size: 14.5px; }
.hero-compact h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5.4vw, 60px);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 18px 0 20px;
}
.hero-compact p.lede { max-width: 620px; margin: 0 0 34px; font-size: 18px; }

/* -------------------------------- divider (signature) -------------------------------- */

.arc-divider {
  position: relative;
  height: 90px;
  overflow: hidden;
}
.arc-divider svg {
  position: absolute;
  top: 78%;
  left: 50%;
  width: 140%;
  min-width: 1100px;
  transform: translate(-50%, -50%);
}
.arc-divider path {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 2;
  opacity: 0.55;
}
.arc-divider.flip svg { transform: translate(-50%, -50%) scaleY(-1); }

.arc-divider.on-photo { margin-top: 0; z-index: 3; }

/* -------------------------------- section shell -------------------------------- */

section { position: relative; }
.section-head { max-width: 640px; margin: 0 0 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.services-teaser .section-head { max-width: 1100px; }
.services-teaser .section-head h2 { font-size: clamp(34px, 4.4vw, 56px); }
.section-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 34px);
  text-transform: uppercase;
  line-height: 1.2;
  margin: 16px 0 0;
}
.section-head p { color: var(--text-dim); font-size: 16px; line-height: 1.6; margin-top: 14px; }

/* -------------------------------- services teaser -------------------------------- */

.services-teaser { padding: 110px 0 120px; }
.services-teaser .eyebrow,
.services-teaser .section-head h2 { transform: translateY(-40px); }
.services-teaser .eyebrow { color: var(--blue-bright); }
.services-teaser .eyebrow::before { background: var(--blue-bright); }
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background:
    linear-gradient(var(--steel), var(--steel)) padding-box,
    linear-gradient(135deg, rgba(241,244,249,0.35), rgba(154,164,178,0.22) 45%, rgba(241,244,249,0.35) 75%, rgba(154,164,178,0.22)) border-box;
  border: 0.5px solid transparent;
  border-radius: 16px;
  padding: 34px 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.service-card:hover {
  background:
    linear-gradient(var(--steel), var(--steel)) padding-box,
    linear-gradient(var(--blue-bright), var(--blue-bright)) border-box;
  transform: translateY(-4px);
}
.service-card .icon {
  width: 44px; height: 44px;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 1.6;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 10px;
}
.service-card p { color: var(--text-dim); font-size: 14.5px; line-height: 1.55; margin: 0 0 20px; }
.service-card .card-link {
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card .card-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.15s ease; }
.service-card:hover .card-link svg { transform: translateX(4px); }

.teaser-grid .service-card:nth-child(2) .icon { stroke: var(--blue-bright); }
.teaser-grid .service-card:nth-child(2) .card-link { color: var(--blue-bright); }

/* -------------------------------- service areas marquee -------------------------------- */

.areas {
  padding: 90px 0;
  background: var(--ink-soft);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.areas .section-head { margin-bottom: 96px; }
.areas .section-head h2 { font-size: clamp(34px, 4.4vw, 56px); }

.marquee-group { margin-bottom: 34px; }
.marquee-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 14px;
  padding: 0 28px;
}
.marquee-label .dot { width: 18px; height: 18px; flex-shrink: 0; }
.marquee-group.included .dot { stroke: var(--yellow); }
.marquee-group.fee .dot { stroke: var(--blue-bright); }

.marquee-static {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--steel-line);
  border-bottom: 1px solid var(--steel-line);
  padding: 4px 0;
}
.marquee-static span {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 2.8vw, 40px);
  text-transform: uppercase;
  padding: 14px 20px;
  white-space: nowrap;
  color: var(--chrome-500);
  display: flex;
  align-items: center;
  gap: 20px;
}
.marquee-static span::after { content: "•"; color: var(--yellow); margin-left: 20px; }
.marquee-static span:last-child::after { content: none; margin-left: 0; }
.marquee-group.fee .marquee-static span::after { color: var(--blue-bright); }
.force-break { display: none; }

/* -------------------------------- reviews -------------------------------- */

.reviews { padding: 110px 0 120px; }

/* -------------------------------- before / after gallery -------------------------------- */

.gallery { padding: 110px 0 120px; background: var(--ink-soft); }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ba-card { display: flex; flex-direction: column; gap: 14px; }
.ba-slider {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--steel-line);
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}
.ba-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  background-size: cover;
  background-position: center;
}
.ba-after { justify-content: flex-end; }
.ba-before {
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 10px),
    linear-gradient(160deg, #2b2620 0%, #1a1712 60%, #100e0b 100%);
}
.ba-after {
  background-image:
    radial-gradient(120% 100% at 20% 0%, rgba(47,107,255,0.35), transparent 55%),
    linear-gradient(160deg, #16305e 0%, #0a1830 70%);
}
.ba-label {
  font-family: var(--head);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(5,7,12,0.6);
  color: var(--text);
  padding: 5px 12px;
  border-radius: 3px;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: var(--yellow);
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--yellow);
  transform: translate(-50%, -50%);
}
.ba-handle svg {
  position: absolute;
  top: 50%; left: 50%;
  width: 13px; height: 13px;
  transform: translate(-50%, -50%);
  stroke: #150f00;
  z-index: 1;
}
/* -------------------------------- connect -------------------------------- */

.connect {
  padding: 100px 0;
  background: linear-gradient(120deg, var(--blue) 0%, #0c2f8f 100%);
}
.connect-grid { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.connect h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 34px);
  text-transform: uppercase;
  color: var(--chrome-100);
  margin: 0 0 10px;
}
.connect p { color: rgba(255,255,255,0.75); margin: 0; font-size: 17px; }
.connect .mobile-break { display: none; }
.connect-links { display: flex; gap: 22px; flex-wrap: wrap; }
.connect-links .btn-ghost { border-color: rgba(255,255,255,0.35); }
.connect-links .btn { font-family: var(--body); font-weight: 500; font-size: 15px; letter-spacing: 0.02em; padding: 16px 40px; }

/* -------------------------------- CTA band -------------------------------- */

.cta-band {
  padding: 90px 0;
  background: var(--ink-soft);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cta-band-photo {
  position: relative;
  overflow: hidden;
  border-top: none;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,7,12,0.32) 0%, rgba(5,7,12,0.52) 100%);
}
#interior-cta .cta-band-overlay {
  background: linear-gradient(180deg, rgba(5,7,12,0.55) 0%, rgba(5,7,12,0.72) 100%);
}
.cta-band-photo .wrap { position: relative; z-index: 2; }
.cta-band h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 56px);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.cta-band p { color: var(--text-dim); margin: 0 0 32px; font-size: 16px; }
.cta-band .btn-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band-icon {
  width: 40px;
  height: 40px;
  stroke: var(--chrome-100);
  fill: none;
  margin: 26px auto 0;
}
.cta-band .btn-primary {
  background: var(--blue-bright);
  color: var(--chrome-100);
}
.cta-band .btn-primary:hover { box-shadow: 0 10px 26px rgba(47, 107, 255, 0.35); }

/* -------------------------------- footer -------------------------------- */

footer { padding: 60px 0 100px; background: var(--ink); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p { color: var(--text-dim); font-size: 14px; line-height: 1.6; max-width: 300px; margin-top: 14px; }
.footer-col h4 {
  font-family: var(--head);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 16px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14.5px;
  color: var(--text);
  margin-bottom: 10px;
}
.footer-col p { line-height: 1.8; }
.footer-col a:hover { color: var(--yellow); }
.footer-hours-row { display: flex; justify-content: space-between; gap: 10px; font-size: 13.5px; }
.footer-hours-row span:first-child { color: var(--text-dim); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12.5px;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}

/* -------------------------------- mobile sticky CTA -------------------------------- */

.mobile-cta-bar { display: none; }

/* -------------------------------- responsive -------------------------------- */

@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--ink);
    border-bottom: 1px solid var(--steel-line);
    padding: 16px 28px 22px;
  }
  .nav-links.open { display: flex; }
  .nav-links a.active::after { display: none; }
  .has-dropdown { width: 100%; }
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    margin: 6px 0 4px;
    display: none;
    box-shadow: none;
  }
  .has-dropdown.open .dropdown-menu { display: block; }
  .nav-toggle {
    display: flex;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    background: transparent; border: 1px solid var(--steel-line);
    border-radius: 3px; color: var(--text);
  }
  .hero { padding-top: 130px; }
  .hero-photo { min-height: 560px; padding-bottom: 70px; }
  .hero-photo-content { max-width: 100%; padding: 0 24px; text-align: center; margin: 0 auto; }
  .hero-social { display: none; }
  .hero-photo-content .hero-actions { flex-direction: column; align-items: flex-start; gap: 18px; }
  .teaser-grid, .footer-grid, .ba-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
  .connect { padding: 82px 0; }
  .connect-grid { flex-direction: column; align-items: flex-start; gap: 16px; padding-left: 60px; }
  .connect .mobile-break { display: inline; }
  .connect h2 { font-size: 28px; }
  .connect p { font-size: 19px; }
  .connect-links .btn { font-size: 16px; padding: 18px 44px; }

  .marquee-static { justify-content: flex-start; }
  .marquee-static span::after { content: none; margin-left: 0; }
  .marquee-static span::before { content: "•"; color: var(--yellow); }
  .marquee-static span:first-child::before { content: none; }
  .marquee-group.fee .marquee-static span::before { color: var(--blue-bright); }
  .force-break { display: block; flex-basis: 100%; height: 0; }

  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 150;
    background: rgba(5,7,12,0.94);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--steel-line);
    padding: 12px 14px;
    gap: 10px;
  }
  .mobile-cta-bar .btn { flex: 1; }
  body { padding-bottom: 74px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}
