:root {
  --bg: #0A0A0A;
  --bg-alt: #111111;
  --fg: #F0EDE6;
  --fg-muted: #8A8580;
  --accent: #C6FF00;
  --accent-dim: #9BBF00;
  --border: #1E1E1E;
  --surface: #141414;
  --surface-2: #1A1A1A;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.nav-tag {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-left: 1px solid var(--border);
  padding-left: 16px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(198,255,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.hero-highlight {
  color: var(--accent);
}
.hero-sub {
  margin-top: 24px;
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.65;
}
.hero-visual {
  display: flex;
  justify-content: center;
}
.phone-frame {
  width: 240px;
  background: #1A1A1A;
  border-radius: 36px;
  border: 1px solid #2A2A2A;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(198,255,0,0.05);
}
.phone-notch {
  width: 80px;
  height: 24px;
  background: #111;
  border-radius: 12px;
  margin: 0 auto 12px;
}
.phone-screen {
  background: #0F0F0F;
  border-radius: 28px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 40px;
  padding: 12px;
  background: #1A1A1A;
  border-radius: 12px;
}
.bar {
  flex: 1;
  height: 100%;
  border-radius: 2px;
  background: var(--accent);
  animation: wave 1.2s ease-in-out infinite;
}
.bar:nth-child(1) { animation-delay: 0s; }
.bar:nth-child(2) { animation-delay: 0.1s; }
.bar:nth-child(3) { animation-delay: 0.2s; }
.bar:nth-child(4) { animation-delay: 0.05s; }
.bar:nth-child(5) { animation-delay: 0.15s; }
.bar:nth-child(6) { animation-delay: 0.25s; }
.bar:nth-child(7) { animation-delay: 0.08s; }
.bar:nth-child(8) { animation-delay: 0.18s; }
.bar:nth-child(9) { animation-delay: 0.3s; }
.bar:nth-child(10) { animation-delay: 0.12s; }
.bar:nth-child(11) { animation-delay: 0.22s; }
.bar:nth-child(12) { animation-delay: 0.02s; }

@keyframes wave {
  0%, 100% { height: 30%; }
  50% { height: 100%; }
}
.call-badge, .msg-badge, .book-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 11px;
}
.call-badge { background: rgba(198,255,0,0.12); border: 1px solid rgba(198,255,0,0.2); }
.msg-badge { background: #1A1A1A; border: 1px solid #2A2A2A; }
.book-badge { background: #1A1A1A; border: 1px solid #2A2A2A; }
.call-icon { font-size: 16px; }
.call-label { color: var(--accent); font-weight: 500; }
.msg-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.msg-text { color: var(--fg-muted); }
.book-icon { font-size: 14px; color: var(--accent); font-weight: 700; }
.book-text { color: var(--fg-muted); }

/* STATS */
.stats {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 40px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.stat { padding: 0 48px; }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.stat-label {
  margin-top: 8px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.stat-div {
  width: 1px;
  height: 64px;
  background: var(--border);
}

/* HOW */
.how { padding: 100px 40px; }
.how-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 640px;
  margin-bottom: 64px;
}
.steps {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: center;
  gap: 0;
}
.step {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  opacity: 0.6;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}
.step p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.step-arrow { color: var(--fg-muted); opacity: 0.4; }

/* SERVICES */
.services {
  background: var(--bg-alt);
  padding: 100px 40px;
}
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.service-card {
  background: var(--surface);
  padding: 40px 32px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--surface-2); }
.svc-icon {
  width: 44px;
  height: 44px;
  background: rgba(198,255,0,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* WHO */
.who { padding: 100px 40px; }
.who-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.who-text h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.who-text p { color: var(--fg-muted); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.who-list { display: flex; flex-direction: column; gap: 0; }
.who-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  font-weight: 500;
}
.who-check {
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
  width: 24px;
}

/* PRICING */
.pricing {
  background: var(--accent);
  padding: 80px 40px;
}
.pricing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.pricing .section-label { color: #0A0A0A; }
.pricing .section-title { color: #0A0A0A; }
.pricing-block {
  background: #0A0A0A;
  border-radius: 24px;
  padding: 48px;
  margin: 48px 0 32px;
  text-align: left;
  display: inline-block;
  min-width: 400px;
}
.price-main {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 72px;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.price-per { font-size: 32px; font-weight: 600; }
.price-sub { color: var(--fg-muted); font-size: 16px; margin-top: 8px; margin-bottom: 32px; }
.price-features { list-style: none; }
.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.pricing-cta p { color: #0A0A0A; font-size: 18px; font-weight: 500; }
.pricing-cta strong { font-weight: 700; font-size: 22px; }

/* CLOSING */
.closing { padding: 100px 40px; }
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.closing p { color: var(--fg-muted); font-size: 17px; line-height: 1.7; max-width: 600px; }

/* FOOTER */
.footer { padding: 48px 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 18px; color: var(--accent); margin-bottom: 8px; }
.footer-tag { font-size: 13px; color: var(--fg-muted); margin-bottom: 16px; }
.footer-copy { font-size: 12px; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .stats-inner { grid-template-columns: 1fr; gap: 32px; }
  .stat-div { display: none; }
  .stat { padding: 0; }
  .steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .who-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing-block { min-width: auto; }
}
@media (max-width: 600px) {
  .hero { padding: 100px 24px 60px; }
  .stats, .how, .services, .who, .pricing, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .nav { padding: 16px 24px; }
  .pricing-block { padding: 32px 24px; }
  .price-main { font-size: 56px; }
}