:root {
  --amber: #F59E0B;
  --amber-dark: #B45309;
  --amber-light: #FEF3C7;
  --navy: #0F172A;
  --navy-mid: #1E293B;
  --slate: #334155;
  --muted: #64748B;
  --off-white: #FAFAF9;
  --teal: #0D9488;
  --brown: #7C3A12;

  --font-heading: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --max-w: 1100px;
  --section-pad: 96px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(250, 250, 249, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
}
.nav-logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sun-orb {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, rgba(245, 158, 11, 0) 70%);
}
.sun-rays {
  position: absolute;
  top: -80px;
  right: -40px;
  width: 550px;
  height: 550px;
  background:
    conic-gradient(from 0deg, transparent 0deg, rgba(245, 158, 11, 0.06) 8deg, transparent 16deg, rgba(245, 158, 11, 0.06) 24deg, transparent 32deg, rgba(245, 158, 11, 0.06) 40deg, transparent 48deg, rgba(245, 158, 11, 0.06) 56deg, transparent 64deg, rgba(245, 158, 11, 0.06) 72deg, transparent 80deg, rgba(245, 158, 11, 0.06) 88deg, transparent 96deg, rgba(245, 158, 11, 0.06) 104deg, transparent 112deg, rgba(245, 158, 11, 0.06) 120deg, transparent 128deg, rgba(245, 158, 11, 0.06) 136deg, transparent 144deg, rgba(245, 158, 11, 0.06) 152deg, transparent 160deg, rgba(245, 158, 11, 0.06) 168deg, transparent 176deg, rgba(245, 158, 11, 0.06) 184deg, transparent 192deg, rgba(245, 158, 11, 0.06) 200deg, transparent 208deg, rgba(245, 158, 11, 0.06) 216deg, transparent 224deg, rgba(245, 158, 11, 0.06) 232deg, transparent 240deg, rgba(245, 158, 11, 0.06) 248deg, transparent 256deg, rgba(245, 158, 11, 0.06) 264deg, transparent 272deg, rgba(245, 158, 11, 0.06) 280deg, transparent 288deg, rgba(245, 158, 11, 0.06) 296deg, transparent 304deg, rgba(245, 158, 11, 0.06) 312deg, transparent 320deg, rgba(245, 158, 11, 0.06) 328deg, transparent 336deg, rgba(245, 158, 11, 0.06) 344deg, transparent 352deg, rgba(245, 158, 11, 0.06) 360deg);
  animation: rotate-rays 60s linear infinite;
}
@keyframes rotate-rays {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-content {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 32px;
}
.hero-badge span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 700px;
}
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px 32px;
  width: fit-content;
}
.hero-stat {
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--amber);
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  max-width: 120px;
  line-height: 1.3;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── STATS SECTION ── */
.stats-section {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.stat-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
}
.stat-icon {
  width: 44px;
  height: 44px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}
.stat-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.stat-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ── HOW IT WORKS ── */
.how-section {
  padding: var(--section-pad) 24px;
  background: var(--off-white);
}
.how-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 64px;
}
.step-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step-card {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 20px;
}
.step-number {
  width: 36px;
  height: 36px;
  background: var(--amber);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}
.step-connector {
  height: 1px;
  align-self: center;
  flex: 1;
  background: linear-gradient(to right, rgba(15,23,42,0.1), rgba(15,23,42,0.05));
  margin: 0 -8px;
}

/* ── PROBLEMS SECTION ── */
.problems-section {
  padding: var(--section-pad) 24px;
  background: var(--navy);
}
.problems-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problems-left .section-eyebrow { color: var(--amber); }
.problems-left .section-heading { color: #fff; margin-bottom: 24px; }
.problems-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 36px;
}
.problem-list { display: flex; flex-direction: column; gap: 14px; }
.problem-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
}
.solution-card {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 24px;
  padding: 40px;
}
.solution-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin-bottom: 24px;
}
.solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.solution-list li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  padding-left: 24px;
  position: relative;
}
.solution-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

/* ── CLOSING ── */
.closing-section {
  padding: var(--section-pad) 24px;
  background: var(--amber);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 1.1rem;
  color: rgba(15,23,42,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}
.closing-tagline {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.6;
  letter-spacing: 0.02em;
}

/* ── FOOTER ── */
.footer {
  padding: 48px 24px 32px;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-brand { margin-bottom: 40px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-stats-row { flex-direction: column; gap: 20px; padding: 20px; }
  .hero-stat { padding: 0; text-align: center; }
  .hero-stat-divider { display: none; }

  .stats-inner { grid-template-columns: 1fr; }

  .step-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }

  .problems-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .hero { padding: 100px 20px 60px; }
  .hero-headline { font-size: 2.6rem; }
  .section-heading { font-size: 2rem; }
  .solution-card { padding: 28px; }
}