/* ============================================================
   DELIVAX – Design System
   Foundation: Stripe Design System (Stripe SKILL.md)
   Brand adaptation: navy + white + orange
   ============================================================ */

/* --- Fonts --- */
@font-face {
  font-family: "sohne-var";
  src: url("../fonts/sohne-var-1.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "SourceCodePro";
  src: url("../fonts/SourceCodePro-500.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}

/* --- Design Tokens --- */
:root {
  /* Brand colors (Delivax: navy + white + orange) */
  --navy:          #0a1628;
  --navy-800:      #0d2140;
  --navy-700:      #132952;
  --navy-600:      #1a3a6b;
  --white:         #ffffff;
  --surface:       #f8fafc;
  --surface-muted: #f0f4f8;
  --orange:        #ff6b1a;
  --orange-dark:   #e55a0a;
  --orange-light:  rgba(255, 107, 26, 0.10);
  --orange-glow:   rgba(255, 107, 26, 0.25);

  /* Stripe system text palette */
  --text-primary:   #061b31;
  --text-secondary: #445566;
  --text-muted:     #667691;
  --text-nav:       #727f96;
  --border:         #e2e8f0;
  --border-dark:    rgba(255, 255, 255, 0.10);
  --border-mid:     rgba(255, 255, 255, 0.06);

  /* Stripe shadow tokens */
  --shadow-sm:  0 1px 2px 0 rgba(0,0,0,.05);
  --shadow-md:  0 3px 6px 0 hsla(0,0%,9%,.06);
  --shadow-lg:  0 6px 12px -2px rgba(50,50,93,.08), 0 3px 7px -3px rgba(0,0,0,.04);
  --shadow-xl:  0 30px 60px -50px rgba(0,0,0,.10), 0 30px 60px -10px rgba(10,22,40,.25);
  --shadow-card: 0 0 32px -14px rgba(50,50,93,.25), 0 4px 19px -9px rgba(0,0,0,.10);

  /* Stripe card ease */
  --card-ease:     cubic-bezier(0.165, 0.84, 0.44, 1);
  --card-duration: 800ms;

  /* Fonts */
  --font-display: "sohne-var", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body:    "sohne-var", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* 4px base spacing grid */
  --s1:  4px;
  --s2:  8px;
  --s3:  12px;
  --s4:  16px;
  --s5:  20px;
  --s6:  24px;
  --s8:  32px;
  --s10: 40px;
  --s12: 48px;
  --s16: 64px;
  --s20: 80px;
  --s24: 96px;
  --s32: 128px;

  /* Radii (from Stripe scale) */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   16px;
  --r-2xl:  20px;
  --r-full: 100px;

  /* Layout */
  --max-w:    1111px;
  --nav-h:    72px;
  --announce-h: 30px; /* top announcement bar; set to 0px when dismissed */
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Offset anchor targets so they aren't hidden behind the fixed nav
   (applies to same-page and cross-page #section navigation). */
section[id],
main[id] {
  scroll-margin-top: calc(var(--announce-h) + var(--nav-h) + 20px);
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { font: inherit; }

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  padding: var(--s2) var(--s4);
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  z-index: 9999;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { top: 0; }

/* ============================================================
   TYPOGRAPHY
   sohne-var  → display / headings
   SourceCodePro → body / UI text / technical
   ============================================================ */
.display-1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.display-2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.heading-1 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.heading-2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.heading-3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}
.body-lg  { font-size: 17px; line-height: 1.65; color: var(--text-secondary); }
.body-md  { font-size: 15px; line-height: 1.6;  color: var(--text-secondary); }
.body-sm  { font-size: 13px; line-height: 1.55; color: var(--text-muted); }
.label    {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s6);
}
@media (max-width: 640px) { .container { padding: 0 var(--s4); } }

.section        { padding: var(--s24) 0; }
.section--lg    { padding: var(--s32) 0; }
.section--sm    { padding: var(--s16) 0; }
.section--dark  { background: var(--navy); color: var(--white); }
.section--muted { background: var(--surface); }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s6); }

@media (max-width: 1020px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px)  { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: var(--announce-h);
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 999;
  background: var(--navy);
  border-bottom: 1px solid var(--border-mid);
  transition: background 200ms ease-out, box-shadow 200ms ease-out;
}
.nav--scrolled {
  background: rgba(10, 22, 40, 0.97);
  box-shadow: var(--shadow-lg);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s6);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--s2);
  flex-shrink: 0;
}
.nav__logo-mark {
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
}
.nav__logo-text span { color: var(--orange); }

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav__link {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding: var(--s2) var(--s3);
  border-radius: var(--r-md);
  transition: color 150ms ease-out, background 150ms ease-out;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  white-space: nowrap;
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav__link--active { color: var(--white); }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + var(--s2));
  left: 0;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--s2);
  min-width: 212px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 200ms ease-out, transform 200ms ease-out, visibility 200ms;
  z-index: 100;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown--open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s2) var(--s3);
  font-size: 13px;
  color: var(--text-primary);
  border-radius: var(--r-md);
  transition: background 120ms;
}
.nav__dropdown-item:hover {
  background: var(--surface);
  color: var(--orange);
}
.nav__dropdown-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-light);
  border: 1.5px solid var(--orange);
  flex-shrink: 0;
}
.nav__chevron {
  display: inline-block;
  width: 12px;
  height: 12px;
  transition: transform 150ms ease-out;
}
.nav__dropdown:hover .nav__chevron { transform: rotate(180deg); }

/* Nav CTA */
.nav__cta { flex-shrink: 0; }

/* Mobile toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--s2);
  color: var(--white);
}
.nav__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  margin: 4px 0;
  transition: transform 200ms ease, opacity 200ms ease;
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__toggle { display: block; }

  .nav--mobile-open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    padding: var(--s3) var(--s4) var(--s4);
    border-top: 1px solid var(--border-mid);
    border-bottom: 1px solid var(--border-mid);
    gap: 2px;
  }
  .nav--mobile-open .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    border-radius: var(--r-md);
    margin-top: 2px;
  }
  .nav--mobile-open .nav__dropdown-item { color: rgba(255,255,255,0.7); }
  .nav--mobile-open .nav__dropdown-item:hover { background: rgba(255,255,255,0.06); color: var(--white); }
  .nav--mobile-open .nav__cta { display: flex; padding: 0 var(--s4) var(--s4); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: transform 150ms ease-out, opacity 150ms ease-out, box-shadow 150ms ease-out, background 150ms ease-out;
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--orange); color: var(--white); }
.btn--primary:hover { background: var(--orange-dark); }

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-dark);
}
.btn--secondary:hover { background: rgba(255,255,255,0.08); }

.btn--dark   { background: var(--navy); color: var(--white); }
.btn--dark:hover { background: var(--navy-700); }

.btn--ghost  { background: transparent; color: var(--text-primary); border: 1px solid var(--border); }
.btn--ghost:hover { background: var(--surface); }

.btn--lg  { font-size: 15px; padding: 14px 28px; }
.btn--sm  { font-size: 12px; padding: 7px 14px; }

.btn--glow {
  box-shadow: 0 0 0 0 transparent;
}
.btn--glow:hover {
  box-shadow: 0 0 0 4px var(--orange-glow), 0 0 24px var(--orange-glow);
  transform: translateY(-2px);
}

/* ============================================================
   BADGE
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--r-full);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.badge--orange { background: var(--orange-light); color: var(--orange); }
.badge--navy   { background: rgba(10,22,40,0.08); color: var(--navy); }
.badge--white  { background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.85); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s6);
  box-shadow: var(--shadow-md);
  transition: transform var(--card-duration) var(--card-ease),
              box-shadow var(--card-duration) var(--card-ease);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.card--dark {
  background: var(--navy-800);
  border-color: var(--border-dark);
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { text-align: center; margin-bottom: var(--s12); }
.section-header--left { text-align: left; }
.section-header__label  { margin-bottom: var(--s3); }
.section-header__title  { margin-bottom: var(--s4); }
.section-header__sub    { max-width: 560px; margin: 0 auto; }
.section-header--left .section-header__sub { margin: 0; }

/* ============================================================
   HERO – Home
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  overflow: hidden;
  padding-top: calc(var(--nav-h) + var(--announce-h));
}

/* Background layers */
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 110% 70% at 65% -10%, rgba(255,107,26,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 90% 80% at 100% 60%, rgba(19,41,82,0.6) 0%, transparent 60%),
    linear-gradient(145deg, #0a1628 0%, #0d2140 55%, #132952 100%);
}

/* Light streaks */
.hero__streak {
  position: absolute;
  width: 1px;
  height: 180px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,107,26,0.35) 50%, transparent 100%);
  animation: streak 22s linear infinite;
  opacity: 0;
}
.hero__streak:nth-child(1) { left: 18%; animation-duration: 18s; animation-delay:   0s; }
.hero__streak:nth-child(2) { left: 43%; animation-duration: 26s; animation-delay:  -8s; }
.hero__streak:nth-child(3) { left: 67%; animation-duration: 21s; animation-delay: -15s; }
.hero__streak:nth-child(4) { left: 82%; animation-duration: 30s; animation-delay:  -5s; }

@keyframes streak {
  0%   { top: -200px; opacity: 0; }
  8%   { opacity: 0.5; }
  92%  { opacity: 0.5; }
  100% { top: 110%; opacity: 0; }
}

/* Grid dot overlay */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s24) var(--s6) var(--s16);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
  width: 100%;
}
.hero__text { color: var(--white); }

.hero__eyebrow { margin-bottom: var(--s4); }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--s6);
}
.hero__title em {
  font-style: normal;
  color: var(--orange);
}

.hero__subtitle {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--s8);
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
}

/* Hero visual */
.hero__visual {
  position: relative;
  z-index: 2;
}
.hero__visual-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-xl);
  padding: var(--s6);
  position: relative;
  overflow: hidden;
}
.hero__visual-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255,107,26,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Route animation card */
.route-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: var(--s4);
  margin-bottom: var(--s3);
}
.route-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s3);
}
.route-card__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.route-card__status {
  font-size: 11px;
  font-weight: 500;
  color: #4ade80;
  background: rgba(74,222,128,0.12);
  padding: 2px 8px;
  border-radius: var(--r-full);
}
.route-card__cities {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s3);
}
.route-card__city {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.route-card__arrow {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, rgba(255,107,26,0.4), rgba(255,107,26,0.8), rgba(255,107,26,0.4));
  position: relative;
  border-radius: var(--r-full);
}
.route-card__arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
  50%       { opacity: 0.6; transform: translateY(-50%) scale(1.4); }
}

.route-card__meta {
  display: flex;
  gap: var(--s4);
}
.route-card__meta-item {
  display: flex;
  align-items: center;
  gap: var(--s1);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* Stat mini cards */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
  margin-top: var(--s3);
}
.hero__stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: var(--s3) var(--s4);
  text-align: center;
}
.hero__stat-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 2px;
}
.hero__stat-value span { color: var(--orange); }
.hero__stat-label {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Stats bar */
.stats-bar {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border-dark);
}
.stats-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s8) var(--s6);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s6);
}
.stat { text-align: center; }
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(22px, 5vw, 36px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 4px;
}
.stat__value span { color: var(--orange); }
.stat__label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   SERVICE CARDS GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s6);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform var(--card-duration) var(--card-ease),
              box-shadow var(--card-duration) var(--card-ease),
              border-color 200ms ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--orange);
}
.service-card__icon {
  width: 44px;
  height: 44px;
  background: var(--orange-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: var(--s4);
  flex-shrink: 0;
  transition: background 200ms;
}
.service-card:hover .service-card__icon { background: var(--orange); color: var(--white); }
.service-card__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--s2);
}
.service-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: var(--s4);
}
.service-card__link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
}
.service-card__link svg { transition: transform 150ms ease-out; }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* ============================================================
   HOW IT WORKS – TIMELINE
   ============================================================ */
.timeline { position: relative; }
.timeline__rail {
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  overflow: hidden;
}
.timeline__rail-fill {
  width: 100%;
  background: var(--orange);
  height: 0%;
  transition: height 0.01s;
}
.timeline__items { list-style: none; }
.timeline__item {
  display: flex;
  gap: var(--s6);
  padding-bottom: var(--s10);
  position: relative;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(255,107,26,0.10);
  z-index: 1;
}
.timeline__body { padding-top: var(--s3); }
.timeline__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--s2);
}
.timeline__text { font-size: 14px; line-height: 1.65; color: var(--text-muted); }

/* ============================================================
   FLEET SHOWCASE
   ============================================================ */
.fleet-showcase { overflow: hidden; }
.fleet-track-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  padding: var(--s2) 0 var(--s4);
}
.fleet-track-wrapper::-webkit-scrollbar { display: none; }
.fleet-track-wrapper:active { cursor: grabbing; }
.fleet-track {
  display: flex;
  gap: var(--s4);
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--s6);
}
.fleet-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--card-duration) var(--card-ease),
              box-shadow var(--card-duration) var(--card-ease);
}
.fleet-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-card);
}
.fleet-card__img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--surface);
}
.fleet-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.fleet-card__body { padding: var(--s4); }
.fleet-card__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.fleet-card__subtitle { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   TEMPERATURE SECTION
   ============================================================ */
.temp-visual {
  background: var(--navy-800);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-xl);
  padding: var(--s8);
  position: relative;
  overflow: hidden;
}
.temp-visual::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,107,26,0.08) 0%, transparent 70%);
}
.temp-range {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
  margin: var(--s8) 0;
}
.temp-val {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.temp-val--cold { color: #93c5fd; }
.temp-val--warm { color: var(--orange); }
.temp-sep {
  font-family: var(--font-display);
  font-size: 32px;
  color: rgba(255,255,255,0.3);
}
.temp-bar {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-full);
  overflow: hidden;
  margin: var(--s4) 0;
}
.temp-bar__fill {
  height: 100%;
  background: linear-gradient(to right, #93c5fd, var(--orange));
  border-radius: var(--r-full);
  width: 0%;
  transition: width 1.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.temp-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   LOCATION TABS
   ============================================================ */
.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--s8);
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: var(--s3) var(--s5);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  cursor: pointer;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: color 150ms ease, border-color 150ms ease;
}
.tab-btn:hover { color: var(--text-primary); }
.tab-btn--active { color: var(--orange); border-bottom-color: var(--orange); }

.tab-panel { display: none; }
.tab-panel--active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s10);
  align-items: start;
  animation: fade-up 0.4s ease-out both;
}
@media (max-width: 768px) { .tab-panel--active { grid-template-columns: 1fr; } }

.map-embed {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 340px; display: block; border: none; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s4);
}
@media (max-width: 1020px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .industries-grid { grid-template-columns: repeat(2, 1fr); } }

.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s6) var(--s4);
  text-align: center;
  transition: transform var(--card-duration) var(--card-ease),
              box-shadow var(--card-duration) var(--card-ease),
              border-color 200ms;
}
.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.industry-card__icon {
  color: var(--orange);
  margin-bottom: var(--s3);
  display: flex;
  justify-content: center;
}
.industry-card__icon svg { width: 28px; height: 28px; }

/* Centered tile icon (overview cards, quote list, etc.) */
.tile-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-light);
  color: var(--orange);
  margin: 0 auto var(--s3);
}
.tile-icon--on-orange { background: rgba(255,255,255,0.18); color: var(--white); }
.industry-card__title { font-size: 13px; font-weight: 600; color: var(--text-primary); }

/* ============================================================
   CAPABILITY / WHY DELIVAX (dark section)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s5);
}
@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  display: flex;
  gap: var(--s4);
  padding: var(--s6);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  transition: background 200ms ease, border-color 200ms ease;
}
.feature-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,107,26,0.30);
}
.feature-card__icon {
  width: 44px;
  height: 44px;
  background: var(--orange-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.feature-card__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--s2);
}
.feature-card__text { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.50); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-700) 100%);
  text-align: center;
  padding: var(--s24) 0;
  position: relative;
  overflow: hidden;
}
.cta-section__glow {
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,107,26,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: var(--s4);
}
.cta-section__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.60);
  max-width: 500px;
  margin: 0 auto var(--s8);
  line-height: 1.65;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + var(--announce-h) + var(--s12)) 0 var(--s16);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 80% -20%, rgba(255,107,26,0.10) 0%, transparent 55%),
    linear-gradient(140deg, #0a1628 0%, #132952 100%);
  pointer-events: none;
}
.page-hero__badge  { margin-bottom: var(--s4); }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: var(--s4);
  line-height: 1.08;
}
.page-hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.60);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: var(--s8);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 13px;
  color: rgba(255,255,255,0.40);
  margin-bottom: var(--s6);
  position: relative;
  z-index: 1;
}
.breadcrumb a:hover { color: rgba(255,255,255,0.75); }
.breadcrumb__sep    { color: rgba(255,255,255,0.20); }
.breadcrumb__cur    { color: rgba(255,255,255,0.65); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border-mid);
  padding: var(--s16) 0 var(--s8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: var(--s10);
  margin-bottom: var(--s12);
  align-items: start;
}
@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s8); } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: var(--s4);
  display: block;
}
.footer__logo span { color: var(--orange); }
.footer__desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.40);
  margin-bottom: var(--s5);
  max-width: 280px;
}
.footer__contact { font-size: 13px; color: rgba(255,255,255,0.55); }
.footer__contact a { transition: color 150ms; }
.footer__contact a:hover { color: var(--white); }
.footer__contact-row { display: flex; align-items: center; gap: var(--s2); margin-bottom: var(--s2); }

.footer__heading {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  margin-bottom: var(--s4);
}
.footer__links { display: flex; flex-direction: column; gap: var(--s3); }
.footer__link {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  transition: color 150ms ease;
}
.footer__link:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s4);
  padding-top: var(--s6);
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 12px;
  color: rgba(255,255,255,0.28);
}

/* ============================================================
   FORM STYLES
   ============================================================ */
.form-group  { margin-bottom: var(--s5); }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--s2);
  letter-spacing: 0.02em;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color 150ms ease-out, box-shadow 150ms ease-out;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,26,0.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23667691' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s8);
  box-shadow: var(--shadow-card);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-load {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scale-in {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* Hero staggered load */
.hero-anim-1 { animation: hero-load 0.8s ease-out 0.00s both; }
.hero-anim-2 { animation: hero-load 0.8s ease-out 0.12s both; }
.hero-anim-3 { animation: hero-load 0.8s ease-out 0.22s both; }
.hero-anim-4 { animation: hero-load 0.8s ease-out 0.32s both; }
.hero-anim-5 { animation: scale-in  0.9s cubic-bezier(.22,1,.36,1) 0.18s both; }

/* JS-driven scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger .reveal:nth-child(1) { transition-delay: 0.00s; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: 0.24s; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: 0.36s; }
.reveal-stagger .reveal:nth-child(5) { transition-delay: 0.48s; }
.reveal-stagger .reveal:nth-child(6) { transition-delay: 0.60s; }
.reveal-stagger .reveal:nth-child(7) { transition-delay: 0.72s; }
.reveal-stagger .reveal:nth-child(8) { transition-delay: 0.84s; }

/* ============================================================
   INLINE SVG ICONS (truck, temp, map, etc.)
   ============================================================ */
.icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.icon-wrap svg { width: 22px; height: 22px; }

/* ============================================================
   CONTACT INFO BLOCKS
   ============================================================ */
.contact-card {
  display: flex;
  gap: var(--s4);
  padding: var(--s6);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.contact-card__icon {
  width: 44px;
  height: 44px;
  background: var(--orange-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-card__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.contact-card__detail {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-card__detail a {
  color: var(--orange);
  transition: opacity 150ms;
}
.contact-card__detail a:hover { opacity: 0.8; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center  { text-align: center; }
.text-orange  { color: var(--orange); }
.text-white   { color: var(--white); }
.text-muted   { color: var(--text-muted); }
.text-navy    { color: var(--navy); }
.mt-auto      { margin-top: auto; }
.mb-0         { margin-bottom: 0; }
.pos-rel      { position: relative; z-index: 1; }

/* Divider */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--s8) 0;
}
.divider--dark { border-top-color: var(--border-dark); }

/* Legal / long-form prose pages */
.legal a,
.link-inline { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover,
.link-inline:hover { color: var(--orange-dark); }
.legal .check-list li { margin-bottom: 8px; }
.legal h3.heading-2 { margin-top: var(--s6); }

/* Highlight block */
.highlight {
  background: var(--surface);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--s4) var(--s5);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}


/* Check list */
.check-list { display: flex; flex-direction: column; gap: var(--s3); }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.check-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange-light);
  border: 1.5px solid var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23ff6b1a' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.check-list--white li { color: rgba(255,255,255,0.65); }
.check-list--white li::before {
  border-color: rgba(255,107,26,0.5);
  background-color: rgba(255,107,26,0.10);
}

/* ============================================================
   RESPONSIVE HERO
   ============================================================ */
@media (max-width: 900px) {
  .hero__content {
    grid-template-columns: 1fr;
    padding: var(--s16) var(--s4) var(--s12);
    gap: var(--s10);
  }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats   { grid-template-columns: 1fr 1fr; }
  .stats-bar__inner { grid-template-columns: 1fr 1fr; gap: var(--s5); padding: var(--s6) var(--s4); }
}

/* ============================================================
   MOBILE SPACING / OVERFLOW SAFEGUARDS
   ============================================================ */
@media (max-width: 640px) {
  .section { padding: var(--s16) 0; }
  .stat__label { font-size: 11px; letter-spacing: 0.03em; }
}
@media (max-width: 400px) {
  .stats-bar__inner { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__streak { display: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   BRAND LOGO (image-based)
   ============================================================ */
.nav__logo-img {
  height: 30px;
  width: auto;
  display: block;
}
.footer__logo-img {
  height: 30px;
  width: auto;
  display: block;
  margin-bottom: var(--s4);
}
@media (max-width: 480px) { .nav__logo-img { height: 26px; } }

/* ============================================================
   HERO MEDIA (real imagery + parallax + floating telemetry)
   ============================================================ */
.hero__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.6);
  background: var(--navy-800);
  line-height: 0;
}
.hero__media-img {
  width: 100%;
  height: auto;
  display: block;
  will-change: transform;
}
/* Active Route card sits below the image, no overlap */
.route-card--below {
  margin: var(--s4) 0 0;
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.10);
}

/* ============================================================
   TRUST / LOGO STRIP
   ============================================================ */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.trust-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s4) var(--s10);
}
.trust-strip__label {
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}
.trust-strip__item svg { color: var(--orange); flex-shrink: 0; }

/* ============================================================
   TECHNOLOGY / PLATFORM SECTION
   ============================================================ */
.tech-section { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.tech-section__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(255,107,26,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.tech-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s8);
  align-items: start;
}

.tech-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
  margin-top: var(--s10);
}
@media (max-width: 900px) { .tech-features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tech-features { grid-template-columns: 1fr; } }

.tech-feature {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.03);
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.tech-feature:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,107,26,0.35);
  transform: translateY(-3px);
}
.tech-feature__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}
.tech-feature__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--card-ease);
}
.tech-feature:hover .tech-feature__img img { transform: scale(1.05); }
.tech-feature__body { padding: var(--s5); }
.tech-feature__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.tech-feature__text { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.55); }

/* Delivery process timeline (7 numbered steps) */
.process {
  list-style: none;
  margin: var(--s10) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--s4);
}
.process__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s3);
}
.process__marker { position: relative; width: 100%; display: flex; justify-content: center; }
/* connector line from this circle's centre to the next */
.process__marker::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 50%;
  width: calc(100% + var(--s4));
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
  z-index: 0;
}
.process__step:last-child .process__marker::before { display: none; }
/* chevron arrow pointing to the next step */
.process__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 58px;
  right: calc(var(--s4) / -2);
  width: 18px;
  height: 18px;
  transform: translate(50%, -50%);
  background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23ffffff'%20stroke-width='2.25'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpolyline%20points='9%2018%2015%2012%209%206'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.32;
}
.process__num {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}
.process__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.process__icon svg { width: 26px; height: 26px; }
.process__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}
.process__text { font-size: 12.5px; line-height: 1.55; color: rgba(255, 255, 255, 0.55); }

/* Mobile: vertical timeline (number rail on the left, content on the right) */
@media (max-width: 760px) {
  .process { grid-template-columns: 1fr; gap: 0; }
  .process__step {
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: var(--s4);
    row-gap: 4px;
    grid-template-areas:
      "marker title"
      "marker text";
    text-align: left;
    padding-bottom: var(--s7);
  }
  .process__marker { grid-area: marker; width: 34px; align-self: start; }
  .process__marker::before { display: none; }
  /* vertical connector running down the number rail to the next step */
  .process__step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 34px;
    bottom: 0;
    left: 17px;
    width: 2px;
    background: rgba(255, 255, 255, 0.14);
    transform: translateX(-50%);
    z-index: 0;
  }
  .process__step::after { display: none; }
  .process__icon { display: none; }
  .process__title { grid-area: title; align-self: center; min-height: 34px; display: flex; align-items: center; }
  .process__text { grid-area: text; }
}

/* Feature card icon beside the title (How We Operate) */
.tech-feature__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  min-height: 46px; /* reserve ~2 lines so all cards align regardless of title length */
}
.tech-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.tech-feature__icon svg { width: 26px; height: 26px; }

/* Tech media (showcase image + floating status panel) */
.tech-media { position: relative; }
.tech-media__img {
  width: 116%;
  max-width: none;
  height: auto;
  display: block;
  margin: 0 -8% -4%;
  filter: drop-shadow(0 26px 44px rgba(0,0,0,0.45));
}
@media (max-width: 900px) {
  .tech-media__img { width: 100%; margin: 0 auto; max-width: 560px; }
}
.tracking-panel {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 264px;
  max-width: 74%;
  background: rgba(13,33,64,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-lg);
  padding: var(--s4);
  box-shadow: var(--shadow-xl);
}
@media (max-width: 520px) { .tracking-panel { position: static; width: 100%; max-width: none; margin-top: var(--s4); } }

/* Below-image variant (no overlap) */
.tracking-panel--below {
  position: static;
  width: 100%;
  max-width: 380px;
  margin: var(--s2) auto 0;
}
.tracking-panel__row {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s2) 0;
}
.tracking-panel__row + .tracking-panel__row { border-top: 1px solid rgba(255,255,255,0.08); }
.tracking-panel__dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74,222,128,0.14);
}
.tracking-panel__dot--amber { background: var(--orange); box-shadow: 0 0 0 4px rgba(255,107,26,0.16); }
.tracking-panel__dot--blue  { background: #60a5fa; box-shadow: 0 0 0 4px rgba(96,165,250,0.16); }
.tracking-panel__label { font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 500; }
.tracking-panel__meta  { font-size: 11px; color: rgba(255,255,255,0.45); margin-left: auto; }



/* ============================================================
   INDUSTRY CARDS (image-based) — override icon-tile styles
   ============================================================ */
.industries-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .industries-grid { grid-template-columns: 1fr; } }

.industry-card {
  padding: 0;
  overflow: hidden;
  text-align: left;
  display: block;
}
.industry-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface);
}
.industry-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--card-ease);
}
.industry-card:hover .industry-card__media img { transform: scale(1.06); }
.industry-card .industry-card__title {
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}



/* ============================================================
   FORM STATUS MESSAGE
   ============================================================ */
.form-status {
  margin-top: var(--s4);
  font-size: 14px;
  line-height: 1.5;
}
.form-status--ok {
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--r-md);
  padding: var(--s3) var(--s4);
}
.form-status--error {
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--r-md);
  padding: var(--s3) var(--s4);
}

/* ============================================================
   SERVICE CARD — PHOTO VARIANT  (web-v2)
   Adds a photo header to .service-card via .service-card--media.
   Plain .service-card (icon-only) is unaffected.
   ============================================================ */
.service-card--media { padding: 0; overflow: hidden; }
.service-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-muted);
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--card-duration) var(--card-ease);
}
.service-card--media:hover .service-card__media img { transform: scale(1.04); }
.service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--s6);
}
/* Icon chip overlaps the photo edge for a connected, polished look */
.service-card--media .service-card__icon {
  margin-top: -46px;
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.service-card--media:hover .service-card__icon { background: var(--orange); color: var(--white); }

/* ============================================================
   SERVICE PAGE — SPLIT HERO WITH PHOTO  (web-v2)
   Scoped to .page-hero--split so industries/other page heroes
   remain unchanged.
   ============================================================ */
.page-hero--split .page-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--s12);
  align-items: center;
}
.page-hero__copy { min-width: 0; }
/* Transparent vehicle cutouts sit directly on the dark hero: no box,
   no border, no background. `contain` keeps the whole vehicle visible
   and the small max-width stops the huge source images dominating. */
.page-hero__media {
  position: relative;
  aspect-ratio: 4 / 3;
  max-width: 380px;
  margin: 0 auto;
}
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 860px) {
  .page-hero--split .page-hero__inner { grid-template-columns: 1fr; gap: var(--s8); }
  .page-hero__media { max-width: 300px; }
}

/* ============================================================
   SPEC STRIP — capability icons under service hero  (web-v2)
   ============================================================ */
.spec-strip {
  background: var(--navy-800);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.spec-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s6) var(--s6) var(--s8);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--s2);
}
.spec-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s3);
  padding: var(--s5) var(--s3);
}
.spec-strip__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.spec-strip__label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

/* ============================================================
   FLEET FEATURE (homepage Our Fleet section)  (web-v2)
   ============================================================ */
.fleet-feature { text-align: center; }
.fleet-feature__img {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  margin: 0 auto;
}
.fleet-feature__actions { margin-top: var(--s6); }

/* ============================================================
   VEHICLE CARDS (fleet.html)  (web-v2)
   ============================================================ */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
  align-items: start;
}
@media (max-width: 900px) { .vehicle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .vehicle-grid { grid-template-columns: 1fr; } }

.vehicle-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  /* perspective drives the 3D flip; overflow stays visible so the
     flip child keeps its transform-style (Safari/FF flatten otherwise) */
  perspective: 1600px;
  transition: transform var(--card-duration) var(--card-ease),
              box-shadow var(--card-duration) var(--card-ease),
              border-color 200ms ease;
}
.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--orange);
}

/* ---- Flip mechanics -------------------------------------------------- */
.vehicle-card__flip {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 600ms cubic-bezier(0.4, 0.15, 0.2, 1);
}
.vehicle-card.is-flipped .vehicle-card__flip { transform: rotateY(180deg); }

.vehicle-card__face {
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* Front stays in normal flow and defines the card height */
.vehicle-card__face--front {
  position: relative;
  display: flex;
  flex-direction: column;
}
/* Back is overlaid, pre-rotated, and fills the front's box */
.vehicle-card__face--back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  background: var(--navy);
}

/* ---- Front "View Details" button ------------------------------------ */
.vehicle-card__more {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  width: 100%;
  margin-top: var(--s4);
  padding: 0;
  border: none;
  background: none;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease;
}
.vehicle-card__more:hover { color: var(--orange-dark); }
.vehicle-card__more svg { transition: transform 160ms ease; }
.vehicle-card__more:hover svg { transform: translateX(3px); }

/* ---- Back face content ---------------------------------------------- */
.vehicle-card__back-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s2);
  padding: var(--s4) var(--s5) var(--s3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.vehicle-card__back-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}
.vehicle-card__specs {
  flex: 1 1 auto;
  margin: 0;
  padding: var(--s2) var(--s5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vehicle-card__spec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.vehicle-card__spec:last-child { border-bottom: none; }
.vehicle-card__spec dt {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.vehicle-card__spec dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-align: right;
}
.vehicle-card__back-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  margin: var(--s4) var(--s5) var(--s5);
  padding: 0;
  border: none;
  background: none;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease;
}
.vehicle-card__back-btn:hover { color: var(--orange-dark); }
.vehicle-card__back-btn svg { transition: transform 160ms ease; }
.vehicle-card__back-btn:hover svg { transform: translateX(-3px); }

@media (prefers-reduced-motion: reduce) {
  .vehicle-card__flip { transition: none; }
}
.vehicle-card__media {
  position: relative;
  height: 210px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s5);
  border-bottom: 1px solid var(--border);
}
.vehicle-card__media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.vehicle-card__badge {
  position: absolute;
  top: var(--s3);
  right: var(--s3);
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-full);
}
.vehicle-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s2);
  padding: var(--s4) var(--s5) var(--s3);
}
.vehicle-card__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0;
}
.vehicle-card__type {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.10);
  padding: 3px 8px;
  border-radius: var(--r-full);
}
/* Dark stats panel at the foot of each card */
.vehicle-card__panel {
  margin-top: auto;
  background: var(--navy);
  padding: var(--s4) var(--s5);
}
.vehicle-card__stats {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 4px var(--s4);
  align-items: start;
}
.vehicle-card__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.vehicle-card__stat-val {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--white);
}
.vehicle-card__stat-val svg { color: var(--orange); flex-shrink: 0; }
.vehicle-card__stat-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
/* Second stats row (GVM / Tare / Height clearance) - always visible, no icons. */
.vehicle-card__stats--sub {
  margin-top: var(--s3);
  padding-top: var(--s3);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* ============================================================
   FLEET CONTROLS — filter / sort / search (fleet.html)  (web-v2)
   ============================================================ */
.fleet-controls { margin-bottom: var(--s10); }
.fleet-controls__filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  flex-wrap: wrap;
  margin-bottom: var(--s5);
}
.fleet-controls__tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  flex-wrap: wrap;
  padding-top: var(--s5);
  border-top: 1px solid var(--border);
}

/* Search box */
.fleet-search {
  position: relative;
  flex: 1;
  min-width: 240px;
  max-width: 420px;
}
.fleet-search__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.fleet-search__input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  padding: 12px 16px 12px 42px;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  background: var(--white);
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.fleet-search__input::placeholder { color: var(--text-muted); }
.fleet-search__input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-light);
}

/* Selects (transmission, sort) */
.fleet-selects { display: flex; gap: var(--s4); flex-wrap: wrap; }
.fleet-select { display: flex; align-items: center; gap: var(--s2); }
.fleet-select label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}
.fleet-select select {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-primary);
  padding: 9px 34px 9px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23667691' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.fleet-select select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-light);
}

/* Filter chips */
.fleet-chips { display: flex; gap: var(--s2); flex-wrap: wrap; }
.fleet-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  background: var(--white);
  cursor: pointer;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
}
.fleet-chip:hover { border-color: var(--orange); color: var(--orange); }
.fleet-chip.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
/* Left cluster: vehicle-type chips + the refrigerated modifier toggle */
.fleet-filter-group {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-wrap: wrap;
}
.fleet-filter-divider {
  align-self: stretch;
  width: 1px;
  min-height: 22px;
  background: var(--border);
}

/* Refrigerated is an additive modifier (combines with the type above),
   so it reads as a checkbox rather than another exclusive type chip. */
.fleet-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 7px 15px 7px 9px;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  background: var(--white);
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease;
}
.fleet-toggle:hover { border-color: var(--orange); color: var(--navy); }
.fleet-toggle__box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  color: transparent;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}
.fleet-toggle__snow { color: #93c5fd; }
.fleet-toggle.is-active { border-color: var(--orange); color: var(--navy); }
.fleet-toggle.is-active .fleet-toggle__box {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.fleet-toggle.is-active .fleet-toggle__snow { color: var(--orange); }

.fleet-count {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Refrigerated tag on the card image */
.vehicle-card__tag {
  position: absolute;
  top: var(--s3);
  right: var(--s3);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1e40af;
  background: rgba(147, 197, 253, 0.25);
  padding: 4px 9px;
  border-radius: var(--r-full);
}
.vehicle-card__tag svg { color: #2563eb; }

/* Filtered-out cards (author rule beats flex display) */
.vehicle-card[hidden] { display: none; }

.fleet-noresults {
  text-align: center;
  color: var(--text-secondary);
  font-size: 15px;
  padding: var(--s12) 0;
}
.fleet-clear {
  background: none;
  border: none;
  color: var(--orange);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
@media (max-width: 700px) {
  .fleet-controls__tools { flex-direction: column; align-items: stretch; }
  .fleet-search { max-width: none; }
  .fleet-selects { justify-content: space-between; }
  .fleet-controls__filters { flex-direction: column; align-items: flex-start; }
}

/* Sequential (top-to-bottom) image reveal for grids  (web-v2) */
.seq-img { opacity: 0; transition: opacity 0.4s ease; }
.seq-img.seq-img--in { opacity: 1; }

/* ============================================================
   ANNOUNCEMENT BAR (fixed, top of every page)
   Height is driven by --announce-h so dismissing it (set to 0px)
   collapses the nav / hero offsets automatically.
   ============================================================ */
.announce {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--announce-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  background: linear-gradient(0deg, rgba(74, 222, 128, 0.16), rgba(74, 222, 128, 0.16)), var(--navy-800);
  color: #4ade80;
  border-bottom: 1px solid rgba(74, 222, 128, 0.22);
  overflow: hidden;
}
.announce--hidden { display: none; }
.announce__link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  color: #4ade80;
  font-size: 11.5px;
  font-weight: 400;
  max-width: 100%;
  min-width: 0;
  transition: color 150ms ease;
}
.announce__link:hover { color: #86efac; }
.announce__tag {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  padding: 2px 8px;
  border-radius: var(--r-full);
}
/* Pulsing "live" dot inside the New pill (matches the green status vibe). */
.announce__tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55);
  animation: announcePulse 1.8s ease-out infinite;
}
@keyframes announcePulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .announce__tag::before { animation: none; }
}
.announce__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #4ade80;
}
.announce__cta {
  flex-shrink: 0;
  font-weight: 600;
  color: #4ade80;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(74, 222, 128, 0.45);
}
.announce__arrow { flex-shrink: 0; width: 13px; height: 13px; color: #4ade80; transition: transform 150ms ease; }
.announce__link:hover .announce__arrow { transform: translateX(3px); }
.announce__close {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}
.announce__close:hover { background: rgba(255, 255, 255, 0.12); color: var(--white); }
@media (max-width: 600px) {
  .announce { padding: 0 34px 0 10px; }
  .announce__link { font-size: 11px; }
}

/* ============================================================
   INSIGHTS HUB — resource / blog / case-study listing
   ============================================================ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--s6);
}
.insight-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--orange);
}
.insight-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface-muted);
}
.insight-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.insight-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  padding: var(--s5);
  flex: 1;
}
.insight-card__meta {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: 12px;
  color: var(--text-muted);
}
.insight-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.insight-card__excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.insight-card__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
}
.insight-card__more svg { transition: transform 150ms ease; }
.insight-card:hover .insight-card__more svg { transform: translateX(3px); }

/* ============================================================
   CASE STUDY ARTICLE (Problem -> Solution -> Outcome)
   ============================================================ */
.cs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
  margin-bottom: var(--s6);
}
@media (max-width: 768px) { .cs-grid { grid-template-columns: 1fr; } }
.cs-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s6);
  box-shadow: var(--shadow-sm);
}
.cs-panel__label {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--s4);
}
.cs-panel__label span { color: var(--orange); }
.cs-outcome { border-top: 3px solid var(--orange); }
.cs-specs {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s5) var(--s6);
}
.cs-specs dl { display: flex; flex-direction: column; gap: var(--s3); margin: 0; }
.cs-specs__row { display: flex; flex-direction: column; gap: 2px; padding-bottom: var(--s3); border-bottom: 1px solid var(--border); }
.cs-specs__row:last-child { border-bottom: none; padding-bottom: 0; }
.cs-specs dt { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange); }
.cs-specs dd { font-size: 15px; color: var(--text-primary); margin: 0; }
