/* Fonts */
:root {
  --bg: #0A0A0A;
  --bg-2: #111111;
  --bg-3: #1A1A1A;
  --fg: #F5F5F5;
  --fg-muted: #888888;
  --accent: #FF4500;
  --accent-2: #FF6B35;
  --border: #2A2A2A;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav { padding: 20px 40px; border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1100px; margin: 0 auto; }
.nav-logo { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--accent); letter-spacing: -0.5px; }
.nav-tagline { font-size: 13px; color: var(--fg-muted); }

/* Hero */
.hero { padding: 80px 40px 60px; max-width: 1100px; margin: 0 auto; }
.hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-headline { font-family: var(--font-head); font-size: 52px; font-weight: 800; line-height: 1.1; letter-spacing: -2px; margin-bottom: 20px; }
.hero-accent { color: var(--accent); }
.hero-sub { font-size: 18px; color: var(--fg-muted); max-width: 420px; line-height: 1.7; }

/* Video Frame Mockup */
.hero-visual { display: flex; justify-content: center; }
.video-frame { background: var(--bg-3); border: 1px solid var(--border); border-radius: 12px; width: 280px; overflow: hidden; box-shadow: 0 20px 60px rgba(255,69,0,0.1); }
.vf-top { display: flex; align-items: center; gap: 6px; padding: 12px 14px; background: var(--bg-2); border-bottom: 1px solid var(--border); }
.vf-dot { width: 10px; height: 10px; border-radius: 50%; }
.vf-dot.red { background: #FF5F57; }
.vf-dot.yellow { background: #FFBD2E; }
.vf-dot.green { background: #28CA41; }
.vf-label { font-size: 11px; color: var(--fg-muted); margin-left: 6px; font-family: var(--font-body); }
.vf-screen { padding: 16px; background: #0D0D0D; }
.vf-content { position: relative; aspect-ratio: 9/16; background: linear-gradient(135deg, #1A0A00 0%, #2A1500 100%); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 16px; }
.vf-bar { height: 4px; border-radius: 2px; margin-bottom: 6px; }
.bar-1 { width: 70%; background: var(--accent); }
.bar-2 { width: 45%; background: rgba(255,69,0,0.4); }
.bar-3 { width: 55%; background: rgba(255,69,0,0.25); }
.vf-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 48px; height: 48px; background: rgba(255,69,0,0.15); border: 2px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--accent); }
.vf-caption { padding: 10px 14px; display: flex; align-items: center; gap: 8px; border-top: 1px solid var(--border); }
.vf-av { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.vf-caption span { font-size: 11px; color: var(--fg-muted); flex: 1; }
.vf-heart { color: var(--accent); font-size: 14px; }

/* Stats row */
.hero-stats { display: flex; align-items: center; gap: 32px; margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border); }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 12px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 1px; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

/* Problem */
.problem { background: var(--bg-2); padding: 80px 40px; }
.problem-inner { max-width: 1100px; margin: 0 auto; }
.eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 3px; color: var(--accent); font-weight: 600; display: block; margin-bottom: 12px; }
.problem-header { margin-bottom: 48px; }
.problem-header h2 { font-family: var(--font-head); font-size: 36px; font-weight: 700; margin-bottom: 16px; }
.problem-lead { font-size: 18px; color: var(--fg-muted); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.problem-card { background: var(--bg-3); border: 1px solid var(--border); border-radius: 12px; padding: 32px; }
.card-icon { font-size: 28px; color: #FF4444; margin-bottom: 16px; line-height: 1; }
.problem-card h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.problem-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* How */
.how { padding: 80px 40px; }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how h2 { font-family: var(--font-head); font-size: 36px; font-weight: 700; margin-bottom: 48px; }
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: grid; grid-template-columns: 80px 1fr; gap: 32px; padding: 40px 0; border-bottom: 1px solid var(--border); align-items: start; }
.step:last-child { border-bottom: none; }
.step-num { font-family: var(--font-head); font-size: 40px; font-weight: 800; color: var(--accent); opacity: 0.4; line-height: 1; }
.step-body h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step-body p { font-size: 15px; color: var(--fg-muted); max-width: 520px; }

/* Pricing */
.pricing { background: var(--bg-2); padding: 80px 40px; }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing h2 { font-family: var(--font-head); font-size: 36px; font-weight: 700; margin-bottom: 40px; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.price-card { background: var(--bg-3); border: 1px solid var(--border); border-radius: 12px; padding: 40px; position: relative; }
.price-card.featured { border-color: var(--accent); }
.price-badge { position: absolute; top: -12px; left: 32px; background: var(--accent); color: white; font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; }
.price-label { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--fg-muted); margin-bottom: 12px; }
.price-amount { font-family: var(--font-head); font-size: 48px; font-weight: 800; margin-bottom: 24px; }
.price-per { font-size: 20px; font-weight: 400; color: var(--fg-muted); }
.price-features { list-style: none; margin-bottom: 24px; }
.price-features li { font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--border); color: var(--fg-muted); }
.price-features li:last-child { border-bottom: none; }
.price-note { font-size: 12px; color: var(--fg-muted); font-style: italic; }
.pricing-guarantee { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--fg-muted); background: var(--bg-3); border: 1px solid var(--border); border-radius: 8px; padding: 14px 18px; }
.guarantee-icon { color: var(--accent); font-size: 18px; }

/* Niche */
.niche { padding: 80px 40px; }
.niche-inner { max-width: 1100px; margin: 0 auto; }
.niche h2 { font-family: var(--font-head); font-size: 36px; font-weight: 700; margin-bottom: 48px; }
.niche-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.niche-block { background: var(--bg-2); border: 1px solid var(--border); border-radius: 12px; padding: 36px; }
.niche-icon { font-size: 32px; color: var(--accent); margin-bottom: 16px; }
.niche-block h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.niche-block p { font-size: 14px; color: var(--fg-muted); margin-bottom: 16px; line-height: 1.6; }
.niche-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.niche-tags li { font-size: 11px; background: var(--bg-3); border: 1px solid var(--border); border-radius: 4px; padding: 4px 10px; color: var(--fg-muted); }
.niche-sub { font-size: 15px; color: var(--fg-muted); }

/* Closing */
.closing { padding: 80px 40px; background: linear-gradient(to bottom, var(--bg), var(--bg-2)); }
.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.closing h2 { font-family: var(--font-head); font-size: 36px; font-weight: 700; margin-bottom: 24px; line-height: 1.2; }
.closing p { font-size: 16px; color: var(--fg-muted); margin-bottom: 16px; line-height: 1.7; }
.closing-sibiu { font-family: var(--font-head); font-size: 14px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--accent); }
.footer-sub { font-size: 13px; color: var(--fg-muted); }
.footer-meta { font-size: 13px; color: var(--fg-muted); }
.footer-note { font-size: 12px; color: #444; }

/* Mobile */
@media (max-width: 768px) {
  .hero { padding: 48px 20px 40px; }
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 36px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 20px; }
  .problem-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .niche-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 12px; }
  .step-num { font-size: 28px; }
  .how h2, .pricing h2, .niche h2, .problem-header h2, .closing h2 { font-size: 28px; }
  .nav { padding: 16px 20px; }
  .problem, .how, .pricing, .niche, .closing { padding: 48px 20px; }
}