:root {
  --bg: #0c0f14;
  --bg-elevated: #141820;
  --bg-card: #1a1f2b;
  --fg: #e8e6e1;
  --fg-muted: #8a8d94;
  --fg-dim: #5a5d64;
  --accent: #e8a44a;
  --accent-light: #f0c078;
  --accent-glow: rgba(232, 164, 74, 0.15);
  --green: #4ecb8d;
  --radius: 12px;
  --radius-lg: 20px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

.highlight {
  color: var(--accent);
}

.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,164,74,0.08) 0%, transparent 70%);
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(232,164,74,0.3);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-visual {
  display: flex;
  gap: 1.5rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  text-align: center;
  min-width: 160px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,164,74,0.3);
}

.stat-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-top: 0.3rem;
}

/* ── PROBLEM ── */
.problem {
  padding: 6rem 2rem;
  background: var(--bg-elevated);
}

.problem-inner {
  max-width: 900px;
  margin: 0 auto;
}

.problem-statement {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.3;
}

.problem-statement em {
  font-style: italic;
  color: var(--accent);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.problem-item {
  padding: 1.5rem;
  border-left: 3px solid var(--accent);
}

.problem-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.problem-item p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 6rem 2rem;
}

.how-inner {
  max-width: 800px;
  margin: 0 auto;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(232,164,74,0.2);
  line-height: 1;
  min-width: 80px;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

/* ── FEATURES ── */
.features {
  padding: 6rem 2rem;
  background: var(--bg-elevated);
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(232,164,74,0.25);
  transform: translateY(-2px);
}

.feature-emoji {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── CLOSING ── */
.closing {
  padding: 8rem 2rem;
  text-align: center;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.closing-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.closing-stat {
  text-align: center;
}

.cs-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
}

.cs-label {
  display: block;
  font-size: 0.8rem;
  color: var(--fg-muted);
  max-width: 200px;
  margin-top: 0.3rem;
}

/* ── FOOTER ── */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.footer-tagline {
  color: var(--fg-dim);
  font-size: 0.85rem;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1.5rem 3rem;
    min-height: 90vh;
  }

  .hero-visual {
    flex-direction: column;
    align-items: center;
  }

  .stat-card {
    width: 100%;
    max-width: 280px;
  }

  .step {
    flex-direction: column;
    gap: 0.5rem;
  }

  .step-num {
    font-size: 2rem;
    min-width: auto;
  }

  .problem {
    padding: 4rem 1.5rem;
  }

  .how {
    padding: 4rem 1.5rem;
  }

  .features {
    padding: 4rem 1.5rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .closing {
    padding: 5rem 1.5rem;
  }

  .closing-stats {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .problem-statement {
    font-size: 1.5rem;
  }

  .closing h2 {
    font-size: 1.8rem;
  }
}
/* ── CTA BUTTON ── */
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #0c0f14;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 rgba(232,164,74,0);
}
.cta-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,164,74,0.25);
}
