/* ============================================================
   Liftzor marketing site — Variant A brand (LOCKED palette)
   Tokens mirror packages/brand/lib/src/colors.dart
   ============================================================ */

:root {
  /* Indigo brand spectrum */
  --primary: #4F46E5;
  --primary-deep: #3730A3;
  --primary-light: #6366F1;
  --primary-tint: #EEF2FF;
  --primary-tint-border: #C7D2FE;

  /* Surfaces + neutrals */
  --canvas: #FFFFFF;
  --surface: #FAFAFA;
  --border-light: #E5E7EB;
  /* Alias + interaction-border tokens that later append-blocks referenced
     before they were defined (the form error state + several card borders
     silently failed without these). Locked-palette values. */
  --border: var(--border-light);
  --primary-ring: var(--primary-tint-border);

  /* Text */
  --text-primary: #070D26;   /* brand navy */
  --text-secondary: #4B5563;
  --text-tertiary: #9CA3AF;
  --text-on-dark: #B9BECE;   /* muted body copy on dark/navy surfaces */

  /* Status */
  --success: #10B981;
  --success-bg: #D1FAE5;
  --warn: #D97706;
  --warn-bg: #FEF3C7;
  --danger: #EF4444;
  --danger-bg: #FEE2E2;

  /* Logo accent (icon lavender) */
  --lavender: #9996DA;

  --hero-grad: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);

  --maxw: 1160px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 20px;   /* large media / showcase surfaces */
  --shadow-sm: 0 1px 2px rgba(7, 13, 38, .06), 0 1px 3px rgba(7, 13, 38, .08);
  --shadow-md: 0 8px 24px rgba(7, 13, 38, .08), 0 2px 6px rgba(7, 13, 38, .05);
  --shadow-lg: 0 24px 60px rgba(7, 13, 38, .16), 0 8px 20px rgba(7, 13, 38, .08);
  --shadow-indigo: 0 16px 40px rgba(79, 70, 229, .28);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ───────────── Base ───────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* ── A11y: visible keyboard focus (was entirely missing) ── */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 4px;
}
.btn--primary:focus-visible, .footer a:focus-visible,
.section--dark a:focus-visible { outline-color: #fff; box-shadow: 0 0 0 5px var(--primary); }

/* ── A11y: lift muted copy to AA contrast (tertiary -> secondary on real text) ── */
body .hero__proof span, body .qr-card__hint, body .calc__hint,
body .partners__label, body .partners__note, body .counter__note {
  color: var(--text-secondary);
}

body {
  margin: 0;
  font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-primary);
  background: var(--canvas);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -.02em; font-weight: 800; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--primary); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.grad {
  background: var(--hero-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ───────────── Buttons ───────────── */
.btn {
  --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 700; font-size: 15px; letter-spacing: -.01em;
  padding: 12px 22px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--bd); cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-indigo); }
.btn--primary:hover { background: var(--primary-deep); transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--text-primary); }
.btn--ghost:hover { color: var(--primary); }

.btn--outline { background: #fff; color: var(--primary); --bd: var(--primary-tint-border); }
.btn--outline:hover { --bd: var(--primary); background: var(--primary-tint); transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--primary-deep); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--outline-light { background: transparent; color: #fff; --bd: rgba(255, 255, 255, .5); }
.btn--outline-light:hover { --bd: #fff; background: rgba(255, 255, 255, .1); transform: translateY(-2px); }

/* ───────────── Announcement bar ───────────── */
.topbar {
  background: var(--primary-tint);
  border-bottom: 1px solid var(--primary-tint-border);
  color: var(--primary-deep);
  font-size: 13px; font-weight: 600; letter-spacing: -.005em;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 6px 20px; flex-wrap: wrap;
  padding-top: 8px; padding-bottom: 8px;
}
.topbar__msg { display: inline-flex; align-items: center; gap: 9px; }
.topbar__dot {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, .5);
  animation: ping 2s infinite;
}
.topbar__contact {
  display: inline-flex; align-items: center; gap: 6px 18px; flex-wrap: wrap;
}
.topbar__contact a {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; color: var(--primary-deep);
  transition: color .18s var(--ease);
}
.topbar__contact a:hover { color: var(--primary); }
.topbar__contact svg { width: 14px; height: 14px; flex: none; }

/* ───────────── Nav ───────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  /* Opaque rather than a translucent backdrop-filter — a blurred
     backdrop on a sticky header re-rasterises on every scroll frame
     and was a real source of scroll lag on mid-range devices. */
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--border-light); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; gap: 28px; height: 70px; }
.nav__brand { display: flex; align-items: center; }
.nav__links { display: flex; gap: 28px; margin-right: auto; }
.nav__links a {
  font-weight: 600; font-size: 15px; color: var(--text-secondary);
  position: relative; padding: 4px 0;
}
.nav__links a:hover { color: var(--text-primary); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .2s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: 12px; }

/* Social icons in the nav, beside the Get started button */
.nav__social {
  display: flex; align-items: center; gap: 2px;
  padding-right: 10px; margin-right: 2px;
  border-right: 1px solid var(--border-light);
}
.nav__social a {
  width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center; color: var(--text-tertiary);
  transition: color .18s var(--ease), background-color .18s var(--ease);
}
.nav__social svg { width: 16px; height: 16px; }
.nav__social a:hover { color: var(--primary); background: var(--primary-tint); }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 8px; cursor: pointer;
}
.nav__toggle span {
  width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 24px 22px; border-top: 1px solid var(--border-light);
  background: #fff;
}
.nav__mobile[hidden] { display: none; }
.nav__mobile > a:not(.btn) {
  font-weight: 600; color: var(--text-secondary); padding: 12px 4px;
  border-bottom: 1px solid var(--border-light);
}
.nav__mobile .btn { margin-top: 12px; }
.nav__mobile-social {
  display: flex; justify-content: center; gap: 10px; margin-top: 16px;
}
.nav__mobile-social a {
  width: 42px; height: 42px; border-radius: 10px;
  display: grid; place-items: center; color: var(--text-tertiary);
  border: 1px solid var(--border-light);
  transition: color .18s var(--ease), border-color .18s var(--ease),
              background-color .18s var(--ease);
}
.nav__mobile-social svg { width: 19px; height: 19px; }
.nav__mobile-social a:hover {
  color: var(--primary); border-color: var(--primary-tint-border);
  background: var(--primary-tint);
}

/* ───────────── Hero ───────────── */
.hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 110px);
  overflow: hidden; position: relative;
}
.hero__inner {
  /* 2026-06-23 — hero vehicle image removed; single-column so the copy flows
     full and no empty column is left behind. */
  display: grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative; z-index: 1;
}
.hero__copy { max-width: 760px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-tint); color: var(--primary-deep);
  border: 1px solid var(--primary-tint-border);
  font-weight: 600; font-size: 13px; letter-spacing: .01em;
  padding: 7px 14px; border-radius: 999px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, .5); animation: ping 2s infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, .5); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero__title {
  font-size: clamp(2.4rem, 5.2vw, 3.9rem);
  margin: 20px 0 18px;
}
.hero__lede {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--text-secondary); max-width: 33em;
}

/* ───────────── Carrier referral landing ───────────── */
.referral-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 112px) 0 clamp(44px, 7vw, 88px);
  background:
    radial-gradient(circle at 16% 10%, rgba(199, 210, 254, .7), transparent 28%),
    linear-gradient(180deg, var(--canvas) 0%, var(--surface) 100%);
}
.referral-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .85fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}
.referral-hero__title {
  margin: 20px 0 18px;
  font-size: clamp(2.45rem, 5vw, 4.2rem);
  letter-spacing: -.03em;
}
.referral-hero__lede {
  max-width: 38rem;
  color: var(--text-secondary);
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
}
.referral-hero__fine {
  margin-top: 16px;
  color: var(--text-tertiary);
  max-width: 34rem;
  font-size: .94rem;
}
.referral-code-card {
  margin: 28px 0 8px;
  max-width: 420px;
  padding: 18px 20px;
  border: 1px solid var(--primary-tint-border);
  border-radius: var(--radius);
  background: var(--primary-tint);
  box-shadow: var(--shadow-md);
}
.referral-code-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-deep);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.referral-code-card strong {
  display: block;
  color: var(--text-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: .08em;
}
.referral-hero__panel {
  display: grid;
  place-items: center;
}
.referral-phone {
  width: min(340px, 82vw);
  aspect-ratio: 9 / 16;
  border: 14px solid var(--text-primary);
  border-radius: 42px;
  background: var(--text-primary);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.referral-phone__top {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 112px;
  height: 24px;
  border-radius: 999px;
  background: var(--text-primary);
  transform: translateX(-50%);
  z-index: 2;
}
.referral-phone__screen {
  height: 100%;
  border-radius: 28px;
  padding: 58px 24px 24px;
  background:
    linear-gradient(145deg, rgba(238, 242, 255, .9), rgba(255, 255, 255, .98)),
    var(--canvas);
  overflow: hidden;
}
.referral-phone__screen img {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
}
.referral-phone__screen span {
  display: block;
  color: var(--primary-deep);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .76rem;
}
.referral-phone__screen strong {
  display: block;
  margin: 8px 0 24px;
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.referral-phone__route {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.referral-phone__route b {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--primary-deep);
  background: var(--primary-tint);
  border: 1px solid var(--primary-tint-border);
}
.referral-phone__route i {
  flex: 1;
  height: 2px;
  background: var(--primary);
}
.referral-phone__pill {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
  font-weight: 800;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 860px) {
  .referral-hero__inner { grid-template-columns: 1fr; }
  .referral-hero__panel { display: none; }
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 30px; }
.hero__proof {
  display: flex; flex-wrap: wrap; gap: 28px;
  padding-top: 26px; border-top: 1px solid var(--border-light);
}
.hero__proof li { display: flex; flex-direction: column; }
.hero__proof strong { font-size: 1.05rem; font-weight: 800; }
.hero__proof span { font-size: .85rem; color: var(--text-tertiary); }

.hero-slider { position: relative; min-height: 430px; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease;
}
.hero-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.hero-slider__dots {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}
.hero-slider__dots button {
  width: 34px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: var(--primary-tint-border);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.hero-slider__dots button.is-active {
  width: 54px;
  background: var(--primary);
}

/* Hero product mock */
.hero__visual { position: relative; perspective: 1200px; }
.mock {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 22px; position: relative;
}
.mock__head {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px;
}
.mock__tag { font-size: 12px; font-weight: 700; color: var(--text-tertiary); letter-spacing: .03em; }
.mock__status {
  font-size: 12px; font-weight: 700; color: var(--primary-deep);
  background: var(--primary-tint); border: 1px solid var(--primary-tint-border);
  padding: 4px 10px; border-radius: 999px;
}
.mock__route { display: flex; flex-direction: column; gap: 4px; margin-bottom: 18px; }
.mock__node { display: flex; align-items: center; gap: 12px; }
.mock__node b { font-size: 15px; }
.mock__node small { display: block; font-size: 12px; color: var(--text-tertiary); }
.mock__pin { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.mock__pin--from { background: var(--lavender); }
.mock__pin--to { background: var(--primary); }
.mock__line { padding-left: 5px; }
.mock__line span {
  display: block; width: 2px; height: 22px; margin: 2px 0;
  background: repeating-linear-gradient(var(--primary-tint-border) 0 4px, transparent 4px 8px);
}
.mock__timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 18px;
}
.mock__timeline .step {
  font-size: 10.5px; font-weight: 700; text-align: center;
  color: var(--text-tertiary); padding-top: 12px; position: relative;
}
.mock__timeline .step::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--border-light); border: 2px solid #fff; box-shadow: 0 0 0 1px var(--border-light);
}
.mock__timeline .step::after {
  content: ""; position: absolute; top: 4px; left: 50%; width: 100%; height: 2px;
  background: var(--border-light); z-index: -1;
}
.mock__timeline .step:last-child::after { display: none; }
.mock__timeline .step.done { color: var(--text-secondary); }
.mock__timeline .step.done::before { background: var(--success); box-shadow: 0 0 0 1px var(--success); }
.mock__timeline .step.done::after { background: var(--success); }
.mock__timeline .step.active { color: var(--primary-deep); }
.mock__timeline .step.active::before {
  background: var(--primary); box-shadow: 0 0 0 1px var(--primary), 0 0 0 5px var(--primary-tint);
}
.mock__carrier {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--border-light);
  border-radius: var(--radius-sm); padding: 12px 14px;
}
.mock__avatar {
  width: 38px; height: 38px; border-radius: 10px; flex: none;
  display: grid; place-items: center; font-weight: 800; font-size: 13px;
  color: #fff; background: var(--hero-grad);
}
.mock__carrier-meta { margin-right: auto; }
.mock__carrier-meta b { font-size: 14px; display: block; }
.mock__carrier-meta small { font-size: 12px; color: var(--text-tertiary); }
.mock__price { font-weight: 800; font-size: 15px; }

.mock--float {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  animation: float 5s ease-in-out infinite;
}
.mock--float b { font-size: 13px; display: block; }
.mock--float small { font-size: 11.5px; color: var(--text-tertiary); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.pulse { position: relative; width: 30px; height: 30px; flex: none; }
.pulse span {
  position: absolute; inset: 0; margin: auto; width: 9px; height: 9px;
  border-radius: 50%; background: var(--primary);
}
.pulse span:nth-child(2), .pulse span:nth-child(3) {
  background: transparent; border: 2px solid var(--primary); width: 30px; height: 30px;
  animation: ripple 2.4s ease-out infinite;
}
.pulse span:nth-child(3) { animation-delay: 1.2s; }
@keyframes ripple {
  0% { transform: scale(.3); opacity: .8; }
  100% { transform: scale(1); opacity: 0; }
}

/* ───────────── 3D & ambient motion ───────────── */

/* Drifting gradient orbs behind the hero */
.hero__orbs {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
}
/* Static blurred orbs — a large blur(70px) element is cheap once
   rasterised, but ANIMATING one (the old drift+scale) re-rasterises the
   whole blurred region every frame and was the main cause of jank.
   Kept as static ambient gradient washes. */
.orb {
  position: absolute; border-radius: 50%; filter: blur(60px);
}
/* Single restrained ambient wash — the old three "gradient blobs" were the
   generic-hero tell; replaced by the brand freight-lane motif below. */
.orb--1 {
  width: 460px; height: 460px; top: -140px; left: -90px; opacity: .42;
  background: radial-gradient(circle at 30% 30%, var(--primary-light), transparent 70%);
}
/* Brand freight-lane motif — thin dashed nationwide lanes drifting behind the
   hero. Compositor-friendly (animates stroke-dashoffset only). */
.hero__lanes { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__lanes path {
  fill: none; stroke: var(--primary-light); stroke-width: 1.5;
  stroke-dasharray: 4 11; opacity: .42;
  animation: dash 26s linear infinite;
}
.hero__lanes path:nth-child(2) { animation-duration: 34s; opacity: .3; }
.hero__lanes path:nth-child(3) { animation-duration: 30s; opacity: .26; }

/* Hero 3D parallax stage — JS tilts .scene on pointer move */
.scene {
  position: relative;
  transform-style: preserve-3d;
  transition: transform .5s var(--ease);
  will-change: transform;
}
.scene.is-tilting { transition: transform .12s linear; }

/* Branded spot illustrations — white-bg images presented as clean rounded cards */
.spot-illus {
  display: block;
  width: 100%;
  max-width: 440px;
  height: auto;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
}
.spot-illus--hero { max-width: 420px; }

/* Real vehicle-type photos shown as a stacked trio (replaces the flat
   "nearby carriers" illustration). Each photo sits on a white rounded card so
   the fleet reads as real, premium product photography. */
.fleet-trio {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.fleet-trio img {
  display: block;
  width: 100%;
  height: clamp(108px, 15vw, 150px);
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 8px 16px;
}

.layer { transform: translateZ(var(--z, 0)); transform-style: preserve-3d; }
.layer--float { position: absolute; right: -18px; bottom: -34px; }

/* Ambient 3D delivery pin — floats and gently sways in 3D space */
.pin3d {
  position: absolute; top: -42px; right: 8px;
  width: 56px; height: 86px;
  z-index: 0;
  transform-style: preserve-3d;
  /* Base pose so it still reads as 3D when the float/sway animation is
     suppressed (reduced-motion); the animation overrides it. */
  transform: rotateY(-14deg);
  animation: pinFloat 4.5s ease-in-out infinite;
}
.pin3d__pin {
  position: absolute; top: 4px; left: 8px;
  width: 40px; height: 40px;
  background: var(--primary);
  border: 2px solid var(--primary-deep);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 12px 22px rgba(79, 70, 229, .35);
}
.pin3d__pin::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 15px; height: 15px;
  background: #fff; border-radius: 50%;
}
/* pulsing locator ring at the pin tip */
.pin3d__pulse {
  position: absolute; left: 50%; bottom: 22px;
  width: 38px; height: 13px; margin-left: -19px;
  background: rgba(79, 70, 229, .22);
  border-radius: 50%;
  animation: pinPulse 2.4s ease-out infinite;
}
@keyframes pinFloat {
  0%, 100% { transform: translateY(0) rotateY(-22deg); }
  50%      { transform: translateY(-13px) rotateY(22deg); }
}
@keyframes pinPulse {
  0%   { transform: scale(.5); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Card 3D tilt — JS adds .is-tilting + an inline transform on pointer move.
   will-change is promoted only on hover so we don't keep every tilt card on
   its own compositor layer permanently (memory pressure on low-end Android). */
[data-tilt]:hover { will-change: transform; }
[data-tilt].is-tilting { transition: transform .1s linear; }

/* ───────────── Trust strip ───────────── */
.trust { background: var(--surface); border-block: 1px solid var(--border-light); }
.trust__inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 36px;
  padding: 26px 24px;
}
.trust__label { font-size: 13px; font-weight: 700; color: var(--text-tertiary); letter-spacing: .02em; }
.trust__items { display: flex; flex-wrap: wrap; gap: 14px 30px; }
.trust__items li {
  font-weight: 800; font-size: 15px; color: var(--text-secondary);
  display: flex; align-items: center; gap: 10px;
}
.trust__items li:not(:first-child)::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--primary-tint-border); margin-left: -16px;
}

/* ───────────── Generic section ───────────── */
.section { padding: clamp(44px, 5.5vw, 76px) 0; }
.section--tint { background: var(--surface); }
.section--dark { background: var(--text-primary); }

.section__head { max-width: 640px; margin: 0 auto clamp(24px, 3vw, 40px); text-align: center; }
.section__head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin: 14px 0 14px; }
.section__head p { color: var(--text-secondary); font-size: 1.05rem; }
.section__head--light h2 { color: #fff; }

.kicker {
  font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--primary);
}
.kicker--light { color: var(--lavender); }

/* ───────────── Steps ───────────── */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.step-card {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius);
  padding: 30px 26px; position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.step-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--hero-grad); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-tint-border); }
.step-card:hover::before { transform: scaleX(1); }
.step-card__num {
  font-size: 13px; font-weight: 800; color: var(--primary);
  background: var(--primary-tint); border: 1px solid var(--primary-tint-border);
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  margin-bottom: 18px;
}
.step-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.step-card p { color: var(--text-secondary); }

/* ───────────── Escrow protection flow ───────────── */
.escrow-section { background: var(--surface); }
.escrow-flow {
  list-style: none; margin: 44px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px;
  position: relative;
}
.escrow-flow::before {
  content: ""; position: absolute; top: 28px; left: 10%; right: 10%;
  height: 2px; background: var(--primary-tint-border); z-index: 0;
}
.escrow-step {
  position: relative; z-index: 1; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.escrow-step__dot {
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--primary-tint); border: 1px solid var(--primary-tint-border);
  color: var(--primary); display: grid; place-items: center;
  box-shadow: var(--shadow-sm); margin-bottom: 10px;
}
.escrow-step__dot svg { width: 26px; height: 26px; }
.escrow-step strong { color: var(--text-primary); font-size: 1rem; }
.escrow-step span { color: var(--text-secondary); font-size: .85rem; line-height: 1.4; max-width: 16ch; }
.escrow-step--final .escrow-step__dot {
  background: var(--success-bg); border-color: var(--success); color: var(--success);
}
@media (max-width: 760px) {
  .escrow-flow { grid-template-columns: 1fr; gap: 22px; max-width: 320px; margin-inline: auto; }
  .escrow-flow::before { display: none; }
}

/* ───────────── Feature grid ───────────── */
.feature-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
.feature {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-tint-border); }
.feature__icon {
  width: 50px; height: 50px; border-radius: 14px; margin-bottom: 18px;
  background: var(--primary-tint); border: 1.5px solid var(--primary-light);
  position: relative;
}
.feature__icon::before, .feature__icon::after { content: ""; position: absolute; }
.feature h3 { font-size: 1.18rem; margin-bottom: 9px; }
.feature p { color: var(--text-secondary); font-size: .98rem; }

/* icon glyphs (pure CSS) */
[data-icon="bolt"]::before {
  inset: 0; background: var(--primary);
  -webkit-mask: no-repeat center/22px conic-gradient(#000 0 0);
  clip-path: polygon(54% 4%, 20% 56%, 44% 56%, 38% 96%, 78% 40%, 50% 40%);
}
[data-icon="shield"]::before {
  inset: 13px; background: var(--primary);
  clip-path: polygon(50% 0, 100% 18%, 100% 60%, 50% 100%, 0 60%, 0 18%);
}
[data-icon="check"]::before {
  width: 22px; height: 12px; left: 14px; top: 16px;
  border-left: 4px solid var(--primary); border-bottom: 4px solid var(--primary);
  transform: rotate(-45deg); border-radius: 2px;
}
[data-icon="pin"]::before {
  width: 18px; height: 18px; left: 16px; top: 12px; background: var(--primary);
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
}
[data-icon="pin"]::after {
  width: 7px; height: 7px; left: 21.5px; top: 19px; background: var(--primary-tint); border-radius: 50%;
}
[data-icon="quote"]::before {
  inset: 14px; border: 4px solid var(--primary); border-radius: 6px; border-bottom-left-radius: 0;
}
[data-icon="truck"]::before {
  width: 26px; height: 14px; left: 12px; top: 16px;
  background: var(--primary); border-radius: 3px;
}
[data-icon="truck"]::after {
  width: 8px; height: 8px; left: 17px; bottom: 12px; background: var(--primary);
  border-radius: 50%; box-shadow: 12px 0 0 var(--primary);
}

/* ───────────── Audiences ───────────── */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.audience {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.audience:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.audience--accent {
  background: var(--primary-tint); border-color: var(--primary-tint-border);
}
.audience__head { margin-bottom: 14px; }
.audience__badge {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; color: var(--primary-deep);
  background: #fff; border: 1px solid var(--primary-tint-border);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.audience--accent .audience__badge { background: #fff; }
.audience__head h3 { font-size: 1.35rem; }
.audience > p { color: var(--text-secondary); margin-bottom: 18px; }

.ticks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.ticks li {
  position: relative; padding-left: 30px; font-size: .95rem;
  color: var(--text-secondary); font-weight: 500;
}
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 20px; height: 20px; border-radius: 6px;
  background: var(--success-bg); border: 1px solid var(--success);
}
.ticks li::after {
  content: ""; position: absolute; left: 6px; top: 6px;
  width: 8px; height: 4px; border-left: 2px solid var(--success);
  border-bottom: 2px solid var(--success); transform: rotate(-45deg);
}
.audience__link {
  margin-top: auto; font-weight: 700; color: var(--primary);
  align-self: flex-start; transition: gap .2s var(--ease), color .2s var(--ease);
}
.audience__link:hover { color: var(--primary-deep); }

/* ───────────── Values (dark) ───────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value {
  border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius);
  padding: 30px 26px; background: rgba(255, 255, 255, .03);
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.value:hover { border-color: rgba(153, 150, 218, .5); background: rgba(255, 255, 255, .06); }
.value h3 {
  font-size: 1.3rem; color: #fff; margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.value h3::before {
  content: ""; width: 10px; height: 10px; border-radius: 3px;
  background: var(--lavender); transform: rotate(45deg);
}
.value p { color: #B9BECE; }

/* ───────────── Coverage ───────────── */
.coverage__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.coverage__copy h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin: 14px 0 16px; }
.coverage__copy > p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 20px; }

.map-card {
  position: relative; aspect-ratio: 4 / 3.2; border-radius: var(--radius);
  background: var(--primary-tint); border: 1px solid var(--primary-tint-border);
  overflow: hidden; box-shadow: var(--shadow-md);
}
@keyframes dash { to { stroke-dashoffset: -280; } }

/* ── Nationwide Nigeria route map (coverage) ── */
.ng-map { position: absolute; inset: 0; width: 100%; height: 100%; padding: 20px; }
.ng-land {
  fill: rgba(79, 70, 229, .07);
  stroke: var(--primary-tint-border); stroke-width: 1.5;
}
.ng-route {
  fill: none; stroke: var(--primary); stroke-width: 2.4; stroke-linecap: round;
  stroke-dasharray: 6 8; opacity: .7; animation: dash 22s linear infinite;
}
.ng-route--alt { stroke: var(--primary-light); opacity: .5; animation-duration: 28s; }
.ng-nodes circle { fill: #fff; stroke: var(--primary); stroke-width: 3; }
/* gentle staggered "live network" pulse on the hubs */
.ng-nodes circle { transform-box: fill-box; transform-origin: center; animation: ngPulse 2.8s ease-in-out infinite; }
.ng-nodes circle:nth-child(2) { animation-delay: .5s; }
.ng-nodes circle:nth-child(3) { animation-delay: 1s; }
.ng-nodes circle:nth-child(4) { animation-delay: 1.5s; }
.ng-nodes circle:nth-child(5) { animation-delay: 2s; }
@keyframes ngPulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
.ng-pin {
  position: absolute; transform: translate(-50%, -50%);
  font-size: 11px; font-weight: 800; color: var(--primary-deep);
  background: #fff; padding: 4px 9px; border-radius: 999px;
  border: 1px solid var(--primary-tint-border); box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.ng-pin--kano  { top: 20%; left: 62%; }
.ng-pin--abuja { top: 44%; left: 52%; }
.ng-pin--lagos { top: 74%; left: 22%; }
.ng-pin--ph    { top: 88%; left: 56%; }
.map-card__caption {
  position: absolute; left: 16px; bottom: 14px;
  font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  color: var(--primary-deep); background: rgba(255, 255, 255, .82);
  padding: 5px 10px; border-radius: 999px; backdrop-filter: blur(4px);
}

/* ───────────── Get-started CTA ───────────── */
.cta {
  background: var(--hero-grad); color: #fff;
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative; overflow: hidden;
}
.cta__inner { text-align: center; max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.cta__inner h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.cta__inner > p { font-size: 1.1rem; color: rgba(255, 255, 255, .9); margin: 16px 0 30px; }
.cta__buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta__note { font-size: .88rem; color: rgba(255, 255, 255, .75); margin-top: 24px; }

/* ───────────── Fleet / vehicle types ───────────── */
.fleet-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.vehicle-card {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius);
  /* preserve-3d (no overflow:hidden) so the media + spec layers
     parallax in depth when the card tilts on hover. */
  transform-style: preserve-3d;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease), border-color .25s var(--ease),
              transform .25s var(--ease);
}
.vehicle-card:hover { box-shadow: var(--shadow-lg); border-color: var(--primary-tint-border); }
.vehicle-card__media { transform: translateZ(28px); }
.vehicle-card__media img {
  display: block; width: 100%; height: auto;
  border-radius: var(--radius) var(--radius) 0 0;
}
.vehicle-card__body { padding: 16px 22px 20px; transform: translateZ(12px); }
.vehicle-card__specs { display: flex; flex-direction: column; }
.vehicle-card__specs li {
  display: flex; flex-direction: column; gap: 3px;
  padding: 10px 0; border-top: 1px solid var(--border-light);
}
.vehicle-card__specs li:first-child { border-top: 0; padding-top: 2px; }
.vehicle-card__specs li:last-child { padding-bottom: 0; }
.vehicle-card__specs span {
  font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--primary);
}
.vehicle-card__specs strong {
  font-size: .96rem; font-weight: 600; color: var(--text-primary);
}
.fleet-note {
  text-align: center; margin-top: 30px;
  color: var(--text-secondary); font-size: .98rem; font-style: italic;
}

/* ───────────── Download / apps ───────────── */
.download-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-bottom: 36px;
}
.download-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
  margin-inline: auto;
}
.qr-card {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius);
  padding: 30px 24px 24px; text-align: center; position: relative;
  display: flex; flex-direction: column; align-items: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              border-color .25s var(--ease);
}
.qr-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-tint-border); }
.qr-card__badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 10.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  color: var(--primary); background: var(--primary-tint);
  padding: 4px 9px; border-radius: 999px;
}
.qr-card__badge--driver { color: #fff; background: var(--text-primary); }
.qr-card__code,
.qr-card__icon {
  width: 156px; height: 156px; padding: 13px; margin-bottom: 18px;
  border: 1px solid var(--border-light); border-radius: var(--radius-sm);
  background: #fff;
}
.qr-card__code img { width: 100%; height: 100%; }
.qr-card__icon {
  display: grid; place-items: center;
  color: var(--primary);
  background:
    linear-gradient(135deg, var(--primary-tint), #fff);
}
.qr-card__icon svg { width: 76px; height: 76px; }
.qr-card h3 { font-size: 1.15rem; margin-bottom: 7px; }
.qr-card > p { color: var(--text-secondary); font-size: .94rem; margin-bottom: 16px; }
.qr-card__hint {
  margin-top: auto; padding-top: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--text-tertiary);
}
.qr-card__stores { display: flex; gap: 8px; width: 100%; margin-top: 8px; }
.store-chip {
  flex: 1; display: flex; flex-direction: column; gap: 1px;
  padding: 8px 11px; border-radius: var(--radius-sm);
  background: var(--text-primary); color: #fff; text-align: left;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.store-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.store-chip--customer { background: var(--primary); color: #fff; }
.store-chip--driver { background: var(--text-primary); color: #fff; }
.store-chip--soon { background: var(--primary-tint); color: var(--primary-deep); }
.store-chip--soon .store-chip__os { color: var(--primary); }
.store-chip__os {
  font-size: 9.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}
.store-chip__store { font-size: 13px; font-weight: 800; }

.support {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 20px 32px;
  background: var(--primary-tint); border: 1px solid var(--primary-tint-border);
  border-radius: var(--radius); padding: 26px 30px;
}
.support__copy h3 { font-size: 1.2rem; margin-bottom: 4px; }
.support__copy p { color: var(--text-secondary); }
.support__buttons { display: flex; flex-wrap: wrap; gap: 12px; }

/* ───────────── Footer ───────────── */
.footer { background: var(--text-primary); color: #B9BECE; }
.footer__inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding: clamp(48px, 6vw, 72px) 24px 40px;
}
.footer__brand p { margin-top: 16px; font-size: .95rem; max-width: 30em; }
.footer__brand .footer__slogan {
  margin-top: 14px; max-width: none;
  font-size: 1.05rem; font-weight: 800; letter-spacing: -.01em;
  color: var(--lavender);
}
.footer__contact { margin-top: 18px; display: flex; flex-direction: column; gap: 9px; }
.footer__contact a {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .92rem; font-weight: 600; color: #B9BECE;
  transition: color .18s var(--ease);
}
.footer__contact a:hover { color: #fff; }
.footer__contact svg { width: 16px; height: 16px; flex: none; color: var(--lavender); }
.footer__social { margin-top: 22px; }
.footer__social-label { font-size: .85rem; color: #B9BECE; }
.footer__social-label strong { color: #fff; font-weight: 700; }
.footer__social-row { display: flex; gap: 10px; margin-top: 11px; }
.social {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center; color: #B9BECE;
  border: 1px solid rgba(255, 255, 255, .14);
  transition: color .18s var(--ease), border-color .18s var(--ease),
              background-color .18s var(--ease), transform .18s var(--ease);
}
.social svg { width: 18px; height: 18px; }
.social:hover {
  color: #fff; border-color: var(--lavender);
  background: rgba(153, 150, 218, .12); transform: translateY(-2px);
}
.footer__col h4 {
  color: #fff; font-size: 14px; font-weight: 800; letter-spacing: .02em;
  margin-bottom: 14px;
}
.footer__col a {
  display: block; padding: 6px 0; font-size: .93rem; color: #B9BECE;
  transition: color .18s var(--ease);
}
.footer__col a:hover { color: var(--lavender); }
.footer__bar {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding: 22px 24px; border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .85rem;
}
.footer__legal { display: flex; flex-wrap: wrap; }
.footer__legal a { padding: 0 14px; position: relative; }
.footer__legal a:first-child { padding-left: 0; }
.footer__legal a:last-child { padding-right: 0; }
.footer__legal a:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 12px; background: rgba(255, 255, 255, .22);
}
.footer__legal a:hover { color: var(--lavender); }

/* 2026-06-22 audit fix — pricing/careers/press/stories use a `footer__bottom`
   legal row (with `|` separators) that had NO css, so it rendered as an
   unstyled full-width line. Style it like `footer__bar`: constrained width,
   centred, top rule, muted-on-dark text. CSS-only so the pages need no edit. */
.footer__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 14px;
  padding: 22px 24px; border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .85rem; color: var(--text-on-dark);
}

/* ───────────── Reveal animation ───────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ───────────── Responsive ───────────── */
@media (max-width: 960px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }
  .topbar__msg { display: none; }
  .topbar .container { justify-content: center; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; margin: 8px auto 30px; }
  .steps, .feature-grid, .audience-grid, .values-grid,
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .coverage__inner { grid-template-columns: 1fr; }
  .coverage__map { max-width: 460px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .steps, .feature-grid, .audience-grid, .values-grid,
  .download-grid, .download-grid--two, .fleet-grid, .trust-story-grid { grid-template-columns: 1fr; }
  .hero__cta .btn, .cta__buttons .btn,
  .support__buttons .btn { flex: 1 1 100%; }
  .hero__proof { gap: 18px 24px; }
  .layer--float { right: 0; bottom: -28px; }
  .support { padding: 22px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .trust__items li:not(:first-child)::before { display: none; }
}

/* ════════════════ Multi-page additions ════════════════ */

/* ───────────── Active nav link ───────────── */
.nav__links a[aria-current="page"] { color: var(--text-primary); }
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__mobile > a[aria-current="page"] { color: var(--primary); }

/* ───────────── Sub-page hero ───────────── */
.page-hero {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(46px, 6vw, 84px) 0 clamp(36px, 4vw, 60px);
}
.page-hero__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.page-hero__title {
  font-size: clamp(2rem, 4.6vw, 3.2rem); margin: 18px 0 16px;
}
.page-hero__lede {
  font-size: clamp(1rem, 1.4vw, 1.16rem); color: var(--text-secondary);
  max-width: 33em; margin: 0 auto;
}
.page-hero .eyebrow { justify-content: center; }

/* ───────────── Animated counters ───────────── */
.counters {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.counter { text-align: center; padding: 10px 8px; }
.counter + .counter { border-left: 1px solid var(--border-light); }
.counter__num {
  display: block; line-height: 1; letter-spacing: -.03em; font-weight: 800;
  font-size: clamp(2.4rem, 4.6vw, 3.5rem);
  color: var(--text-primary);
}
.counter__label {
  display: block; margin-top: 12px;
  font-size: .95rem; font-weight: 600; color: var(--text-secondary);
}
.counter__note {
  margin: 18px auto 0;
  max-width: 580px;
  text-align: center;
  color: var(--text-tertiary);
  font-size: 13px;
  font-weight: 700;
}

.trust-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.trust-story {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.trust-story strong {
  display: block;
  color: var(--text-primary);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.trust-story span { color: var(--text-secondary); line-height: 1.6; }

/* ───────────── Testimonial slider ───────────── */
.slider { position: relative; max-width: 760px; margin: 0 auto; }
.slider__viewport {
  overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--border-light); box-shadow: var(--shadow-md);
}
.slider__track { display: flex; transition: transform .5s var(--ease); }
.slide {
  flex: 0 0 100%; box-sizing: border-box;
  background: #fff; padding: clamp(28px, 4vw, 48px);
}
.slide__quote {
  position: relative; font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  font-weight: 500; line-height: 1.5; letter-spacing: -.01em;
  color: var(--text-primary);
}
.slide__quote::before {
  content: "\201C"; position: absolute; left: -6px; top: -22px;
  font-size: 3.4rem; line-height: 1; color: var(--primary-tint-border);
  font-weight: 800;
}
.slide__person { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.slide__avatar {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  display: grid; place-items: center; font-weight: 800; font-size: 15px;
  color: #fff; background: var(--hero-grad);
}
.slide__meta { display: flex; flex-direction: column; }
.slide__meta b { font-size: .98rem; }
.slide__meta small { font-size: .85rem; color: var(--text-tertiary); }
.slider__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%; padding: 0;
  background: #fff; border: 1px solid var(--border-light);
  font-size: 22px; line-height: 1; color: var(--text-primary); cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
  transition: color .18s var(--ease), border-color .18s var(--ease),
              transform .18s var(--ease);
}
.slider__arrow:hover {
  color: var(--primary); border-color: var(--primary-tint-border);
}
.slider__arrow--prev { left: -21px; }
.slider__arrow--next { right: -21px; }
.slider__dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.slider__dot {
  width: 8px; height: 8px; border-radius: 999px; border: 0; padding: 0;
  background: var(--primary-tint-border); cursor: pointer;
  transition: background-color .2s var(--ease), width .2s var(--ease);
}
.slider__dot[aria-selected="true"] { background: var(--primary); width: 22px; }

/* ───────────── Shared form controls ───────────── */
.calc select, .calc input[type="number"],
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; box-sizing: border-box;
  font-family: inherit; font-size: 15px; color: var(--text-primary);
  background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm); padding: 11px 14px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.calc select:focus, .calc input:focus,
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-tint);
}

/* ───────────── Shipment calculator ───────────── */
.calc-layout {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 26px;
  align-items: start;
}
.calc {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: clamp(22px, 3vw, 30px);
  display: flex; flex-direction: column; gap: 22px;
}
.calc__field { display: flex; flex-direction: column; gap: 8px; }
.calc__field > label {
  font-size: 12.5px; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; color: var(--text-secondary);
}
.calc__hint { font-size: .84rem; color: var(--text-tertiary); }
.calc__distance { display: flex; flex-direction: column; gap: 13px; }
.calc__distance-num { display: flex; align-items: center; gap: 8px; }
.calc__distance-num input { width: 110px; }
.calc__distance-num span { font-weight: 700; color: var(--text-secondary); }
.calc input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px;
  border-radius: 999px; background: var(--primary-tint); cursor: pointer;
}
.calc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--primary); border: 3px solid #fff;
  box-shadow: 0 1px 5px rgba(7, 13, 38, .3);
}
.calc input[type="range"]::-moz-range-thumb {
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--primary); border: 3px solid #fff;
}
.calc-result {
  background: var(--text-primary); color: #fff;
  border-radius: var(--radius); padding: clamp(24px, 3vw, 32px);
  position: sticky; top: 90px;
}
.calc-result__label {
  font-size: 12px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--lavender);
}
.calc-result__range {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  margin: 12px 0 22px;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 800; letter-spacing: -.02em;
}
.calc-result__dash { color: rgba(255, 255, 255, .45); }
.calc-result__breakdown { border-top: 1px solid rgba(255, 255, 255, .12); }
.calc-result__breakdown li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-size: .92rem;
}
.calc-result__breakdown span { color: #B9BECE; }
.calc-result__breakdown strong { color: #fff; font-weight: 700; }
.calc-result__note { font-size: .82rem; color: #B9BECE; margin: 18px 0; }

/* ───────────── Contact page ───────────── */
.contact-grid {
  display: grid; grid-template-columns: 1.25fr .75fr; gap: 30px;
  align-items: start;
}
.contact-form-wrap {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: clamp(24px, 4vw, 40px);
}
.contact-form-wrap h2 { font-size: 1.5rem; }
.contact-form-wrap__lede { color: var(--text-secondary); margin: 8px 0 24px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form[hidden] { display: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.form-opt { font-weight: 500; color: var(--text-tertiary); }
.contact-form textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.form-error { font-size: .82rem; font-weight: 600; color: var(--danger); }
.form-field.is-invalid input,
.form-field.is-invalid textarea { border-color: var(--danger); }
.form-field.is-invalid input:focus,
.form-field.is-invalid textarea:focus { box-shadow: 0 0 0 3px var(--danger-bg); }
.form-disclaimer { font-size: .8rem; color: var(--text-tertiary); text-align: center; }
.form-success { text-align: center; padding: 34px 12px; }
.form-success__icon {
  width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 18px;
  display: grid; place-items: center; font-size: 28px; font-weight: 800;
  background: var(--success-bg); color: var(--success);
}
.form-success h3 { font-size: 1.3rem; margin-bottom: 8px; }
.form-success p { color: var(--text-secondary); margin-bottom: 22px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info > h2 { font-size: 1.3rem; }
.contact-info__list { display: flex; flex-direction: column; gap: 10px; }
.contact-info__item {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-sm); padding: 14px 16px;
  transition: border-color .18s var(--ease), transform .18s var(--ease),
              box-shadow .18s var(--ease);
}
.contact-info__item:hover {
  border-color: var(--primary-tint-border); transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.contact-info__icon {
  width: 40px; height: 40px; border-radius: 10px; flex: none;
  display: grid; place-items: center; color: var(--primary);
  background: var(--primary-tint); border: 1px solid var(--primary-tint-border);
}
.contact-info__icon svg { width: 18px; height: 18px; }
.contact-info__text { display: flex; flex-direction: column; }
.contact-info__text b { font-size: .95rem; }
.contact-info__text small { font-size: .85rem; color: var(--text-tertiary); }
.contact-info__panel {
  background: var(--primary-tint); border: 1px solid var(--primary-tint-border);
  border-radius: var(--radius-sm); padding: 16px 18px;
}
.contact-info__panel h3 { font-size: 1rem; margin-bottom: 5px; }
.contact-info__panel p { font-size: .9rem; color: var(--text-secondary); }

/* ───────────── Multi-page responsive ───────────── */
@media (max-width: 900px) {
  .calc-layout, .contact-grid { grid-template-columns: 1fr; }
  .calc-result { position: static; }
}
@media (max-width: 600px) {
  .counters { grid-template-columns: 1fr 1fr; gap: 26px 12px; }
  .counter:nth-child(odd) { border-left: 0; }
  .counter:nth-child(3), .counter:nth-child(4) {
    border-top: 1px solid var(--border-light); padding-top: 26px;
  }
  .form-row { grid-template-columns: 1fr; }
  .slider__arrow { display: none; }
}

/* ════════════════ Partners, calculator-up-top, 3D props ════════════════ */

/* ───────────── Partners / featured-by marquee ───────────── */
.partners-section {
  background: var(--surface);
  border-block: 1px solid var(--border-light);
  padding: clamp(26px, 4vw, 42px) 0;
  overflow: hidden;
}
.partners__label {
  text-align: center; margin-bottom: 20px;
  font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-tertiary);
}
.partners__note {
  max-width: 540px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-tertiary);
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex; gap: 16px; width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.partner-chip {
  flex: none;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 999px;
  background: #fff; border: 1px solid var(--border-light);
  font-weight: 800; font-size: .98rem; color: var(--text-secondary);
  white-space: nowrap;
}
.partner-chip__logo {
  height: 22px; width: auto;
  display: block;
  object-fit: contain;
}
.partner-chip small {
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  color: var(--primary); text-transform: uppercase;
}

/* ───────────── Audience tagline ───────────── */
.audience__note {
  font-weight: 700; color: var(--primary);
  margin-bottom: 18px; font-size: .95rem;
}
.audience--accent .audience__note { color: var(--primary-deep); }

/* ───────────── Quick-estimate "open full" link ───────────── */
.calc-more { text-align: center; margin-top: 26px; }
.calc-more a {
  font-weight: 700; color: var(--primary);
  transition: color .18s var(--ease);
}
.calc-more a:hover { color: var(--primary-deep); }

/* ───────────── Ambient floating 3D shapes ───────────── */
.float-shapes {
  position: absolute; inset: 0; overflow: hidden;
  pointer-events: none; z-index: 0;
}
.float-shape {
  position: absolute; display: block;
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 6px; will-change: transform;
}
.float-shape--1 {
  width: 60px; height: 60px; left: 8%; top: 22%;
  animation: floatSpin 15s linear infinite;
}
.float-shape--2 {
  width: 38px; height: 38px; left: 80%; top: 18%;
  border-radius: 50%; background: rgba(255, 255, 255, .12);
  animation: floatY 9s ease-in-out infinite;
}
.float-shape--3 {
  width: 84px; height: 84px; left: 87%; bottom: 12%;
  animation: floatSpin 22s linear infinite reverse;
}
.float-shape--4 {
  width: 26px; height: 26px; left: 16%; bottom: 18%;
  background: rgba(255, 255, 255, .15);
  animation: floatY 7s ease-in-out infinite;
}
@keyframes floatSpin {
  0%   { transform: rotate(0deg) translateY(0); }
  50%  { transform: rotate(180deg) translateY(-16px); }
  100% { transform: rotate(360deg) translateY(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* ════════════════ More motion: fleet slider, step flow, icon float ════════════════ */

/* Vehicle slides in the home-page "Meet the fleet" slider */
.slide--vehicle { padding: 0; }
.slide--vehicle img { display: block; width: 100%; height: auto; }
.slide--vehicle__cap {
  padding: 16px 24px; text-align: center;
  font-size: .98rem; font-weight: 600; color: var(--text-secondary);
  border-top: 1px solid var(--border-light);
}

/* Animated dashed connector behind the How-it-works steps — the opaque
   cards cover it, so the flowing dashes only show in the gaps between. */
.steps { position: relative; }
.steps::before {
  content: ""; position: absolute; z-index: 0;
  top: 52px; left: 0; right: 0; height: 2px;
  background: repeating-linear-gradient(
    90deg, var(--primary) 0 7px, transparent 7px 16px);
  background-size: 23px 100%;
  opacity: .5;
  animation: stepFlow 1.4s linear infinite;
}
@keyframes stepFlow { to { background-position: 23px 0; } }
.step-card { z-index: 1; }

/* Gentle ambient float on the feature icons, staggered */
.feature__icon { animation: iconFloat 4.5s ease-in-out infinite; }
.feature:nth-child(2) .feature__icon { animation-delay: -.6s; }
.feature:nth-child(3) .feature__icon { animation-delay: -1.2s; }
.feature:nth-child(4) .feature__icon { animation-delay: -1.8s; }
.feature:nth-child(5) .feature__icon { animation-delay: -2.4s; }
.feature:nth-child(6) .feature__icon { animation-delay: -3s; }
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Floating-shapes variant for light backgrounds (sub-page heroes) */
.float-shapes--light .float-shape { border-color: var(--primary-tint-border); }
.float-shapes--light .float-shape--2,
.float-shapes--light .float-shape--4 { background: var(--primary-tint); }

@media (max-width: 600px) {
  .steps::before { display: none; }
}

/* ════════════════ New pages: WhatsApp FAB, FAQ, Legal, Blog, About ════════════════ */

/* ───────────── Floating WhatsApp button ───────────── */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--primary); color: #fff;
  box-shadow: var(--shadow-indigo);
  transition: transform .2s var(--ease), background-color .2s var(--ease);
}
.wa-fab svg { width: 28px; height: 28px; }
.wa-fab:hover { background: var(--primary-deep); transform: translateY(-3px) scale(1.05); }
.wa-fab::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--primary); opacity: 0;
  animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.75); opacity: 0; }
}

/* ───────────── About — prose blocks ───────────── */
.prose { max-width: 680px; margin: 0 auto; }
.prose p {
  font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7;
  margin-bottom: 18px;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text-primary); }

/* ───────────── FAQ accordion ───────────── */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color .2s var(--ease);
}
.faq-item[open] { border-color: var(--primary-tint-border); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 17px 22px; font-weight: 700; font-size: 1.02rem;
  color: var(--text-primary);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.45rem; font-weight: 700; line-height: 1;
  color: var(--primary); flex: none;
  transition: transform .2s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--primary); }
.faq-item__body { padding: 0 22px 20px; }
.faq-item__body p { color: var(--text-secondary); line-height: 1.65; }
.faq-item__body a { color: var(--primary); font-weight: 600; }
.faq-cta {
  text-align: center; margin-top: 40px;
  background: var(--primary-tint); border: 1px solid var(--primary-tint-border);
  border-radius: var(--radius); padding: 32px 24px;
}
.faq-cta h3 { font-size: 1.3rem; }
.faq-cta p { color: var(--text-secondary); margin: 8px 0 18px; }

/* ───────────── Legal documents ───────────── */
.legal-wrap { max-width: 820px; margin: 0 auto; }
.legal-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.legal-nav a {
  font-size: .9rem; font-weight: 700; color: var(--text-secondary);
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--border-light); background: #fff;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.legal-nav a:hover { color: var(--primary); border-color: var(--primary-tint-border); }
.legal-doc { margin-bottom: 48px; scroll-margin-top: 100px; }
.legal-doc:last-child { margin-bottom: 0; }
.legal-doc__title { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 6px; }
.legal-doc__meta { font-size: .85rem; color: var(--text-tertiary); margin-bottom: 18px; }
.legal-doc__body { color: var(--text-secondary); line-height: 1.7; }
.legal-doc__body h2, .legal-doc__body h3, .legal-doc__body h4 {
  color: var(--text-primary); margin: 24px 0 10px;
}
.legal-doc__body h2 { font-size: 1.3rem; }
.legal-doc__body h3 { font-size: 1.1rem; }
.legal-doc__body p { margin-bottom: 14px; }
.legal-doc__body ul, .legal-doc__body ol { margin: 0 0 14px 22px; }
.legal-doc__body li { margin-bottom: 6px; }
.legal-doc__body a { color: var(--primary); font-weight: 600; }
.legal-doc__pending {
  background: var(--primary-tint); border: 1px solid var(--primary-tint-border);
  border-radius: var(--radius-sm); padding: 16px 18px;
  color: var(--text-secondary);
}

/* ───────────── Blog ───────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-grid[hidden], .blog-post[hidden] { display: none; }
.blog-empty {
  grid-column: 1 / -1; text-align: center;
  color: var(--text-secondary); padding: 40px 0; font-size: 1.05rem;
}
.blog-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              border-color .25s var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: var(--primary-tint-border);
}
.blog-card__cover {
  display: block; height: 178px;
  background: var(--primary-tint) center / cover no-repeat;
}
.blog-card__cover--blank { background: var(--hero-grad); }
.blog-card__body { padding: 20px 22px; display: flex; flex-direction: column; gap: 8px; }
.blog-card__meta {
  font-size: 12px; font-weight: 700; letter-spacing: .02em;
  text-transform: uppercase; color: var(--primary);
}
.blog-card__body strong {
  font-size: 1.12rem; font-weight: 800; letter-spacing: -.01em;
  color: var(--text-primary);
}
.blog-card__body > span:last-child { color: var(--text-secondary); font-size: .95rem; }
.blog-post { max-width: 720px; margin: 0 auto; }
.blog-back { display: inline-block; margin-bottom: 22px; font-weight: 700; color: var(--primary); }
.blog-post__cover {
  height: 320px; border-radius: var(--radius); margin-bottom: 22px;
  background: var(--primary-tint) center / cover no-repeat;
}
.blog-post__title { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin: 8px 0; }
.blog-post__sub { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 8px; }
.blog-post__author { font-size: .9rem; color: var(--text-tertiary); margin-bottom: 24px; }
.blog-post__body { color: var(--text-secondary); line-height: 1.75; }
.blog-post__body h2, .blog-post__body h3 { color: var(--text-primary); margin: 26px 0 10px; }
.blog-post__body p { margin-bottom: 16px; }
.blog-post__body img { max-width: 100%; border-radius: var(--radius-sm); margin: 12px 0; }
.blog-post__body a { color: var(--primary); font-weight: 600; }
.blog-post__body ul, .blog-post__body ol { margin: 0 0 16px 22px; }

@media (max-width: 960px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .wa-fab { right: 16px; bottom: 16px; }
}

/* ============================================================
   Partners page (partners.html)
   ============================================================ */

.page-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* Three partnership tracks */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.partner-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.partner-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #EEF2FF;
  color: #4F46E5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-card__icon svg {
  width: 26px;
  height: 26px;
}
.partner-card h3 {
  font-size: 1.25rem;
  margin: 0;
  color: #070D26;
}
.partner-card__pitch {
  color: #4B5563;
  margin: 0;
  line-height: 1.55;
}
.partner-card__list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.partner-card__list li {
  position: relative;
  padding-left: 22px;
  color: #4B5563;
  line-height: 1.45;
}
.partner-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #EEF2FF;
  border: 2px solid #4F46E5;
}

/* Why-partner grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.why-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius);
  padding: 28px 24px;
}
.why-card__num {
  /* Public Sans is the locked brand font — no monospace swap. */
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
}
.why-card h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: #070D26;
}
.why-card p {
  color: #4B5563;
  margin: 0;
  line-height: 1.55;
}

/* Process steps */
.process {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: process;
}
.process__step {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 24px 20px;
  position: relative;
}
.process__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4F46E5, #6366F1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
}
.process__step h3 {
  font-size: 1.05rem;
  margin: 0 0 6px;
  color: #070D26;
}
.process__step p {
  color: #4B5563;
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Apply section grid */
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.apply-intro h2 {
  margin-top: 12px;
}
.apply-intro p {
  color: #4B5563;
  line-height: 1.6;
}
.apply-intro__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.apply-intro__list li {
  position: relative;
  padding-left: 26px;
  color: #4B5563;
  line-height: 1.55;
}
.apply-intro__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #4F46E5;
  font-weight: 700;
}

@media (max-width: 980px) {
  .partner-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
  .apply-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 600px) {
  .partner-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .process {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Pricing / Careers / Stories pages — shared grid + card styles
   2026-05-15 — added with the gap-audit wave-1 content pages.
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.pricing-card {
  background: var(--canvas);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-card h3 {
  margin: 0;
  font-size: 1.18rem;
  color: var(--text-primary);
}
.pricing-card__price {
  font-weight: 800;
  color: var(--primary);
  font-size: 1.06rem;
  margin: 0;
}
.pricing-card ul {
  padding-left: 18px;
  margin: 4px 0 0;
  color: var(--text-secondary);
  font-size: .96rem;
  line-height: 1.55;
}
.pricing-card ul li { margin-bottom: 4px; }
.pricing-card--accent {
  border-color: var(--primary);
  box-shadow: 0 10px 28px rgba(79, 70, 229, .10);
}

/* Careers list — vertical cards */
.careers-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.career-card {
  background: var(--canvas);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px;
  position: relative;
}
.career-card h3 {
  margin: 6px 0 8px;
  font-size: 1.2rem;
  color: var(--text-primary);
}
.career-card p { color: var(--text-secondary); line-height: 1.6; }
.career-card__pill {
  display: inline-block;
  background: var(--primary-tint);
  color: var(--primary-deep);
  border: 1px solid var(--primary-ring);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.career-card__meta {
  font-size: .88rem;
  color: var(--text-tertiary);
  margin: 8px 0 16px;
}

/* Customer stories — bigger cards with a stats strip */
.stories-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.story-card {
  background: var(--canvas);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 22px rgba(7, 13, 38, .04);
}
.story-card__head { margin-bottom: 22px; }
.story-card__head h2 {
  margin: 8px 0 0;
  font-size: 1.5rem;
  color: var(--text-primary);
}
.story-card__pill {
  display: inline-block;
  background: var(--primary-tint);
  color: var(--primary-deep);
  border: 1px solid var(--primary-ring);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.story-card__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  background: var(--surface);
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 18px;
}
.story-card__stats > div { text-align: center; }
.story-card__stats strong {
  display: block;
  font-size: 1.7rem;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 4px;
}
.story-card__stats span {
  font-size: .82rem;
  color: var(--text-tertiary);
  line-height: 1.4;
}

@media (max-width: 600px) {
  .story-card { padding: 22px 18px; }
  .story-card__head h2 { font-size: 1.2rem; }
}

/* ============================================================
   Cookie consent banner (injected by main.js)
   2026-05-15 — minimal, privacy-first; no third-party trackers.
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  background: var(--text-primary);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(7, 13, 38, .35);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .94rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .35s ease, transform .35s ease;
}
.cookie-banner.is-visible { opacity: 1; transform: translateY(0); }
.cookie-banner__text { flex: 1; min-width: 0; }
.cookie-banner__text a { color: #fff; text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  font-family: inherit;
}
.cookie-banner__btn--primary {
  background: var(--primary);
  border-color: var(--primary);
}
.cookie-banner__btn:hover { background: var(--primary-deep); border-color: var(--primary-deep); }
@media (max-width: 720px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .cookie-banner__actions { justify-content: flex-end; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: none; transform: none; }
}

/* ============================================================
   Partner spotlight cards (index.html #partner-spotlight)
   Hydrated by main.js from list_public_partners.
   ============================================================ */
.partner-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.partner-card {
  background: var(--canvas);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 22px 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color .15s ease, transform .15s ease;
}
.partner-card:hover {
  border-color: var(--primary-ring);
  transform: translateY(-2px);
}
.partner-card__logo {
  flex: none;
  width: 52px; height: 52px;
  border-radius: 12px;
  object-fit: contain;
  background: var(--surface);
  border: 1px solid var(--border-light);
}
/* Intentional branded monogram chip (used until a real partner logo URL
   exists) — reads as designed, not a placeholder. */
.partner-card__logo--placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .01em;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-deep));
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3), var(--shadow-sm);
}
.partner-card__body { flex: 1; min-width: 0; }
.partner-card__body header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.partner-card__kind {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.partner-card__tier {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary-deep);
  background: var(--primary-tint);
  border: 1px solid var(--primary-ring);
  padding: 2px 8px;
  border-radius: 999px;
}
.partner-card h3 {
  margin: 0 0 6px;
  font-size: 1.06rem;
  color: var(--text-primary);
  line-height: 1.3;
}
.partner-card p {
  margin: 0 0 10px;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--text-secondary);
}
.partner-card__hq {
  font-size: .8rem;
  color: var(--text-tertiary);
  font-weight: 600;
}
.partner-spotlight__empty {
  grid-column: 1 / -1;
  text-align: center;
  font-size: .95rem;
  color: var(--text-tertiary);
  padding: 32px 0;
}

/* ── Fleet directory (fleets.html #fleetDirectory) ── */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  font-size: .95rem;
  color: var(--text-tertiary);
  padding: 40px 16px;
  border: 1px dashed var(--border-light);
  border-radius: 16px;
  background: var(--surface);
}
.empty-state a { color: var(--primary); font-weight: 700; }
.fleet-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0 10px;
}
.fleet-chip {
  font-size: .72rem;
  font-weight: 600;
  color: var(--primary-deep);
  background: var(--primary-tint);
  border: 1px solid var(--primary-ring);
  padding: 3px 9px;
  border-radius: 999px;
}
.fleet-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
}
.fleet-stat {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-secondary);
}

/* ============================================================================
 * 2026-05-17 — Marketing illustration system
 *
 * Every illustration is rendered through a single `<picture>` / `<img>`
 * with the `.illustration` class. If the binary `.webp` hasn't been
 * dropped into `assets/illustrations/` yet, the broken-image state is
 * styled into a tasteful placeholder card with the alt text — so the
 * page still composes cleanly while assets are pending. See
 * `assets/illustrations/README.md` for the file list.
 * ============================================================================ */
/* When the binary loads cleanly, the illustration renders with this
   styling. When it's missing, the inline `onerror` on each <img> hides
   it (and/or restores the fallback visual that lives next to it) — so
   there's no half-broken "tinted box with alt text" state. */
.illustration {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: contain;
  box-shadow:
    0 12px 32px -8px rgba(79, 70, 229, 0.18),
    0 2px 6px rgba(15, 23, 42, 0.06);
}

/* ──────── Hero illustration (replaces the parallax mock) ──────── */
.hero__illustration {
  max-width: 640px;
  margin: 0 auto;
}
.hero__illustration .illustration { min-height: 360px; }

/* ──────── Showcase band — "Instant Match in action" ──────── */
.showcase {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
/* Ambient 3D floating shapes behind every showcase band — same
   vocabulary as the hero orbs + the CTA float-shapes. */
.showcase::before,
.showcase::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.showcase::before {
  top: -80px; left: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--primary-tint, #EEF2FF), transparent 70%);
}
.showcase::after {
  bottom: -100px; right: -100px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(199, 210, 254, 0.6), transparent 70%);
}
.showcase > .container { position: relative; z-index: 1; }

.showcase__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.showcase--reversed .showcase__inner {
  grid-template-columns: 1fr 1.2fr;
}
.showcase--reversed .showcase__copy {
  order: 2;
}
.showcase__copy .kicker {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-tint, #EEF2FF);
  color: var(--primary-deep, #3730A3);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.showcase__copy h2 {
  margin: 14px 0 12px;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.showcase__copy p {
  margin: 0 0 18px;
  color: var(--text-secondary, #4B5563);
  line-height: 1.65;
  font-size: 1rem;
}
.showcase__copy ul.ticks {
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}
.showcase__copy ul.ticks li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: .95rem;
  color: var(--text-primary, #070D26);
  font-weight: 600;
}
.showcase__copy ul.ticks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary, #4F46E5);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 8'/></svg>");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 880px) {
  .showcase__inner,
  .showcase--reversed .showcase__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .showcase--reversed .showcase__copy { order: 0; }
}

/* ──────── Feature card thumbnail (small inline illustration) ──────── */
.feature__thumb {
  display: block;
  width: 100%;
  height: 160px;
  border-radius: 14px;
  margin: 0 0 16px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary-tint, #EEF2FF), #FFFFFF);
  border: 1px solid var(--border, #E5E7EB);
}

/* ──────── Vehicle 6-card grid (replaces the slider) ──────── */
.vehicle-hero-grid {
  margin-top: 24px;
}
.vehicle-hero-grid .illustration {
  min-height: 0;
  max-width: 1100px;
  margin: 0 auto;
  /* The illustration IS the grid, so let it breathe at its native ratio */
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* Real-HTML 6-card vehicle grid (uses the .webp photos in assets/vehicles/).
   Replaces both the old slider and the missing vehicle-grid.webp slot. */
.vehicle-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 32px auto 0;
  max-width: 1100px;
}
.vehicle-mini-card {
  background: #FFFFFF;
  border: 1px solid var(--border, #E5E7EB);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* 3D depth: perspective stage + soft layered shadow at rest */
  transform-style: preserve-3d;
  perspective: 1200px;
  box-shadow:
    0 4px 14px -3px rgba(15, 23, 42, 0.06),
    0 1px 3px rgba(15, 23, 42, 0.04);
  transition: transform 280ms cubic-bezier(.2,.7,.3,1),
              box-shadow 280ms ease,
              border-color 280ms ease;
}
.vehicle-mini-card:hover {
  /* True 3D lift: combine Y translate + perspective tilt */
  transform: translateY(-6px) rotateX(2deg) rotateY(-2deg);
  border-color: var(--primary-tint-border, #C7D2FE);
  box-shadow:
    0 24px 48px -12px rgba(79, 70, 229, 0.28),
    0 6px 14px rgba(15, 23, 42, 0.08);
}
.vehicle-mini-card img {
  transition: transform 320ms cubic-bezier(.2,.7,.3,1);
  transform: translateZ(0);
}
.vehicle-mini-card:hover img {
  /* Pop the truck off the card on hover for the layered-depth read */
  transform: translateZ(20px) scale(1.04);
}
/* .vehicle-mini-card__icon removed — the photo already shows the vehicle;
   an identical truck glyph on every card read as generic clutter. */
.vehicle-mini-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}
.vehicle-mini-card__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.vehicle-mini-card__foot h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary, #070D26);
  letter-spacing: -.01em;
}
.vehicle-mini-card__foot p {
  margin: 4px 0 0;
  font-size: .82rem;
  color: var(--text-secondary, #4B5563);
}
.cap-chip {
  background: var(--primary-tint, #EEF2FF);
  color: var(--primary-deep, #3730A3);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ──────── Instant Match showcase — CSS+SVG fallback for the .webp ──────── */
.im-broadcast {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.06) 0%, transparent 60%),
    linear-gradient(135deg, #FAFAFB, #F1F0FF);
  border-radius: 24px;
  border: 1px solid var(--border, #E5E7EB);
  box-shadow:
    0 12px 32px -8px rgba(79, 70, 229, 0.18),
    0 2px 6px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.im-broadcast__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
}
.im-broadcast__pin {
  position: absolute;
  top: -22px; left: -16px;
  width: 32px; height: 32px;
  background: var(--primary, #4F46E5);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow:
    0 8px 20px -4px rgba(79, 70, 229, 0.5),
    0 0 0 6px rgba(99, 102, 241, 0.15);
}
.im-broadcast__pin::after {
  content: '';
  position: absolute;
  inset: 9px;
  background: #FFFFFF;
  border-radius: 50%;
}
.im-broadcast__pulse {
  position: absolute;
  top: 0; left: 0;
  border-radius: 50%;
  border: 2px solid var(--primary, #4F46E5);
  opacity: 0;
  animation: im-pulse 2.4s ease-out infinite;
}
.im-broadcast__pulse--1 { width: 120px; height: 120px; margin: -60px 0 0 -60px; }
.im-broadcast__pulse--2 { width: 220px; height: 220px; margin: -110px 0 0 -110px; animation-delay: 0.8s; }
.im-broadcast__pulse--3 { width: 320px; height: 320px; margin: -160px 0 0 -160px; animation-delay: 1.6s; }
@keyframes im-pulse {
  0%   { opacity: 0.7; transform: scale(0.7); }
  100% { opacity: 0; transform: scale(1.1); }
}
.im-broadcast__carrier {
  position: absolute;
  top: var(--y); left: var(--x);
  width: 14px; height: 14px;
  background: var(--primary-deep, #3730A3);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(199, 210, 254, 0.55);
  transform: translate(-50%, -50%);
}
.im-broadcast__card {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid var(--border, #E5E7EB);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 6px 16px -4px rgba(15, 23, 42, 0.12);
  font-size: .8rem;
  line-height: 1.3;
  max-width: 200px;
}
.im-broadcast__card strong {
  display: block;
  color: var(--text-primary, #070D26);
  font-weight: 700;
  font-size: .85rem;
  margin-top: 2px;
}
.im-broadcast__card-eyebrow {
  font-size: .65rem;
  font-weight: 800;
  color: var(--primary-deep, #3730A3);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.im-broadcast__card--left {
  top: 16px; left: 16px;
}
.im-broadcast__card--right {
  top: 50%; right: 16px;
  transform: translateY(-50%);
  border-color: var(--primary-tint-border, #C7D2FE);
  background: linear-gradient(135deg, #F8F8FF, #FFFFFF);
}
.im-broadcast__strip {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  background: #FFFFFF;
  border: 1px solid var(--border, #E5E7EB);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  box-shadow: 0 6px 16px -4px rgba(15, 23, 42, 0.12);
}
.im-step {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-tertiary, #9CA3AF);
  flex: 1;
  text-align: center;
  position: relative;
}
.im-step.active { color: var(--primary, #4F46E5); }
.im-step.active::before {
  content: '✓';
  display: inline-block;
  margin-right: 4px;
  color: var(--primary, #4F46E5);
}

/* ──────── Verified Carrier showcase — CSS fallback for the .webp ──────── */
.vc-stack {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  background:
    radial-gradient(circle at 80% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 60%),
    linear-gradient(135deg, #FAFAFB, #F1F0FF);
  border-radius: 24px;
  border: 1px solid var(--border, #E5E7EB);
  box-shadow:
    0 12px 32px -8px rgba(79, 70, 229, 0.18),
    0 2px 6px rgba(15, 23, 42, 0.06);
}
.vc-shield {
  background: linear-gradient(135deg, var(--primary, #4F46E5), var(--primary-deep, #3730A3));
  color: #FFFFFF;
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 24px -6px rgba(79, 70, 229, 0.45);
}
.vc-shield svg { width: 36px; height: 36px; flex-shrink: 0; }
.vc-shield strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
}
.vc-shield span {
  display: block;
  font-size: .8rem;
  opacity: 0.85;
  margin-top: 2px;
}
.vc-checks {
  list-style: none;
  padding: 16px;
  margin: 0;
  background: #FFFFFF;
  border: 1px solid var(--border, #E5E7EB);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vc-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-primary, #070D26);
}
.vc-checks__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--primary, #4F46E5);
  color: #FFFFFF;
}
.vc-checks__icon svg { width: 14px; height: 14px; }
.vc-escrow {
  background: #FFFFFF;
  border: 1px solid var(--primary-tint-border, #C7D2FE);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--primary-deep, #3730A3);
}
.vc-escrow svg { width: 28px; height: 28px; flex-shrink: 0; }
.vc-escrow strong {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: var(--text-primary, #070D26);
}
.vc-escrow span {
  display: block;
  font-size: .8rem;
  color: var(--text-secondary, #4B5563);
  margin-top: 2px;
}

/* ──────── Coverage map override ──────── */
.coverage__illustration {
  border-radius: 24px;
  overflow: hidden;
}
.coverage__illustration .illustration { min-height: 320px; }

/* ──────── Download section three-apps composite ──────── */
.download__composite {
  margin-top: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.download__composite .illustration {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  min-height: 0;
}

/* ============================================================================
 * 2026-05-28 — Container haulage CSS visual (fleet.html)
 *
 * Replaces the assets/illustrations/container-haulage.webp <img> that was
 * never shipped. Pure Variant A indigo tokens — no off-palette colour.
 * ============================================================================ */
.ch-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  background:
    radial-gradient(120% 80% at 20% 10%, rgba(99,102,241,0.18), transparent 60%),
    radial-gradient(120% 80% at 100% 80%, rgba(79,70,229,0.20), transparent 60%),
    var(--primary-tint);
  border: 1px solid var(--primary-tint-border);
  box-shadow:
    0 12px 32px -8px rgba(79, 70, 229, 0.18),
    0 2px 6px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
/* Real photoreal container-truck shot replaces the old flat CSS box. */
.ch-visual__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ch-visual__card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow:
    0 12px 32px -8px rgba(79, 70, 229, 0.18),
    0 2px 6px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: .82rem;
  color: var(--text-primary);
  min-width: 130px;
}
.ch-visual__card-eyebrow {
  font-size: .7rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.ch-visual__card--seal {
  top: 8%;
  right: 8%;
}
.ch-visual__card--status {
  bottom: 8%;
  left: 8%;
}

/* ============================================================================
 * 2026-06-19 — "Refined Indigo, after dark" futuristic pass
 *
 * Ports website-v2's motion system (expo easing + staggered reveals + solid
 * emphasis instead of gradient text) and re-skins the hero + key surfaces for
 * a sleek, premium, modern feel. Brand-locked: ONLY Variant A indigo + the
 * brand navy + white. No new hues. Appended as an override block so it layers
 * cleanly over the system above and reverts with a single git revert.
 * ========================================================================== */

:root {
  /* Sleeker expo easing, site-wide (from website-v2). */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  /* Brand-navy surface ladder (shades of --text-primary #070D26 — on-brand). */
  --ink: #070D26;
  --ink-2: #0B1233;
  --ink-3: #151D45;
  /* Premium indigo glow + hairline edge for "lit-from-within" depth. */
  --glow-indigo: 0 28px 80px -22px rgba(79, 70, 229, .6);
  --hairline-light: linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .03));
}

/* ── Kill gradient-clip text (the #1 AI tell + an absolute ban): solid
   emphasis carries the hierarchy through weight + colour instead. ── */
.grad {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--primary);
}

/* ── Staggered scroll reveal honouring an inline --d delay (from v2). ── */
.reveal { transition-delay: var(--d, 0ms); }

/* ── Calm the perpetual ambient motion: one-shot entrance + hover only.
   Forever-looping float/spin is the "generic AI landing page" tell and also
   keeps the renderer from idling. Hover/scroll motion stays. ── */
.feature__icon { animation: none; }
.float-shape { animation: none !important; }
.pin3d { animation: none; transform: rotateY(-16deg); }

/* ════════════════ Dark, futuristic hero ════════════════ */
.hero {
  background:
    radial-gradient(120% 85% at 82% -12%, rgba(99, 102, 241, .32), transparent 55%),
    radial-gradient(95% 75% at -5% 112%, rgba(79, 70, 229, .26), transparent 55%),
    var(--ink);
  color: #fff;
}
/* fine dot-grid, masked to fade toward the edges */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(130% 95% at 50% 4%, #000 32%, transparent 78%);
  mask-image: radial-gradient(130% 95% at 50% 4%, #000 32%, transparent 78%);
}
/* whisper of film grain for atmosphere */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: .35; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.hero .container { position: relative; z-index: 1; }
.hero .orb--1 { opacity: .6; }
.hero .orb--2 { opacity: .4; }
.hero .orb--3 { opacity: .38; }

.hero__title {
  color: #fff;
  font-weight: 900;
  font-size: clamp(2.65rem, 5.6vw, 4.35rem);
  letter-spacing: -.035em;
  line-height: 1.04;
}
.hero .grad { color: var(--primary-light); }
.hero__lede { color: rgba(255, 255, 255, .74); }
.hero .eyebrow {
  background: rgba(99, 102, 241, .16);
  border-color: rgba(199, 210, 254, .3);
  color: #C7D2FE;
}
.hero__proof { border-top-color: rgba(255, 255, 255, .14); }
.hero__proof strong { color: #fff; }
body .hero__proof span { color: rgba(255, 255, 255, .64); }
.hero-slider__dots button { background: rgba(255, 255, 255, .24); }
.hero-slider__dots button.is-active { background: var(--primary-light); }
/* "Download app" outline button reads on dark */
.hero .btn--outline {
  background: rgba(255, 255, 255, .06);
  color: #fff;
  --bd: rgba(199, 210, 254, .4);
}
.hero .btn--outline:hover {
  background: rgba(255, 255, 255, .12);
  --bd: var(--primary-light);
}

/* ── Glass product card floating on the dark canvas ── */
.hero .mock {
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
  border: 1px solid rgba(199, 210, 254, .18);
  box-shadow: var(--glow-indigo);
  color: #fff;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.hero .mock__tag,
.hero .mock__node small,
.hero .mock__carrier-meta small,
.hero .mock--float small { color: rgba(255, 255, 255, .55); }
.hero .mock__node b,
.hero .mock__price,
.hero .mock__carrier-meta b,
.hero .mock--float b { color: #fff; }
.hero .mock__status {
  background: rgba(99, 102, 241, .22);
  border-color: rgba(199, 210, 254, .34);
  color: #C7D2FE;
}
.hero .mock__carrier,
.hero .mock--float {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .1);
}
.hero .mock--float { box-shadow: var(--glow-indigo); }
.hero .mock__timeline .step { color: rgba(255, 255, 255, .42); }
.hero .mock__timeline .step.done { color: rgba(255, 255, 255, .72); }
.hero .mock__timeline .step.active { color: var(--primary-light); }
.hero .mock__timeline .step::before { box-shadow: 0 0 0 1px rgba(255, 255, 255, .18); }
.hero .mock__timeline .step::after { background: rgba(255, 255, 255, .16); }
.hero .mock__avatar { box-shadow: 0 6px 18px rgba(79, 70, 229, .5); }

/* ════════ Refined hover: lit indigo glow instead of flat grey lift ════════ */
.feature:hover,
.step-card:hover,
.vehicle-card:hover,
.qr-card:hover,
.blog-card:hover {
  box-shadow: 0 22px 50px -22px rgba(79, 70, 229, .4), var(--shadow-md);
}

/* ════════ Section heads: tighter, more editorial ════════ */
.section__head h2,
.coverage__copy h2,
.showcase__copy h2 { letter-spacing: -.03em; }
.kicker { letter-spacing: .12em; }

/* ============================================================================
 * 2026-06-20 — Custom freight icon system + typography lift
 *
 * Replaces the crude pure-CSS [data-icon] glyphs with a duotone, freight-
 * specific inline-SVG sprite (see #ic-* symbols in index.html). CSS custom
 * properties drive the duotone so one symbol re-colours per state.
 * ========================================================================== */

/* ── Premium icon tile ── */
.feature__icon {
  --ic-stroke: var(--primary);
  --ic-accent: rgba(99, 102, 241, .16);
  width: 56px; height: 56px;
  border-radius: 16px;
  margin-bottom: 18px;
  display: grid; place-items: center;
  position: relative;
  background: linear-gradient(152deg, #fff 0%, var(--primary-tint) 100%);
  border: 1px solid var(--primary-tint-border);
  box-shadow: inset 0 1px 0 #fff, 0 8px 18px -10px rgba(79, 70, 229, .45);
  animation: none;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease),
              border-color .32s var(--ease);
}
/* neutralise the old [data-icon] glyph pseudo-elements */
.feature__icon::before, .feature__icon::after { content: none; }
.fi {
  width: 30px; height: 30px; display: block; overflow: visible;
  stroke-linecap: round; stroke-linejoin: round;
}
/* refined 3D-ish lift: tile tips toward the light, accent deepens */
.feature:hover .feature__icon {
  --ic-accent: rgba(99, 102, 241, .28);
  transform: translateY(-4px) rotate(-3.5deg);
  border-color: var(--primary);
  box-shadow: inset 0 1px 0 #fff, 0 18px 30px -12px rgba(79, 70, 229, .55);
}
.feature:hover .fi { transform: rotate(3.5deg); transition: transform .32s var(--ease); }

/* The sprite itself must never occupy layout space. */
.lz-sprite { width: 0 !important; height: 0 !important; overflow: hidden; }

/* ── Typography lift (within locked Public Sans) ── */
/* tabular, aligned figures everywhere numbers carry meaning */
.counter__num, .hero__proof strong, .mock__price,
.calc-result__range, .story-card__stats strong,
.fleet-stat, .why-card__num {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "ss01" 1;
}
.feature h3, .step-card h3, .audience__head h3 { letter-spacing: -.02em; }
.feature p { font-size: .96rem; line-height: 1.6; }

/* Editorial kicker: a short indigo rule leads the label. */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800;
}
.kicker::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: currentColor; opacity: .55; flex: none;
}
.kicker--light::before { opacity: .7; }

/* ── Vehicle slide stage ──
   Flat backdrop matched to the photo studio bg (#E9EBFA) so the photoreal
   WebP shots blend in seamlessly, and every slide shares ONE media height
   (photos are 4:3, the remaining SVG fallbacks are wider) — no empty gap. */
.slide--vehicle {
  padding: 0;
  /* 2026-06-22 — vehicle photos are now whitened (transparent-white backdrop),
     so the slide is white like the testimonial slides; the slider viewport's
     own border + shadow gives definition. Uniform white media site-wide. */
  background: #fff;
}
.slide--vehicle .veh,
.slide--vehicle .veh-photo {
  display: block;
  width: 100%;
  height: clamp(300px, 42vw, 520px);
  object-fit: contain;       /* photos: never clip the vehicle */
  padding: 0;
}
.slide--vehicle__cap { background: #fff; }

/* ─────────────────────────────────────────────────────────────
   Performance: skip rendering work for off-screen content.
   `content-visibility: auto` lets the browser skip layout + paint
   for sections not near the viewport, and — crucially — PAUSES the
   infinite CSS animations (marquees, float/spin, dash, pulses) in
   those off-screen subtrees, which were churning the compositor the
   whole time and making scroll feel sluggish on mid-range Android.
   `contain-intrinsic-size: auto <h>` reserves space so the scrollbar
   doesn't jump; the browser remembers each section's real height after
   it first renders. Hero + trust strip are intentionally excluded
   (they are above the fold and must paint immediately). ───────────── */
.section,
.cta,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 640px;
}
