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

:root {
  --bg: #faf7f2;
  --fg: #1c1917;
  --muted: #78716c;
  --border: #e8e0d6;
  --accent: #c2712a;
  --accent-light: #fef3e8;
  --green: #16a34a;
  --surface: #ffffff;
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ── Nav ─────────────────────────────────────────── */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.5px;
}

.nav-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  transition: color 0.15s;
}

.nav-link:hover { color: var(--fg); }

.nav-link-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 7px 16px;
}

.nav-link-cta:hover { background: #a85f22; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  padding: 80px 48px 64px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-lede {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 460px;
}

/* ── Phone Mockup ─────────────────────────────────── */
.phone-frame {
  background: #1c1917;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.05);
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.phone-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.phone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

.phone-body {
  background: #272524;
  border-radius: 16px;
  padding: 16px;
  min-height: 320px;
}

.call-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 13px;
}

.call-incoming {
  background: rgba(255,255,255,0.06);
}

.call-icon { font-size: 16px; }
.call-name { color: rgba(255,255,255,0.9); font-weight: 500; flex: 1; }
.call-time { color: rgba(255,255,255,0.4); font-size: 11px; }

.ai-response {
  margin-bottom: 10px;
}

.ai-typing {
  font-size: 11px;
  color: var(--accent);
  font-style: italic;
}

.transcript {
  background: #1c1917;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 1.5;
}

.t-ai, .t-caller {
  margin-bottom: 8px;
  color: rgba(255,255,255,0.85);
}

.t-ai strong, .t-caller strong {
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.t-ai { color: var(--accent); }
.t-ai strong { color: rgba(194,113,42,0.7); }
.t-caller strong { color: rgba(255,255,255,0.3); }

.booking-confirmed {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 8px;
}

.check { font-weight: 700; }

/* ── Stats ────────────────────────────────────────── */
.stats {
  padding: 56px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  flex: 1;
  padding: 0 40px;
}

.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; }

.stat-value {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.stat-divider {
  width: 1px;
  height: 64px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Features ─────────────────────────────────────── */
.features {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.features-header {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}

.features-header h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.features-sub {
  font-size: 17px;
  color: var(--muted);
}

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: box-shadow 0.2s ease;
}

.feature:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.feature h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.feature p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── How ──────────────────────────────────────────── */
.how {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how-inner h2 {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

.steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.step {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.6;
}

.step-body h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}

.step-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.step-arrow {
  width: 40px;
  height: 2px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 20px;
  margin-top: 18px;
}

/* ── Call Demo ────────────────────────────────────── */
.call-demo {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  background: var(--accent-light);
}

.call-demo-inner {
  max-width: 600px;
  margin: 0 auto;
}

.call-demo-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(194,113,42,0.12);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.call-demo-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.call-demo-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

.call-number-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--fg);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s;
  margin-bottom: 16px;
}

.call-number-btn:hover { background: #333; }

.call-icon { font-size: 22px; }
.call-number { font-family: monospace; }

.call-steps {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.call-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* ── Closing ──────────────────────────────────────── */
.closing {
  padding: 96px 48px;
  text-align: center;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}

.closing-quote {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.closing-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 40px;
}

.closing-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-primary:hover { background: #a85f22; }

/* ── Footer ───────────────────────────────────────── */
.footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 18px;
  color: var(--fg);
}

.footer-tagline {
  flex: 1;
  font-size: 14px;
  color: var(--muted);
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 48px 24px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .stats { padding: 40px 24px; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .stat { padding: 0; }
  .stat-divider { width: 48px; height: 1px; }
  .features { padding: 56px 24px; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .how { padding: 56px 24px; }
  .steps { flex-direction: column; gap: 24px; }
  .step-arrow { display: none; }
  .closing { padding: 64px 24px; }
  .footer { padding: 24px; }
  .footer-inner { flex-wrap: wrap; }
  .footer-tagline { display: none; }
}

@media (max-width: 480px) {
  .stat-value { font-size: 40px; }
  .how-inner h2 { font-size: 28px; }
}