:root {
  --bg: #0a0a0a;
  --bg-surface: #111111;
  --bg-elevated: #1a1a1a;
  --fg: #f5f0e8;
  --fg-muted: #9a9080;
  --fg-dim: #5a5347;
  --accent: #c8a44e;
  --accent-light: #dfc06a;
  --accent-glow: rgba(200, 164, 78, 0.15);
  --radius: 12px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--bg-elevated);
  border: 1px solid rgba(200, 164, 78, 0.2);
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

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

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 520px;
  margin-top: 28px;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  position: relative;
  z-index: 1;
}

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

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ===== DIVIDER ===== */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 164, 78, 0.2), transparent);
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 600px;
  margin-bottom: 64px;
}

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

.service-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: border-color 0.3s, background 0.3s;
}

.service-card:hover {
  border-color: rgba(200, 164, 78, 0.15);
  background: var(--bg-elevated);
}

.service-card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-glow);
  border: 1px solid rgba(200, 164, 78, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 120px 24px;
  background: var(--bg-surface);
}

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

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}

.how-step {
  position: relative;
}

.how-step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--bg-elevated);
  line-height: 1;
  margin-bottom: 20px;
  -webkit-text-stroke: 1px rgba(200, 164, 78, 0.2);
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

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

/* ===== PRICING ===== */
.pricing {
  padding: 120px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 48px 40px;
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(200, 164, 78, 0.3);
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 40px;
  padding: 4px 16px;
  background: var(--accent);
  color: var(--bg);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}

.pricing-card .price-note {
  font-size: 0.85rem;
  color: var(--fg-dim);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  padding: 0;
}

.pricing-features li {
  padding: 8px 0;
  color: var(--fg-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== CLOSING ===== */
.closing {
  padding: 160px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.closing p {
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

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

/* ===== PRICING CTA BUTTON ===== */
.btn-price {
  display: block;
  margin-top: 28px;
  padding: 14px 24px;
  background: var(--bg-elevated);
  border: 1px solid rgba(200,164,78,0.2);
  color: var(--accent);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}
.btn-price:hover { background: var(--bg-surface); border-color: rgba(200,164,78,0.4); }
.btn-price-featured {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.btn-price-featured:hover { background: var(--accent-light); border-color: var(--accent-light); }

/* ===== HERO CTA BUTTON ===== */
.btn-hero {
  display: inline-block;
  margin-top: 56px;
  padding: 18px 40px;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  transition: background 0.2s, transform 0.15s;
}

.btn-hero:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .services-grid,
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

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

  .services,
  .pricing {
    padding: 80px 20px;
  }

  .how {
    padding: 80px 20px;
  }

  .closing {
    padding: 100px 20px;
  }

  .service-card,
  .pricing-card {
    padding: 32px 28px;
  }
}