:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a25;
  --bg-card-hover: #22222f;
  --text-primary: #f0ece4;
  --text-secondary: #9a9490;
  --text-muted: #6b6560;
  --gold: #d4a043;
  --gold-light: #e8b94a;
  --gold-dim: #b8882e;
  --gold-glow: rgba(212, 160, 67, 0.15);
  --amber-glow: rgba(212, 160, 67, 0.08);
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-inner {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gold-glow);
  border: 1px solid rgba(212, 160, 67, 0.25);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.hero h1 .gold {
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: var(--gold);
  color: #0a0a0f;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  letter-spacing: -0.2px;
}
.hero-cta-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.15s;
}
.hero-cta-secondary:hover {
  background: rgba(255,255,255,0.04);
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.1);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 28px 40px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ========== PROCESS ========== */
.process {
  padding: 100px 24px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-inner {
  max-width: 720px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  text-align: center;
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 56px;
  line-height: 1.6;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s;
}

.step:hover {
  border-color: rgba(212, 160, 67, 0.2);
}

.step-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-dim);
  flex-shrink: 0;
  min-width: 52px;
  line-height: 1;
  padding-top: 4px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.step-connector {
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  margin-left: 56px;
}

/* ========== FEATURES ========== */
.features {
  padding: 100px 24px;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.feature-card:hover {
  border-color: rgba(212, 160, 67, 0.15);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--gold);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ========== PRICING ========== */
.pricing {
  padding: 100px 24px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-inner {
  max-width: 960px;
  margin: 0 auto;
}

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

.price-card {
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.price-card:hover {
  transform: translateY(-3px);
}

.price-card.featured {
  border-color: var(--gold-dim);
  background: linear-gradient(180deg, rgba(212, 160, 67, 0.06) 0%, var(--bg-card) 100%);
  position: relative;
}

.price-tier {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 16px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.price-amount span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.price-leads {
  font-size: 15px;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.price-features {
  list-style: none;
  text-align: left;
}

.price-features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  padding-left: 20px;
  position: relative;
}

.price-features li:last-child { border-bottom: none; }

.price-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-size: 13px;
}

/* ========== CLOSING ========== */
.closing {
  padding: 120px 24px;
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  line-height: 1.15;
}

.closing p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.closing-tagline {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold) !important;
  margin-top: 32px !important;
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 80px 20px 60px; }
  .hero-stats { flex-direction: column; gap: 20px; padding: 24px; }
  .stat-divider { width: 40px; height: 1px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .step { flex-direction: column; gap: 12px; }
  .step-connector { margin-left: 32px; }
  .section-sub br { display: none; }
  .closing h2 br { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { letter-spacing: -1px; }
  .step { padding: 24px; }
  .feature-card { padding: 28px; }
  .price-card { padding: 32px 24px; }
}