:root {
  --bg: #F8F6F1;
  --bg-alt: #F0EDE6;
  --fg: #1C1917;
  --fg-muted: #78716C;
  --accent: #0A5C4F;
  --accent-light: #0D7A67;
  --accent-glow: rgba(10, 92, 79, 0.12);
  --teal-light: #E8F4F1;
  --chat-bg: #FFFFFF;
  --chat-user-bg: #E8F4F1;
  --chat-bot-bg: #F0EDE6;
  --radius: 16px;
  --radius-sm: 8px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

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

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

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: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 246, 241, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28, 25, 23, 0.07);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
}

/* ─── HERO ──────────────────────────────── */
.hero {
  padding: 80px 24px 60px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 28px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-glow);
  color: var(--accent);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ─── CHAT WIDGET ───────────────────────── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.chat-widget {
  background: var(--chat-bg);
  border-radius: var(--radius);
  box-shadow: 0 4px 40px rgba(10, 92, 79, 0.12), 0 1px 3px rgba(0,0,0,0.06);
  width: 320px;
  overflow: hidden;
  border: 1px solid rgba(10, 92, 79, 0.08);
}
.chat-header {
  background: var(--accent);
  color: white;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.chat-header-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.chat-name {
  font-size: 0.85rem;
  font-weight: 600;
}
.chat-status {
  font-size: 0.7rem;
  opacity: 0.75;
}
.chat-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #FAFAF8;
}
.chat-msg p { font-size: 0.8rem; line-height: 1.5; }
.chat-msg.bot {
  background: var(--chat-bot-bg);
  border-radius: 12px 12px 12px 4px;
  padding: 10px 14px;
  align-self: flex-start;
  max-width: 85%;
}
.chat-msg.user {
  background: var(--accent);
  color: white;
  border-radius: 12px 12px 4px 12px;
  padding: 10px 14px;
  align-self: flex-end;
  max-width: 80%;
}
.chat-msg.bot.booking {
  background: var(--teal-light);
  border: 1px solid rgba(10, 92, 79, 0.15);
}
.booking-badge {
  display: inline-block;
  margin-top: 6px;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.chat-input-wrap {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: white;
}
.chat-input {
  flex: 1;
  height: 36px;
  background: #F5F3EF;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.08);
}
.chat-send {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 8px;
  flex-shrink: 0;
}

/* ─── HERO STATS ────────────────────────── */
.hero-stats {
  max-width: 1100px;
  margin: 56px auto 0;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 36px;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-top: 4px;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.08);
  margin: 0 32px;
}

/* ─── SECTION SHARED ────────────────────── */
section { padding: 80px 24px; }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
section > div > p, section > div > div > p {
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 500px;
}

/* ─── LEADS SECTION ──────────────────────── */
.leads { background: var(--bg-alt); }
.leads-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.phone-mock {
  background: #1C1917;
  border-radius: 20px;
  padding: 24px;
  width: 280px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.phone-screen {
  background: #2C2927;
  border-radius: 12px;
  padding: 16px;
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.notif-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.notif-dot.green { background: #22C55E; box-shadow: 0 0 6px #22C55E; }
.notif-text { font-size: 0.7rem; color: rgba(255,255,255,0.5); font-family: var(--font-body); }
.lead-card {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 8px;
}
.lead-name { font-size: 0.85rem; font-weight: 600; color: white; margin-bottom: 4px; }
.lead-meta { font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.lead-phone, .lead-urgent { font-size: 0.65rem; padding: 2px 8px; border-radius: 4px; display: inline-block; }
.lead-phone { background: rgba(10, 92, 79, 0.3); color: #5EEAD4; }
.lead-urgent { background: rgba(239, 68, 68, 0.2); color: #FCA5A5; }

.feature-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--fg);
}
.feature-list li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--accent-glow);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230A5C4F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── RECEPTION SECTION ──────────────────── */
.reception-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.reception-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.reception-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.reception-item > div { flex: 1; }
.reception-icon {
  width: 40px;
  height: 40px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.reception-item strong { font-size: 0.9rem; font-weight: 600; display: block; margin-bottom: 3px; }
.reception-item p { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.5; }

.calendar-mock {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
}
.cal-header {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cal-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.cal-row:last-child { border-bottom: none; }
.cal-time { font-size: 0.78rem; color: var(--fg-muted); }
.cal-name { font-size: 0.85rem; font-weight: 500; }
.cal-tag {
  font-size: 0.68rem;
  padding: 3px 8px;
  background: var(--bg-alt);
  border-radius: 4px;
  color: var(--fg-muted);
}
.cal-tag.ai { background: var(--teal-light); color: var(--accent); font-weight: 600; }
.cal-row.ai { margin-top: 8px; padding-top: 16px; border-top: 1px dashed rgba(0,0,0,0.08); border-bottom: none; }
.ai-label { color: var(--accent); font-weight: 600; font-size: 0.75rem; }

/* ─── RESULT SECTION ─────────────────────── */
.result { background: var(--bg-alt); }
.result-inner { max-width: 1100px; margin: 0 auto; }
.result-header { margin-bottom: 40px; }
.result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 0;
}
.result-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.result-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}
.result-card p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }
.result-cta-strip {
  margin-top: 36px;
  text-align: center;
}
.result-cta-strip p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--fg);
  font-style: italic;
}

/* ─── CLOSING ────────────────────────────── */
.closing { background: var(--accent); color: white; text-align: center; }
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
}
.closing p { color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 16px; }
.closing-sub { font-size: 0.9rem; color: rgba(255,255,255,0.6); }

/* ─── FOOTER ────────────────────────────── */
.footer { padding: 40px 24px; background: #1C1917; color: rgba(255,255,255,0.5); }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.footer-name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: white; }
.footer-tagline { font-size: 0.8rem; }
.footer-copy { font-size: 0.78rem; }

/* ─── RESPONSIVE ────────────────────────── */
@media (max-width: 768px) {
  .hero-inner, .leads-inner, .reception-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 48px 20px 40px; }
  .hero-visual { order: -1; }
  .hero-stats { flex-direction: column; gap: 20px; padding: 20px; }
  .stat-sep { width: 40px; height: 1px; margin: 0; }
  .result-grid { grid-template-columns: 1fr 1fr; }
  .phone-mock { width: 240px; }
  section { padding: 60px 20px; }
}
@media (max-width: 480px) {
  .result-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2rem; }
  .chat-widget { width: 100%; }
}