/* ============================================================
   FREIGHT SHIELD — Marketing Website
   Brand System & Styles
   Version: 2.0 | BVSDesigns 2026
   ============================================================ */

/* ── BRAND TOKENS ─────────────────────────────────────────── */
:root {
  /* Navy palette */
  --navy-deep:    #07101d;
  --navy-dark:    #0b1422;
  --navy-mid:     #0f1e35;
  --navy-panel:   #14243e;
  --navy-border:  #1d3154;
  --navy-hover:   #1e3660;

  /* Orange palette */
  --orange:       #E8820A;
  --orange-light: #F5A028;
  --orange-pale:  #FBB84A;
  --orange-glow:  rgba(232, 130, 10, 0.18);
  --orange-dim:   rgba(232, 130, 10, 0.08);

  /* Neutrals */
  --white:        #FFFFFF;
  --grey-100:     #E8EEF6;
  --grey-200:     #C2CFDE;
  --grey-400:     #7A8FA6;
  --grey-600:     #3A4D64;
  --grey-800:     #1C2D42;

  /* Semantic */
  --success:      #19C37D;
  --warning:      --orange;
  --error:        #FF5D5D;

  /* Typography */
  --font-head:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs:     4px;
  --space-sm:     8px;
  --space-md:     16px;
  --space-lg:     24px;
  --space-xl:     40px;
  --space-2xl:    64px;
  --space-3xl:    96px;

  /* Radii */
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --radius-pill:  999px;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.5);
  --shadow-orange: 0 0 32px rgba(232, 130, 10, 0.25);
  --shadow-orange-sm: 0 0 16px rgba(232, 130, 10, 0.2);

  /* Transitions */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --transition:   0.2s var(--ease);

  /* Layout */
  --max-width:    1200px;
  --nav-height:   72px;
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--navy-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── SKIP LINK (Accessibility) ────────────────────────────── */
.skip-link {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -120%);
  background: var(--orange);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  z-index: 9999;
  white-space: nowrap;
  transition: transform var(--transition);
}
.skip-link:focus { transform: translate(-50%, 12px); }

/* ── FOCUS STATES ─────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── REDUCED MOTION ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── UTILITY CLASSES ──────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl); /* 40px — 24px felt cramped against the edges (esp. the nav) */
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-orange { color: var(--orange); }
.text-center { text-align: center; }
.hidden { display: none !important; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange-sm);
}
.btn-primary:hover {
  background: var(--orange-light);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
}
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ── ANNOUNCEMENT BAR ─────────────────────────────────────── */
#announcement-bar {
  background: linear-gradient(90deg, var(--navy-deep), #0d1c33, var(--navy-deep));
  border-bottom: 1px solid var(--navy-border);
  padding: 10px 0;
  text-align: center;
  position: relative;
  z-index: 100;
}
#announcement-bar p {
  font-size: 13px;
  color: var(--grey-200);
  letter-spacing: 0.5px;
}
#announcement-bar span {
  color: var(--orange);
  font-weight: 700;
}
#announcement-bar .bar-cta {
  display: inline-block;
  margin-left: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}
#announce-close {
  position: absolute;
  right: max(18px, env(safe-area-inset-right));
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--grey-400);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
}

/* ── NAVIGATION ───────────────────────────────────────────── */
#main-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--nav-height);
  background: rgba(11, 20, 34, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(29, 49, 84, 0.6);
  transition: background var(--transition);
}
#main-nav.scrolled {
  background: rgba(7, 16, 29, 0.98);
  border-bottom-color: var(--navy-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-xl);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo svg { width: 38px; height: 44px; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text strong {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--white);
}
.nav-logo-text span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-200);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav-links a.active { color: var(--orange); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}
.nav-actions .btn-signin {
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-200);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.nav-actions .btn-signin:hover { color: var(--white); }
.nav-actions .btn-join {
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-orange-sm);
  transition: all var(--transition);
}
.nav-actions .btn-join:hover {
  background: var(--orange-light);
  box-shadow: var(--shadow-orange);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--navy-deep);
  border-bottom: 1px solid var(--navy-border);
  padding: var(--space-lg);
  flex-direction: column;
  gap: var(--space-sm);
  z-index: 89;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--grey-200);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.nav-mobile a:hover { color: var(--white); background: var(--navy-panel); }
.nav-mobile a.btn-primary { color: var(--white); }
.nav-mobile a.btn-secondary { color: var(--white); }
.nav-mobile .mobile-actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--navy-border);
}

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.82;
  filter: saturate(0.9);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,16,29,0.94) 0%, rgba(7,16,29,0.8) 35%, rgba(7,16,29,0.35) 65%, rgba(7,16,29,0.05) 100%),
    linear-gradient(180deg, rgba(7,16,29,0.5) 0%, transparent 25%, rgba(7,16,29,0.85) 100%);
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,130,10,0.12) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  pointer-events: none;
}
/* Hero inner: top padding is 120px so content sits comfortably below
   the sticky nav (72px) with generous breathing room */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0 var(--space-3xl);
}
.hero-content {
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,130,10,0.12);
  border: 1px solid rgba(232,130,10,0.3);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange-pale);
  margin-bottom: var(--space-lg);
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: var(--space-lg);
  color: var(--white);
}
.hero-headline .line-accent {
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.hero-subhead {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--grey-200);
  line-height: 1.5;
  margin-bottom: var(--space-xl);
  max-width: 540px;
}
.hero-ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--grey-400);
  /* Prevent individual items from stretching wider than their content */
  white-space: nowrap;
}
.hero-trust-item .check { color: var(--success); font-size: 14px; }
.hero-image-col {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 45%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}
.hero-founders-img {
  height: 90%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  opacity: 0.9;
}

/* ── TRUST STRIP ──────────────────────────────────────────── */
#trust-strip {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: var(--space-lg) 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.trust-stat {
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.trust-stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.trust-stat-label {
  font-size: 12px;
  color: var(--grey-400);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--navy-border);
}

/* ── SECTION BASICS ───────────────────────────────────────── */
section { padding: var(--space-3xl) 0; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-md);
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: var(--space-lg);
}
.section-intro {
  font-size: 18px;
  color: var(--grey-200);
  line-height: 1.6;
  max-width: 640px;
}
.section-intro.centered { margin: 0 auto; text-align: center; }
.section-header { margin-bottom: var(--space-2xl); }
.section-header.centered { text-align: center; }

/* ── PAIN SECTION ─────────────────────────────────────────── */
#pain-points {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}
#pain-points::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--navy-border), transparent);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}
.pain-card {
  background: var(--navy-panel);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--orange);
  opacity: 0;
  transition: opacity var(--transition);
}
.pain-card:hover {
  border-color: rgba(232,130,10,0.3);
  transform: translateY(-3px);
}
.pain-card:hover::before { opacity: 1; }
.pain-icon {
  font-size: 28px;
  margin-bottom: var(--space-md);
  display: block;
}
.pain-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--white);
}
.pain-card p {
  font-size: 14px;
  color: var(--grey-400);
  line-height: 1.5;
}
.pain-bridge {
  background: linear-gradient(135deg, var(--navy-panel), var(--navy-mid));
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  position: relative;
  overflow: hidden;
}
.pain-bridge::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, var(--orange-dim) 0%, transparent 60%);
  pointer-events: none;
}
.pain-bridge-icon {
  flex-shrink: 0;
  width: 80px; height: 80px;
  background: var(--orange-glow);
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.pain-bridge-text h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--white);
}
.pain-bridge-text p {
  font-size: 16px;
  color: var(--grey-200);
}

/* ── PILLARS ──────────────────────────────────────────────── */
#pillars {
  background: var(--navy-dark);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}
.pillar-card {
  background: var(--navy-panel);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.pillar-card:hover {
  border-color: rgba(232,130,10,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-icon-wrap {
  width: 64px; height: 64px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-glow);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: var(--space-lg);
  transition: all var(--transition);
}
.pillar-card:hover .pillar-icon-wrap {
  background: var(--orange-glow);
  box-shadow: var(--shadow-orange-sm);
}
.pillar-card h3 {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  color: var(--white);
}
.pillar-card p {
  font-size: 13px;
  color: var(--grey-400);
  line-height: 1.5;
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
#how-it-works {
  background: linear-gradient(180deg, var(--navy-dark), var(--navy-deep));
  position: relative;
}
.steps-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.steps-track::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(232,130,10,0.3));
  z-index: 0;
}
.step-item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 var(--space-md);
}
.step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  box-shadow: var(--shadow-orange);
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--orange-glow);
}
.step-item h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--white);
}
.step-item p {
  font-size: 14px;
  color: var(--grey-400);
  line-height: 1.5;
}
.step-icon { font-size: 24px; margin-bottom: 8px; display: block; color: var(--orange); }

/* ── DASHBOARD TEASER ─────────────────────────────────────── */
#dashboard-teaser {
  background: var(--navy-deep);
  overflow: hidden;
}
.dashboard-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.dashboard-mockup {
  background: var(--navy-panel);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.dashboard-mockup::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(232,130,10,0.3), transparent, rgba(232,130,10,0.1));
  z-index: -1;
}
.dash-topbar {
  background: var(--navy-mid);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--navy-border);
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.r { background: #FF5F57; }
.dash-dot.y { background: #FEBC2E; }
.dash-dot.g { background: #28C840; }
.dash-url {
  flex: 1;
  background: var(--navy-dark);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 11px;
  color: var(--grey-400);
  text-align: center;
}
.dash-body { padding: 20px; }
.dash-kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.dash-kpi {
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 14px;
}
.dash-kpi-label { font-size: 10px; color: var(--grey-400); text-transform: uppercase; letter-spacing: 0.5px; }
.dash-kpi-val { font-size: 22px; font-weight: 800; color: var(--white); margin: 4px 0 2px; }
.dash-kpi-val.good { color: var(--success); }
.dash-kpi-val.warn { color: var(--orange); }
.dash-kpi-sub { font-size: 11px; color: var(--grey-600); }
.dash-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.dash-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
}
.dash-badge.active { background: rgba(25,195,125,0.15); color: var(--success); }
.dash-badge.review { background: rgba(232,130,10,0.15); color: var(--orange); }
.dash-badge.closed { background: rgba(255,255,255,0.06); color: var(--grey-400); }
.dash-section-title { font-size: 11px; color: var(--grey-400); margin-bottom: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.dash-doc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  font-size: 12px;
  color: var(--grey-200);
}
.dash-doc-item .doc-icon { font-size: 14px; }
.dashboard-copy { padding-left: var(--space-lg); }
.dashboard-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.dash-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--navy-panel);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.dash-feature:hover {
  border-color: var(--orange-glow);
}
.dash-feature-icon {
  width: 44px; height: 44px;
  background: var(--orange-dim);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.dash-feature h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.dash-feature p { font-size: 13px; color: var(--grey-400); }

/* ── AUDIENCE SPLIT ───────────────────────────────────────── */
#audience-split {
  background: var(--navy-dark);
}
.audience-tabs {
  display: flex;
  gap: 4px;
  background: var(--navy-panel);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-pill);
  padding: 4px;
  width: fit-content;
  margin: 0 auto var(--space-2xl);
}
.audience-tab {
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  color: var(--grey-400);
  transition: all var(--transition);
  cursor: pointer;
}
.audience-tab.active {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange-sm);
}
.audience-panel { display: none; }
.audience-panel.active { display: block; }
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--navy-panel);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.benefit-item:hover {
  border-color: rgba(232,130,10,0.25);
  transform: translateX(4px);
}
.benefit-num {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange-glow);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.benefit-item p { font-size: 13px; color: var(--grey-400); }
.audience-visual {
  background: var(--navy-panel);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}
.audience-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  min-height: 280px;
  background: var(--navy-mid);
}
.img-placeholder {
  width: 100%;
  min-height: 320px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-hover));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  color: var(--grey-400);
  font-size: 14px;
  border: 1px dashed var(--navy-border);
}
.img-placeholder span { font-size: 48px; }

/* ── ACCREDITATION ────────────────────────────────────────── */
#accreditation {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  position: relative;
  overflow: hidden;
}
#accreditation::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange-dim) 0%, transparent 70%);
  pointer-events: none;
}
.accred-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.accred-badge-wrap {
  text-align: center;
  padding: var(--space-xl);
}
.accred-badge {
  display: inline-block;
  position: relative;
}
.badge-shield {
  width: 220px;
  height: 260px;
  background: linear-gradient(160deg, #1a3052, #0d1f36);
  border: 3px solid var(--orange);
  border-radius: 0 0 110px 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-orange), 0 0 60px rgba(232,130,10,0.1);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.badge-shield::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(232,130,10,0.12), transparent);
}
.badge-logo { font-size: 52px; z-index: 1; }
.badge-line1 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); z-index: 1; }
.badge-line2 { font-size: 15px; font-weight: 900; color: var(--white); z-index: 1; text-align: center; line-height: 1.2; padding: 0 var(--space-md); }
.badge-stars { color: var(--orange); letter-spacing: 4px; font-size: 16px; z-index: 1; }
.badge-sub { font-size: 11px; color: var(--grey-200); z-index: 1; }
.badge-draft {
  display: inline-block;
  margin-top: var(--space-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  font-size: 11px;
  color: var(--grey-400);
}
.accred-copy { padding: var(--space-lg); }
.accred-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.accred-point {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}
.accred-point-icon {
  width: 36px; height: 36px;
  background: var(--orange-dim);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.accred-point h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.accred-point p { font-size: 13px; color: var(--grey-400); }

/* ── FOUNDERS ─────────────────────────────────────────────── */
#founders {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
.founders-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.founders-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.founders-img-wrap img {
  width: 100%;
  object-fit: cover;
  min-height: 480px;
  display: block;
}
.founders-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(7,16,29,0.9), transparent);
}
.founders-img-overlay p {
  font-size: 14px;
  color: var(--grey-200);
}
.founders-copy { padding: var(--space-lg); }
.founders-quote {
  font-size: 22px;
  font-style: italic;
  color: var(--grey-100);
  line-height: 1.5;
  border-left: 3px solid var(--orange);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
}
.founders-names {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.founder-name h4 { font-size: 15px; font-weight: 700; }
.founder-name span { font-size: 13px; color: var(--grey-400); }

/* ── PRICING ──────────────────────────────────────────────── */
#pricing {
  background: var(--navy-deep);
}
.pricing-draft-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(232,130,10,0.08);
  border: 1px solid rgba(232,130,10,0.2);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  margin-bottom: var(--space-2xl);
  font-size: 13px;
  color: var(--grey-200);
}
.pricing-draft-notice strong { color: var(--orange); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
}
/* Single all-inclusive DriverProtect package — one centred card, not a stretched 3-col row. */
.pricing-grid-single {
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
}
.pricing-card {
  background: var(--navy-panel);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: var(--shadow-orange-sm);
  transform: scale(1.03);
}
.pricing-card.featured::before {
  display: none;
}
.pricing-card:hover:not(.featured) {
  border-color: rgba(232,130,10,0.25);
  transform: translateY(-4px);
}
.pricing-tier { font-size: 13px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.pricing-name { font-size: 26px; font-weight: 900; margin-bottom: var(--space-sm); }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: var(--space-md) 0;
}
.pricing-dollar { font-size: 16px; font-weight: 700; color: var(--grey-400); }
.pricing-amount { font-size: 42px; font-weight: 900; line-height: 1; }
.pricing-period { font-size: 14px; color: var(--grey-400); }
.pricing-tax { font-size: 13px; color: var(--grey-400); margin: -10px 0 var(--space-md); }
.pricing-desc {
  font-size: 14px;
  color: var(--grey-400);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--navy-border);
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-xl);
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--grey-200);
}
.pricing-feature .check { color: var(--success); font-size: 15px; flex-shrink: 0; }
.pricing-feature .cross { color: var(--grey-600); font-size: 15px; flex-shrink: 0; }

/* ── FAQ ──────────────────────────────────────────────────── */
#faq {
  background: var(--navy-dark);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  max-width: 960px;
  margin: 0 auto;
}
.faq-item {
  background: var(--navy-panel);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  gap: var(--space-md);
  transition: background var(--transition);
  width: 100%;
  text-align: left;
}
.faq-question:hover { background: var(--navy-hover); }
.faq-chevron {
  color: var(--orange);
  font-size: 20px;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 14px;
  color: var(--grey-400);
  line-height: 1.6;
}
.faq-item.open .faq-answer { display: block; }

/* ── CONTACT FORM ─────────────────────────────────────────── */
#contact {
  background: linear-gradient(180deg, var(--navy-dark), var(--navy-deep));
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}
.contact-info { padding-right: var(--space-xl); }
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--navy-panel);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  transition: all var(--transition);
}
.contact-channel:hover { border-color: var(--orange-glow); }
.contact-channel-icon { font-size: 20px; color: var(--orange); }
.contact-channel h4 { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.contact-channel p { font-size: 12px; color: var(--grey-400); }
.contact-form-wrap {
  background: var(--navy-panel);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}
.form-header { margin-bottom: var(--space-xl); }
.form-header h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.form-header p { font-size: 14px; color: var(--grey-400); }
.form-group { margin-bottom: var(--space-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-200);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  color: var(--white);
  font-size: 14px;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-600); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-dim);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-radio-group {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.form-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--grey-200);
}
.form-radio input { width: auto; }
.form-consent {
  font-size: 12px;
  color: var(--grey-400);
  margin-bottom: var(--space-md);
}
.form-consent a { color: var(--orange); text-decoration: underline; }
.form-status {
  min-height: 20px;
  margin: 0 0 var(--space-md);
  color: var(--grey-300);
  font-size: 13px;
  line-height: 1.5;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ── FOOTER ───────────────────────────────────────────────── */
#footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--navy-border);
  padding: var(--space-2xl) 0 var(--space-xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}
.footer-brand { max-width: 300px; }
.footer-brand .logo { margin-bottom: var(--space-lg); }
.footer-tagline { font-size: 14px; color: var(--grey-400); line-height: 1.6; margin-bottom: var(--space-lg); }
.footer-social { display: flex; gap: var(--space-md); }
.footer-social a {
  width: 38px; height: 38px;
  background: var(--navy-panel);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--orange-dim);
  border-color: var(--orange);
  color: var(--orange);
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey-400);
  margin-bottom: var(--space-md);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 14px;
  color: var(--grey-400);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--navy-border);
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer-legal {
  font-size: 12px;
  color: var(--grey-600);
  line-height: 1.6;
  max-width: 600px;
}
.footer-legal a { color: var(--grey-400); text-decoration: underline; }
.footer-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.footer-links a { font-size: 12px; color: var(--grey-600); transition: color var(--transition); }
.footer-links a:hover { color: var(--grey-200); }
.footer-made-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--navy-border);
  color: var(--grey-600);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.footer-made-by a {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  background: #fff;
  transition: transform var(--transition), box-shadow var(--transition);
}
.footer-made-by a:hover,
.footer-made-by a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}
.footer-made-by a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.footer-made-by img {
  display: block;
  width: 164px;
  height: auto;
}

/* ── SECTION BG VARIANTS ──────────────────────────────────── */
.bg-deep { background: var(--navy-deep); }
.bg-dark { background: var(--navy-dark); }
.bg-gradient { background: linear-gradient(180deg, var(--navy-dark), var(--navy-deep)); }

/* ── CTA BANNER ───────────────────────────────────────────── */
#cta-banner {
  background: linear-gradient(135deg, rgba(7,16,29,0.96) 0%, rgba(7,16,29,0.9) 100%);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  position: relative;
  overflow: hidden;
  padding: var(--space-2xl) 0;
}
#cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, var(--orange-dim) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-banner-inner .section-title { max-width: 700px; margin: 0 auto var(--space-md); }
.cta-banner-inner .section-intro { margin-bottom: var(--space-xl); }
.cta-banner-btns { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }

/* ── ANIMATIONS ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-track { grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
  .steps-track::before { display: none; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-copy { padding-left: 0; }
}

/* The full desktop nav (logo + 6 links + 2 buttons) stops fitting near 1084px and
   overflows into a horizontal scroll. Collapse to the hamburger before that happens. */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  /* 3 pricing cards can't shrink below their content width here — the grid bursts
     out of the container (horizontal page scroll). Stack them instead. */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 768px) {
  :root { --space-3xl: 64px; }

  .hero-image-col { display: none; }
  .hero-content { max-width: 100%; }
  .hero-headline { letter-spacing: 0; }

  .pain-grid { grid-template-columns: 1fr; }
  .pain-bridge { flex-direction: column; text-align: center; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-track { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .accred-layout { grid-template-columns: 1fr; }
  .founders-layout { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { max-width: 100%; }
  .trust-divider { display: none; }
  .trust-strip-inner { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .audience-tabs { width: 100%; }
  .audience-tab { flex: 1; text-align: center; }
}

@media (max-width: 480px) {
  :root { --mobile-gutter: 24px; }
  .container {
    padding-left: max(var(--mobile-gutter), env(safe-area-inset-left));
    padding-right: max(var(--mobile-gutter), env(safe-area-inset-right));
  }
  #announcement-bar {
    padding: calc(10px + env(safe-area-inset-top)) 54px 12px max(var(--mobile-gutter), env(safe-area-inset-left));
  }
  #announcement-bar p {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px 8px;
    line-height: 1.35;
    letter-spacing: 0;
  }
  #announcement-bar .bar-cta {
    margin-left: 0;
  }
  #main-nav .container,
  #hero .container {
    padding-left: max(var(--mobile-gutter), env(safe-area-inset-left));
    padding-right: max(var(--mobile-gutter), env(safe-area-inset-right));
  }
  .nav-mobile {
    padding-left: max(var(--mobile-gutter), env(safe-area-inset-left));
    padding-right: max(var(--mobile-gutter), env(safe-area-inset-right));
  }
  .hero-inner {
    padding-top: 96px;
    padding-bottom: 64px;
  }
  .hero-badge {
    max-width: 100%;
    white-space: normal;
    line-height: 1.45;
  }
  .hero-headline {
    font-size: 46px;
    line-height: 1.06;
    letter-spacing: 0;
  }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  /* Hero trust badges: allow wrapping at 2-per-row on very narrow screens */
  .hero-trust { gap: var(--space-sm) var(--space-md); }
  .hero-trust-item {
    font-size: 12px;
    white-space: normal;
  }
}

@media (max-width: 390px) {
  .hero-headline {
    font-size: 42px;
  }
}

@media (max-width: 360px) {
  .hero-headline {
    font-size: 38px;
  }
}

/* ============================================================
   NEW SECTIONS — FreightShield v2 Driver-First Rebuild
   ============================================================ */

/* ── HERO: gradient overlay helper ─────────────────────────── */
.hero-gradient-overlay { display: none; } /* handled by .hero-bg::after */

/* ── SECTION UTILITIES ──────────────────────────────────────── */
.section-white { background: #f0f4f9; }
/* Tighter vertical rhythm: 96px top/bottom against 24px sides read as top-heavy,
   leaving the copy stranded. 64/40 brings the writing closer without crowding it. */
.section-white { padding: var(--space-xl) 0; }
.section-white .section-header { margin-bottom: var(--space-lg); }

/* ── BENEFIT CARDS DIVIDER ──────────────────────────────────── */
.section-dark-divider {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: var(--space-2xl) 0;
}
.benefit-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}
.benefit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,130,10,0.18);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}
.benefit-card:hover {
  border-color: rgba(232,130,10,0.4);
  background: rgba(232,130,10,0.06);
  transform: translateY(-2px);
}
.benefit-card-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: rgba(232,130,10,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.benefit-card h3 {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.benefit-card p {
  font-size: 12px;
  color: var(--grey-400);
  line-height: 1.5;
}

/* ── PAIN CARDS — WHITE BACKGROUND ─────────────────────────── */
#pain-points.section-white {
  background: #f0f4f9;
}
#pain-points.section-white::before { display: none; }
#pain-points.section-white .section-title { color: var(--navy-deep); }

.pain-card-light {
  background: #ffffff;
  border: 1px solid #dce5ef;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.pain-card-light:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,130,10,0.12);
}
.pain-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(232,130,10,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 16px;
}
.pain-card-light h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 8px;
}
.pain-card-light p {
  font-size: 14px;
  color: #4a5d73;
  line-height: 1.55;
}

/* SEO service content */
.seo-service-section {
  background: #f0f4f9;
  padding: var(--space-xl) 0; /* matches the other white sections */
}
.seo-service-intro {
  color: #23415e;
}
.seo-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.seo-service-card {
  background: #ffffff;
  border: 1px solid #dce5ef;
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: 0 10px 24px rgba(7,16,29,0.04);
}
.seo-service-card h3 {
  color: var(--navy-deep);
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 10px;
}
.seo-service-card p {
  color: #23415e;
  font-size: 14px;
  line-height: 1.65;
}

/* ── DRIVER RECORD KEEPING ─────────────────────────────────── */
.records-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.records-card {
  background: var(--navy-panel);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
}
.records-card h3 { font-size: 18px; line-height: 1.25; margin-bottom: 10px; }
.records-card p { color: var(--grey-400); font-size: 14px; line-height: 1.65; }
.records-note {
  border-left: 3px solid var(--orange);
  border-radius: 0;
  padding-left: var(--space-md);
  color: var(--grey-200);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.records-disclaimer {
  border-top: 1px solid var(--navy-border);
  padding-top: var(--space-md);
  color: var(--grey-400);
  font-size: 12px;
  line-height: 1.6;
}

/* ── PLATFORM BANNER (DASHBOARD IMAGE) ─────────────────────── */
#platform-banner {
  background: var(--navy-dark);
  padding-bottom: 0;
}
#platform-banner .section-header { padding-top: var(--space-3xl); }
#platform-banner .section-title { color: var(--white); }
#platform-banner .section-intro { color: var(--grey-200); }
.platform-banner-img-wrap {
  margin-top: var(--space-2xl);
  overflow: hidden;
  max-height: 540px;
  position: relative;
}
.platform-banner-img-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(180deg, var(--navy-dark), transparent);
  z-index: 1;
}
.platform-banner-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(0deg, var(--navy-dark), transparent);
  z-index: 1;
}
.platform-banner-img {
  width: 100%;
  /* height: 100% ensures object-fit/object-position actually clip the image
     within the max-height:540px wrapper (without explicit height, object-fit
     has no effect on a block-level img and the full image renders) */
  height: 100%;
  max-height: 540px;
  display: block;
  object-fit: cover;
  /* center top: show the UI portion (top of dashboard), not the bottom */
  object-position: center top;
}
.platform-banner-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  padding: var(--space-xl) 0 var(--space-3xl);
  border-top: 1px solid var(--navy-border);
}
.platform-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.platform-feature-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.platform-feature h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.platform-feature p {
  font-size: 13px;
  color: var(--grey-400);
  line-height: 1.4;
}

/* ── PROCESS SECTION — 5-STEP ───────────────────────────────── */
.process-banner-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-height: 220px;
}
.process-banner-img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}
.process-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--navy-dark) 0%, transparent 40%, var(--navy-dark) 100%),
    linear-gradient(90deg, var(--navy-dark) 0%, transparent 30%, transparent 70%, var(--navy-dark) 100%);
}
.steps-track.five-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.steps-track.five-steps::before { display: none; }
.steps-track.five-steps .step-item {
  flex: 1;
  min-width: 0;
  /* Prevent title/description text from overflowing narrow flex columns */
  overflow-wrap: break-word;
  word-break: break-word;
}
/* Ensure step-num circles never get clipped — the ::after ring adds 6px
   on each side, so the item needs at least 92px of inner space. */
.steps-track.five-steps .step-num {
  flex-shrink: 0;
  /* Clip ring via overflow:visible on the parent container */
  overflow: visible;
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 18px;
  padding-top: 38px;
  flex-shrink: 0;
  width: 32px;
  opacity: 0.6;
}

/* ── PRICING: POPULAR BADGE + LEGAL TIER ───────────────────── */
.pricing-card.featured { position: relative; }
.pricing-popular-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.pricing-card-legal {
  border-color: rgba(232,130,10,0.25);
}
.pricing-legal-note {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--navy-border);
  font-size: 11.5px;
  /* grey-600 (#3A4D64) on navy-panel (#14243e) fails contrast — use grey-400 */
  color: var(--grey-400);
  line-height: 1.65;
  font-style: italic;
  text-align: center;
}

/* ── LEGAL PATHWAY SECTION ──────────────────────────────────── */
#legal-pathway {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-dark) 100%);
  position: relative;
}
#legal-pathway::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange-glow), transparent);
}
.stages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}
.stage-card {
  background: var(--navy-panel);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.stage-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}
.stage-card:hover {
  border-color: rgba(232,130,10,0.4);
  transform: translateY(-3px);
}
.stage-num {
  font-size: 52px;
  font-weight: 900;
  color: rgba(232,130,10,0.14);
  line-height: 1;
  margin-bottom: var(--space-sm);
  letter-spacing: -2px;
}
.stage-icon {
  font-size: 30px;
  margin-bottom: var(--space-md);
  display: block;
}
.stage-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}
.stage-desc {
  font-size: 14px;
  color: var(--grey-400);
  line-height: 1.7;
}
.stage-tag {
  display: inline-block;
  margin-top: var(--space-lg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-dim);
  border: 1px solid var(--orange-glow);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.legal-disclaimer {
  margin-top: var(--space-2xl);
  padding: var(--space-lg);
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  text-align: center;
}
.legal-disclaimer p {
  font-size: 13px;
  color: var(--grey-600);
  line-height: 1.65;
  max-width: 700px;
  margin: 0 auto;
}

/* ── FAQ LIGHT VARIANT ──────────────────────────────────────── */
#faq.section-white { background: #ffffff; }
#faq.section-white .section-title { color: var(--navy-deep); }

.faq-item-light {
  background: #f8f9fc;
  border: 1px solid #dce5ef;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question-light {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-deep);
  padding: var(--space-lg);
  text-align: left;
  transition: background var(--transition);
  gap: var(--space-md);
}
.faq-question-light:hover { background: rgba(232,130,10,0.05); }
.faq-answer-light {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 14px;
  color: #3a4d64;
  line-height: 1.7;
}
.faq-item-light.open .faq-answer-light { display: block; }

/* ── CTA BANNER TRUST ROW ───────────────────────────────────── */
.cta-trust-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-xl);
  font-size: 13px;
  color: var(--grey-400);
  align-items: center;
}
/* Middle-dot separators inherit grey-400 from parent but we make it explicit
   and slightly smaller so they read as dividers, not content */
.cta-trust-row [aria-hidden="true"] {
  color: var(--grey-400);
  font-size: 16px;
  line-height: 1;
  opacity: 0.6;
  user-select: none;
}

/* ── RESPONSIVE: NEW SECTIONS ───────────────────────────────── */

/* benefit-cards-grid: 5 cols down to 1200px, then 3 at 900px, 2 at 600px.
   The 1024px block below intentionally does NOT change benefit-cards-grid. */
@media (max-width: 1200px) {
  .benefit-cards-grid { gap: var(--space-sm); }
  .benefit-card { padding: 20px 14px; }
}
@media (max-width: 1024px) {
  /* stages-grid: was incorrectly collapsing to 1col here — removed */
  .platform-banner-features { grid-template-columns: repeat(2, 1fr); }
  .seo-service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  /* benefit-cards-grid drops from 5 to 3 at 900px (5th card joins row 2) */
  .benefit-cards-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
  .benefit-card { padding: 28px 20px; }
}
@media (max-width: 768px) {
  .benefit-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .seo-service-grid { grid-template-columns: 1fr; }
  /* stages-grid: 2 columns on tablets */
  .stages-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .steps-track.five-steps { flex-direction: column; align-items: stretch; }
  .step-connector { display: none; }
  .platform-banner-features { grid-template-columns: 1fr 1fr; }
  .process-banner-wrap { max-height: 140px; }
  .cta-trust-row { font-size: 12px; gap: 10px; }
  /* 96px of dead space either side of every section is a lot of scrolling on a phone. */
  section { padding: var(--space-xl) 0; }
  .section-white { padding: var(--space-xl) 0; }
  .section-header { margin-bottom: var(--space-lg); }
  /* 40px side gutters are too much on tablets/phones — back to 24px. */
  .container { padding: 0 var(--space-lg); }
}
@media (max-width: 600px) {
  .benefit-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .benefit-cards-grid { grid-template-columns: 1fr; }
  .platform-banner-features { grid-template-columns: 1fr; }
  .seo-service-card { padding: 24px 22px; }
  .stage-num { font-size: 40px; }
  .pricing-grid { gap: var(--space-md); }
  .pricing-card {
    padding: 28px 24px;
    border-radius: 24px;
  }
  .pricing-tier { margin-bottom: 6px; }
  .pricing-name {
    font-size: 24px;
    line-height: 1.28;
    margin-bottom: 6px;
  }
  .pricing-price { margin: 10px 0 8px; }
  .pricing-amount { font-size: 38px; }
  .pricing-desc {
    margin-bottom: 18px;
    padding-bottom: 18px;
    line-height: 1.5;
  }
  .pricing-features {
    gap: 8px;
    margin-bottom: 22px;
  }
  .pricing-feature {
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.42;
  }
  .pricing-card .btn {
    min-height: 48px;
  }
  /* stages-grid: 1 column on small mobile */
  .stages-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
}

/* ─── Social Proof Section ─────────────────────────────────────────────── */
#social-proof {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.social-proof-wrap {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: stretch;
}
.social-proof-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.social-proof-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7,16,29,0.92) 0%,
    rgba(7,16,29,0.70) 45%,
    rgba(7,16,29,0.20) 100%
  );
  z-index: 1;
}
.social-proof-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 0;
  display: flex;
  align-items: center;
}
.social-proof-text {
  max-width: 560px;
}
.social-proof-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.social-proof-headline {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 24px;
}
.social-proof-body {
  font-size: 18px;
  color: var(--grey-200);
  line-height: 1.65;
  max-width: 460px;
  margin: 0 0 40px;
}
@media (max-width: 768px) {
  .social-proof-wrap { min-height: 420px; }
  .social-proof-overlay {
    background: rgba(7,16,29,0.82);
  }
  .social-proof-content { padding: 70px 0; }
  .social-proof-body { font-size: 16px; }
}

/* ─── Founders Section ─────────────────────────────────────────────────── */
#founders {
  background: var(--navy-dark);
  padding: var(--space-3xl) 0;
}
.founders-layout-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.founders-img-wrap-v2 {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}
.founders-img-v2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.founders-copy-v2 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.founders-quote-v2 {
  margin: 0;
  padding: 24px 28px;
  border-left: 4px solid var(--orange);
  background: rgba(232,130,10,0.07);
  border-radius: 0 8px 8px 0;
  font-size: 18px;
  font-style: italic;
  color: var(--grey-200);
  line-height: 1.65;
}
.founders-brand-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--navy-border);
  border-radius: 10px;
  margin-top: var(--space-sm);
}
.founders-shield-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}
.founders-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.founders-brand-text strong {
  font-size: 17px;
  color: var(--white);
  font-weight: 700;
}
.founders-brand-text span {
  font-size: 13px;
  color: var(--grey-400);
}
.founders-brand-sub {
  font-size: 11px !important;
  color: var(--orange) !important;
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .founders-layout-v2 {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .founders-img-wrap-v2 {
    max-height: 360px;
  }
}
@media (max-width: 600px) {
  .founders-quote-v2 { font-size: 16px; padding: 18px 20px; }
  .founders-brand-badge { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── TEAM CARDS ──────────────────────────────────────────── */
#meet-the-team { background: var(--navy); padding: var(--space-3xl) 0; }
.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: var(--space-2xl);
}
/* Two founders — centred pair so the row does not read as a gap where a third card was. */
.team-cards-grid-two {
  grid-template-columns: repeat(2, minmax(0, 380px));
  justify-content: center;
}
.team-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}
.team-card-photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy-dark);
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.team-card-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}
.team-card-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}
.team-card-bio {
  font-size: 14px;
  color: var(--grey-400);
  line-height: 1.65;
  margin: 8px 0 0;
}
@media (max-width: 900px) {
  .team-cards-grid { grid-template-columns: 1fr; max-width: 420px; }
}


/* Founders extended bios (scoped) */
.team-bio-more{margin-top:12px;border-top:1px solid rgba(255,255,255,.14);padding-top:10px}
.team-bio-more summary{cursor:pointer;color:var(--orange,#e8820a);font-weight:600;font-size:13px;list-style:none;letter-spacing:.3px}
.team-bio-more summary::-webkit-details-marker{display:none}
.team-bio-more summary::after{content:" +"}
.team-bio-more[open] summary::after{content:" \2013"}
.team-bio-more p{font-size:13.5px;line-height:1.7;color:var(--grey-400,#9aa7b8);margin-top:10px}

/* ── MOBILE SPACING SYSTEM ───────────────────────────────────
   Keep every foreground content block on the same 24px frame.
   Full-bleed background layers remain edge-to-edge behind it. */
@media (max-width: 768px) {
  :root {
    --mobile-gutter: 24px;
  }

  section,
  .section-white,
  #meet-the-team,
  footer {
    padding-top: 0;
    padding-bottom: 0;
  }

  .container {
    padding:
      var(--mobile-gutter)
      calc(var(--mobile-gutter) + env(safe-area-inset-right))
      var(--mobile-gutter)
      calc(var(--mobile-gutter) + env(safe-area-inset-left));
  }

  #announcement-bar {
    padding:
      calc(var(--mobile-gutter) + env(safe-area-inset-top))
      calc(var(--mobile-gutter) + env(safe-area-inset-right))
      var(--mobile-gutter)
      calc(var(--mobile-gutter) + env(safe-area-inset-left));
  }

  #announcement-bar p {
    padding-right: 52px;
  }

  #announce-close {
    right: calc(var(--mobile-gutter) + env(safe-area-inset-right));
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  #main-nav .container {
    padding:
      0
      calc(var(--mobile-gutter) + env(safe-area-inset-right))
      0
      calc(var(--mobile-gutter) + env(safe-area-inset-left));
  }

  #hero .hero-inner,
  .platform-banner-features,
  .social-proof-content .container {
    padding:
      var(--mobile-gutter)
      calc(var(--mobile-gutter) + env(safe-area-inset-right))
      var(--mobile-gutter)
      calc(var(--mobile-gutter) + env(safe-area-inset-left));
  }

  .social-proof-content {
    padding: 0;
  }

  .pricing-grid,
  .records-grid,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
  }

  .pricing-card,
  .records-grid > *,
  .contact-layout > * {
    min-width: 0;
  }
}

@media (max-width: 360px) {
  .pricing-card .btn {
    padding-right: 12px;
    padding-left: 12px;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }
}
