:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;
  --fg: #f0ede6;
  --fg-muted: #8a8680;
  --accent: #e8943a;
  --accent-glow: #e8943a33;
  --accent-dark: #b8702a;
  --border: #2a2a2a;
  --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.6;
  -webkit-font-smoothing: antialiased;
}

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

.hero-inner {
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
}

.hero-accent {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}

/* PROBLEM */
.problem {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  position: sticky;
  top: 120px;
}

.stat-block {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.stat-block:last-of-type {
  border-bottom: none;
  margin-bottom: 24px;
  padding-bottom: 0;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: var(--fg-muted);
  display: block;
}

.problem-summary {
  font-size: 1.1rem;
  color: var(--fg);
  margin-top: 16px;
  line-height: 1.7;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

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

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

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 64px;
}

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

.how-step {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s;
}

.how-step:hover {
  border-color: var(--accent);
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 24px;
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

/* CLIENTS */
.clients {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}

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

.clients h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 64px;
  line-height: 1.1;
}

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

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

.client-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-dark);
}

.client-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.client-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* PRICING */
.pricing {
  padding: 120px 48px;
  background: var(--bg-elevated);
}

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

.pricing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 64px;
  line-height: 1.1;
}

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

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
}

.price-tier {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 28px;
  line-height: 1;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.price-card ul {
  list-style: none;
}

.price-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 0.95rem;
}

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

.price-card.featured li {
  color: var(--fg);
}

/* CLOSING */
.closing {
  padding: 140px 48px;
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.1;
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.closing-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent) !important;
  font-size: 1.2rem !important;
  margin-top: 32px !important;
}

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

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    padding: 80px 24px 60px;
    min-height: 70vh;
  }

  .hero-accent {
    width: 300px;
    height: 300px;
    top: -10%;
    right: -20%;
  }

  .problem {
    padding: 80px 24px;
  }

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

  .problem-left h2 {
    position: static;
  }

  .stat-num {
    font-size: 2.5rem;
  }

  .how {
    padding: 80px 24px;
  }

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

  .clients {
    padding: 80px 24px;
  }

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

  .pricing {
    padding: 80px 24px;
  }

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

  .closing {
    padding: 80px 24px;
  }

  .site-footer {
    padding: 32px 24px;
  }

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