/* ============================================================
   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;

  /* Text */
  --text-primary: #070D26;   /* brand navy */
  --text-secondary: #4B5563;
  --text-tertiary: #9CA3AF;

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

  /* 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;
  --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; }
}

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 {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative; z-index: 1;
}

.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;
}
.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 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);
}
.orb--1 {
  width: 420px; height: 420px; top: -120px; left: -80px; opacity: .5;
  background: radial-gradient(circle at 30% 30%, var(--primary-light), transparent 70%);
}
.orb--2 {
  width: 360px; height: 360px; top: 40px; right: -100px; opacity: .34;
  background: radial-gradient(circle at 40% 40%, var(--primary), transparent 70%);
}
.orb--3 {
  width: 300px; height: 300px; bottom: -140px; left: 36%; opacity: .3;
  background: radial-gradient(circle at 50% 50%, var(--lavender), transparent 70%);
}

/* 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; }
.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 */
[data-tilt] { 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(56px, 8vw, 104px) 0; }
.section--tint { background: var(--surface); }
.section--dark { background: var(--text-primary); }

.section__head { max-width: 640px; margin: 0 auto clamp(36px, 5vw, 60px); 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); }

/* ───────────── Feature grid ───────────── */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.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: 1px solid var(--primary-tint-border);
  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);
}
.map-card__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(79, 70, 229, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 70, 229, .08) 1px, transparent 1px);
  background-size: 34px 34px;
}
.map-route { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-route path {
  fill: none; stroke: var(--primary); stroke-width: 2.5; stroke-dasharray: 7 7;
  stroke-linecap: round; opacity: .55;
  animation: dash 18s linear infinite;
}
@keyframes dash { to { stroke-dashoffset: -280; } }
.map-pin {
  position: absolute; display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 800; color: var(--primary-deep);
  background: #fff; padding: 6px 11px 6px 8px; border-radius: 999px;
  border: 1px solid var(--primary-tint-border); box-shadow: var(--shadow-sm);
}
.map-pin i {
  width: 10px; height: 10px; border-radius: 50%; background: var(--primary);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, .18);
}
.map-pin--1 { top: 22%; left: 14%; }
.map-pin--2 { top: 40%; right: 12%; }
.map-pin--3 { bottom: 16%; left: 40%; }

/* ───────────── 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;
}
.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(--warn); background: var(--warn-bg);
  padding: 4px 9px; border-radius: 999px;
}
.qr-card__code {
  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 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__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); }

/* ───────────── 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, .fleet-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);
  background: var(--hero-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.counter__label {
  display: block; margin-top: 12px;
  font-size: .95rem; font-weight: 600; color: var(--text-secondary);
}

/* ───────────── 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);
}
.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;
  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;
}

/* ───────────── 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; }
}
