:root {
  --bg: #062828;
  --bg-2: #083D3D;
  --bg-card: #0A4E4E;
  --fg: #F2EDE6;
  --fg-muted: rgba(242, 237, 230, 0.6);
  --accent: #F5B942;
  --accent-2: #E8883A;
  --border: rgba(242, 237, 230, 0.08);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.nav-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  padding: 5rem 2.5rem 4rem;
  background: radial-gradient(ellipse 80% 60% at 60% 0%, rgba(10, 78, 78, 0.6) 0%, transparent 70%), var(--bg);
}
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero-headline {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
  color: var(--fg);
}
.hero-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 460px;
}
.hero-proof {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.proof-item { display: flex; gap: 0.75rem; align-items: baseline; }
.proof-num {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
}
.proof-label { font-size: 0.85rem; color: var(--fg-muted); }

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
}
.stat-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat-label { font-size: 0.8rem; color: var(--fg-muted); }
.stat-value {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245, 185, 66, 0.5);
}

/* ── SECTION UTILS ── */
.section-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
}

/* ── HOW ── */
.how { padding: 5rem 2.5rem; background: var(--bg-2); }
.how-header { max-width: 1100px; margin: 0 auto 3rem; }
.how-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step { display: flex; flex-direction: column; gap: 0.75rem; }
.step-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent);
  letter-spacing: -0.05em;
  opacity: 0.4;
}
.step h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.step p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.65; }

/* ── OUTCOMES ── */
.outcomes { padding: 5rem 2.5rem; background: var(--bg); }
.outcomes-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.outcome-block {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.outcome-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(245, 185, 66, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.outcome-text h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.outcome-text p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }

/* ── OFFER ── */
.offer { padding: 5rem 2.5rem; background: var(--bg-2); }
.offer-content { max-width: 1100px; margin: 0 auto; }
.offer-body { font-size: 1rem; color: var(--fg-muted); margin-bottom: 3rem; max-width: 560px; }
.pricing-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.pricing-card { flex: 1; padding: 2rem; }
.pricing-divider {
  width: 1px;
  background: var(--border);
}
.pricing-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.pricing-range {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.pricing-desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }
.pricing-cta {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
}

/* ── CLOSING ── */
.closing {
  padding: 5rem 2.5rem 4rem;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(10, 78, 78, 0.5) 0%, transparent 70%), var(--bg);
}
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing-text {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 2.5rem;
}
.closing-statement {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--fg);
  line-height: 1.3;
  letter-spacing: -0.03em;
  max-width: 640px;
}

/* ── FOOTER ── */
.footer {
  padding: 2rem 2.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.footer-inner { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--accent);
}
.footer-sep { color: var(--fg-muted); }
.footer-tag { font-size: 0.85rem; color: var(--fg-muted); }
.footer-legal { font-size: 0.75rem; color: rgba(242, 237, 230, 0.3); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { padding-top: 0; }
  .how-steps { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .pricing-grid { flex-direction: column; }
  .pricing-divider { width: 100%; height: 1px; }
}
@media (max-width: 600px) {
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .how, .outcomes, .offer { padding: 3.5rem 1.5rem; }
  .closing { padding: 3.5rem 1.5rem 2.5rem; }
  .nav { padding: 1rem 1.5rem; }
}