:root {
  --bg: #0a0a0f;
  --bg-card: #12121a;
  --fg: #e8e8ed;
  --fg-dim: #8888a0;
  --accent: #ff4d4d;
  --accent2: #ff8c42;
  --gradient: linear-gradient(135deg, #ff4d4d, #ff8c42);
  --border: #1e1e2e;
  --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; }

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

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

.dim { color: var(--fg-dim); }
.strike { text-decoration: line-through; color: var(--fg-dim); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
  text-align: center;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
}

.shape-1 {
  width: 500px; height: 500px;
  background: #ff4d4d;
  top: -200px; left: -100px;
}

.shape-2 {
  width: 400px; height: 400px;
  background: #ff8c42;
  top: 0; right: -150px;
}

.shape-3 {
  width: 300px; height: 300px;
  background: #ff4d4d;
  bottom: -100px; left: 40%;
}

.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-dim);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============ PROBLEM ============ */
.problem {
  padding: 100px 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.problem-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 24px;
}

.problem-text p {
  color: var(--fg-dim);
  margin-bottom: 20px;
}

.stat {
  padding: 20px 24px;
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 500;
  color: var(--fg) !important;
}

.phone-mockup {
  width: 220px;
  height: 400px;
  background: #1a1a2a;
  border-radius: 28px;
  border: 2px solid var(--border);
  padding: 12px;
  margin: 0 auto;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-reel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 70%;
}

.reel-bar {
  width: 100%;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
}

.reel-bar.short { width: 60%; }
.reel-bar.bottom { width: 80%; }

.reel-play {
  font-size: 36px;
  color: var(--accent);
  margin: 16px 0;
}

/* ============ SERVICES ============ */
.services {
  padding: 100px 0;
}

.services h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 56px;
  text-align: center;
}

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

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

.service-card:hover {
  border-color: var(--accent);
}

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

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

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

/* ============ VERTICALS ============ */
.verticals {
  padding: 100px 0;
  text-align: center;
}

.verticals h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 48px;
}

.verticals-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}

.vertical-tag {
  padding: 12px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s;
}

.vertical-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.verticals-note {
  color: var(--fg-dim);
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ============ HOW ============ */
.how {
  padding: 100px 0;
}

.how h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 56px;
  text-align: center;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

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

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  width: 70px;
}

.step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

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

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

.closing-block {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 24px;
}

.closing p {
  color: var(--fg-dim);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.closing-price {
  color: var(--fg) !important;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

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

/* ============ FOOTER ============ */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

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

/* ============ MOBILE ============ */
@media (max-width: 768px) {
  .hero { padding: 100px 0 60px; }

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

  .phone-mockup {
    width: 180px;
    height: 340px;
  }

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

  .step {
    flex-direction: column;
    gap: 12px;
  }

  .step-num {
    font-size: 2rem;
    width: auto;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .closing { padding: 80px 0; }
}