:root {
  --navy: #0D1B2A;
  --green: #047857;
  --amber: #F59E0B;
  --cream: #FAFAF5;
  --text: #1A1A1A;
  --muted: #6B7280;
  --border: #E5E7EB;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* HERO */
.hero {
  padding: 80px 40px 60px;
  background: var(--cream);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
}
.hero-visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13, 27, 42, 0.15);
}
.hero-img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* SECTION LABEL */
.section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 40px;
}

/* HOW IT WORKS */
.hiw {
  padding: 80px 40px;
  background: var(--navy);
  color: white;
}
.hiw-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hiw .section-label { color: var(--amber); }
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.hiw-step { position: relative; }
.hiw-num {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--amber);
  opacity: 0.3;
  display: block;
  margin-bottom: 12px;
}
.hiw-step h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.hiw-step p { color: rgba(255,255,255,0.65); font-size: 16px; line-height: 1.7; }

/* FEATURES */
.features {
  padding: 80px 40px;
  background: var(--cream);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(13,27,42,0.12);
}
.feature-icon-block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: var(--navy);
  border-radius: 16px;
}
.feature-text h3 {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.feature-text p { color: var(--muted); font-size: 17px; line-height: 1.7; }

/* STATS */
.stats {
  padding: 60px 40px;
  background: var(--green);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat { text-align: center; padding: 0 48px; }
.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: white;
  display: block;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  display: block;
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.3);
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  background: var(--cream);
  text-align: center;
}
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing-text {
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 20px;
}
.closing-text.secondary {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
}

/* FOOTER */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
  background: white;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}
.footer-desc { font-size: 14px; color: var(--muted); }
.footer-copy { font-size: 13px; color: var(--muted); }

/* MOBILE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 36px; }
  .hiw-grid { grid-template-columns: 1fr; gap: 32px; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse { direction: ltr; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .stat-divider { width: 60px; height: 1px; }
  .nav { padding: 16px 20px; }
  .hero { padding: 48px 20px 40px; }
  .hiw, .features, .closing { padding: 60px 20px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 28px; }
  .stat-num { font-size: 40px; }
  .closing-text { font-size: 22px; }
}