:root {
  --bg: #111111;
  --bg-2: #1a1a1a;
  --bg-3: #222222;
  --fg: #f5f5f0;
  --fg-muted: #a0a0a0;
  --accent: #ff5722;
  --accent-hover: #ff7043;
  --green: #4caf50;
  --border: #2a2a2a;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(12px);
}
.nav-inner { max-width: 1100px; margin: 0 auto; }
.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  gap: 4rem;
}
.hero-inner { flex: 1; max-width: 580px; }
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 87, 34, 0.12);
  border: 1px solid rgba(255, 87, 34, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 2rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.stat-value {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 0.2rem;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 340px;
}
.phone-widget {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--accent);
}
.phone-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.phone-label--out { color: var(--green); }
.phone-caller {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.25rem;
}
.phone-meta {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 0.85rem;
}
.phone-status {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.phone-dots {
  display: flex;
  gap: 4px;
  align-items: center;
}
.phone-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.2s ease-in-out infinite;
}
.phone-dots span:nth-child(2) { animation-delay: 0.2s; }
.phone-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1); }
}
.phone-widget--reply {
  border-left-color: var(--green);
  margin-left: 1.5rem;
}
.phone-reply-text {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.5;
  font-style: italic;
}

/* Problem */
.problem {
  padding: 6rem 2rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.section-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-headline {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.problem-right { display: flex; flex-direction: column; gap: 2rem; }
.problem-stat { border-left: 2px solid var(--accent); padding-left: 1.25rem; }
.problem-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}
.problem-stat p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.5; }

/* Features */
.features {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.features-header { margin-bottom: 3.5rem; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(255, 87, 34, 0.4); }
.feature-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: block;
}
.feature-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Outcomes */
.outcomes {
  padding: 6rem 2rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes-header { margin-bottom: 3rem; }
.outcomes-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 3rem; }
.outcome {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}
.outcome--after { border-color: rgba(76, 175, 80, 0.4); }
.outcome-metric {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}
.outcome-metric--green { color: var(--green); }
.outcome-text { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.65; }
.outcomes-quote {
  position: relative;
  padding: 2rem 2.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 600px;
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--accent);
  line-height: 0;
  position: absolute;
  top: 2.5rem;
  left: 1.5rem;
  opacity: 0.6;
}
blockquote {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.5;
  padding-left: 2rem;
}

/* Closing */
.closing {
  padding: 7rem 2rem;
  text-align: center;
}
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
}
.closing-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
}

/* Footer */
.footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}
.footer-copy { font-size: 0.8rem; color: var(--fg-muted); }

/* Responsive */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding-top: 7rem; gap: 3rem; }
  .hero-visual { max-width: 100%; }
  .hero-stats { flex-direction: column; gap: 1.25rem; align-items: flex-start; }
  .stat-divider { display: none; }
  .problem-inner { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .outcomes-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .closing-headline { font-size: 1.6rem; }
}