/* ==========================================================================
   REMUX COURIERS — design prototype v3
   Light · airy · photographic + cinematic scrub-video hero
   Poppins (display) + Barlow (body)
   ========================================================================== */

:root {
  --fog: #f4f3f0;
  --fog-deep: #eceae5;
  --ink: #16181a;
  --ink-60: rgba(22,24,26,.62);
  --ink-40: rgba(22,24,26,.42);
  --white: #ffffff;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius-card: 1.5rem;
  --radius-pill: 9999px;
  --shadow-soft: 0 18px 50px -18px rgba(22,24,26,.18);
  --shadow-lift: 0 28px 60px -20px rgba(22,24,26,.28);
  --pad-x: clamp(1.25rem, 5vw, 5.5rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--fog);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--ink); color: var(--white); }
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 6px; }

h1, h2, h3, .btn-pill { font-family: var(--font-display); }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem var(--pad-x);
  z-index: 50;
  transition: color .35s ease, background .35s ease;
  color: var(--ink);
}
.nav-brand {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.25rem; letter-spacing: -.02em;
  color: inherit;
}
.nav-mark { width: 22px; height: 22px; }
.nav-links { display: flex; gap: clamp(1rem, 2.2vw, 2rem); }
.nav-links a {
  font-family: var(--font-display); font-weight: 500;
  font-size: .84rem; color: inherit;
  opacity: .85;
  transition: opacity .2s;
}
.nav-links a:hover { opacity: 1; }
/* over the video hero: white text, no background band — text-shadow carries legibility */
.nav--on-video {
  color: #fff;
  text-shadow: 0 1px 14px rgba(0,0,0,.45);
}

.btn-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--ink); color: var(--white);
  font-weight: 600; font-size: .84rem;
  padding: .72rem 1.35rem;
  border-radius: var(--radius-pill);
  border: none; cursor: pointer;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-pill:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(22,24,26,.45); }
.btn-pill svg { width: 15px; height: 15px; }
.btn-pill-light { background: #fff; color: var(--ink); }
.btn-pill-light:hover { box-shadow: 0 14px 30px -12px rgba(255,255,255,.35); }
.btn-pill-ghost {
  background: transparent; color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.65);
}

/* ==========================================================================
   1 — SCRUB VIDEO HERO
   ========================================================================== */
.vhero {
  position: relative;
  height: 100svh;             /* fallback: mobile / reduced-motion = looping clip */
  background: #0a0c10;
  overflow: clip;
  padding: 0;                 /* kill the generic section padding — it left a bare
                                 background band under the sticky clip */
}
.vhero.is-scrub { height: 300vh; }   /* desktop: scroll travel scrubs the clip */
.vhero-sticky {
  position: sticky; top: 0;
  height: 100svh;
  overflow: hidden;
}
.vhero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
/* canvas frame-sequence (mobile scrub) — replaces the video in .is-seq mode */
.vhero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: none;
}
.vhero.is-seq .vhero-canvas { display: block; }
.vhero.is-seq .vhero-video { display: none; }
.vhero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(10,12,16,.82) 0%,
    rgba(10,12,16,.42) 30%,
    rgba(10,12,16,.06) 55%,
    rgba(10,12,16,.18) 100%);
  pointer-events: none;
}
.vhero-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0 1.5rem 12vh;
  pointer-events: none;
}
.vhero-beat {
  position: absolute;
  left: 50%; bottom: 12vh;
  transform: translateX(-50%);
  width: min(820px, calc(100% - 3rem));
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 22px rgba(0,0,0,.5);
}
.vhero-beat > * { pointer-events: auto; }
.vhero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .76rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink);
  background: #fff;
  padding: .35rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
  margin-bottom: 1.1rem;
}
.vhero-title {
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1; letter-spacing: -.025em;
  color: #fff;
}
.vhero-sub {
  margin-top: 1rem;
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.88);
  max-width: 36rem;
  margin-left: auto; margin-right: auto;
}
.vhero-cta { margin-top: 1.6rem; font-size: .92rem; padding: .9rem 1.7rem; }
.vhero-scrollhint {
  position: absolute; bottom: 4vh; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-size: .7rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.vhero-scrollline {
  width: 1.5px; height: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.8), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: .4; } 50% { opacity: 1; } }
.vhero-progress {
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: rgba(255,255,255,.14);
}
.vhero-progress > span {
  display: block; height: 100%; width: 100%;
  transform: scaleX(0); transform-origin: left center;
  background: #fff;
}
.vhero:not(.is-scrub) .vhero-progress { display: none; }
/* fallback (no scrub): beat 1 shows, beat 2 hidden; scrub JS takes over otherwise */
.vhero:not(.is-scrub) .vhero-beat2 { display: none; }
.vhero:not(.is-scrub) .vhero-scrollhint { display: none; }

/* ==========================================================================
   SECTIONS — shared (natural heights, no forced viewport fills)
   ========================================================================== */
section { padding: clamp(3.5rem, 8vh, 6rem) 0; }
.section-inner { padding: 0 var(--pad-x); width: 100%; }
.kicker {
  font-family: var(--font-display); font-weight: 600;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 1.1rem;
}
.kicker.on-dark { color: rgba(255,255,255,.55); }
.display {
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.12; letter-spacing: -.025em;
  color: var(--ink);
}
.display.on-dark { color: var(--white); }

/* shared photo-band shell (industries / business / final cta) */
.band-bg { position: absolute; inset: 0; }
.band-bg img { width: 100%; height: 100%; object-fit: cover; }
.band-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,15,18,.88) 0%, rgba(13,15,18,.65) 55%, rgba(13,15,18,.45) 100%);
}
.band-content { position: relative; z-index: 1; }
.band-center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.band-center .band-bg::after { background: rgba(13,15,18,.62); }
.band-sub {
  margin-top: 1.2rem;
  font-size: 1rem; line-height: 1.55;
  color: rgba(255,255,255,.72);
  max-width: 38rem;
}
.band-sub-center { margin-left: auto; margin-right: auto; }

/* shared check-list */
.check-points { list-style: none; margin-top: 1.7rem; display: flex; flex-direction: column; gap: .75rem; }
.check-points li {
  display: flex; align-items: center; gap: .7rem;
  font-size: .95rem; color: var(--ink);
}
.check-points li::before {
  content: "";
  width: 18px; height: 18px; flex: none;
  border-radius: 50%;
  background: var(--ink);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 70% no-repeat, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 70% no-repeat, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

/* ==========================================================================
   2 — USP REEL (continuous marquee under the hero)
   ========================================================================== */
.usp {
  padding: 1.05rem 0;
  background: var(--white);
  border-bottom: 1px solid rgba(22,24,26,.06);
  overflow: hidden;
}
.usp-track {
  display: flex;
  width: max-content;
  animation: uspReel 36s linear infinite;
}
.usp:hover .usp-track { animation-play-state: paused; }
@keyframes uspReel { to { transform: translateX(-50%); } }
.usp-reel { display: flex; align-items: center; }
.usp-item {
  display: inline-flex; align-items: baseline; gap: .45rem;
  white-space: nowrap;
  padding: 0 1.1rem;
}
.usp-item::after {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ink-40);
  align-self: center;
  margin-left: 2.2rem;
}
.usp-item strong {
  font-family: var(--font-display); font-weight: 600;
  font-size: .92rem; letter-spacing: -.01em;
}
.usp-item span { font-size: .85rem; color: var(--ink-60); }
@media (prefers-reduced-motion: reduce) {
  .usp-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .usp-reel[aria-hidden="true"] { display: none; }
  .usp-reel { flex-wrap: wrap; justify-content: center; row-gap: .5rem; }
}

/* ==========================================================================
   3 — HOW IT WORKS
   ========================================================================== */
.how { background: var(--fog); }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  margin-top: clamp(2rem, 4vh, 3rem);
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: var(--fog-deep);
  border-radius: 50%;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
}
.step-card h3 { font-weight: 600; font-size: 1.12rem; margin-top: 1.4rem; letter-spacing: -.01em; }
.step-card p { margin-top: .55rem; font-size: .9rem; line-height: 1.5; color: var(--ink-60); }

/* ==========================================================================
   4 — SERVICES
   ========================================================================== */
.services { background: var(--fog-deep); }
.service-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: clamp(2rem, 4vh, 3rem);
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.service-img { aspect-ratio: 16 / 9; overflow: hidden; }
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .service-img img { transform: scale(1.05); }
.service-body { padding: 1.4rem 1.5rem 1.6rem; }
.service-body h3 { font-weight: 600; font-size: 1.2rem; letter-spacing: -.01em; }
.service-body p { margin-top: .5rem; font-size: .9rem; line-height: 1.5; color: var(--ink-60); }
.service-link {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1rem;
  font-family: var(--font-display); font-weight: 600; font-size: .85rem;
  color: var(--ink);
}
.service-link span { transition: transform .25s; display: inline-block; }
.service-link:hover span { transform: translateX(4px); }

/* ==========================================================================
   5 — PARCEL SPLIT
   ========================================================================== */
.split { background: var(--fog); }
/* video-band variant: looping clip behind, dark scrim, white copy */
.split--video {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 11vh, 7.5rem) 0;
  background: #101214;
}
.split--video .band-bg video,
.split--video .band-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.split--video .band-bg::after {
  background: linear-gradient(90deg, rgba(13,15,18,.55) 0%, rgba(13,15,18,.78) 60%, rgba(13,15,18,.86) 100%);
}
.split-sub--dark { color: rgba(255,255,255,.72) !important; }
.check-points--dark li { color: #fff; }
.check-points--dark li::before { background: #fff; }
.split-grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.split-sub { margin-top: 1.2rem; color: var(--ink-60); line-height: 1.55; max-width: 34rem; }

/* ==========================================================================
   6 — FLEET & PRICING
   ========================================================================== */
.fleet { background: var(--white); }
.fleet-hero {
  margin-top: clamp(2rem, 4vh, 3rem);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.fleet-hero img {
  width: 100%;
  aspect-ratio: 21 / 8;
  object-fit: cover;
  object-position: center 60%;
}
.fleet-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  margin-top: clamp(2rem, 4vh, 3rem);
}
.fleet-card {
  position: relative;
  background: var(--fog);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.5rem;
  transition: transform .35s ease, box-shadow .35s ease;
}
.fleet-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.fleet-card--popular {
  background: var(--ink); color: var(--white);
  box-shadow: var(--shadow-lift);
}
.fleet-card--popular .fleet-spec, .fleet-card--popular .fleet-note { color: rgba(255,255,255,.6); }
.fleet-badge {
  position: absolute; top: 1.3rem; right: 1.3rem;
  font-family: var(--font-display); font-weight: 600; font-size: .66rem;
  letter-spacing: .1em; text-transform: uppercase;
  background: #fff; color: var(--ink);
  padding: .25rem .7rem; border-radius: var(--radius-pill);
}
.fleet-card h3 { font-weight: 600; font-size: 1.15rem; letter-spacing: -.01em; }
.fleet-spec { margin-top: .4rem; font-size: .82rem; color: var(--ink-60); }
.fleet-price { margin-top: 1rem; font-size: .9rem; color: inherit; }
.fleet-price strong {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.9rem; letter-spacing: -.02em;
}
.fleet-note { margin-top: .5rem; font-size: .84rem; color: var(--ink-60); }
.fleet-foot {
  margin-top: 1.8rem;
  font-size: .85rem; color: var(--ink-40);
  max-width: 52rem;
}

/* ==========================================================================
   7 — INDUSTRIES BAND  ·  9 — BUSINESS BAND  ·  13 — FINAL CTA
   ========================================================================== */
.industries, .bizband, .finalcta {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 11vh, 7.5rem) 0;
}
.industry-chips, .city-chips {
  display: flex; flex-wrap: wrap; gap: .7rem;
  margin-top: 2rem;
}
.industry-chips span, .industry-chips a {
  font-family: var(--font-display); font-weight: 500; font-size: .88rem;
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: .55rem 1.15rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
}
.industry-chips a { transition: background .18s ease, transform .18s ease; }
.industry-chips a:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.bizband .btn-pill { margin-top: 2rem; }
.finalcta-btns { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; justify-content: center; }

/* ==========================================================================
   8 — PROOF STATS
   ========================================================================== */
.proof {
  background:
    radial-gradient(90% 70% at 80% 10%, rgba(255,255,255,.06) 0%, transparent 60%),
    #16181a;
}
.proof-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  margin-top: clamp(2rem, 4vh, 3.2rem);
}
.proof-stat {
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 1.4rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.proof-num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 3rem);
  letter-spacing: -.02em;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.proof-label { font-size: .88rem; color: rgba(255,255,255,.55); }

/* ==========================================================================
   10 — COVERAGE
   ========================================================================== */
.coverage { background: var(--fog); }
.coverage--band {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 11vh, 7.5rem) 0;
}
.coverage--band .band-bg::after {
  background: linear-gradient(90deg, rgba(13,15,18,.82) 0%, rgba(13,15,18,.55) 60%, rgba(13,15,18,.3) 100%);
}

/* ==========================================================================
   11 — FAQ
   ========================================================================== */
.faq { background: var(--white); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.faq-sub { margin-top: 1.1rem; font-size: .95rem; color: var(--ink-60); }
.faq-sub a { font-weight: 500; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-list details {
  background: var(--fog);
  border-radius: 1.1rem;
  padding: 0 1.4rem;
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 0;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  letter-spacing: -.01em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-display); font-weight: 500;
  font-size: 1.3rem; line-height: 1;
  color: var(--ink-40);
  transition: transform .3s ease;
  flex: none;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  padding: 0 0 1.2rem;
  font-size: .92rem; line-height: 1.55; color: var(--ink-60);
  max-width: 56ch;
}

/* ==========================================================================
   12 — QUOTE
   ========================================================================== */
.quote { background: var(--fog-deep); }
.quote-grid {
  width: 100%;
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.quote-sub { margin-top: 1.2rem; color: var(--ink-60); line-height: 1.55; max-width: 36rem; }
.quote-phone { margin-top: 1.6rem; font-size: .95rem; color: var(--ink-60); }
.quote-phone a { font-weight: 500; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.quote-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 3vw, 2.3rem);
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 1.1rem;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.quote-card label {
  display: flex; flex-direction: column; gap: .45rem;
  font-family: var(--font-display); font-weight: 500;
  font-size: .78rem; color: var(--ink-60);
}
.quote-card input, .quote-card textarea {
  background: var(--fog);
  border: 1px solid transparent;
  border-radius: .8rem;
  padding: .8rem 1rem;
  color: var(--ink);
  font-family: var(--font-body); font-size: .95rem;
  transition: border-color .25s, background .25s;
  resize: vertical;
}
.quote-card input::placeholder, .quote-card textarea::placeholder { color: var(--ink-40); }
.quote-card input:focus, .quote-card textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--white);
}
.btn-submit { justify-content: center; font-size: .92rem; padding: .9rem 1.5rem; margin-top: .2rem; }
.quote-note { font-size: .74rem; color: var(--ink-40); text-align: center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--fog);
  border-top: 1px solid rgba(22,24,26,.08);
  padding: 4rem var(--pad-x) 2rem;
}
.footer-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
}
.footer-brand p { margin-top: 1rem; font-size: .9rem; color: var(--ink-60); max-width: 30ch; line-height: 1.55; }
.footer-col { display: flex; flex-direction: column; gap: .65rem; }
.footer-col h4 {
  font-family: var(--font-display); font-weight: 600;
  font-size: .95rem; margin-bottom: .4rem;
}
.footer-col a, .footer-col span { font-size: .9rem; color: var(--ink-60); transition: color .25s; }
.footer-col a:hover { color: var(--ink); }
.footer-legal {
  width: 100%; margin-top: 3.5rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(22,24,26,.08);
  font-size: .78rem; color: var(--ink-40);
}

/* ==========================================================================
   MOBILE CONVERSION LAYER — WhatsApp float + sticky call/quote bar
   (pattern from /website-mobile-design)
   ========================================================================== */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 940;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,.45);
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 30px; height: 30px; }

.sticky-mobile-cta { display: none; }
@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: flex; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
    background: var(--ink);
    padding: 10px 14px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 18px rgba(0,0,0,.4);
    animation: slideUpCTA .5s ease-out .5s backwards;
  }
  .sticky-mobile-cta a {
    flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px; padding: 12px;
    border-radius: 12px;
    font-family: var(--font-display); font-weight: 600; font-size: .95rem;
    -webkit-tap-highlight-color: transparent;
  }
  .sticky-mobile-cta-call { background: rgba(255,255,255,.12); color: #fff; }
  .sticky-mobile-cta-wa   { background: #25D366; color: #fff; }
  .sticky-mobile-cta svg  { width: 18px; height: 18px; }
  @keyframes slideUpCTA { from { transform: translateY(100%); } to { transform: translateY(0); } }

  body { padding-bottom: 74px; }              /* bar never hides the footer */
  .wa-float { display: none; }                /* WhatsApp lives in the bar on mobile */
}
@media (prefers-reduced-motion: reduce) {
  .sticky-mobile-cta { animation: none; }
}

/* ==========================================================================
   MOTION — initial states applied by JS only (reveal contract)
   ========================================================================== */
.r-hidden { opacity: 0; transform: translateY(26px); }
.r-shown {
  opacity: 1; transform: translateY(0);
  transition: opacity .85s cubic-bezier(.22,1,.36,1) var(--d, 0s),
              transform .85s cubic-bezier(.22,1,.36,1) var(--d, 0s);
}
@keyframes wordUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.w-anim { animation: wordUp .8s cubic-bezier(.22,1,.36,1) var(--wd, 0s) both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .r-hidden { opacity: 1; transform: none; }
  .w-anim { animation: none; }
  .vhero-scrollline { animation: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1023px) {
  .nav-links { display: none; }
  .steps { grid-template-columns: 1fr 1fr; }
  .service-cards { grid-template-columns: 1fr 1fr; }
  .fleet-cards { grid-template-columns: 1fr 1fr; }
  .proof-stats { grid-template-columns: 1fr 1fr; gap: 2rem 1.25rem; }
  .split-grid, .quote-grid, .faq-grid { grid-template-columns: 1fr; }
  .usp-row { grid-template-columns: 1fr 1fr; gap: 1.2rem .8rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  /* mobile: native 9:16 looping clip, zoomed in slightly */
  .vhero-video { object-position: center; }
  .vhero-video--zoom { transform: scale(1.3); transform-origin: center 55%; }
  .vhero-beat { bottom: 11vh; }
}
@media (max-width: 560px) {
  .btn-pill { font-size: .8rem; padding: .65rem 1.1rem; }
  .steps { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .fleet-cards { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .proof-stats { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
