:root {
  --bg: #0A0A08;
  --bg-card: #141410;
  --bg-card-alt: #1C1C17;
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --text: #FAFAF7;
  --text-muted: rgba(250, 250, 247, 0.5);
  --text-dim: rgba(250, 250, 247, 0.3);
  --border: rgba(250, 250, 247, 0.08);
  --section-pad: 100px 48px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  min-height: 100vh;
  padding: 0 64px;
  align-items: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  grid-column: 1;
  padding: 120px 0;
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 32px;
}

.hero-headline .accent { color: var(--accent); }

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

/* Hero Visual */
.hero-visual {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 120px 0;
}

.video-card {
  border-radius: 16px;
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.video-card:hover { transform: translateX(-4px); }

.card-cafe { background: linear-gradient(135deg, #1a1209 0%, #2d1f0d 100%); }
.card-stable { background: linear-gradient(135deg, #0d1a09 0%, #1a2d0d 100%); }
.card-gym { background: linear-gradient(135deg, #09091a 0%, #0d0d2d 100%); }

.card-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
  font-weight: 600;
}

.card-scene {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}

.card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent-dim);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 4px;
}

/* NICHES */
.niches {
  background: var(--bg-card);
  padding: var(--section-pad);
}

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

.niches-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--text);
  margin-bottom: 20px;
}

.niches-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 60px;
  font-weight: 300;
}

.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.niche-item {
  background: var(--bg-card);
  padding: 32px 28px;
  transition: background 0.2s;
}

.niche-item:hover { background: var(--bg-card-alt); }

.niche-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.niche-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.niche-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* HOW */
.how {
  background: var(--bg);
  padding: var(--section-pad);
}

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

.how-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--text);
  margin-bottom: 64px;
}

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

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--accent);
  line-height: 1;
  opacity: 0.6;
}

.step-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.step-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  font-weight: 300;
}

/* PRICING */
.pricing {
  background: var(--bg-card);
  padding: var(--section-pad);
}

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

.pricing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--text);
  margin-bottom: 48px;
}

.pricing-card {
  display: inline-block;
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 56px;
  max-width: 420px;
  width: 100%;
}

.pricing-name {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 32px;
}

.price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: var(--text);
  line-height: 1;
}

.currency {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 15px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.pricing-note {
  font-size: 13px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
}

/* CLOSING */
.closing {
  background: var(--bg);
  padding: 120px 48px;
  text-align: center;
}

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

.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 56px;
  font-weight: 300;
}

.closing-cta { display: flex; flex-direction: column; gap: 8px; align-items: center; }

.cta-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}

.cta-email {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* FOOTER */
footer {
  background: var(--bg-card);
  padding: 48px;
  text-align: center;
}

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

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--text);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

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

.footer-meta {
  font-size: 12px;
  color: var(--text-dim);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .hero-inner { padding: 80px 0 40px; }

  .hero-visual {
    padding: 0 0 60px;
    grid-column: 1;
  }

  .niches-grid {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }

  .step-num { font-size: 36px; }

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

  .price { font-size: 56px; }

  .closing { padding: 80px 24px; }

  .niches, .how, .pricing { padding: 80px 24px; }

  footer { padding: 40px 24px; }
}