/* ============================================
   Freightage INC — Design Tokens
============================================ */
:root {
  --black: #0b0b0c;
  --charcoal: #17181b;
  --charcoal-2: #202226;
  --gray-900: #2b2d32;
  --gray-600: #6b6e76;
  --gray-300: #d7d8dc;
  --gray-100: #f4f4f5;
  --white: #ffffff;

  --red-900: #4d0000;
  --red-700: #7a0505;
  --red-600: #9c0b0b;
  --red: #c81321;
  --red-500: #e21b26;
  --red-400: #ef2f34;

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
  --radius: 10px;
  --radius-lg: 18px;

  --shadow-sm: 0 2px 10px rgba(0,0,0,.06);
  --shadow-md: 0 12px 32px rgba(0,0,0,.12);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.22);

  --ease: cubic-bezier(.4,0,.2,1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
section { position: relative; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--red-400); }

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red-500), var(--red-700));
  z-index: 1000;
  pointer-events: none;
}

/* Staggered entrance for sibling reveal groups */
[data-reveal]:nth-child(2) { transition-delay: 90ms; }
[data-reveal]:nth-child(3) { transition-delay: 180ms; }
[data-reveal]:nth-child(4) { transition-delay: 270ms; }
[data-reveal]:nth-child(5) { transition-delay: 360ms; }
[data-reveal]:nth-child(n+6) { transition-delay: 420ms; }

/* Spotlight cursor-follow highlight (benefit / why / fleet / testimonial cards, showcase tabs) */
.spotlight { position: relative; }
.spotlight::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(200,19,33,.16), transparent 55%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
.spotlight.is-active::before { opacity: 1; }
.spotlight > * { position: relative; z-index: 1; }

/* Reveal animation — only hides content once JS is confirmed running
   (html.js swapped in <head>), so the page stays fully visible with
   JS disabled or blocked instead of remaining permanently blank. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Buttons
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--red-500), var(--red-700));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(200,19,33,.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(200,19,33,.45); }
.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--gray-300);
}
.btn--ghost:hover { border-color: var(--charcoal); }
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); transform: translateY(-2px); }
.btn--dark-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn--dark-outline:hover { background: var(--charcoal); color: var(--white); }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--block { width: 100%; white-space: normal; text-align: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--red);
  border-bottom: 2px solid transparent;
  transition: gap .2s var(--ease);
}
.link-arrow span { transition: transform .2s var(--ease); }
.link-arrow:hover span { transform: translateX(4px); }
.link-arrow--light { color: var(--white); }
.link-arrow--spaced { margin-top: 28px; }

/* ============================================
   Top bar
============================================ */
.topbar {
  background: var(--black);
  color: var(--gray-300);
  font-size: 12.5px;
}
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.topbar__item { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.topbar__item a:hover { color: var(--white); }
.topbar__item--right { margin-left: auto; }
.topbar__link { color: var(--red-400); font-weight: 600; }
.topbar__link:hover { color: var(--white); }
.topbar__item--hide-sm { opacity: .8; }

/* ============================================
   Header
============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .3s var(--ease);
}
.header.is-scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand { display: flex; align-items: center; }
.brand__logo { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 26px; margin-left: 12px; }
.nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--charcoal);
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .25s var(--ease);
}
.nav a:hover::after { width: 100%; }
.header__cta { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav a.is-current { color: var(--red); }
.nav a.is-current::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(340px, 82vw);
  background: var(--white);
  z-index: 700;
  padding: 90px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  box-shadow: -10px 0 40px rgba(0,0,0,.15);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__close {
  position: absolute;
  top: 22px; right: 24px;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal);
  transition: background .2s var(--ease);
}
.mobile-nav__close:hover { background: var(--gray-100); }
.mobile-nav nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav nav a { padding: 12px 0; font-weight: 700; font-size: 17px; border-bottom: 1px solid var(--gray-100); }
.mobile-nav nav a.is-current { color: var(--red); }
.mobile-nav__cta { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.mobile-nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 650;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.mobile-nav-backdrop.is-open { opacity: 1; pointer-events: auto; }

/* ============================================
   Hero
============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,.55) 0%, rgba(11,11,12,.35) 35%, rgba(11,11,12,.85) 100%),
              linear-gradient(90deg, rgba(11,11,12,.75) 0%, rgba(11,11,12,.15) 55%);
}
.hero__scrim::after,
.final-cta__scrim::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .05;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 24px 100px;
  width: 100%;
}
.hero__content h1 {
  font-size: clamp(40px, 6vw, 76px);
  max-width: 820px;
  margin-bottom: 22px;
}
.hero__content h1 .wr-mask { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.hero__content h1 .wr {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity .6s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--i) * 55ms);
}
.hero__content h1.is-visible .wr { opacity: 1; transform: translateY(0); }
.hero__sub {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  margin-bottom: 34px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,.75);
  animation: bounce 2.2s infinite;
}
@keyframes bounce { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,8px);} }

/* ============================================
   Interior page hero (About, etc.)
============================================ */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,.55) 0%, rgba(11,11,12,.45) 40%, rgba(11,11,12,.9) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px 24px 64px;
  width: 100%;
}
.page-hero__content h1 { font-size: clamp(32px, 4.4vw, 54px); max-width: 720px; margin-bottom: 16px; }
.page-hero__sub { max-width: 540px; font-size: 16.5px; line-height: 1.6; color: rgba(255,255,255,.85); }
.page-hero__actions { margin-top: 28px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb [aria-current] { color: var(--red-400); }

.pull-quote {
  margin: 28px 0 0;
  padding: 24px 0 24px 24px;
  border-left: 3px solid var(--red);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--charcoal);
}
.pull-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  color: var(--gray-600);
}

/* ============================================
   Timeline
============================================ */
.timeline-section {
  max-width: 880px;
  margin: 0 auto;
  padding: 120px 24px;
  text-align: center;
}
.timeline-section h2 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 64px; }
.timeline { position: relative; text-align: left; }
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--gray-300);
}
.timeline__item { position: relative; display: flex; gap: 28px; padding-bottom: 40px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__marker {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gray-300);
  margin-top: 4px;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.timeline__item--highlight .timeline__marker { border-color: var(--red); background: var(--red); }
.timeline__year { display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: .04em; color: var(--red); margin-bottom: 6px; }
.timeline__content p { font-size: 16px; line-height: 1.55; color: var(--charcoal); }
.timeline__item--highlight .timeline__content p { font-size: 17px; }

/* ============================================
   Split
============================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; }
.split__panel {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}
.split__panel img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.split__panel:hover img { transform: scale(1.06); }
.split__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,.15) 0%, rgba(11,11,12,.9) 100%);
}
.split__scrim--red {
  background: linear-gradient(180deg, rgba(77,0,0,.2) 0%, rgba(46,4,4,.92) 100%);
}
.split__content { position: relative; z-index: 1; padding: 48px; max-width: 520px; }
.split__content h2 { font-size: 34px; margin: 8px 0 14px; }
.split__content p { color: rgba(255,255,255,.85); margin-bottom: 22px; line-height: 1.6; }

.split__chip {
  position: absolute;
  top: 32px; right: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .02em;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
}
.split__panel:hover .split__chip { opacity: 1; transform: translateY(0); }

/* Trust marquee */
.marquee {
  background: var(--black);
  overflow: hidden;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.marquee__track span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-300);
}
.marquee__dot { color: var(--red-500); font-weight: 400; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ============================================
   Stats
============================================ */
.stats { background: var(--black); color: var(--white); padding: 60px 24px 40px; }
.stats__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__num {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--red-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label { font-size: 13px; color: var(--gray-300); font-weight: 600; letter-spacing: .02em; }
.stats__note {
  max-width: var(--container);
  margin: 24px auto 0;
  padding: 0 24px;
  font-size: 12px;
  color: var(--gray-600);
  text-align: right;
}

/* ============================================
   About
============================================ */
.about {
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 24px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 72px;
  align-items: center;
}
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-lg); }
.about__badge {
  position: absolute;
  left: -24px; bottom: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about__badge strong { color: var(--red); font-size: 20px; }
.about__badge span { font-size: 13px; color: var(--gray-600); font-weight: 600; }
.about__content h2 { font-size: clamp(28px, 3vw, 38px); margin-bottom: 20px; }
.about__text { font-size: 16px; line-height: 1.75; color: var(--gray-600); margin-bottom: 24px; }
.checklist { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.checklist li { position: relative; padding-left: 30px; font-weight: 600; font-size: 15px; }
.checklist li::before {
  content: '';
  position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--red);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M4 12l5 5L20 6'/%3E%3C/svg%3E") center/60% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M4 12l5 5L20 6'/%3E%3C/svg%3E") center/60% no-repeat;
}

/* ============================================
   Fleet
============================================ */
.fleet {
  background: var(--charcoal);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.fleet__content { padding: 110px 64px; max-width: 620px; }
.fleet__content h2 { font-size: clamp(28px, 3vw, 38px); margin-bottom: 18px; }
.fleet__text { color: var(--gray-300); line-height: 1.7; margin-bottom: 36px; }
.fleet__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fleet__item {
  display: flex; flex-direction: column; gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--gray-300);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.fleet__item:hover { border-color: var(--red-500); background: rgba(200,19,33,.08); }
.fleet__item svg { color: var(--red-400); }
.fleet__media { position: relative; min-height: 400px; }
.fleet__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   Drivers
============================================ */
.drivers { max-width: var(--container); margin: 0 auto; padding: 120px 24px; text-align: center; }
#what-you-get { padding-bottom: 20px; }
#what-you-get + .why { padding-top: 40px; }
.drivers h2 { font-size: clamp(28px, 3.4vw, 42px); max-width: 720px; margin: 0 auto 18px; }
.drivers__sub { max-width: 560px; margin: 0 auto 56px; color: var(--gray-600); font-size: 16.5px; line-height: 1.6; }
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 48px; text-align: left; }
.benefit-card {
  padding: 30px 24px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.benefit-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red-500), var(--red-700));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.benefit-card h3 { font-size: 17px; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: var(--gray-600); line-height: 1.55; }
.drivers__ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.benefits--3col { grid-template-columns: repeat(3, 1fr); }

/* ============================================
   Requirements list
============================================ */
.requirements {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.requirements li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: var(--gray-100);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  line-height: 1.5;
}
.requirements li svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.requirements__note {
  max-width: 720px;
  margin: 24px auto 0;
  font-size: 13px;
  color: var(--gray-600);
  text-align: center;
}

/* ============================================
   Interactive USA map (Drivers page)
============================================ */
.usa-map-wrap { max-width: 900px; margin: 56px auto 0; }
.usa-map { position: relative; width: 100%; }
.usa-map svg { width: 100%; height: auto; display: block; overflow: visible; }
.usa-map__state {
  fill: var(--gray-300);
  stroke: var(--white);
  stroke-width: 1.5;
  transition: fill .2s var(--ease);
  cursor: pointer;
}
.usa-map__state:hover,
.usa-map__state.is-active { fill: var(--red); }
.usa-map__state--hq { fill: var(--red-700); }
.usa-map__state--hq:hover,
.usa-map__state--hq.is-active { fill: var(--red); }

.usa-map__route {
  fill: none;
  stroke: var(--red);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-dasharray: 5 5;
  opacity: 0;
  transition: opacity .25s var(--ease);
  pointer-events: none;
}
.usa-map__route.is-visible { opacity: .85; }

.usa-map__hq-pulse {
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  transform-origin: center;
  transform-box: fill-box;
  animation: usaMapPulse 2.4s ease-out infinite;
}
.usa-map__hq-dot { fill: var(--red-700); stroke: var(--white); stroke-width: 1.5; }
@keyframes usaMapPulse {
  0% { transform: scale(.6); opacity: .9; }
  70% { transform: scale(2.8); opacity: 0; }
  100% { opacity: 0; }
}

.usa-map__tooltip {
  position: absolute;
  left: 0; top: 0;
  pointer-events: none;
  background: var(--charcoal);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transform: translate(-50%, -135%);
  opacity: 0;
  transition: opacity .2s var(--ease);
  z-index: 5;
  box-shadow: var(--shadow-md);
}
.usa-map__tooltip.is-visible { opacity: 1; }
.usa-map__tooltip span { display: block; font-size: 11px; font-weight: 600; color: var(--gray-300); margin-top: 2px; }

.usa-map__caption {
  text-align: center;
  max-width: 560px;
  margin: 24px auto 0;
  font-size: 14px;
  color: var(--gray-600);
}

@media (max-width: 600px) {
  .usa-map-wrap { margin-top: 40px; }
  .usa-map__tooltip { display: none; }
}

/* ============================================
   Equipment type cards (Fleet page)
============================================ */
.equipment-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: left;
}
.equipment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.equipment-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.equipment-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.equipment-card__body { padding: 28px; }
.equipment-card__body h3 { font-size: 20px; margin-bottom: 10px; }
.equipment-card__body p { font-size: 14.5px; color: var(--gray-600); line-height: 1.6; }

/* ============================================
   FAQ accordion
============================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--gray-100);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
}
.faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.faq__icon svg { transition: transform .3s var(--ease); }
.faq__item.is-open .faq__icon { background: var(--red); border-color: var(--red); color: var(--white); }
.faq__item.is-open .faq__icon svg { transform: rotate(45deg); }
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}
.faq__item.is-open .faq__answer { grid-template-rows: 1fr; }
.faq__answer-inner { overflow: hidden; }
.faq__answer p { padding: 0 4px 24px; font-size: 15px; line-height: 1.65; color: var(--gray-600); max-width: 680px; }
.faq__answer p a { color: var(--red); font-weight: 700; text-decoration: underline; }

/* ============================================
   Freight services
============================================ */
.freight { background: var(--gray-100); padding: 120px 24px; text-align: center; }
.freight h2 { font-size: clamp(28px, 3.4vw, 42px); max-width: 720px; margin: 0 auto 18px; }
.freight__sub { max-width: 560px; margin: 0 auto 56px; color: var(--gray-600); font-size: 16.5px; line-height: 1.6; }
.showcase {
  max-width: var(--container);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  text-align: left;
  align-items: stretch;
}
.showcase__tabs { display: flex; flex-direction: column; gap: 4px; }
.showcase__tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px 26px;
  border-radius: var(--radius);
  text-align: left;
  overflow: hidden;
  transition: background .25s var(--ease);
}
.showcase__tab:hover, .showcase__tab.is-active { background: var(--white); box-shadow: var(--shadow-sm); }
.showcase__tab-num { font-size: 13px; font-weight: 800; color: var(--gray-300); flex-shrink: 0; transition: color .25s var(--ease); }
.showcase__tab.is-active .showcase__tab-num { color: var(--red); }
.showcase__tab-text { display: flex; flex-direction: column; gap: 4px; }
.showcase__tab-text strong { font-size: 16px; }
.showcase__tab-text em { font-style: normal; font-size: 13px; color: var(--gray-600); line-height: 1.5; }
.showcase__tab-bar {
  position: absolute;
  left: 22px; right: 22px; bottom: 10px;
  height: 2px;
  background: var(--gray-300);
  border-radius: 2px;
  overflow: hidden;
}
.showcase__tab-bar span { display: block; height: 100%; width: 0%; background: var(--red); }
.showcase__tab.is-active .showcase__tab-bar span { animation: showcaseProgress 5s linear forwards; }
@keyframes showcaseProgress { from { width: 0%; } to { width: 100%; } }

.showcase__stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-md);
  background: var(--charcoal);
}
.showcase__slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s var(--ease); }
.showcase__slide.is-active { opacity: 1; }
.showcase__slide img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   Safety
============================================ */
.safety {
  background: var(--black);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.safety__media { position: relative; min-height: 500px; }
.safety__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.safety__content { padding: 110px 64px; max-width: 620px; }
.safety__content h2 { font-size: clamp(26px, 2.8vw, 34px); margin-bottom: 18px; }
.safety__text { color: var(--gray-300); line-height: 1.7; margin-bottom: 40px; }
.safety__points { display: flex; flex-direction: column; gap: 26px; margin-bottom: 40px; }
.safety__point { display: flex; gap: 20px; }
.safety__point-num { font-size: 14px; font-weight: 800; color: var(--red-400); flex-shrink: 0; padding-top: 3px; }
.safety__point h4 { font-size: 16px; margin-bottom: 6px; }
.safety__point p { font-size: 14px; color: var(--gray-300); line-height: 1.55; }

/* ============================================
   Why
============================================ */
.why { max-width: var(--container); margin: 0 auto; padding: 120px 24px; text-align: center; }
.why h2 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 56px; }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: left; }
.why__card {
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  background: var(--gray-100);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.why__card:hover { background: var(--charcoal); color: var(--white); transform: translateY(-6px); }
.why__card:hover p { color: var(--gray-300); }
.why__icon { font-size: 13px; font-weight: 800; color: var(--red); display: block; margin-bottom: 16px; }
.why__card h3 { font-size: 17px; margin-bottom: 10px; }
.why__card p { font-size: 14px; color: var(--gray-600); line-height: 1.55; }

/* ============================================
   Testimonials
============================================ */
.testimonials { background: var(--gray-100); padding: 120px 24px; text-align: center; }
.testimonials h2 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 56px; }
.testimonials__grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: left; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 18px;
}
.testimonial-card__quote { color: var(--red); opacity: .5; }
.testimonial-card p { font-size: 15px; line-height: 1.6; color: var(--charcoal); font-style: italic; }
.testimonial-card--placeholder p { color: var(--gray-600); }
.testimonial-card__name { font-size: 13px; font-weight: 700; color: var(--gray-600); }

/* ============================================
   Service area
============================================ */
.area {
  background: var(--charcoal);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.area__content { padding: 100px 64px; max-width: 560px; }
.area__content h2 { font-size: clamp(26px, 2.8vw, 34px); margin-bottom: 18px; }
.area__content p { color: var(--gray-300); line-height: 1.7; margin-bottom: 28px; }
.area__map { color: var(--red-400); padding: 40px; opacity: .9; }
.area__map text { fill: var(--white); font-weight: 700; }
.area__map .route-path { stroke-dasharray: 1; stroke-dashoffset: 1; }
.area__map .pulse-ring {
  transform-origin: center;
  transform-box: fill-box;
  animation: pulseRing 2.4s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(.75); opacity: .8; }
  70% { transform: scale(1.9); opacity: 0; }
  100% { opacity: 0; }
}

/* ============================================
   Final CTA
============================================ */
.final-cta { position: relative; color: var(--white); overflow: hidden; }
.final-cta__media { position: absolute; inset: 0; z-index: 0; }
.final-cta__media img { width: 100%; height: 100%; object-fit: cover; }
.final-cta__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,11,12,.75), rgba(11,11,12,.9)); }
.final-cta__inner {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 110px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
  text-align: center;
}
.final-cta__block h2 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 14px; }
.final-cta__block p { color: rgba(255,255,255,.8); margin-bottom: 26px; }
.final-cta__divider { width: 1px; height: 100px; background: rgba(255,255,255,.2); }
.final-cta__block--wide { grid-column: 1 / -1; }

/* ============================================
   Quote form
============================================ */
.quote {
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 24px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 72px;
}
.quote__intro h2 { font-size: clamp(26px, 2.8vw, 36px); margin-bottom: 18px; }
.quote__intro p { color: var(--gray-600); line-height: 1.7; margin-bottom: 22px; }
.quote__form {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; font-weight: 700; color: var(--charcoal); }
.field label em { color: var(--red); font-style: normal; }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14.5px;
  background: var(--white);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(200,19,33,.12);
}
.field input:invalid.touched, .field textarea:invalid.touched { border-color: var(--red-500); }
.form-success {
  display: none;
  background: #e8f6ec;
  color: #1e7a3c;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.form-success.is-visible { display: block; }

/* ============================================
   Footer
============================================ */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--gray-300);
  padding: 90px 24px 0;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-700), var(--red-400), var(--red-700), transparent);
  background-size: 200% 100%;
  animation: footerLineShift 7s linear infinite;
}
@keyframes footerLineShift {
  from { background-position: 0% 0; }
  to { background-position: 200% 0; }
}
.footer__top {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__logo { height: 44px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer__brand p { font-size: 14px; line-height: 1.65; color: var(--gray-600); margin-bottom: 22px; max-width: 320px; }
.footer__contact { display: flex; flex-direction: column; gap: 12px; font-size: 14px; font-weight: 600; }
.footer__contact a, .footer__contact span {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.footer__contact svg { color: var(--red-400); flex-shrink: 0; }
.footer__contact a:hover { color: var(--white); transform: translateX(3px); }

.footer__col { position: relative; display: flex; flex-direction: column; gap: 12px; }
.footer__col + .footer__col { padding-left: 28px; }
.footer__col + .footer__col::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(200,19,33,.55), transparent);
}
.footer__col h4 {
  position: relative;
  padding-top: 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__col h4::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 26px; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--red-500), var(--red-700));
}
.footer__col a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  font-size: 14.5px;
  color: var(--gray-300);
  transition: color .25s var(--ease), gap .25s var(--ease);
}
.footer__col a::before {
  content: '';
  width: 0;
  height: 1.5px;
  border-radius: 1px;
  background: var(--red-400);
  transition: width .25s var(--ease);
}
.footer__col a:hover { color: var(--white); gap: 8px; }
.footer__col a:hover::before { width: 12px; }

.footer__watermark {
  text-align: center;
  font-size: clamp(46px, 11vw, 148px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.035);
  padding: 8px 0 20px;
  white-space: nowrap;
  user-select: none;
}

.footer__bottom {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--gray-600);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__legal { display: flex; gap: 22px; }
.footer__legal a {
  position: relative;
  padding-bottom: 3px;
}
.footer__legal a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--red-400);
  transition: width .25s var(--ease);
}
.footer__legal a:hover { color: var(--white); }
.footer__legal a:hover::after { width: 100%; }

/* Back to top */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-500), var(--red-700));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 500;
  opacity: 0;
  transform: translateY(12px) scale(.9);
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), box-shadow .25s var(--ease);
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.back-to-top:hover { box-shadow: 0 14px 30px rgba(200,19,33,.4); transform: translateY(-3px) scale(1.05); }

/* ============================================
   Mobile sticky CTA
============================================ */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 400;
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-300);
  box-shadow: 0 -6px 20px rgba(0,0,0,.08);
}
.mobile-cta button, .mobile-cta a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 0 12px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--charcoal);
}
.mobile-cta button:first-child { color: var(--red); }

/* ============================================
   Modal
============================================ */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(11,11,12,.6);
  backdrop-filter: blur(4px);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.modal-backdrop.is-open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: min(560px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  padding: 44px;
  position: relative;
  transform: translateY(24px) scale(.98);
  opacity: 0;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.modal-backdrop.is-open .modal { transform: translateY(0) scale(1); opacity: 1; }
.modal__close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.modal__close:hover { background: var(--gray-100); color: var(--charcoal); }
.modal__header h2 { font-size: 26px; margin: 4px 0 10px; }
.modal__header p { color: var(--gray-600); font-size: 14.5px; margin-bottom: 26px; }
.modal__tabs { display: flex; gap: 8px; background: var(--gray-100); padding: 6px; border-radius: 999px; margin-bottom: 26px; }
.modal__tab {
  flex: 1;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-600);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.modal__tab.is-active { background: var(--white); color: var(--red); box-shadow: var(--shadow-sm); }
.modal__panel { display: none; }
.modal__panel.is-active { display: block; animation: fadeIn .35s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px);} to { opacity: 1; transform: translateY(0);} }
.modal__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.modal__list li { position: relative; padding-left: 26px; font-size: 14.5px; font-weight: 600; color: var(--charcoal); }
.modal__list li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
}
.modal__req { font-size: 13px; color: var(--gray-600); line-height: 1.6; background: var(--gray-100); padding: 14px 16px; border-radius: 8px; margin-bottom: 22px; }

/* Reusable honesty/disclosure note box */
.info-box {
  max-width: 640px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  background: var(--gray-100);
  padding: 20px 24px;
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
  text-align: left;
}
.info-box strong { color: var(--charcoal); }
.info-box--dark { background: rgba(255,255,255,.06); color: var(--gray-300); }
.info-box--dark strong { color: var(--white); }

/* Contact details */
.contact-details { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.contact-details__item { display: flex; flex-direction: column; gap: 2px; }
.contact-details__item strong { font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--red); }
.contact-details__item span, .contact-details__item a { font-size: 15px; font-weight: 600; color: var(--charcoal); }
.contact-details__item a:hover { color: var(--red); }

/* Business hours list */
.hours-list { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }
.hours-list__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14.5px;
}
.hours-list__row span:first-child { font-weight: 700; color: var(--charcoal); }
.hours-list__row span:last-child { color: var(--gray-600); }
.hours-list__note { font-size: 12.5px; color: var(--gray-600); }

/* Map embed */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 16/11;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.modal__note { text-align: center; font-size: 12px; color: var(--gray-600); margin-top: 12px; }
.modal__footer {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--gray-600);
}
.modal__footer a { font-weight: 700; color: var(--red); }

/* ============================================
   Cookie banner
============================================ */
.cookie-banner {
  position: fixed;
  left: 24px; right: 24px; bottom: 24px;
  max-width: 620px;
  margin: 0 auto;
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  z-index: 800;
  transform: translateY(140%);
  transition: transform .5s var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p { font-size: 13px; color: var(--gray-300); line-height: 1.5; flex: 1; min-width: 200px; }
.cookie-banner a { color: var(--white); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; }
.cookie-banner .btn--ghost { color: var(--white); border-color: rgba(255,255,255,.4); }
.cookie-banner .btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

/* ============================================
   Responsive
============================================ */
@media (max-width: 1080px) {
  .benefits, .why__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__inner { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .about, .quote { grid-template-columns: 1fr; }
  .about__media { order: -1; }
  .fleet, .safety, .area { grid-template-columns: 1fr; }
  .fleet__media, .safety__media { min-height: 320px; order: -1; }
  .fleet__content, .safety__content, .area__content { padding: 64px 40px; max-width: none; }
  .showcase { grid-template-columns: 1fr; }
  .showcase__stage { min-height: 320px; order: -1; }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__col + .footer__col { padding-left: 0; }
  .footer__col + .footer__col::before { display: none; }
  .footer__watermark { font-size: clamp(36px, 14vw, 90px); }
}

@media (max-width: 860px) {
  .nav, .header__cta { display: none; }
  .hamburger { display: flex; }
  .topbar__item--right { display: none; }
  .topbar__item--hide-sm { display: none; }
  .topbar__inner { justify-content: space-between; gap: 12px; }
  .split { grid-template-columns: 1fr; }
  .split__chip { display: none; }
  .final-cta__inner { grid-template-columns: 1fr; }
  .final-cta__divider { width: 60px; height: 1px; margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 62px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .back-to-top { bottom: 78px; right: 16px; width: 44px; height: 44px; }
}

@media (max-width: 600px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .benefits, .why__grid, .testimonials__grid, .equipment-grid { grid-template-columns: 1fr; }
  .about__badge { position: static; margin-top: -40px; margin-left: 20px; width: fit-content; }
  .fleet__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; flex-direction: column; align-items: stretch; }
  .modal { padding: 32px 24px; }
}
