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

:root {
  --primary: #FF6B35;
  --primary-dark: #E55A2B;
  --bg: #0A0A0A;
  --bg-card: #141414;
  --bg-card-hover: #1C1C1C;
  --border: #222;
  --text: #FFFFFF;
  --text-dim: #888;
  --text-muted: #555;
  --gradient: linear-gradient(135deg, #FF6B35, #FF8F65);
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── BUTTONS ─────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 24px; border-radius: 12px; font-weight: 700;
  font-size: 14px; font-family: inherit; cursor: pointer;
  transition: all 0.2s; border: none; text-align: center;
}
.btn-sm { padding: 10px 20px; font-size: 13px; border-radius: 10px; }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 14px; }
.btn-primary { background: var(--gradient); color: #fff; }
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-block { width: 100%; justify-content: center; }

/* ── NAV ─────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-size: 20px; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.nav-logo span { background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-dim); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--bg); padding: 24px; gap: 16px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
}

/* ── HERO ─────────────────────────────── */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block; padding: 8px 20px; border-radius: 100px;
  background: rgba(255,107,53,0.1); border: 1px solid rgba(255,107,53,0.2);
  font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 24px;
}
.hero h1 { font-size: clamp(36px, 6vw, 64px); font-weight: 900; line-height: 1.1; margin-bottom: 20px; letter-spacing: -2px; }
.hero-sub { font-size: 18px; color: var(--text-dim); max-width: 560px; margin: 0 auto 36px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; justify-content: center; gap: 40px; }
.stat { text-align: center; }
.stat strong { display: block; font-size: 28px; font-weight: 800; color: var(--primary); }
.stat span { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.stat-sep { width: 1px; background: var(--border); }

/* ── SECTIONS ────────────────────────── */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-card); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; letter-spacing: -1px; }
.section-header p { font-size: 16px; color: var(--text-dim); }

/* ── FEATURES ────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; transition: all 0.3s;
}
.feature-card:hover { border-color: rgba(255,107,53,0.3); transform: translateY(-4px); }
.feature-icon { font-size: 36px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; } }

/* ── STEPS ───────────────────────────── */
.steps { display: flex; align-items: flex-start; gap: 24px; justify-content: center; }
.step {
  flex: 1; max-width: 280px; text-align: center;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px;
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient); color: #fff; font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--text-dim); }
.step-arrow { font-size: 28px; color: var(--text-muted); margin-top: 48px; }

@media (max-width: 768px) {
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
}

/* ── PRICING ─────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 28px; position: relative;
}
.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(255,107,53,0.1);
  transform: scale(1.04);
}
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 16px; border-radius: 100px;
}
.price-tier { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.price-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 16px; }
.price-amount { font-size: 48px; font-weight: 900; margin-bottom: 24px; }
.currency { font-size: 24px; vertical-align: top; margin-right: 2px; color: var(--text-dim); }
.period { font-size: 16px; color: var(--text-muted); font-weight: 500; }
.price-features { list-style: none; margin-bottom: 28px; }
.price-features li { padding: 8px 0; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.price-features li.disabled { color: var(--text-muted); }

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}

/* ── CTA ─────────────────────────────── */
.cta-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-inner { text-align: center; }
.cta-inner h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.cta-inner p { color: var(--text-dim); margin-bottom: 28px; font-size: 16px; }

/* ── FOOTER ──────────────────────────── */
.footer { padding: 60px 0 24px; }
.footer-inner { display: flex; justify-content: space-between; margin-bottom: 40px; }
.footer-brand p { color: var(--text-muted); font-size: 13px; margin-top: 8px; }
.footer-links { display: flex; gap: 64px; }
.footer-links h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 12px; }
.footer-links a { display: block; font-size: 14px; color: var(--text-dim); padding: 4px 0; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; }
.footer-bottom p { font-size: 12px; color: var(--text-muted); }

@media (max-width: 768px) {
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { gap: 32px; }
}
