:root {
  --bg: #111111;
  --surface: #1a1a1a;
  --border: #2a2a2a;
  --fg: #f0ede8;
  --fg-muted: #8a8580;
  --accent: #ff5a1c;
  --accent-dim: rgba(255, 90, 28, 0.12);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-cta {
  background: var(--accent);
  color: var(--bg);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 8px 20px;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.85; }

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--fg);
}

.nav-tag {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hero */
.hero {
  position: relative;
  padding: 120px 48px 100px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 90, 28, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 90, 28, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-content { position: relative; max-width: 780px; }

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

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

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

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

/* What section */
.what-section {
  background: var(--surface);
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.what-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}

.what-text p {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 580px;
  margin-bottom: 16px;
}

.what-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.stat-item {
  background: var(--bg);
  padding: 32px 28px;
  border: 1px solid var(--border);
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* Section headers (shared) */
.section-header { margin-bottom: 48px; }
.section-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

/* Services */
.services-section { padding: 80px 48px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 36px;
}

.service-icon { margin-bottom: 20px; }

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* How */
.how-section {
  background: var(--surface);
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-header { margin-bottom: 56px; }

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 40px 0 0;
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--accent);
  opacity: 0.25;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.step-connector {
  width: 60px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
  margin-top: 32px;
}

/* Pricing */
.pricing-section { padding: 80px 48px; }

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

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 32px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255, 90, 28, 0.06) 0%, var(--surface) 100%);
}

.plan-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: var(--bg);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  font-weight: 600;
}

.plan-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.plan-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--fg);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 28px;
}

.plan-per { font-size: 18px; color: var(--fg-muted); }

.plan-features {
  list-style: none;
  margin-bottom: 28px;
}

.plan-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
}

.plan-features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.plan-note {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.7;
  line-height: 1.5;
}

/* Closing */
.closing-section {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}

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

.closing-cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
}

.closing-cta p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.closing-tagline {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 56px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.closing-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

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

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* Mobile */
@media (max-width: 768px) {
  .navbar, .hero, .what-section, .services-section,
  .how-section, .pricing-section, .closing-section, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .what-stats,
  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .steps-row {
    flex-direction: column;
    gap: 32px;
  }

  .step-connector {
    width: 1px;
    height: 32px;
    margin-top: 0;
    background: var(--border);
  }

  .step { padding-right: 0; }

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

  .stat-item, .service-card, .pricing-card {
    padding: 28px 24px;
  }

  .hero-headline { font-size: 56px; }
  .closing-tagline { flex-direction: column; }
  .closing-line { display: none; }
}
