/* ============================================
   Splash Screen
   ============================================ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white, #ffffff);
  transition: opacity 0.6s ease;
}
.splash.fade-out {
  opacity: 0;
  pointer-events: none;
}
.splash__logo {
  width: 130px;
  height: auto;
  animation: splashPulse 1.8s ease-in-out infinite;
}
@keyframes splashPulse {
  0%   { opacity: 0.3; transform: scale(0.88); }
  50%  { opacity: 1;   transform: scale(1.05); }
  100% { opacity: 0.3; transform: scale(0.88); }
}
[data-theme="dark"] .splash {
  background: #0b1120;
}
[data-theme="dark"] .splash__logo {
  filter: invert(1) brightness(1.8);
}

/* ============================================
   Variables
   ============================================ */
:root {
  --navy: #0b1a3b;
  --dark: #0a0f1e;
  --blue: #1a3a6e;
  --blue-light: #2b5ea6;
  --black: #000000;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e2e6ea;
  --gray-400: #a0a8b4;
  --gray-600: #5a6270;
  --gray-800: #2c3140;
  --gold: #c9a84c;
  --green: #2eac6a;

  --font: Georgia, 'Times New Roman', Times, serif;
  --font-display: Georgia, 'Times New Roman', Times, serif;
  --container: 1200px;
  --transition: 250ms ease;
  --radius: 8px;
  --radius-sm: 4px;
  --radius-lg: 12px;
}

/* ============================================
   Dark Mode — Layered surface palette
   Base #0b1120 → Surface #141e33 → Elevated #1c2b45
   Borders clearly visible at #2d4263
   ============================================ */
[data-theme="dark"] {
  --white: #0b1120;
  --black: #eaf0f8;
  --gray-50: #141e33;
  --gray-100: #1c2b45;
  --gray-200: #2d4263;
  --gray-400: #7e95b4;
  --gray-600: #b0c2d8;
  --gray-800: #dce5f0;
  --blue: #3470b2;
  --blue-light: #4a90d9;
  --navy: #1a3566;
  --gold: #dbb85c;
  --green: #3cc97c;
}

/* ---- Header & Navigation ---- */
[data-theme="dark"] .header {
  background: #101828;
  border-bottom: 1px solid #2d4263;
}
[data-theme="dark"] .header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
[data-theme="dark"] .topbar {
  background: #0a0f1c;
  border-bottom-color: #1c2b45;
}
[data-theme="dark"] .topbar__mode {
  color: var(--blue-light);
  border-color: var(--blue-light);
}
[data-theme="dark"] .topbar__mode:hover {
  color: #fff;
  border-color: #fff;
}
[data-theme="dark"] .header__nav.open {
  background: #101828;
  border-bottom-color: #2d4263;
}
[data-theme="dark"] .header__hamburger span {
  background: var(--black);
}
[data-theme="dark"] .dropdown {
  background: #1c2b45;
  border-color: #2d4263;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
[data-theme="dark"] .dropdown a { color: var(--gray-600); }
[data-theme="dark"] .dropdown a:hover {
  color: #fff;
  background: #253752;
}

/* ---- Logo ---- */
[data-theme="dark"] .logo-img {
  filter: invert(1) brightness(1.8);
  background: transparent;
}

/* ---- Hero ---- */
[data-theme="dark"] .hero__overlay {
  background: linear-gradient(135deg, rgba(11,17,32,0.88) 0%, rgba(11,17,32,0.5) 100%);
}
[data-theme="dark"] .hero__slide-meta { color: rgba(255,255,255,0.5); }

/* ---- Cards — Elevated surfaces with visible borders ---- */
[data-theme="dark"] .feature-card,
[data-theme="dark"] .step-card,
[data-theme="dark"] .cta-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .timeline__card,
[data-theme="dark"] .vision-card,
[data-theme="dark"] .impact-stat {
  background: #141e33;
  border-color: #2d4263;
}
[data-theme="dark"] .feature-card:hover,
[data-theme="dark"] .step-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border-color: #3a5578;
}
[data-theme="dark"] .feature-card__badge {
  border-color: #2d4263;
  color: var(--blue-light);
}
[data-theme="dark"] .feature-card__checks li {
  border-color: #253752;
  background: #0f1929;
}
[data-theme="dark"] .feature-card__link,
[data-theme="dark"] .step-card__link {
  border-top-color: #253752;
}
[data-theme="dark"] .feature-card__icon--orange { background: #c06a30; }

/* ---- Step cards active state ---- */
[data-theme="dark"] .step-card--active {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 1px var(--blue-light);
}
[data-theme="dark"] .step-card__icon {
  background: #1c2b45;
}

/* ---- CTA cards ---- */
[data-theme="dark"] .cta-card {
  background: linear-gradient(135deg, #141e33 0%, #1a2a44 100%);
}
[data-theme="dark"] .cta-card__rating,
[data-theme="dark"] .cta-card__badges span {
  border-top-color: #253752;
}

/* ---- Timeline ---- */
[data-theme="dark"] .timeline__line { background: #2d4263; }
[data-theme="dark"] .timeline__marker {
  background: #141e33;
  border-color: var(--blue-light);
}
[data-theme="dark"] .timeline__label {
  background: rgba(74,144,217,0.15);
  color: var(--blue-light);
}
[data-theme="dark"] .timeline__num { color: #253752; }

/* ---- Sections ---- */
[data-theme="dark"] .section--light {
  background: #0f1929;
}
[data-theme="dark"] .section--gradient {
  background: linear-gradient(180deg, var(--white) 0%, #0f1929 30%, var(--white) 100%);
}
[data-theme="dark"] .section--dark {
  background: linear-gradient(135deg, #060b16 0%, #0e1b33 50%, #060b16 100%);
}
[data-theme="dark"] .section--newsletter {
  border-top-color: #1c2b45;
}

/* ---- Impact ---- */
[data-theme="dark"] .impact-image img {
  opacity: 0.85;
}

/* ---- Testimonial ---- */
[data-theme="dark"] .avatar-placeholder {
  background: #1c2b45;
}

/* ---- Newsletter ---- */
[data-theme="dark"] .newsletter__input-wrap {
  background: #141e33;
  border-color: #2d4263;
}
[data-theme="dark"] .newsletter__input-wrap input {
  color: var(--black);
}
[data-theme="dark"] .newsletter__input-wrap input::placeholder {
  color: var(--gray-400);
}

/* ---- Buttons ---- */
[data-theme="dark"] .btn--primary {
  background: var(--blue-light);
  border-color: var(--blue-light);
  color: #fff;
}
[data-theme="dark"] .btn--primary:hover {
  background: #5a9ee6;
  border-color: #5a9ee6;
}
[data-theme="dark"] .btn--outline {
  border-color: var(--blue-light);
  color: var(--blue-light);
}
[data-theme="dark"] .btn--outline:hover {
  background: var(--blue-light);
  color: #fff;
}

/* ---- Footer ---- */
[data-theme="dark"] .footer {
  background: #0a0f1c;
  border-top: 1px solid #1c2b45;
}
[data-theme="dark"] .footer__social a {
  border-color: #2d4263;
}
[data-theme="dark"] .footer__social a:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
}
[data-theme="dark"] .footer__divider {
  border-top-color: #1c2b45;
}
[data-theme="dark"] .footer__bottom-cta {
  color: var(--blue-light) !important;
}

/* ---- Final CTA dark section ---- */
[data-theme="dark"] .final-action {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
[data-theme="dark"] .final-action:hover {
  background: rgba(255,255,255,0.1);
}

/* ---- Misc ---- */
[data-theme="dark"] .highlight { color: var(--blue-light); }
[data-theme="dark"] .underline-mark {
  background: linear-gradient(0deg, rgba(74,144,217,0.2) 40%, transparent 40%);
}
[data-theme="dark"] .stars { color: var(--gold); }

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

/* ============================================
   Scroll Reveal
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Utilities
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.text-center { text-align: center; }

/* Pill badge */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  margin-bottom: 20px;
  border-radius: 100px;
}
.pill--dark {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.pill--light {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

/* Highlight text */
.highlight { color: var(--blue-light); }
.section--dark .highlight { color: #a8d4f5; }
.highlight-fade { color: var(--gray-400); }
.underline-mark {
  background: linear-gradient(0deg, rgba(26,58,110,0.15) 40%, transparent 40%);
  padding-bottom: 2px;
}

/* Dots */
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; }
.dot--green { background: var(--green); }
.dot--gold { background: var(--gold); }
.dot--blue { background: var(--blue-light); }

/* Stars */
.stars { color: var(--gold); letter-spacing: 2px; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--lg {
  padding: 16px 36px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.btn__arrow { font-size: 18px; }

/* ============================================
   Top Bar
   ============================================ */
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 8px 0;
  font-size: 13px;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar__contact {
  display: flex;
  gap: 24px;
}
.topbar__contact a { color: var(--gray-600); }
.topbar__contact a:hover { color: var(--navy); }
.topbar__mode {
  font-size: 12px;
  font-family: var(--font);
  color: var(--gray-400);
  background: transparent;
  border: 1px solid var(--gray-200);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}
.topbar__mode:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* ============================================
   Header
   ============================================ */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gray-200);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 70px;
  width: auto;
  background: var(--white);
  padding: 2px;
}
.logo-img--footer { filter: invert(0); }
.logo-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
}
.logo-text-group {
  display: flex;
  flex-direction: column;
}
.logo-tagline {
  font-size: 10px;
  line-height: 1.2;
  color: var(--gray-600);
  letter-spacing: 0.3px;
}

/* Nav */
.header__nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; gap: 4px; align-items: center; }
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  transition: color var(--transition);
}
.nav-list > li > a:hover,
.nav-list > li > a.active { color: var(--navy); }
.nav-list > li > a svg { margin-top: 1px; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  min-width: 200px;
  padding: 8px 0;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-radius: var(--radius);
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--gray-600);
}
.dropdown a:hover { color: var(--navy); background: var(--gray-50); }

/* Header Actions */
.header__actions { flex-shrink: 0; }

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all var(--transition);
}
.header__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger.open span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Scrolled header */
.header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

/* Body lock when mobile nav open */
body.nav-open {
  overflow: hidden;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero__slide.active { opacity: 1; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,30,0.85) 0%, rgba(10,15,30,0.5) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  color: var(--white);
  max-width: 600px;
}
.hero__slide-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.hero__counter { font-size: 28px; font-weight: 700; color: var(--white); }
.hero__divider { width: 24px; height: 2px; background: rgba(255,255,255,0.3); }
.hero__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a8d4f5;
  margin-bottom: 12px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero__desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 420px;
}
/* Hero Nav */
.hero__nav {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero__dots { display: flex; gap: 8px; }
.hero__dot {
  width: 12px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 2px;
}
.hero__dot.active {
  width: 32px;
  background: var(--white);
}
.hero__arrows { display: flex; align-items: center; gap: 12px; }
.hero__pause {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero__arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--white);
  transition: all var(--transition);
  border-radius: var(--radius-sm);
}
.hero__arrow:hover {
  background: var(--white);
  color: var(--navy);
}

/* ============================================
   Sections
   ============================================ */
.section { padding: 64px 0; }
.section--trust { padding-bottom: 24px; }
.section--stats { padding-top: 24px; padding-bottom: 48px; }
.section--light { background: #eef0f4; }
.section--gradient {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 30%, var(--white) 100%);
}
.section--dark {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3060 50%, var(--navy) 100%);
  color: var(--white);
  padding: 80px 0;
}
.section--impact { background: var(--white); }
.section--newsletter { padding: 40px 0; border-top: 1px solid var(--gray-200); }
.section--expandable { position: relative; z-index: 2; }

.section__heading {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 20px;
}
.section__heading--left { text-align: left; }
.section__heading--white { color: var(--white); }
.section__subtext {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto 28px;
}
.section__subtext--left { margin-left: 0; }
.section__subtext--white { color: rgba(255,255,255,0.7); }

/* ============================================
   Stats Row
   ============================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat__icon { margin-bottom: 12px; }
.stat__number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--black);
}
.stat__label {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* ============================================
   Feature Cards
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.feature-card {
  border: 1px solid var(--gray-200);
  padding: 32px 28px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  position: relative;
}
.feature-card:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  z-index: 2;
}
.feature-card__expand {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
.feature-card:hover .feature-card__expand {
  max-height: 200px;
  opacity: 1;
}
.feature-card__expand ul {
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
}
.feature-card__expand ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--gray-600);
}
.feature-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.feature-card__icon--blue { background: var(--blue); }
.feature-card__icon--tan { background: #c9a84c; }
.feature-card__icon--green { background: var(--green); }
.feature-card__icon--orange { background: #d4763a; }
.feature-card__badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  border: 1px solid var(--gray-200);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}
.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.feature-card__checks { margin-bottom: 24px; }
.feature-card__checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--gray-800);
  border: 1px solid var(--gray-200);
  padding: 8px 14px;
  margin-bottom: 6px;
  border-radius: var(--radius-sm);
}
.feature-card__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  margin-top: auto;
}
.feature-card__link:hover { color: var(--blue); }

/* ============================================
   CTA Card
   ============================================ */
.cta-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 56px 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  border-radius: var(--radius-lg);
}
.cta-card__content { flex: 1; min-width: 300px; }
.cta-card__content h2,
.cta-card__content h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.cta-card__content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}
.cta-card__rating {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-600);
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}
.cta-card__badges {
  width: 100%;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--gray-600);
}
.cta-card--small { padding: 40px; }
.cta-card--small h3 { font-size: 28px; }

/* ============================================
   Step Cards
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}
.step-card {
  border: 1px solid var(--gray-200);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border-radius: var(--radius-lg);
  position: relative;
}
.step-card:hover {
  transform: scale(1.04);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  z-index: 2;
}
.step-card__expand {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
.step-card:hover .step-card__expand {
  max-height: 200px;
  opacity: 1;
}
.step-card__expand ul {
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
}
.step-card__expand ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 13px;
  color: var(--gray-600);
}
.step-card--active {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}
.step-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.step-card__icon {
  width: 44px;
  height: 44px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.step-card--active .step-card__icon { background: var(--blue); }
.step-card--active .step-card__icon svg { stroke: var(--white); }
.step-card__num {
  font-size: 28px;
  font-weight: 200;
  color: var(--gray-400);
}
.step-card--active .step-card__num { color: var(--blue); }
.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.step-card--active h3 { color: var(--blue); }
.step-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}
.step-card__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}
.step-card--active .step-card__link { color: var(--blue); }

/* ============================================
   Impact Section
   ============================================ */
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.impact__heading {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin: 20px 0 24px;
}
.impact-text p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}
.impact-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
}
.impact-stat {
  border: 1px solid var(--gray-200);
  padding: 16px 24px;
  text-align: center;
  border-radius: var(--radius);
}
.impact-stat__num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
}
.impact-stat__label {
  font-size: 12px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.impact-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.impact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  border-radius: var(--radius-lg);
}

/* ============================================
   Testimonial
   ============================================ */
.testimonial-card {
  display: flex;
  gap: 40px;
  align-items: center;
  border: 1px solid var(--gray-200);
  padding: 48px;
  margin-top: 48px;
  border-radius: var(--radius-lg);
}
.avatar-placeholder {
  width: 140px;
  height: 160px;
  background: var(--gray-100);
  flex-shrink: 0;
  border-radius: var(--radius);
}
.testimonial__body { flex: 1; }
.testimonial__quote { margin-bottom: 16px; }
.testimonial-card blockquote {
  font-size: 20px;
  line-height: 1.6;
  color: var(--gray-800);
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-card cite {
  font-size: 14px;
  color: var(--gray-600);
  font-style: normal;
}

/* ============================================
   Timeline
   ============================================ */
.timeline {
  position: relative;
  padding-left: 48px;
  margin-top: 48px;
}
.timeline__line {
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.timeline__item {
  position: relative;
  margin-bottom: 32px;
}
.timeline__marker {
  position: absolute;
  left: -40px;
  top: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
}
.timeline__card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 32px;
  position: relative;
  border-radius: var(--radius-lg);
}
.timeline__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(26,58,110,0.08);
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 8px;
  border-radius: var(--radius-sm);
}
.timeline__num {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 36px;
  font-weight: 200;
  color: var(--gray-200);
}
.timeline__card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.timeline__card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
   Vision Card
   ============================================ */
.vision-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 48px;
  max-width: 700px;
  border-radius: var(--radius-lg);
}
.vision-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}
.vision-card blockquote {
  font-size: 18px;
  font-style: italic;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}
.vision-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}

/* ============================================
   Final CTA (dark section)
   ============================================ */
.final-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.final-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.final-stat div { text-align: left; }
.final-stat strong { display: block; font-size: 20px; }
.final-stat span { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; }
.final-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.final-action {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 20px 32px;
  color: var(--white);
  min-width: 300px;
  transition: all var(--transition);
  border-radius: var(--radius);
}
.final-action:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.final-action div { flex: 1; text-align: left; }
.final-action strong { display: block; font-size: 15px; }
.final-action span { font-size: 12px; color: rgba(255,255,255,0.5); }
.final-action__arrow { font-size: 20px; color: rgba(255,255,255,0.4); }
.final-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.final-contact {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 15px;
}
.final-contact a { color: var(--white); }

/* ============================================
   Newsletter
   ============================================ */
.newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.newsletter__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 8px;
}
.newsletter h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.newsletter p {
  font-size: 14px;
  color: var(--gray-600);
}
.newsletter__form {
  display: flex;
  gap: 12px;
}
.newsletter__input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gray-200);
  padding: 8px 16px;
  min-width: 280px;
  color: var(--gray-400);
  border-radius: var(--radius);
  background: var(--white);
}
.newsletter__input-wrap input {
  border: none;
  outline: none;
  font-size: 14px;
  font-family: var(--font);
  width: 100%;
  background: transparent;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer__brand p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 16px;
}
.footer__contact-info { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.footer__contact-info a { font-size: 13px; color: var(--gray-600); }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
}
.footer__social a:hover { color: var(--navy); border-color: var(--navy); }
.footer h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a { font-size: 14px; color: var(--gray-600); }
.footer__col ul a:hover { color: var(--navy); }
.footer__divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin-bottom: 24px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--gray-400);
}
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { color: var(--gray-400); }
.footer__bottom-links a:hover { color: var(--navy); }
.footer__bottom-cta { color: var(--blue) !important; font-weight: 600; }

/* ============================================
   Responsive — Large (1280px)
   ============================================ */
@media (max-width: 1280px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   Responsive — Tablet (1024px)
   ============================================ */
@media (max-width: 1024px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .impact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
  .hero__title { font-size: 48px; }
  .section__heading { font-size: 38px; }
  .impact__heading { font-size: 32px; }

  /* Move nav to hamburger at tablet */
  .header__nav { display: none; }
  .header__nav.open {
    display: block;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 99;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .header__nav.open .nav-list {
    flex-direction: column;
    padding: 12px 0;
  }
  .header__nav.open .nav-list > li > a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--gray-100);
  }
  .header__nav.open .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 24px;
    display: none;
    border-radius: 0;
  }
  .header__nav.open .has-dropdown.dropdown-open .dropdown {
    display: block;
  }
  .has-dropdown:hover .dropdown { display: none; }
  .header__hamburger { display: flex; }
  .header__actions { display: none; }
}

/* ============================================
   Responsive — Tablet portrait (768px)
   ============================================ */
@media (max-width: 768px) {
  .topbar { display: none; }
  .header__inner { height: 60px; }
  .header__nav.open { top: 60px; }

  .hero { height: 70vh; }
  .hero__title { font-size: 40px; }
  .hero__desc { font-size: 14px; }
  .hero__nav { bottom: 20px; }
  .hero__arrows { gap: 8px; }
  .hero__pause { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }

  .section { padding: 48px 0; }
  .section--dark { padding: 56px 0; }
  .section__heading { font-size: 32px; }

  .testimonial-card { flex-direction: column; padding: 32px; }
  .avatar-placeholder { width: 100px; height: 120px; }

  .cta-card { padding: 32px; }
  .cta-card__content { min-width: auto; }
  .cta-card__badges { gap: 12px; }

  .impact-stats { flex-wrap: wrap; }
  .impact-actions { flex-direction: column; }
  .impact-actions .btn { text-align: center; justify-content: center; }

  .final-stats { gap: 20px; }
  .final-action { min-width: auto; width: 100%; }
  .final-actions { flex-direction: column; }
  .final-badges { flex-direction: column; align-items: center; gap: 8px; }
  .final-badges span:nth-child(even) { display: none; }
  .final-contact { flex-direction: column; align-items: center; gap: 8px; }
  .final-contact span { display: none; }

  .newsletter { flex-direction: column; align-items: flex-start; }
  .newsletter__form { width: 100%; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer__bottom-links { flex-wrap: wrap; justify-content: center; }
}

/* ============================================
   Responsive — Phone (480px)
   ============================================ */
/* ============================================
   Responsive — Mini tablet (600px)
   ============================================ */
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 20px; }
  .cta-card { flex-direction: column; text-align: center; }
  .cta-card .btn { width: 100%; justify-content: center; }
  .cta-card__rating { justify-content: center; }
  .cta-card__badges { justify-content: center; }
  .testimonial-card blockquote { font-size: 17px; }
}

/* ============================================
   Responsive — Phone (480px)
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .header__inner { height: 56px; }
  .header__nav.open { top: 56px; }
  .logo-img { height: 56px; }
  .logo-name { font-size: 18px; }
  .logo-tagline { font-size: 9px; }

  .hero { height: auto; min-height: 85vh; }
  .hero__title { font-size: 26px; }
  .hero__desc { font-size: 12px; max-width: 85%; line-height: 1.6; }
  .hero__content { padding: 90px 0 80px; max-width: 100%; padding-left: 8px; }
  .hero__label { font-size: 10px; letter-spacing: 1.5px; }
  .hero__counter { font-size: 18px; }
  .hero__total { font-size: 11px; }
  .hero__slide-meta { gap: 8px; margin-bottom: 12px; }
  .hero__nav { bottom: 16px; }
  .hero__arrow { width: 34px; height: 34px; }
  .hero .btn--lg {
    padding: 10px 18px;
    font-size: 10px;
    width: auto;
    align-self: flex-start;
  }

  .section { padding: 36px 0; }
  .section--dark { padding: 48px 0; }
  .section__heading { font-size: 24px; }
  .impact__heading { font-size: 24px; }
  .section__subtext { font-size: 14px; }

  .stat__number { font-size: 26px; }

  .feature-card { padding: 24px 20px; }
  .feature-card h3 { font-size: 18px; }
  .step-card { padding: 24px 20px; }
  .cta-card { padding: 24px 20px; }
  .cta-card__content h2,
  .cta-card__content h3 { font-size: 24px; }
  .testimonial-card { padding: 24px 20px; }
  .testimonial-card blockquote { font-size: 16px; }
  .timeline { padding-left: 36px; }
  .timeline__marker { left: -28px; width: 16px; height: 16px; }
  .timeline__card { padding: 20px; }
  .timeline__card h3 { font-size: 18px; }
  .timeline__num { font-size: 24px; right: 16px; top: 16px; }
  .vision-card { padding: 32px 24px; }
  .vision-card blockquote { font-size: 16px; }

  .impact-stats { gap: 12px; }
  .impact-stat { padding: 12px 14px; flex: 1; }
  .impact-stat__num { font-size: 20px; }
  .impact-image img { min-height: 250px; }

  .final-stats { gap: 16px; flex-direction: column; align-items: center; }
  .final-stat { width: auto; }
  .final-action { padding: 16px 20px; }

  .newsletter__form { flex-direction: column; width: 100%; }
  .newsletter__input-wrap { min-width: auto; width: 100%; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand { margin-bottom: 8px; }
}

/* ============================================
   Responsive — Small phone (360px)
   ============================================ */
@media (max-width: 360px) {
  .hero__title { font-size: 22px; }
  .hero__desc { font-size: 11px; }
  .hero__content { padding: 80px 0 70px; }
  .hero .btn--lg { padding: 8px 14px; font-size: 9px; }
  .section__heading { font-size: 22px; }
  .impact__heading { font-size: 22px; }
  .stat__number { font-size: 22px; }
  .logo-tagline { display: none; }
  .logo-img { height: 50px; }
  .logo-name { font-size: 16px; }
  .pill { font-size: 10px; padding: 6px 14px; }
  .btn { padding: 12px 24px; font-size: 13px; }
  .btn--lg { padding: 10px 18px; font-size: 11px; }
  .stats-row { grid-template-columns: 1fr; gap: 16px; }
  .feature-card__badge { font-size: 10px; }
  .cta-card__content h2,
  .cta-card__content h3 { font-size: 20px; }
}
