/* ═══════════════════════════════════════════════════════════
   WHEELWISE — INSTITUTIONAL DESIGN SYSTEM
   IBM Plex Sans (headlines) · Inter (body)
   Primary Navy #0B1F3B · Interactive Blue #1E4ED8
   ═══════════════════════════════════════════════════════════ */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #0F172A;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  /* Colors */
  --navy:        #0B1F3B;
  --navy-dark:   #071427;
  --navy-mid:    #0f2a4a;
  --blue:        #1E4ED8;
  --blue-hover:  #1a44c0;
  --bg-soft:     #EAF2FF;
  --teal:        #14B8A6;
  --teal-light:  #ccfbf1;

  --white:       #FFFFFF;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-300:    #CBD5E1;
  --gray-500:    #64748B;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --gray-900:    #0F172A;

  /* Typography */
  --font-head:   'IBM Plex Sans', -apple-system, sans-serif;
  --font-body:   'Inter', -apple-system, sans-serif;

  /* Spacing (8px base) */
  --sp-1:  8px;
  --sp-2:  16px;
  --sp-3:  24px;
  --sp-4:  32px;
  --sp-5:  40px;
  --sp-6:  48px;
  --sp-8:  64px;
  --sp-10: 80px;
  --sp-12: 96px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(11,31,59,0.08), 0 1px 2px rgba(11,31,59,0.04);
  --shadow-md: 0 4px 16px rgba(11,31,59,0.08), 0 2px 6px rgba(11,31,59,0.05);
  --shadow-lg: 0 8px 32px rgba(11,31,59,0.10), 0 4px 12px rgba(11,31,59,0.06);

  /* Layout */
  --max-w: 1200px;
  --container-px: clamp(20px, 5vw, 64px);
}

/* ── Layout Utilities ──────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 0 rgba(11,31,59,0.06);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
  height: 64px;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo svg {
  color: var(--navy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-left: var(--sp-3);
  flex: 1;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--navy);
  background: var(--gray-50);
}

.nav-links a.active {
  color: var(--navy);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-left: auto;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  padding: 8px 18px;
  border-radius: var(--radius-md);
  transition: background 0.15s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--navy-mid);
}

.nav-mobile-toggle {
  display: none;
  color: var(--gray-600);
}

/* ══════════════════════════════════════════════════════════
   BUTTON SYSTEM
   ══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.2;
  border-radius: var(--radius-md);
  padding: 12px 20px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}

/* On dark/navy backgrounds */
.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.75);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-ghost:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
}

.btn-lg {
  font-size: 1rem;
  padding: 14px 28px;
}

.btn-text-light {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.15s;
}
.btn-text-light:hover {
  color: rgba(255,255,255,0.9);
}

/* ══════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════ */
.hero-section {
  background: var(--navy);
  padding: var(--sp-12) 0 var(--sp-10);
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-2);
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: var(--sp-3);
}

.hero-body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: var(--sp-2);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--sp-4);
}

/* Hero primary on dark bg */
.hero-section .btn-primary {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
}
.hero-section .btn-primary:hover {
  background: #0d9488;
  border-color: #0d9488;
  box-shadow: 0 4px 16px rgba(20,184,166,0.35);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-illustration {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.3));
}

/* ══════════════════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 14px 0;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  justify-content: center;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap;
}

.trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--teal);
  flex-shrink: 0;
  stroke: var(--teal);
}

.trust-divider {
  color: var(--gray-300);
  font-size: 1rem;
  line-height: 1;
  user-select: none;
}

/* ══════════════════════════════════════════════════════════
   SECTION FOUNDATIONS
   ══════════════════════════════════════════════════════════ */
.content-section {
  padding: var(--sp-12) 0;
}

.content-section--tinted {
  background: var(--gray-50);
}

.content-section--soft {
  background: var(--bg-soft);
}

.content-section--accent {
  background: var(--navy);
}

/* Section tag / eyebrow */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  border-radius: var(--radius-sm);
  padding: 3px 8px;
}

.content-section--tinted .section-tag {
  background: #dbeafe;
  border-color: #bfdbfe;
}

.content-section--accent .section-tag {
  background: rgba(20,184,166,0.15);
  border-color: rgba(20,184,166,0.3);
  color: var(--teal);
}

.content-section--soft .section-tag {
  background: #dbeafe;
  border-color: #93c5fd;
}

/* Headlines */
.section-headline {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: var(--sp-3);
}

.section-header-centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-8);
}

.section-header-centered .section-tag {
  margin-bottom: var(--sp-2);
}

.section-sub {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-top: var(--sp-2);
}

/* Body text */
.body-text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: var(--sp-2);
}

/* Text link */
.text-link {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1.5px solid #bfdbfe;
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.text-link:hover {
  color: var(--blue-hover);
  border-color: var(--blue);
}

/* ══════════════════════════════════════════════════════════
   TWO-COLUMN SECTION LAYOUT
   ══════════════════════════════════════════════════════════ */
.two-col-section {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--sp-8);
  align-items: start;
}

.two-col-label {
  padding-top: 4px;
  position: sticky;
  top: 80px;
}

/* ══════════════════════════════════════════════════════════
   CHECKLIST
   ══════════════════════════════════════════════════════════ */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  font-family: var(--font-body);
  font-size: 0.9875rem;
  color: var(--gray-700);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.check-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--teal-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 8.5l2.5 2.5 5.5-5.5' stroke='%2314B8A6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 1px;
}

/* ══════════════════════════════════════════════════════════
   NUMBERED STEPS
   ══════════════════════════════════════════════════════════ */
.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 760px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--gray-200);
}

.step-item:last-child {
  border-bottom: none;
}

.step-number {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--blue);
  min-width: 2.75rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.step-text {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--gray-700);
  padding-top: 2px;
}

/* ══════════════════════════════════════════════════════════
   SCHEDULE ACCENT BAND
   ══════════════════════════════════════════════════════════ */
.schedule-band {
  max-width: 800px;
}

.schedule-headline {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--sp-3);
}

.schedule-body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
}

/* ══════════════════════════════════════════════════════════
   AUDIENCE CARDS
   ══════════════════════════════════════════════════════════ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.audience-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: box-shadow 0.2s, transform 0.2s;
}

.audience-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.audience-card--schools { border-top: 3px solid var(--navy); }
.audience-card--safety  { border-top: 3px solid var(--blue); }
.audience-card--drivers { border-top: 3px solid var(--teal); }

.audience-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.audience-card--safety .audience-label  { color: var(--blue); }
.audience-card--drivers .audience-label { color: var(--teal); }

.audience-headline {
  font-family: var(--font-head);
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0;
}

.audience-body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gray-600);
  margin: 0;
}

.audience-best-for {
  flex: 1;
  margin-top: 4px;
}

.best-for-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.best-for-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.best-for-list li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--gray-600);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

.best-for-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gray-300);
}

.audience-cta {
  margin-top: var(--sp-2);
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
}

/* Audience card CTAs */
.audience-card--schools .audience-cta { background: var(--navy); border-color: var(--navy); }
.audience-card--schools .audience-cta:hover { background: var(--navy-mid); }
.audience-card--safety .audience-cta  { background: var(--blue); border-color: var(--blue); }
.audience-card--safety .audience-cta:hover { background: var(--blue-hover); }
.audience-card--drivers .audience-cta {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.audience-card--drivers .audience-cta:hover {
  background: var(--teal);
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════
   OUTCOMES TABLE
   ══════════════════════════════════════════════════════════ */
.outcomes-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.outcomes-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.9375rem;
}

.outcomes-table thead tr {
  background: var(--navy);
  color: var(--white);
}

.outcomes-table thead th {
  padding: 14px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.outcomes-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.1s;
}

.outcomes-table tbody tr:last-child {
  border-bottom: none;
}

.outcomes-table tbody tr:hover {
  background: var(--gray-50);
}

.outcomes-table tbody td {
  padding: 16px 24px;
  color: var(--gray-700);
  line-height: 1.6;
  vertical-align: top;
}

.outcome-stakeholder {
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  white-space: nowrap;
  width: 220px;
}

/* ══════════════════════════════════════════════════════════
   PROOF CTA ROW
   ══════════════════════════════════════════════════════════ */
.proof-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--sp-4);
}

/* ══════════════════════════════════════════════════════════
   W.I.S.E. TABLE
   ══════════════════════════════════════════════════════════ */
.wise-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  max-width: 860px;
  margin: 0 auto;
}

.wise-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.9375rem;
}

.wise-table thead tr {
  background: var(--navy);
  color: var(--white);
}

.wise-table thead th {
  padding: 14px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wise-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.1s;
}

.wise-table tbody tr:last-child {
  border-bottom: none;
}

.wise-table tbody tr:hover {
  background: var(--gray-50);
}

.wise-table tbody td {
  padding: 16px 24px;
  color: var(--gray-700);
  line-height: 1.6;
  vertical-align: middle;
}

.wise-phase-cell {
  white-space: nowrap;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
}

.wise-letter {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  margin-right: 6px;
  color: var(--blue);
}

.trait-chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.trait-chip--wonder    { background: #eff6ff; color: var(--navy); border: 1px solid #bfdbfe; }
.trait-chip--integrity { background: #eef2ff; color: #3730a3;    border: 1px solid #c7d2fe; }
.trait-chip--service   { background: var(--teal-light); color: #0f766e; border: 1px solid #99f6e4; }
.trait-chip--empathy   { background: #f0fdf4; color: #166534;    border: 1px solid #bbf7d0; }

.wise-table-cta {
  text-align: center;
  margin-top: var(--sp-4);
}

/* ══════════════════════════════════════════════════════════
   CLOSING CTA SECTION
   ══════════════════════════════════════════════════════════ */
.closing-cta-section {
  background: var(--navy);
  padding: var(--sp-12) 0;
}

.closing-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--sp-3);
}

.closing-body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}

.closing-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: var(--sp-5);
  align-items: center;
}

/* Closing primary on dark bg */
.closing-cta-section .btn-primary {
  background: var(--teal);
  color: var(--navy);
  border-color: var(--teal);
  font-weight: 700;
}
.closing-cta-section .btn-primary:hover {
  background: #0d9488;
  border-color: #0d9488;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--gray-900);
  padding: var(--sp-10) 0 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--container-px) var(--sp-8);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-6);
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  max-width: 320px;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.footer-links-group a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-links-group a:hover {
  color: rgba(255,255,255,0.9);
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-3) var(--container-px);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom span {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════════════════════════
   HERO VISUAL BADGES (SVG inline styling helpers)
   ══════════════════════════════════════════════════════════ */
/* The SVG in the hero uses inline styles; these don't apply directly
   but are here for reference parity */

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5);
  }
  .audience-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .hero-section {
    min-height: auto;
    padding: var(--sp-10) 0 var(--sp-8);
  }
  .two-col-section {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }
  .two-col-label {
    position: static;
  }
  .content-section {
    padding: var(--sp-8) 0;
  }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #0B1F3B;
    padding: 16px 24px 24px;
    gap: 4px;
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav-links.open a {
    color: rgba(255,255,255,0.85) !important;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 1rem;
  }
  .nav-links.open a:last-child { border-bottom: none; }
  .nav-links.open a:hover { color: #14B8A6 !important; }
  /* Ensure nav is positioned relative for the dropdown */
  .site-nav { position: relative; }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .trust-divider { display: none; }
  .trust-bar-inner { gap: 6px; }
  .closing-cta-inner { padding: 0 var(--sp-2); }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .closing-ctas { flex-direction: column; align-items: center; }
  .closing-ctas .btn { width: 100%; max-width: 320px; }
  .audience-grid { max-width: 100%; }
}

/* Hero outline button — visible on dark navy background */
.hero-section .btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.45);
}
.hero-section .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
  color: #fff;
}
