/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #faf9f7;
  --bg-alt: #f3f0eb;
  --fg: #1a1714;
  --fg-muted: #6b6560;
  --accent: #d97706;
  --accent-hover: #b45309;
  --accent-light: #fef3c7;
  --surface: #ffffff;
  --border: #e8e4dc;
  --success: #16a34a;
  --font-display: 'Bricolage Grotesque', 'Georgia', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAVIGATION === */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo strong { font-weight: 700; }
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-proof {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.hero-stat {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.hero-stat-sep {
  font-size: 0.95rem;
  color: var(--fg-muted);
}
.hero-formula {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  padding: 8px 14px;
  background: var(--bg-alt);
  border-radius: 6px;
  display: inline-block;
}

/* === CALL WIDGET === */
.call-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}
.call-widget-header {
  background: #1a1714;
  color: #faf9f7;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
}
.call-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6b6560;
  flex-shrink: 0;
}
.call-dot.active {
  background: #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.call-time { margin-left: auto; color: #d97706; font-weight: 600; }
.call-widget-body { padding: 16px; }
.ai-response { margin-bottom: 12px; }
.ai-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 6px; }
.ai-bubble {
  background: var(--bg-alt);
  border-radius: 10px 10px 10px 2px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--fg);
  line-height: 1.55;
}
.booking-confirmed {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--success);
  background: #f0fdf4;
  padding: 8px 12px;
  border-radius: 8px;
}
.call-widget-footer {
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-align: center;
}
.call-widget-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
}
.start-demo-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.15s;
}
.start-demo-btn:hover { background: var(--accent-hover); }
.mic-hint { font-size: 0.72rem; color: var(--fg-muted); }

/* Hero left/right split */
.hero-left { display: flex; flex-direction: column; }
.hero-right { display: flex; flex-direction: column; }
.call-widget { flex: 1; }

/* === SECTION LABELS === */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* === PROBLEM SECTION === */
.problem {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
}
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem-statement {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 640px;
  margin-bottom: 48px;
}
.problem-statement strong { color: var(--accent); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.problem-icon { margin-bottom: 14px; }
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.problem-card p { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.6; }
.problem-bottom { font-size: 0.95rem; color: var(--fg); font-weight: 500; max-width: 520px; }

/* === HOW SECTION === */
.how { padding: 80px 24px; }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-intro {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 48px;
  max-width: 520px;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.how-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  position: relative;
}
.how-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--border);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  line-height: 1;
}
.how-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.how-card p { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.6; }

/* === OUTCOMES SECTION === */
.outcomes {
  background: #1a1714;
  color: #faf9f7;
  padding: 80px 24px;
}
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes .section-label { color: #d97706; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.outcome {}
.outcome-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: #d97706;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.outcome-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9b908a;
  margin-bottom: 10px;
}
.outcome-desc { font-size: 0.85rem; color: #d1ccc6; line-height: 1.55; }

/* === PROCESS SECTION === */
.process { padding: 80px 24px; }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-intro { font-size: 1.05rem; color: var(--fg-muted); margin-bottom: 48px; max-width: 440px; }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step-line {
  width: 2px;
  min-height: 90px;
  background: var(--border);
  margin: 0 20px 0 7px;
  flex-shrink: 0;
}
.process-step:last-child .step-line { display: none; }
.step-content { padding: 0 0 36px 0; flex: 1; }
.step-day {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.step-content p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; max-width: 480px; }

/* === CLOSING === */
.closing {
  background: var(--accent-light);
  border-top: 1px solid #fde68a;
  padding: 96px 24px;
}
.closing-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--fg);
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--fg);
}
.footer-logo strong { font-weight: 700; }
.footer-brand p { font-size: 0.82rem; color: var(--fg-muted); margin-top: 4px; }
.footer-meta { font-size: 0.8rem; color: var(--fg-muted); text-align: right; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 48px 20px 56px; }
  .hero-headline { font-size: 2rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
  .step-line { display: none; }
}
@media (max-width: 480px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-formula { font-size: 0.82rem; }
  .call-widget-header { font-size: 0.7rem; }
}