:root {
  --bg-primary: #0a0a0c;
  --bg-secondary: #111114;
  --bg-card: #18181c;
  --bg-accent: #1e1e24;
  --text-primary: #f0efe9;
  --text-secondary: #9a9a9a;
  --text-muted: #6a6a6a;
  --accent: #e8ff47;
  --accent-dim: rgba(232, 255, 71, 0.12);
  --border: #2a2a30;
  --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-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

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

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(232, 255, 71, 0.2);
  margin-bottom: 40px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.7;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 72px auto 0;
  padding: 0 48px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

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

.problem-inner {
  max-width: 760px;
  margin: 0 auto;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.problem p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.problem-highlight {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--accent) !important;
  margin-top: 12px;
}

/* === SERVICES === */
.services {
  padding: 120px 48px;
}

.services-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.services h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
}

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

.service-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: border-color 0.2s ease;
}

.service-item:hover {
  border-color: rgba(232, 255, 71, 0.3);
}

.service-icon {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 20px;
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === HOW === */
.how {
  padding: 120px 48px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
}

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

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.step-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  min-width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(232, 255, 71, 0.2);
  flex-shrink: 0;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-line {
  width: 2px;
  height: 40px;
  background: var(--border);
  margin-left: 25px;
}

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

.closing::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 255, 71, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.closing p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

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

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }

  .hero-stat-row {
    grid-template-columns: 1fr;
    padding: 0;
    margin-top: 48px;
  }

  .stat-card {
    padding: 24px 20px;
  }

  .stat-number {
    font-size: 32px;
  }

  .problem,
  .services,
  .how,
  .closing {
    padding: 80px 24px;
  }

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

  .service-item {
    padding: 28px 24px;
  }

  .step {
    gap: 20px;
  }

  .step-num {
    min-width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .step-line {
    margin-left: 21px;
    height: 32px;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .problem h2,
  .services h2,
  .how h2 {
    font-size: 26px;
  }

  .closing h2 {
    font-size: 24px;
  }
}
/* === NAV === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  transition: background 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-nav.nav-scrolled {
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: var(--border);
  padding: 14px 48px;
}

.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0c;
  background: var(--accent);
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 22px;
  cursor: pointer;
  margin-left: auto;
}

/* === HERO CTA === */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero-cta-btn {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #0a0a0c;
  background: var(--accent);
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 0 rgba(232, 255, 71, 0);
}

.hero-cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 255, 71, 0.22);
}

.hero-cta-link {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hero-cta-link:hover {
  color: var(--text-primary);
  border-color: var(--text-secondary);
}

/* === PRICING === */
.pricing {
  padding: 120px 48px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.pricing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.pricing-sub {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 60px;
  max-width: 560px;
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.2s ease;
}

.pricing-card:hover {
  border-color: rgba(232, 255, 71, 0.25);
}

.pricing-card--featured {
  border-color: rgba(232, 255, 71, 0.35);
  background: var(--bg-accent);
  box-shadow: 0 0 0 1px rgba(232, 255, 71, 0.15), 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pricing-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0a0c;
  background: var(--accent);
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

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

.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1;
}

.price-period {
  font-size: 16px;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
  min-height: 60px;
}

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

.pricing-features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}

.pricing-btn {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  letter-spacing: -0.01em;
}

.pricing-btn--primary {
  background: var(--accent);
  color: #0a0a0c;
}

.pricing-btn--primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(232, 255, 71, 0.25);
}

.pricing-btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.pricing-btn--outline:hover {
  border-color: rgba(232, 255, 71, 0.3);
  color: var(--accent);
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 36px;
}

/* === BOOKING === */
.booking {
  padding: 120px 48px;
}

.booking-inner {
  max-width: 900px;
  margin: 0 auto;
}

.booking h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.booking-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 52px;
}

.calendly-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.booking-fallback {
  text-align: center;
  margin-top: 28px;
  font-size: 15px;
  color: var(--text-muted);
}

.booking-fallback a {
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.booking-fallback a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* === RESPONSIVE (nav + pricing + booking) === */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .site-nav {
    padding: 18px 24px;
  }

  .site-nav.nav-scrolled {
    padding: 12px 24px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 12, 0.97);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 20px;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links a {
    font-size: 16px;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .hero-cta-btn {
    width: 100%;
    text-align: center;
  }

  .pricing,
  .booking {
    padding: 80px 24px;
  }

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

  .price-amount {
    font-size: 40px;
  }

  .booking-sub {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .nav-brand {
    font-size: 17px;
  }
}
