:root {
  --bg: #faf8f5;
  --bg-alt: #f0ebe3;
  --fg: #1a1a2e;
  --fg-muted: #5c5c6d;
  --accent: #e85d2d;
  --accent-dark: #c94d20;
  --white: #ffffff;
  --border: #e0d9cf;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-logo strong { font-weight: 700; }
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 48px;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 120px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* CALL WIDGET */
.call-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(26,26,46,0.08), 0 4px 16px rgba(26,26,46,0.04);
  font-family: var(--font-body);
}
.call-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.call-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.call-info { flex: 1; }
.call-name { font-weight: 600; font-size: 15px; }
.call-status { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }
.call-pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.call-transcript {
  background: var(--bg);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.transcript-caller, .transcript-ai {
  font-size: 14px;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 10px;
}
.transcript-caller {
  background: #f0ebe3;
  color: var(--fg);
  align-self: flex-end;
  max-width: 85%;
}
.transcript-ai {
  background: var(--fg);
  color: var(--white);
  align-self: flex-start;
  max-width: 85%;
}
.call-actions {
  display: flex;
  gap: 16px;
}
.action {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.action.booked { background: #dcfce7; color: #15803d; }
.action.sms { background: #dbeafe; color: #1d4ed8; }

/* HOW IT WORKS */
.how-it-works {
  background: var(--fg);
  color: var(--white);
  padding: 100px 48px;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 64px;
  max-width: 700px;
  letter-spacing: -0.5px;
}
.steps {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.step {
  flex: 1;
  padding: 40px 40px 40px 0;
}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
}
.step-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}
.step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.step-arrow {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 52px;
  position: relative;
}
.step-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: rgba(255,255,255,0.2);
}

/* FEATURES */
.features {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  padding: 40px 36px;
  background: var(--white);
  border: 1px solid var(--border);
  margin: -1px;
}
.feature-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}
.feature-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* INDUSTRIES */
.industries {
  background: var(--bg-alt);
  padding: 100px 48px;
}
.industries-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.industries-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-top: 20px;
}
.industries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}
.industry-emoji {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}
.industry-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}
.industry-card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  background: var(--accent);
  padding: 100px 48px;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 24px;
}
.closing-tagline {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-size: 18px;
  font-weight: 400;
  color: var(--fg);
}
.footer-logo strong { font-weight: 700; }
.footer-desc {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 6px;
}
.footer-links {
  font-size: 13px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 60px; padding: 60px 32px 80px; }
  .hero-stats { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .industries-inner { grid-template-columns: 1fr; gap: 48px; }
  .how-it-works { padding: 80px 32px; }
  .features { padding: 80px 32px; }
  .industries { padding: 80px 32px; }
  .closing { padding: 80px 32px; }
}
@media (max-width: 600px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 48px 24px 64px; }
  .features-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .section-headline { margin-bottom: 40px; }
}