/* ---- HERO ---- */
.hero {
  padding: 90px 20px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(232,98,26,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 680px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-block;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 22px;
}
.hero-grad {
  background: linear-gradient(120deg, var(--orange-lt), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.plat-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.plat-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 500;
}
.plat-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }

/* ---- SECTIONS ---- */
.container { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

/* ---- HOW IT WORKS ---- */
.how-section { padding: 70px 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
}
.step-icon { font-size: 1.8rem; margin-bottom: 14px; }
.step-card h3 { font-size: 1rem; margin-bottom: 8px; }
.step-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }

/* ---- STATS ---- */
.stats-section {
  padding: 50px 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item { text-align: center; padding: 20px 48px; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-desc { font-size: 0.85rem; color: var(--muted); }
.stat-divider { width: 1px; height: 60px; background: var(--border); }
@media(max-width:560px){ .stat-divider { display: none; } .stat-item { padding: 16px 24px; } }

/* ---- CTA BANNER ---- */
.cta-banner {
  padding: 80px 20px;
  text-align: center;
}
.cta-banner h2 { font-size: 2rem; margin-bottom: 10px; }
.cta-banner p { color: var(--muted); margin-bottom: 28px; }
