:root {
  --bg: #0a0a0f;
  --bg-subtle: #12121a;
  --bg-card: #16161f;
  --fg: #e8e8ed;
  --fg-muted: #8a8a9a;
  --accent: #f0c040;
  --accent-glow: rgba(240, 192, 64, 0.15);
  --accent-2: #40d0f0;
  --border: #2a2a3a;
  --radius: 16px;
  --radius-sm: 10px;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 700;
}

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 24px 80px;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(240,192,64,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(64,208,240,0.05) 0%, transparent 50%),
    var(--bg);
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--accent);
  letter-spacing: 0.5px;
  margin-bottom: 40px;
  background: var(--accent-glow);
}

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

.hero-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.tag {
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  font-family: var(--font-heading);
}

/* ── PROBLEM ── */
.problem {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
}

.problem-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

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

/* ── PACKS ── */
.packs {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.packs h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 56px;
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.pack-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.pack-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.pack-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.pack-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pack-express .pack-price { color: var(--accent); }
.pack-creator .pack-price { color: var(--accent-2); }
.pack-site .pack-price { color: #c084fc; }

.pack-card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.pack-target {
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.pack-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pack-card li {
  padding-left: 22px;
  position: relative;
  color: var(--fg-muted);
  font-size: 0.95rem;
}

.pack-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pack-creator li::before { color: var(--accent-2); }
.pack-site li::before { color: #c084fc; }

/* ── HOW ── */
.how {
  padding: 100px 24px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.how h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 56px;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.step {
  flex: 1;
  max-width: 260px;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

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

.step-arrow {
  font-size: 2rem;
  color: var(--border);
  padding-top: 20px;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 24px;
  background:
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(240,192,64,0.06) 0%, transparent 60%),
    var(--bg-subtle);
}

.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 48px;
}

.closing-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  color: var(--fg-muted);
  font-size: 0.85rem;
  max-width: 180px;
}

/* ── FOOTER ── */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-contact {
  color: var(--fg-muted);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.footer-legal {
  color: var(--fg-muted);
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .problem-grid,
  .packs-grid {
    grid-template-columns: 1fr;
  }

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

  .step-arrow {
    transform: rotate(90deg);
    padding: 0;
  }

  .closing-stats {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .hero {
    min-height: auto;
    padding: 80px 20px 60px;
  }
}