:root {
  --bg: #F7F6F2;
  --bg-alt: #EEECE8;
  --fg: #0D0D0B;
  --fg-muted: #5A5A56;
  --accent: #E8883A;
  --accent-dark: #C96E1E;
  --navy: #1A1A2E;
  --white: #FFFFFF;
  --border: #D8D6CF;
}

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

body {
  font-family: 'Figtree', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.navbar {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* HERO */
.hero {
  padding: 80px 40px 100px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--accent);
  letter-spacing: -1px;
}
.stat-desc {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Phone Widget */
.hero-visual { display: flex; justify-content: center; }
.phone-widget {
  background: var(--navy);
  border-radius: 20px;
  padding: 24px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.1);
}
.phone-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.phone-label {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.phone-status {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 20px;
}
.phone-status.live {
  background: rgba(16, 185, 129, 0.2);
  color: #10B981;
}
.phone-waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 32px;
  margin-bottom: 16px;
  padding: 0 4px;
}
.bar {
  flex: 1;
  border-radius: 2px;
  background: rgba(232, 136, 58, 0.5);
  animation: wave 1.2s ease-in-out infinite;
}
.b1  { height: 40%; animation-delay: 0s; }
.b2  { height: 70%; animation-delay: 0.1s; }
.b3  { height: 100%; animation-delay: 0.2s; }
.b4  { height: 55%; animation-delay: 0.3s; }
.b5  { height: 85%; animation-delay: 0.4s; }
.b6  { height: 45%; animation-delay: 0.5s; }
.b7  { height: 90%; animation-delay: 0.6s; }
.b8  { height: 60%; animation-delay: 0.7s; }
.b9  { height: 80%; animation-delay: 0.8s; }
.b10 { height: 50%; animation-delay: 0.9s; }
.b11 { height: 75%; animation-delay: 1.0s; }
.b12 { height: 35%; animation-delay: 1.1s; }
@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.5); }
}
.phone-transcript {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 1.6;
}
.transcript-agent { color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.transcript-ai { color: #E8883A; }
.phone-tools {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tool-tag {
  font-size: 11px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  padding: 4px 10px;
  border-radius: 20px;
}

/* HOW IT WORKS */
.how-it-works {
  background: var(--bg-alt);
  padding: 80px 40px;
}
.hiw-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 56px;
}
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: start;
}
.step {}
.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--fg);
}
.step p { font-size: 15px; color: var(--fg-muted); line-height: 1.6; }
.step-arrow {
  color: var(--border);
  padding-top: 30px;
  display: flex;
  align-items: flex-start;
}

/* FEATURES */
.features {
  background: var(--bg);
  padding: 100px 40px;
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}
.feature-card:hover { background: #F2F0EB; }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--fg);
}
.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* OUTCOMES */
.outcomes {
  background: var(--navy);
  padding: 100px 40px;
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.outcomes-headline {
  color: var(--white);
}
.outcomes-body {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-top: 24px;
}
.outcomes-comparison {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}
.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 14px 20px;
  background: rgba(255,255,255,0.05);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.comp-col.human { color: rgba(255,255,255,0.4); }
.comp-col.ai { color: var(--accent); }
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
}
.comparison-row:last-child { border-bottom: none; }
.comp-label { color: rgba(255,255,255,0.5); }
.comp-val { color: rgba(255,255,255,0.7); }
.comp-val.highlight { color: var(--accent); font-weight: 600; }
.comp-val.human { color: rgba(255,255,255,0.5); }

/* CLOSING */
.closing {
  background: var(--accent);
  padding: 100px 40px;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-card {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  padding: 28px 32px;
  display: inline-block;
  text-align: left;
}
.cta-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.cta-body {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* FOOTER */
.footer {
  background: var(--fg);
  padding: 40px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  max-width: 360px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .phone-widget { max-width: 340px; }
  .steps { grid-template-columns: 1fr; gap: 8px; }
  .step-arrow { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 48px; }
  .navbar, .hero, .hiw-inner, .features-inner, .outcomes-inner, .closing-inner, .footer-inner { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-desc { max-width: 100%; }
}