/* ============================================================
   National Driver Safety Foundation — Main Stylesheet
   ============================================================
   Colors:
     Navy (primary):  #1B3668
     Teal (accent):   #2DBDAC
     Dark text:       #1a2035
     Light bg:        #f4f6f9
     White:           #ffffff
     Border:          #e2e8f0
     Muted text:      #64748b

   Fonts loaded in each HTML file via Google Fonts link tag.
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a2035;
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; padding-top: 72px; } /* offset for fixed navbar */

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ----- Typography ----- */
h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
  font-weight: 800;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2DBDAC;
  display: block;
  margin-bottom: 0.75rem;
}

/* ----- Layout Utilities ----- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
  text-decoration: none;
}

.btn-primary {
  background: #1B3668;
  color: #ffffff;
}
.btn-primary:hover { background: #142a52; }

.btn-teal {
  background: #2DBDAC;
  color: #ffffff;
}
.btn-teal:hover { background: #25a596; }

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: #ffffff; }

.btn-white {
  background: #ffffff;
  color: #1B3668;
  border: 2px solid #e2e8f0;
}
.btn-white:hover { border-color: #1B3668; }

.btn-muted {
  background: #f4f6f9;
  color: #1a2035;
}
.btn-muted:hover { background: #1B3668; color: #ffffff; }

/* ----- Divider accent ----- */
.title-bar {
  width: 5rem;
  height: 4px;
  background: #2DBDAC;
  margin: 1rem auto 0;
}
.title-bar.left { margin-left: 0; }

/* ==========================================================
   NAVBAR
   ========================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #ffffff;
  padding: 1.25rem 0;
  transition: box-shadow 0.3s, padding 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
  padding: 0.75rem 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-links a {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a2035;
  transition: color 0.2s;
}

.navbar-links a:hover,
.navbar-links a.active { color: #2DBDAC; }

.btn-nav {
  background: #2DBDAC;
  color: #ffffff !important;
  padding: 0.625rem 1.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 rgba(27,54,104,0.2);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}
.btn-nav:hover {
  background: #1B3668 !important;
  box-shadow: none;
  transform: translate(2px,2px);
  color: #ffffff !important;
}

/* Mobile toggle */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: #1B3668;
}

.navbar-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #1B3668;
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
}
.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2035;
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #2DBDAC; }

.mobile-menu .btn-nav {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
}

/* ==========================================================
   FOOTER
   ========================================================== */
footer {
  background: #1B3668;
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.footer-brand p { font-size: 0.95rem; }

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-col ul li { margin-bottom: 0.75rem; }

.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #2DBDAC; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.45); }

.footer-legal { display: flex; gap: 1rem; }
.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-legal a:hover { color: #ffffff; }

/* ==========================================================
   HOME PAGE — HERO
   ========================================================== */
.hero {
  background: #f4f6f9;
  padding: 6rem 0 9rem;
  position: relative;
  overflow: hidden;
}

/* Diagonal bottom clip */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #ffffff;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(27,54,104,0.1);
  color: #1B3668;
  border-radius: 999px;
  padding: 0.35rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #1a2035;
  margin-bottom: 1.5rem;
  line-height: 1.08;
}

.hero h1 .accent { color: #1B3668; }

.hero p {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 38rem;
  margin-bottom: 2rem;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Hero visual card */
.hero-visual {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  padding: 0.5rem;
  overflow: hidden;
}

.hero-card-inner {
  background: #f4f6f9;
  border-radius: 0.75rem;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.hero-card-icon {
  font-size: 5rem;
  color: rgba(27,54,104,0.15);
  margin-bottom: 1rem;
  line-height: 1;
}

.hero-shield {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
}

.hero-card-inner h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  color: #1B3668;
  font-weight: 700;
}

/* ==========================================================
   HOME PAGE — MISSION
   ========================================================== */
.mission {
  padding: 6rem 0;
  background: #ffffff;
  text-align: center;
}

.mission h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1B3668;
  margin-bottom: 1.5rem;
}

.mission p {
  font-size: 1.2rem;
  color: rgba(26,32,53,0.8);
  max-width: 52rem;
  margin: 0 auto;
  line-height: 1.7;
}

.mission strong { color: #1B3668; }

/* ==========================================================
   HOME PAGE — STATS
   ========================================================== */
.stats {
  background: #1B3668;
  color: #ffffff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #f4f6f9;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.stats::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item { padding: 1.5rem; }

.stat-icon {
  width: 48px;
  height: 48px;
  color: #2DBDAC;
  margin: 0 auto 1rem;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  line-height: 1.5;
}

/* ==========================================================
   HOME PAGE — PROGRAMS
   ========================================================== */
.programs {
  background: #f4f6f9;
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: #1a2035;
  margin-bottom: 0.75rem;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.program-card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.program-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }

.program-icon {
  background: rgba(27,54,104,0.08);
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.2s;
}

.program-card:hover .program-icon {
  background: #1B3668;
  color: #ffffff;
}

.program-icon svg {
  width: 28px;
  height: 28px;
  color: #1B3668;
  transition: color 0.2s;
}

.program-card:hover .program-icon svg { color: #ffffff; }

.program-card h3 {
  font-size: 1.25rem;
  color: #1a2035;
  margin-bottom: 0.75rem;
}

.program-card p {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.program-card a {
  color: #1B3668;
  font-weight: 700;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s;
}
.program-card a:hover { color: #2DBDAC; }

/* ==========================================================
   HOME PAGE — WHY EDUCATION
   ========================================================== */
.why-education {
  background: #ffffff;
  padding: 6rem 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.why-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: #1a2035;
  margin-bottom: 1.25rem;
}

.why-content > p {
  color: #64748b;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.pillar-list { display: flex; flex-direction: column; gap: 1.5rem; }

.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.pillar-dot {
  flex-shrink: 0;
  margin-top: 4px;
  width: 24px;
  height: 24px;
  background: #2DBDAC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #1B3668;
  border-radius: 50%;
}

.pillar h4 {
  font-size: 1.1rem;
  color: #1a2035;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.pillar p { color: #64748b; font-size: 0.95rem; }

/* Stats card grid */
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.why-card {
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 160px;
}

.why-card.navy  { background: #1B3668; color: #ffffff; }
.why-card.dark  { background: #1a2035; color: #ffffff; }
.why-card.white { background: #ffffff; border: 1px solid #e2e8f0; text-align: center; justify-content: center; }

.why-card.tall  { aspect-ratio: 4/5; }

.why-card .big-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1B3668;
  margin-bottom: 0.25rem;
}

.why-card.white .big-stat { font-size: 2.5rem; font-weight: 800; font-family: 'Outfit', sans-serif; color: #1B3668; }
.why-card.white .big-stat.teal { color: #2DBDAC; }

.why-card .card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}

.why-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}

/* ==========================================================
   HOME PAGE — CTA BAND
   ========================================================== */
.cta-band {
  background: #1B3668;
  color: #ffffff;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.cta-content { position: relative; z-index: 1; max-width: 44rem; margin: 0 auto; }

.cta-band h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 1.25rem;
}

.cta-band p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
}

.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ==========================================================
   RESOURCES PAGE — HERO
   ========================================================== */
.page-hero {
  background: #1B3668;
  color: #ffffff;
  padding: 5rem 0 8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #ffffff;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.page-hero .section-label { color: #2DBDAC; }

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 1.25rem;
}

.page-hero h1 .accent { color: #2DBDAC; }

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 36rem;
  margin: 0 auto;
}

/* ==========================================================
   RESOURCES PAGE — VIDEOS
   ========================================================== */
.videos-section {
  padding: 5rem 0;
  background: #ffffff;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section-heading-icon {
  background: #2DBDAC;
  color: #ffffff;
  border-radius: 0.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-heading-icon svg { width: 24px; height: 24px; }

.section-heading h2 {
  font-size: 1.875rem;
  color: #1a2035;
}

.video-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  align-items: start;
}

/* Main video player */
.video-player-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.video-player-card video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: #000;
}

.video-info { padding: 1.5rem; }

.video-badge {
  display: inline-block;
  background: rgba(45,189,172,0.12);
  color: #2DBDAC;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.video-info h3 {
  font-size: 1.375rem;
  color: #1a2035;
  margin-bottom: 0.75rem;
}

.video-info p { color: #64748b; line-height: 1.65; font-size: 0.95rem; }

/* Coming soon cards */
.coming-soon-list { display: flex; flex-direction: column; gap: 1.25rem; }

.coming-soon-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.coming-soon-thumb {
  background: #f4f6f9;
  border-radius: 0.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #94a3b8;
}

.coming-soon-thumb svg { width: 20px; height: 20px; }

.coming-soon-meta { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.35rem; }

.badge-soon {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  background: #f4f6f9;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
}

.badge-time {
  font-size: 0.7rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.coming-soon-card h4 {
  font-size: 0.9rem;
  color: #1a2035;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.coming-soon-card p { font-size: 0.825rem; color: #64748b; }

.mailing-note {
  background: rgba(27,54,104,0.04);
  border: 1px solid rgba(27,54,104,0.08);
  border-radius: 0.75rem;
  padding: 1.25rem;
  font-size: 0.875rem;
  color: #64748b;
  text-align: center;
}

.mailing-note a { color: #2DBDAC; font-weight: 700; }
.mailing-note a:hover { text-decoration: underline; }

/* ==========================================================
   RESOURCES PAGE — CHECKLISTS
   ========================================================== */
.checklists-section {
  background: #f4f6f9;
  padding: 5rem 0;
}

.checklists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.checklist-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}

.checklist-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }

.checklist-card-top { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1rem; }

.checklist-icon {
  background: #fff0f0;
  color: #dc2626;
  padding: 0.5rem;
  border-radius: 4px;
  flex-shrink: 0;
}

.checklist-icon svg { width: 28px; height: 28px; }

.checklist-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2DBDAC;
  display: block;
  margin-bottom: 0.2rem;
}

.checklist-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a2035;
  line-height: 1.35;
}

.checklist-card p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}

.btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #f4f6f9;
  color: #1a2035;
  padding: 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  width: 100%;
}
.btn-download:hover { background: #1B3668; color: #ffffff; }
.btn-download svg { width: 16px; height: 16px; }

/* ==========================================================
   RESOURCES PAGE — TEEN PLEDGE
   ========================================================== */
.teen-pledge-section {
  background: #ffffff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.teen-pledge-card {
  background: #1B3668;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  overflow: hidden;
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
}

.pledge-left {
  background: rgba(255,255,255,0.06);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.pledge-left svg { width: 80px; height: 80px; color: #2DBDAC; margin-bottom: 1.5rem; }

.pledge-left h3 {
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.pledge-left p { color: rgba(255,255,255,0.75); font-weight: 500; }

.pledge-right {
  padding: 2.5rem 3rem;
  color: rgba(255,255,255,0.85);
}

.pledge-right h4 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.pledge-right > p { margin-bottom: 1.5rem; line-height: 1.65; font-size: 0.95rem; }

.pledge-list { margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }

.pledge-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.pledge-list svg { width: 20px; height: 20px; color: #2DBDAC; flex-shrink: 0; }

/* ==========================================================
   PRIVACY PAGE
   ========================================================== */
.privacy-hero {
  background: #f4f6f9;
  padding: 4rem 0;
  border-bottom: 1px solid #e2e8f0;
  text-align: center;
}

.privacy-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1a2035;
  margin-bottom: 0.5rem;
}

.privacy-hero .date { color: #64748b; font-size: 1rem; }

.privacy-body {
  padding: 4rem 0;
}

.privacy-content { max-width: 44rem; margin: 0 auto; }

.privacy-intro {
  font-size: 1.1rem;
  color: rgba(26,32,53,0.8);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.privacy-content h2 {
  font-size: 1.375rem;
  color: #1B3668;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.privacy-content p { color: rgba(26,32,53,0.8); margin-bottom: 1rem; line-height: 1.7; }

.privacy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: rgba(26,32,53,0.8);
}

.privacy-content ul li { margin-bottom: 0.5rem; line-height: 1.65; }

.privacy-content ul.no-disc { list-style: none; padding-left: 0; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  .checklists-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-toggle { display: block; }

  .hero { padding: 4rem 0 6rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }

  .stats-grid { grid-template-columns: 1fr; gap: 2rem; }
  .programs-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-cards { display: none; }

  .video-layout { grid-template-columns: 1fr; }
  .checklists-grid { grid-template-columns: 1fr; }

  .teen-pledge-card { grid-template-columns: 1fr; }
  .pledge-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 2rem; }
  .pledge-right { padding: 2rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .cta-btns { flex-direction: column; align-items: center; }
}
