/* ═══════════════════════════════════════════════════════════════
   Danielle Logistics LLC — danicargo.com
   Shared design system: tokens → base → components → pages
═══════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  --navy-900: #060F1C;
  --navy-800: #0A1628;
  --navy-700: #0F1F36;
  --navy-600: #15294A;
  --navy-500: #1E365F;
  --navy-line: #1B2C47;

  --blue-500: #1E90FF;
  --blue-400: #4DA8FF;
  --blue-300: #7BC0FF;
  --blue-glow: rgba(30, 144, 255, 0.25);

  --silver-100: #F2F4F7;
  --silver-200: #DDE2E8;
  --silver-300: #C7CED6;
  --silver-400: #95A0AD;
  --silver-500: #6A7585;
  --silver-600: #4A5462;

  --ink-900: #0B121C;
  --ink-700: #2A3340;
  --ink-500: #5A6373;

  --bg-white: #FFFFFF;
  --bg-light: #F6F7F9;
  --bg-mid:   #EEF1F4;

  --shadow-card: 0 1px 2px rgba(8,18,36,0.04), 0 8px 24px -8px rgba(8,18,36,0.08);
  --shadow-lifted: 0 12px 40px -12px rgba(8,18,36,0.22);

  --font-display: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body:    "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --container: 1240px;
  --header-h: 84px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ─── Container ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy-800);
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.site-header.scrolled {
  background: rgba(6,15,28,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--navy-line);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.6);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  height: var(--header-h);
}

/* ─── Logo ─── */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(140deg, #1E90FF 0%, #0F5FBE 100%);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: white;
  letter-spacing: -0.02em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0) 55%);
  pointer-events: none;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-display);
  font-weight: 800;
}
.logo-text .l1 {
  font-size: 16px;
  letter-spacing: 0.12em;
  color: white;
}
.logo-text .l2 {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--silver-300);
  margin-top: 4px;
  font-weight: 600;
}

/* ─── Nav ─── */
.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.site-nav a {
  color: var(--silver-200);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 8px;
  transition: color 150ms ease, background 150ms ease;
  white-space: nowrap;
}
.site-nav a:hover { color: white; background: rgba(255,255,255,0.05); }
.site-nav a.active {
  color: white;
  background: rgba(30,144,255,0.12);
  box-shadow: inset 0 0 0 1px rgba(30,144,255,0.35);
}

/* ─── Header CTAs ─── */
.header-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ─── Hamburger ─── */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

/* ─── Mobile Nav Overlay ─── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  z-index: 48;
  flex-direction: column;
  padding: calc(var(--header-h) + 24px) 32px 48px;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav a {
  color: var(--silver-200);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
  padding: 14px 0;
  border-bottom: 1px solid var(--navy-line);
  display: block;
}
.mobile-nav a:hover { color: white; }
.mobile-nav .mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.mobile-nav .mobile-ctas .btn {
  justify-content: center;
  width: 100%;
  font-size: 16px;
  padding: 16px 24px;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 12px 20px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 120ms ease, box-shadow 150ms ease, background 150ms ease,
              color 150ms ease, border-color 150ms ease;
  white-space: nowrap;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--blue-500);
  color: white;
  box-shadow: 0 0 0 1px rgba(30,144,255,0.4), 0 8px 20px -8px rgba(30,144,255,0.55);
}
.btn-primary:hover {
  background: var(--blue-400);
  box-shadow: 0 0 0 1px rgba(77,168,255,0.55), 0 10px 28px -8px rgba(30,144,255,0.7);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

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

.btn-large {
  padding: 16px 28px;
  font-size: 15px;
}

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--navy-800);
  color: white;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 85% 20%, rgba(30,144,255,0.18), transparent 60%),
    radial-gradient(800px 500px at 10% 100%, rgba(30,144,255,0.08), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 80px;
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--silver-300);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--blue-400);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(30,144,255,0.18);
  animation: pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(30,144,255,0.18); }
  50%       { box-shadow: 0 0 0 8px rgba(30,144,255,0.05); }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 8.2vw, 116px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero h1 .accent {
  background: linear-gradient(180deg, #FFFFFF 0%, #B7C5D6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--silver-200);
  margin: 0 0 44px;
}
.hero-sub .sep {
  color: var(--blue-400);
  margin: 0 12px;
  font-weight: 700;
}

/* Hero cards */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px 24px 22px;
  text-align: left;
  width: 100%;
  color: white;
  text-decoration: none;
  display: block;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
  overflow: hidden;
}
.hero-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-500), transparent);
  opacity: 0;
  transition: opacity 200ms ease;
}
.hero-card:hover {
  transform: translateY(-2px);
  border-color: rgba(30,144,255,0.55);
  background: linear-gradient(180deg, rgba(30,144,255,0.08), rgba(255,255,255,0.02));
  box-shadow: 0 18px 50px -20px rgba(30,144,255,0.45);
}
.hero-card:hover::after { opacity: 1; }
.hero-card:hover .hero-card-arrow { transform: translate(4px, -4px); color: var(--blue-300); }

.hero-card-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--blue-400);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-card-tag::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--blue-400);
}
.hero-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.1;
}
.hero-card-arrow {
  display: inline-block;
  flex-shrink: 0;
  transition: transform 200ms ease, color 200ms ease;
  color: var(--silver-300);
  margin-top: 2px;
}
.hero-card p {
  color: var(--silver-300);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

/* Hero visual illustration */
.hero-visual {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    radial-gradient(120% 100% at 50% 0%, #1B2E4D 0%, #0A1628 70%);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
}
.hero-visual .corner-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--silver-300);
  background: rgba(8,16,32,0.6);
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  text-transform: uppercase;
  z-index: 3;
}
.hero-visual .corner-stats {
  position: absolute;
  bottom: 14px; right: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--silver-300);
  text-transform: uppercase;
  z-index: 3;
  text-align: right;
  line-height: 1.6;
}
.hero-visual .corner-stats b { color: var(--blue-300); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--navy-900);
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
  color: white;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 36px 32px;
  border-left: 1px solid var(--navy-line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat:first-child { border-left: none; }
.stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: white;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.stat-value .unit { color: var(--blue-400); font-size: 22px; }
.stat-label {
  font-size: 13px;
  color: var(--silver-400);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURE SECTIONS (HOMEPAGE)
═══════════════════════════════════════════════════════════════ */
section.feature {
  padding: 120px 0;
}
section.feature.light { background: var(--bg-white); }
section.feature.mid   { background: var(--bg-light); }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--blue-500);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--blue-500);
}

.feature h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 4.4vw, 60px);
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 24px;
  text-wrap: balance;
}
.feature .lede {
  font-size: 18px;
  color: var(--ink-500);
  margin: 0 0 36px;
  line-height: 1.55;
  max-width: 52ch;
}

/* Benefits list */
.benefits { display: grid; gap: 16px; margin-bottom: 40px; }
.benefit {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 12px;
  background: var(--bg-light);
  border: 1px solid transparent;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}
section.feature.mid .benefit { background: white; }
.benefit:hover {
  border-color: rgba(30,144,255,0.4);
  background: white;
  transform: translateX(2px);
}
.benefit-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--silver-200);
  display: grid;
  place-items: center;
  color: var(--blue-500);
}
section.feature.mid .benefit-icon { background: var(--bg-light); }
.benefit-text h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.005em;
  margin: 0 0 4px;
  color: var(--ink-900);
}
.benefit-text p { margin: 0; font-size: 14px; color: var(--ink-500); line-height: 1.5; }

/* Feature reverse (driver section) */
.feature.reverse .feature-text { order: 2; }
.feature.reverse .feature-photo { order: 1; }

/* ═══════════════════════════════════════════════════════════════
   PHOTO PLACEHOLDER
═══════════════════════════════════════════════════════════════ */
.photo {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--navy-700);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lifted);
}
.photo.wide { aspect-ratio: 5/4; }
.photo.tall { aspect-ratio: 4/5; }

.stripe-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 14px),
    radial-gradient(120% 80% at 30% 20%, rgba(30,144,255,0.18), transparent 60%),
    linear-gradient(180deg, #18304F 0%, #0B182B 100%);
}

.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.photo-caption {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-300);
  background: rgba(8,16,32,0.7);
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.photo-caption b { color: white; font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--bg-mid);
  padding: 28px 0;
  border-top: 1px solid var(--silver-200);
  border-bottom: 1px solid var(--silver-200);
}
.trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--silver-500);
  text-transform: uppercase;
}
.trust-badges {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-badge {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-700);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.04em;
}
.trust-badge .badge-mark {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: grid; place-items: center;
  background: white;
  border: 1px solid var(--silver-200);
  color: var(--blue-500);
}

/* ═══════════════════════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════════════════════ */
.breadcrumb {
  position: absolute;
  top: calc(var(--header-h) + 18px);
  left: 0; right: 0;
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-400);
}
.breadcrumb a { color: var(--silver-400); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { color: var(--silver-600); margin: 0 8px; }
.breadcrumb .here { color: white; }

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADER (shared across pages)
═══════════════════════════════════════════════════════════════ */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 64px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4.2vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 12px 0 0;
  max-width: 18ch;
  text-wrap: balance;
}
.section-head .sh-right {
  font-size: 16px;
  color: var(--ink-500);
  max-width: 36ch;
  line-height: 1.55;
  text-align: right;
  font-weight: 500;
}

/* Step cards (shared shippers/drivers) */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  position: relative;
  padding: 36px 30px 32px;
  background: white;
  border: 1px solid var(--silver-200);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.step-card:hover {
  border-color: rgba(30,144,255,0.5);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lifted);
}
.step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--blue-500);
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-500), transparent 80%);
}
.step-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: linear-gradient(140deg, #1E90FF 0%, #0F5FBE 100%);
  display: grid;
  place-items: center;
  color: white;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 8px 20px -10px rgba(30,144,255,0.45);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
}
.step-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.15;
}
.step-card p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-500); }
.step-meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--silver-200);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-500);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.step-meta b { color: var(--ink-700); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-800);
  color: white;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 80% -10%, rgba(30,144,255,0.12), transparent 60%);
  pointer-events: none;
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--silver-400);
  text-transform: uppercase;
  margin: 0 0 20px;
}
.footer-col p,
.footer-col a {
  color: var(--silver-200);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.8;
}
.footer-col a:hover { color: var(--blue-300); }
.footer-links { display: grid; gap: 8px; }
.footer-blurb {
  color: var(--silver-300);
  font-size: 14px;
  line-height: 1.6;
  margin: 16px 0 0;
  max-width: 32ch;
}

.footer-bar {
  position: relative;
  border-top: 1px solid var(--navy-line);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--silver-400);
}
.footer-bar .legal {
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════
   SHIPPERS PAGE
═══════════════════════════════════════════════════════════════ */

/* Hero banner */
.shipper-hero {
  position: relative;
  background: var(--navy-800);
  color: white;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.shipper-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.shipper-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.55) 35%, rgba(10,22,40,0.95) 100%),
    radial-gradient(800px 400px at 90% 30%, rgba(30,144,255,0.18), transparent 60%);
  z-index: 2;
}
.aerial-bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}
.shipper-hero-inner {
  position: relative;
  z-index: 3;
  padding: 200px 0 90px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
.shipper-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  text-wrap: balance;
  max-width: 14ch;
}
.shipper-hero .hero-sub-line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.4;
  color: var(--silver-200);
  margin: 0 0 36px;
  max-width: 44ch;
}
.shipper-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Status card */
.hero-status-card {
  position: relative;
  background: rgba(10,22,40,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  color: var(--silver-200);
  display: grid;
  gap: 14px;
}
.hsc-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--silver-400);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2BD66B;
  box-shadow: 0 0 0 4px rgba(43,214,107,0.18);
  animation: pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
.hsc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  gap: 8px;
}
.hsc-row:last-child { border-bottom: none; }
.hsc-row .lbl { color: var(--silver-400); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; }
.hsc-row b { color: white; font-weight: 500; }
.hsc-row .ok { color: var(--blue-300); font-weight: 500; }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.svc-card {
  position: relative;
  padding: 36px;
  background: white;
  border-radius: 18px;
  border: 1px solid var(--silver-200);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  overflow: hidden;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.svc-card::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 3px;
  width: 60px;
  background: var(--blue-500);
  transition: width 300ms ease;
}
.svc-card:hover {
  border-color: rgba(30,144,255,0.5);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lifted);
}
.svc-card:hover::after { width: 100%; }
.svc-icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  background: var(--bg-light);
  border: 1px solid var(--silver-200);
  display: grid;
  place-items: center;
  color: var(--blue-500);
}
.svc-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  line-height: 1.15;
}
.svc-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--silver-500);
  text-transform: uppercase;
  font-weight: 500;
}
.svc-card p { margin: 0 0 16px; color: var(--ink-500); font-size: 15px; line-height: 1.55; }
.svc-specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-700);
}
.svc-specs span { display: inline-flex; align-items: center; gap: 6px; }
.svc-specs span::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--blue-500);
  border-radius: 50%;
}

/* Why Danielle split */
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-list {
  display: grid;
  gap: 4px;
  margin: 32px 0 36px;
  border-top: 1px solid var(--silver-200);
}
.why-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--silver-200);
}
.wr-num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; color: var(--silver-500); font-weight: 500; }
.wr-body { display: flex; flex-direction: column; gap: 4px; }
.wr-title { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -0.005em; color: var(--ink-900); }
.wr-sub { font-size: 14px; color: var(--ink-500); line-height: 1.5; }
.wr-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(30,144,255,0.1);
  color: var(--blue-500);
  flex-shrink: 0;
}

/* Testimonials */
.testimonials-section { background: #EAF1F8; padding: 120px 0; }
.tm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}
.tm-card {
  background: white;
  border-radius: 18px;
  padding: 40px;
  border: 1px solid #DBE5F0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.tm-card::before {
  content: "\201C";
  position: absolute;
  top: -30px; right: 18px;
  font-family: var(--font-display);
  font-size: 240px;
  line-height: 1;
  color: rgba(30,144,255,0.08);
  font-weight: 900;
}
.tm-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin: 0;
  position: relative;
  z-index: 1;
}
.tm-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--silver-200);
  position: relative; z-index: 1;
}
.tm-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(140deg, #2A3F66 0%, #0F1F36 100%);
  display: grid; place-items: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
  border: 1px solid var(--silver-300);
}
.tm-name { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--ink-900); }
.tm-role { font-size: 13px; color: var(--ink-500); }
.tm-rating { margin-left: auto; display: flex; gap: 2px; color: var(--blue-500); }

/* CTA Banner */
.cta-banner {
  background: var(--navy-800);
  color: white;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 75% 50%, rgba(30,144,255,0.22), transparent 60%),
    radial-gradient(500px 300px at 20% 100%, rgba(30,144,255,0.10), transparent 70%);
  z-index: -1;
}
.cta-banner::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black, transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 0;
  max-width: 14ch;
  text-wrap: balance;
}
.ink-blue { color: var(--blue-400); font-style: italic; font-weight: 800; }
.cta-side { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.cta-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--silver-300);
  text-transform: uppercase;
  text-align: right;
}

/* ═══════════════════════════════════════════════════════════════
   DRIVERS PAGE
═══════════════════════════════════════════════════════════════ */
.driver-hero {
  position: relative;
  background: var(--navy-800);
  color: white;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: stretch;
  isolation: isolate;
}
.driver-hero-bg { position: absolute; inset: 0; z-index: 0; }
.driver-hero-bg svg { width: 100%; height: 100%; display: block; }
.driver-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.65) 45%, rgba(10,22,40,0.4) 80%, rgba(10,22,40,0.85) 100%),
    linear-gradient(180deg, rgba(10,22,40,0.4) 0%, transparent 50%, rgba(10,22,40,0.85) 100%);
  z-index: 2;
}
.driver-hero-inner {
  position: relative;
  z-index: 3;
  padding-top: 200px;
  padding-bottom: 100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.driver-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 7.2vw, 108px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin: 0 0 26px;
  text-wrap: balance;
}
.driver-hero .hero-sub-line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
  color: var(--silver-200);
  margin: 0 0 40px;
  max-width: 44ch;
}
.driver-hero-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* Pay band card */
.pay-band {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 28px;
  display: grid;
  gap: 18px;
}
.pay-band-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  align-items: center;
}
.pay-band-row:last-child { border-bottom: none; padding-bottom: 0; }
.pay-band-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--silver-400); text-transform: uppercase; }
.pay-band-sub { font-size: 13px; color: var(--silver-300); margin-top: 6px; line-height: 1.4; }
.pay-band-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: white;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pay-band-value .unit { font-size: 14px; color: var(--silver-400); font-weight: 600; }
.pay-band-value .blue { color: var(--blue-400); }

/* Why drive */
.why-drive { background: white; padding: 120px 0; }
.why-drive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.wd-card {
  position: relative;
  padding: 32px 28px;
  background: white;
  border: 1px solid var(--silver-200);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.wd-card:hover { border-color: rgba(30,144,255,0.5); transform: translateY(-2px); box-shadow: var(--shadow-lifted); }
.wd-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--navy-800);
  display: grid; place-items: center;
  color: var(--blue-400);
}
.wd-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: -0.005em; margin: 0; line-height: 1.15; }
.wd-value { font-family: var(--font-display); font-weight: 900; font-size: 32px; letter-spacing: -0.02em; color: var(--ink-900); }
.wd-value .unit { font-size: 14px; color: var(--ink-500); font-weight: 600; margin-left: 4px; }
.wd-card p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-500); }

/* Culture card */
.culture-card {
  margin-top: 28px;
  background: var(--navy-800);
  color: white;
  border-radius: 18px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.culture-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(500px 300px at 100% 0%, rgba(30,144,255,0.18), transparent 60%);
  z-index: -1;
}
.cc-mark {
  width: 72px; height: 72px;
  border-radius: 16px;
  background: linear-gradient(140deg, #1E90FF 0%, #0F5FBE 100%);
  display: grid; place-items: center;
  color: white;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 8px 20px -8px rgba(30,144,255,0.6);
  flex-shrink: 0;
}
.culture-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  line-height: 1.15;
}
.culture-card p { margin: 0; color: var(--silver-200); font-size: 16px; line-height: 1.55; max-width: 56ch; }
.cc-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-300);
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 32px;
  white-space: nowrap;
  text-decoration: none;
}
.cc-cta:hover { color: white; }

/* Looking for / Requirements */
.looking-section { background: var(--bg-light); padding: 120px 0; }
.looking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.req-list { display: grid; gap: 12px; margin: 32px 0; }
.req-row {
  background: white;
  border: 1px solid var(--silver-200);
  border-radius: 12px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 16px;
  align-items: center;
  transition: border-color 200ms ease;
}
.req-row:hover { border-color: rgba(30,144,255,0.45); }
.req-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(30,144,255,0.1);
  display: grid; place-items: center;
  color: var(--blue-500);
}
.req-text { display: flex; flex-direction: column; gap: 2px; }
.req-title { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink-900); }
.req-sub { font-size: 13px; color: var(--ink-500); }
.req-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-500);
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--bg-light);
}
.req-tag.required { color: var(--blue-500); background: rgba(30,144,255,0.08); }

.note-card {
  background: white;
  border: 1px dashed var(--silver-300);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--ink-500);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.note-card b { color: var(--ink-900); font-weight: 700; }
.note-mark { color: var(--blue-500); flex-shrink: 0; margin-top: 2px; }

/* Join / Apply section */
.join-section { background: white; padding: 120px 0; }
.apply-form-wrap {
  margin-top: 72px;
  background: var(--bg-light);
  border-radius: 24px;
  padding: 56px;
  border: 1px solid var(--silver-200);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.apply-aside h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.1;
}
.apply-aside p { font-size: 15px; line-height: 1.6; color: var(--ink-500); margin: 0 0 24px; }
.aside-stats { display: grid; gap: 14px; padding-top: 24px; border-top: 1px solid var(--silver-200); }
.aside-stat { display: flex; justify-content: space-between; align-items: baseline; }
.as-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--silver-500); }
.as-value { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--ink-900); }
.as-value.blue { color: var(--blue-500); }

/* Inline apply form */
.apply-form {
  background: white;
  border: 1px solid var(--silver-200);
  border-radius: 18px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.apply-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Form field base */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-700);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--silver-200);
  background: var(--bg-light);
  color: var(--ink-900);
  outline: none;
  transition: border-color 120ms ease, box-shadow 120ms ease, background 120ms ease;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-500);
  background: white;
  box-shadow: 0 0 0 4px rgba(30,144,255,0.12);
}
.field textarea { min-height: 100px; resize: vertical; }
.field input.invalid,
.field select.invalid,
.field textarea.invalid {
  border-color: #E53E3E;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.12);
}

.apply-form .field input,
.apply-form .field select,
.apply-form .field textarea { background: var(--bg-light); }

.form-terms {
  font-size: 12px;
  color: var(--ink-500);
  line-height: 1.5;
  margin: 0;
}

/* Apply success */
.apply-success {
  text-align: center;
  padding: 24px 0;
  display: none;
}
.apply-success.visible { display: block; }
.ok-mark {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(30,144,255,0.12);
  display: grid; place-items: center;
  color: var(--blue-500);
}
.apply-success h3 { font-family: var(--font-display); font-weight: 800; font-size: 28px; letter-spacing: -0.015em; margin: 0 0 12px; }
.apply-success p { color: var(--ink-500); font-size: 15px; margin: 0 0 8px; line-height: 1.55; }
.ref-pill {
  display: inline-flex;
  gap: 10px;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 10px 16px;
  background: var(--bg-light);
  border-radius: 8px;
  color: var(--ink-700);
}
.ref-pill b { color: var(--blue-500); font-weight: 500; }

/* Driver testimonials */
.driver-tm {
  background: var(--navy-900);
  color: white;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.driver-tm::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 10% 100%, rgba(30,144,255,0.14), transparent 60%),
    radial-gradient(700px 400px at 90% 0%, rgba(30,144,255,0.10), transparent 60%);
  z-index: -1;
}
.driver-tm .section-head h2 { color: white; }
.driver-tm .section-head .sh-right { color: var(--silver-300); }
.driver-tm .feature-eyebrow { color: var(--blue-400); }
.driver-tm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.driver-tm-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 200ms ease;
}
.driver-tm-card:hover { border-color: rgba(30,144,255,0.4); }
.quote-mark { font-family: var(--font-display); font-size: 80px; color: var(--blue-500); line-height: 0.4; height: 32px; font-weight: 900; }
.dtm-quote { font-family: var(--font-display); font-weight: 600; font-size: 22px; line-height: 1.42; letter-spacing: -0.01em; color: white; margin: 0; }
.dtm-meta { display: flex; align-items: center; gap: 16px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.dtm-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(140deg, #4D77B0 0%, #1E3B68 100%);
  display: grid; place-items: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.dtm-name { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: white; }
.dtm-role { font-size: 13px; color: var(--silver-400); font-family: var(--font-mono); letter-spacing: 0.04em; }
.dtm-stat { margin-left: auto; text-align: right; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--silver-400); }
.dtm-stat b { display: block; color: var(--blue-300); font-family: var(--font-display); font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════════ */
.about-hero {
  position: relative;
  background: var(--navy-800);
  color: white;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.about-hero-bg { position: absolute; inset: 0; z-index: 0; }
.about-hero-bg svg { width: 100%; height: 100%; display: block; }
.about-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.6) 0%, rgba(10,22,40,0.4) 50%, rgba(10,22,40,0.95) 100%);
  z-index: 2;
}
.about-hero-inner {
  position: relative;
  z-index: 3;
  padding-top: 200px;
  padding-bottom: 100px;
  width: 100%;
  max-width: 920px;
}
.about-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 6.8vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.about-hero .hero-sub-line {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.5;
  color: var(--silver-200);
  margin: 0;
  max-width: 56ch;
}

/* Story */
.story-section { background: white; padding: 140px 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.story-photo .photo { aspect-ratio: 5/6; }
.story-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--silver-500);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.story-text h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 4.6vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.0;
  margin: 0 0 32px;
  text-wrap: balance;
}
.story-prose { font-size: 18px; line-height: 1.65; color: var(--ink-700); margin: 0 0 20px; }
.story-prose:last-of-type { margin-bottom: 32px; }

.signature-card {
  margin-top: 8px;
  padding: 28px;
  background: var(--bg-light);
  border-radius: 14px;
  border-left: 4px solid var(--blue-500);
  display: flex;
  gap: 20px;
  align-items: center;
}
.sig-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  color: var(--blue-500);
  letter-spacing: -0.02em;
  line-height: 1;
  font-style: italic;
}
.sig-meta { display: flex; flex-direction: column; gap: 4px; }
.sig-name { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--ink-900); }
.sig-role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-500); }

/* Team */
.meet-team {
  margin-top: 96px;
  padding-top: 64px;
  border-top: 1px solid var(--silver-200);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
}
.mt-sub { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; color: var(--silver-500); text-transform: uppercase; display: block; margin-bottom: 8px; }
.mt-title { font-family: var(--font-display); font-weight: 900; font-size: 28px; letter-spacing: -0.015em; color: var(--ink-900); margin: 0; }
.team-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { display: flex; flex-direction: column; gap: 14px; }
.team-avatar {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(140deg, #1B2C47 0%, #0A1628 100%);
  border-radius: 14px;
  overflow: hidden;
  display: grid; place-items: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 44px;
  letter-spacing: -0.02em;
}
.team-avatar::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 14px),
    radial-gradient(120% 80% at 30% 20%, rgba(30,144,255,0.18), transparent 60%);
}
.team-avatar span { position: relative; z-index: 1; }
.tc-name { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--ink-900); letter-spacing: -0.005em; }
.tc-role { font-size: 13px; color: var(--ink-500); }

/* Mission/Vision/Values */
.mvv-section { background: var(--bg-light); padding: 140px 0; }
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.mvv-card {
  background: white;
  border: 1px solid var(--silver-200);
  border-radius: 18px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  min-height: 380px;
}
.mvv-card:hover { border-color: rgba(30,144,255,0.4); transform: translateY(-2px); box-shadow: var(--shadow-lifted); }
.mvv-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--silver-500);
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--silver-200);
}
.mvv-num b { font-family: var(--font-display); color: var(--blue-500); font-weight: 800; }
.mvv-icon { width: 56px; height: 56px; border-radius: 12px; background: var(--bg-light); display: grid; place-items: center; color: var(--blue-500); }
.mvv-card h3 { font-family: var(--font-display); font-weight: 900; font-size: 32px; letter-spacing: -0.02em; margin: 0; color: var(--ink-900); line-height: 1.05; }
.mvv-card p { font-size: 16px; line-height: 1.55; color: var(--ink-700); margin: 0; }

/* Values badges */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: auto; }
.value-badge {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: var(--bg-light);
  border-radius: 10px;
  border: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}
.value-badge:hover { border-color: rgba(30,144,255,0.3); background: white; }
.vb-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--silver-200);
  display: grid; place-items: center;
  color: var(--blue-500);
  flex-shrink: 0;
}
.vb-text { display: flex; flex-direction: column; }
.vb-title { font-family: var(--font-display); font-weight: 800; font-size: 14px; letter-spacing: -0.005em; color: var(--ink-900); }
.vb-sub { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--silver-500); }

/* By the numbers */
.numbers-section {
  background: var(--navy-900);
  color: white;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.numbers-section::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 15% 100%, rgba(30,144,255,0.16), transparent 60%),
    radial-gradient(800px 400px at 90% 0%, rgba(30,144,255,0.10), transparent 60%);
  z-index: -1;
}
.numbers-section::after {
  content: "";
  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: 80px 80px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black, transparent 75%);
  z-index: -1;
  pointer-events: none;
}
.numbers-head { text-align: center; margin-bottom: 80px; }
.numbers-head .feature-eyebrow { justify-content: center; color: var(--blue-400); }
.numbers-head .feature-eyebrow::before { display: none; }
.numbers-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 4.6vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 12px 0 0;
  color: white;
  text-wrap: balance;
}
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.num-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 200ms ease, transform 200ms ease;
}
.num-card:hover { border-color: rgba(30,144,255,0.5); transform: translateY(-2px); }
.nc-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em; color: var(--silver-400); text-transform: uppercase; }
.nc-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 5vw, 80px);
  letter-spacing: -0.035em;
  line-height: 1;
  color: white;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.nc-value .unit { font-size: 18px; color: var(--blue-400); font-weight: 700; letter-spacing: 0.04em; }
.nc-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--silver-200);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.nc-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--silver-400); text-transform: uppercase; font-weight: 500; }
.num-card.featured { background: linear-gradient(180deg, rgba(30,144,255,0.18), rgba(30,144,255,0.04)); border-color: rgba(30,144,255,0.5); }
.num-card.featured .num-main { color: var(--blue-300); }

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════════ */
.contact-hero {
  position: relative;
  background: var(--navy-800);
  color: white;
  overflow: hidden;
  isolation: isolate;
  padding-top: 160px;
  padding-bottom: 60px;
}
.contact-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 300px at 80% 50%, rgba(30,144,255,0.16), transparent 60%),
    radial-gradient(600px 300px at 20% 100%, rgba(30,144,255,0.10), transparent 70%);
  z-index: -1;
}
.contact-hero::after {
  content: "";
  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: 64px 64px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
  z-index: -1;
  pointer-events: none;
}
.contact-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  text-wrap: balance;
  max-width: 18ch;
}
.contact-hero .sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.5;
  color: var(--silver-200);
  margin: 0;
  max-width: 56ch;
}
.hero-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hq-stat { display: flex; flex-direction: column; gap: 4px; }
.hq-stat .lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--silver-400); }
.hq-stat .val { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: white; letter-spacing: -0.01em; }
.hq-stat .val .accent { color: var(--blue-400); }

/* Contact layout */
.contact-section { background: var(--bg-light); padding: 80px 0 140px; }
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: start; }

/* Form panel */
.form-panel {
  background: white;
  border-radius: 24px;
  padding: 56px;
  border: 1px solid var(--silver-200);
  box-shadow: 0 4px 8px -2px rgba(0,0,0,0.02), 0 30px 60px -30px rgba(0,0,0,0.12);
}
.form-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--silver-200);
}
.form-panel-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 8px 0 0;
  line-height: 1.1;
}
.response-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-500);
  background: rgba(30,144,255,0.08);
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(30,144,255,0.18);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.response-pill .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-500);
  animation: pulse 2.4s ease-in-out infinite;
}

.quote-form { display: flex; flex-direction: column; gap: 22px; }
.qf-section-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-500);
  margin: 8px 0 -8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.qf-section-title::after { content: ""; flex: 1; height: 1px; background: var(--silver-200); }

.qf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.qf-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }

/* Large form field (contact page) */
.field-lg { display: flex; flex-direction: column; gap: 8px; }
.field-lg label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-700);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.field-lg label .req { color: var(--blue-500); font-size: 10px; font-family: var(--font-mono); letter-spacing: 0.14em; }
.field-lg input,
.field-lg select,
.field-lg textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--silver-200);
  background: var(--bg-light);
  color: var(--ink-900);
  outline: none;
  width: 100%;
  transition: border-color 120ms ease, box-shadow 120ms ease, background 120ms ease;
  font-weight: 500;
}
.field-lg input:focus,
.field-lg select:focus,
.field-lg textarea:focus {
  border-color: var(--blue-500);
  background: white;
  box-shadow: 0 0 0 4px rgba(30,144,255,0.12);
}
.field-lg input.invalid,
.field-lg select.invalid,
.field-lg textarea.invalid {
  border-color: #E53E3E;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.12);
}
.field-lg textarea { min-height: 120px; resize: vertical; }

.submit-btn {
  margin-top: 12px;
  padding: 18px 28px;
  font-size: 16px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.01em;
  border-radius: 12px;
  background: var(--blue-500);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(30,144,255,0.4), 0 14px 28px -10px rgba(30,144,255,0.55);
  transition: background 150ms ease, transform 120ms ease, box-shadow 150ms ease;
}
.submit-btn:hover { background: var(--blue-400); box-shadow: 0 0 0 1px rgba(77,168,255,0.55), 0 18px 36px -10px rgba(30,144,255,0.7); }
.submit-btn:active { transform: translateY(1px); }
.submit-btn:disabled { opacity: 0.45; cursor: not-allowed; box-shadow: none; }

.fine-print { text-align: center; font-size: 13px; color: var(--ink-500); margin: 12px 0 0; }
.fine-print b { color: var(--blue-500); font-weight: 700; }

/* Contact success */
.contact-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}
.contact-success.visible { display: block; }
.contact-success .ok-mark {
  width: 84px; height: 84px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: rgba(30,144,255,0.12);
  display: grid; place-items: center;
  color: var(--blue-500);
  position: relative;
}
.contact-success .ok-mark::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(30,144,255,0.4);
}
.contact-success h3 { font-family: var(--font-display); font-weight: 900; font-size: 36px; letter-spacing: -0.02em; margin: 0 0 14px; }
.contact-success > p { font-size: 16px; color: var(--ink-500); margin: 0 auto 8px; max-width: 44ch; line-height: 1.55; }
.reply-card {
  margin: 32px auto 0;
  max-width: 480px;
  background: var(--bg-light);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  display: grid;
  gap: 14px;
}
.rc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-700);
  padding: 8px 0;
  border-bottom: 1px dashed var(--silver-200);
}
.rc-row:last-child { border-bottom: none; }
.rc-row .lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--silver-500); }
.rc-row b { color: var(--blue-500); font-weight: 500; }

/* Info stack (right column contact) */
.info-stack { display: grid; gap: 20px; position: sticky; top: calc(var(--header-h) + 24px); }
.info-card { background: white; border: 1px solid var(--silver-200); border-radius: 20px; padding: 36px 32px; }
.info-card.dark {
  background: var(--navy-800);
  color: white;
  border-color: rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.info-card.dark::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 90% 0%, rgba(30,144,255,0.2), transparent 60%);
  z-index: -1;
}
.ic-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--silver-500);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ic-eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--blue-500); }
.info-card.dark .ic-eyebrow { color: var(--blue-300); }
.info-card.dark .ic-eyebrow::before { background: var(--blue-300); }
.info-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  line-height: 1.1;
}
.info-card.dark h3 { color: white; }

.contact-list { display: grid; gap: 8px; }
.contact-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 16px;
  padding: 14px;
  border-radius: 12px;
  background: var(--bg-light);
  align-items: center;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  transition: border-color 150ms ease, background 150ms ease;
}
.contact-row:hover { border-color: rgba(30,144,255,0.4); background: white; box-shadow: var(--shadow-card); }
.cr-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--silver-200);
  display: grid; place-items: center;
  color: var(--blue-500);
  flex-shrink: 0;
}
.contact-row:hover .cr-icon { background: var(--blue-500); color: white; border-color: var(--blue-500); }
.cr-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cr-label { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: -0.005em; color: var(--ink-900); }
.cr-value { font-family: var(--font-mono); font-size: 13px; color: var(--ink-500); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cr-arrow { color: var(--silver-400); transition: transform 150ms ease, color 150ms ease; }
.contact-row:hover .cr-arrow { transform: translate(2px, -2px); color: var(--blue-500); }

.info-divider { height: 1px; background: var(--silver-200); margin: 28px 0; }

.drive-prompt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 14px;
  background: var(--navy-800);
  color: white;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 200ms ease;
}
.drive-prompt::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(300px 150px at 100% 50%, rgba(30,144,255,0.25), transparent 60%);
  z-index: -1;
}
.drive-prompt:hover { transform: translateY(-2px); }
.dp-text { display: flex; flex-direction: column; gap: 4px; }
.dp-eyebrow { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; color: var(--silver-400); text-transform: uppercase; }
.dp-title { font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: -0.005em; color: white; }
.dp-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-500);
  display: grid; place-items: center;
  color: white;
  flex-shrink: 0;
}

/* Coverage / Map */
.coverage-card { background: var(--navy-900); color: white; position: relative; overflow: hidden; isolation: isolate; }
.coverage-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(500px 300px at 50% 100%, rgba(30,144,255,0.18), transparent 60%);
  z-index: -1;
}
.coverage-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.coverage-head h3 { font-family: var(--font-display); font-weight: 800; font-size: 20px; margin: 4px 0 0; color: white; }
.coverage-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-300);
  background: rgba(30,144,255,0.12);
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(30,144,255,0.3);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.coverage-pill .live-dot { width: 6px; height: 6px; box-shadow: 0 0 0 3px rgba(43,214,107,0.18); }
.us-map {
  position: relative;
  width: 100%;
  aspect-ratio: 5/3;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.us-map svg { width: 100%; height: 100%; display: block; }
.coverage-legend {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-300);
}
.coverage-legend > span { display: flex; align-items: center; gap: 6px; }
.dot-s { width: 8px; height: 8px; border-radius: 50%; }
.dot-s.hub { background: var(--blue-400); box-shadow: 0 0 0 3px rgba(77,168,255,0.18); }
.dot-s.cov { background: var(--silver-400); }

/* ═══════════════════════════════════════════════════════════════
   FORM VALIDATION ERRORS
═══════════════════════════════════════════════════════════════ */
.field-error {
  font-size: 12px;
  color: #E53E3E;
  margin-top: 4px;
  display: none;
}
.field-error.visible { display: block; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  /* Global */
  .hero-grid         { grid-template-columns: 1fr; gap: 48px; padding-top: 64px; padding-bottom: 56px; }
  .feature-grid      { grid-template-columns: 1fr; gap: 56px; }
  .feature.reverse .feature-text { order: 1; }
  .feature.reverse .feature-photo { order: 2; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-left: 1px solid var(--navy-line); }
  .stat:nth-child(3) { border-left: none; border-top: 1px solid var(--navy-line); }
  .stat:nth-child(4) { border-top: 1px solid var(--navy-line); }

  /* Shippers */
  .shipper-hero-inner { grid-template-columns: 1fr; gap: 32px; padding-top: 160px; padding-bottom: 64px; }
  .steps             { grid-template-columns: 1fr; }
  .services-grid     { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr; gap: 48px; }
  .tm-grid           { grid-template-columns: 1fr; }
  .section-head      { flex-direction: column; align-items: flex-start; }
  .section-head .sh-right { text-align: left; }
  .cta-inner         { flex-direction: column; align-items: flex-start; }
  .cta-inner .cta-side { align-items: flex-start; }
  .cta-sub           { text-align: left; }

  /* Drivers */
  .driver-hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 160px; padding-bottom: 72px; }
  .why-drive-grid    { grid-template-columns: repeat(2, 1fr); }
  .culture-card      { grid-template-columns: 1fr; padding: 36px; }
  .culture-card .cc-cta { border-left: none; padding-left: 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.15); }
  .looking-grid      { grid-template-columns: 1fr; gap: 48px; }
  .apply-form-wrap   { grid-template-columns: 1fr; padding: 36px; gap: 36px; }
  .driver-tm-grid    { grid-template-columns: 1fr; }

  /* About */
  .story-grid        { grid-template-columns: 1fr; gap: 56px; }
  .story-photo .photo { aspect-ratio: 5/4; }
  .meet-team         { grid-template-columns: 1fr; gap: 32px; }
  .mvv-grid          { grid-template-columns: 1fr; }
  .numbers-grid      { grid-template-columns: repeat(2, 1fr); }
  .team-row          { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact-grid      { grid-template-columns: 1fr; }
  .info-stack        { position: static; }
  .form-panel        { padding: 36px; }
}

@media (max-width: 768px) {
  :root { --header-h: 72px; }
  .container { padding: 0 20px; }

  /* Header */
  .header-inner { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .header-cta .btn-outline { display: none; }
  .nav-toggle { display: grid; }
  .mobile-nav { display: flex; }

  /* Sections */
  section.feature    { padding: 72px 0; }
  .hero-cards        { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid        { grid-template-columns: 1fr; }
  .stat              { border-left: none !important; border-top: 1px solid var(--navy-line); }
  .stat:first-child  { border-top: none; }
  .trust-row         { flex-direction: column; align-items: flex-start; }

  /* Shippers */
  .testimonials-section { padding: 72px 0; }
  .cta-banner        { padding: 72px 0; }
  .svc-card          { grid-template-columns: 1fr; }
  .why-row           { grid-template-columns: auto 1fr; }
  .wr-num            { display: none; }

  /* Drivers */
  .why-drive-grid    { grid-template-columns: 1fr; }
  .why-drive         { padding: 72px 0; }
  .looking-section, .join-section, .driver-tm { padding: 72px 0; }
  .apply-form-row    { grid-template-columns: 1fr; }
  .apply-form        { padding: 24px; }
  .driver-tm-card    { padding: 28px; }
  .dtm-meta          { flex-wrap: wrap; }
  .dtm-stat          { margin-left: 0; text-align: left; }
  .req-row           { grid-template-columns: 32px 1fr; }
  .req-row .req-tag  { grid-column: 1 / -1; justify-self: flex-start; }

  /* About */
  .story-section, .mvv-section, .numbers-section { padding: 72px 0; }
  .values-grid       { grid-template-columns: 1fr; }
  .numbers-grid      { grid-template-columns: 1fr; }
  .team-row          { grid-template-columns: 1fr 1fr; }
  .signature-card    { flex-direction: column; align-items: flex-start; }

  /* Contact */
  .contact-section   { padding: 56px 0 80px; }
  .form-panel        { padding: 24px; }
  .form-panel-head   { flex-direction: column; gap: 16px; }
  .qf-row, .qf-row-3 { grid-template-columns: 1fr; }
  .contact-row       { grid-template-columns: 40px 1fr; }
  .contact-row .cr-arrow { display: none; }
  .info-card         { padding: 24px; }
  .hero-quick        { gap: 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(44px, 12vw, 60px); }
  .shipper-hero h1 { font-size: clamp(38px, 10vw, 56px); }
  .driver-hero h1 { font-size: clamp(44px, 12vw, 60px); }
}
