/* ==================== TOKENS ==================== */
:root {
  --bg: #faf8f5;
  --bg-dark: #f2ede7;
  --fg: #1c1c1e;
  --fg-muted: #6b6b6b;
  --fg-subtle: #9e9e9e;
  --accent: #c85a1a;
  --accent-warm: #e8932a;
  --accent-dark: #9e3f0e;
  --border: #e5ddd4;
  --card-bg: #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 6px;
  --radius-lg: 14px;
}

/* ==================== RESET ==================== */
*, *::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); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ==================== NAV ==================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 48px;
  display: flex; align-items: center;
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 8px; }
.logo-mark {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--accent); color: #fff;
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  border-radius: var(--radius);
}
.logo-text { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--fg); letter-spacing: -0.01em; }

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 48px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200, 90, 26, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display); font-size: clamp(48px, 5vw, 72px);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px; color: var(--fg-muted); line-height: 1.65; max-width: 480px;
}

/* Booking mock */
.hero-visual { display: flex; flex-direction: column; gap: 20px; }
.booking-mock {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
}
.mock-header {
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px; background: var(--bg);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.mock-dots span:first-child { background: #ff5f57; }
.mock-dots span:nth-child(2) { background: #febc2e; }
.mock-dots span:last-child { background: #28c840; }
.mock-title { font-size: 12px; color: var(--fg-subtle); font-weight: 500; }
.mock-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }

.chat-bubble {
  max-width: 85%; padding: 10px 14px;
  border-radius: 12px; font-size: 13px; line-height: 1.5;
}
.bot { background: #f2ede7; color: var(--fg); align-self: flex-start; border-bottom-left-radius: 4px; }
.user { background: var(--accent); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.booking-confirm { background: #e8f5e9; color: #1b5e20; align-self: flex-start; }
.bubble-text { display: block; }

.mock-cal {
  margin: 6px 0 0; padding: 12px 16px;
  background: var(--bg); border-top: 1px solid var(--border);
}
.cal-row { display: flex; align-items: center; gap: 12px; }
.cal-day { font-size: 11px; color: var(--fg-subtle); width: 28px; text-transform: uppercase; }
.cal-date {
  width: 28px; height: 28px; background: var(--accent); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
}
.cal-time { font-size: 13px; color: var(--fg); flex: 1; }
.cal-badge { font-size: 11px; background: #e8f5e9; color: #1b5e20; padding: 2px 8px; border-radius: 20px; font-weight: 500; }

.mock-status {
  padding: 12px 20px; border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px; background: #faf8f5;
  font-size: 12px; color: var(--fg-subtle);
}
.status-dot { width: 8px; height: 8px; background: #28c840; border-radius: 50%; }

.stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.stat-card.accent { border-color: var(--accent); background: #fff8f5; }
.stat-val { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--fg); }
.stat-card.accent .stat-val { color: var(--accent); }
.stat-label { font-size: 12px; color: var(--fg-muted); line-height: 1.4; }

/* ==================== SECTION SHARED ==================== */
.section-header { max-width: 600px; margin-bottom: 56px; }
.section-label { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.section-title { font-family: var(--font-display); font-size: clamp(32px, 3.5vw, 48px); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--fg); }

/* ==================== HOW IT WORKS ==================== */
.how { padding: 100px 48px; background: var(--card-bg); }
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; gap: 0; max-width: 1000px; margin: 0 auto; }
.step-connector { width: 60px; height: 2px; background: var(--border); align-self: center; margin-top: 32px; }
.step { padding: 0 20px; }
.step-num { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--border); margin-bottom: 16px; line-height: 1; }
.step-title { font-size: 18px; font-weight: 600; margin-bottom: 12px; color: var(--fg); }
.step-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

/* ==================== INDUSTRIES ==================== */
.industries { padding: 100px 48px; background: var(--bg-dark); }
.industries-inner { max-width: 1200px; margin: 0 auto; }
.industries-label { max-width: 560px; margin-bottom: 56px; }
.industry-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.industry-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.industry-card:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(200, 90, 26, 0.08); }
.industry-icon { color: var(--accent); margin-bottom: 14px; }
.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.55; }

/* ==================== PRICING ==================== */
.pricing { padding: 100px 48px; background: var(--card-bg); }
.pricing .section-header { max-width: none; margin-bottom: 48px; }
.pricing-note { font-size: 16px; color: var(--fg-muted); margin-top: 16px; }
.pricing-tier { max-width: 640px; margin: 0 auto; }
.tier-card {
  background: var(--bg); border: 2px solid var(--fg);
  border-radius: var(--radius-lg); overflow: hidden;
}
.tier-header {
  padding: 36px 40px; background: var(--fg); color: var(--bg);
  display: flex; justify-content: space-between; align-items: center;
}
.tier-name { font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; }
.tier-price { text-align: right; }
.price-amount { font-family: var(--font-display); font-size: 48px; font-weight: 700; }
.price-period { display: block; font-size: 14px; opacity: 0.6; }
.tier-features { padding: 36px 40px; }
.tier-features li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: var(--fg); padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.tier-features li:last-child { border-bottom: none; }
.check { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent); margin-top: 1px; }
.tier-proof { padding: 28px 40px; background: var(--bg-dark); }
.tier-proof p { font-size: 17px; color: var(--fg); }
.tier-proof strong { font-family: var(--font-display); font-size: 22px; color: var(--accent); }
.proof-note { font-size: 13px; color: var(--fg-muted); margin-top: 8px; }

/* ==================== MANIFESTO ==================== */
.manifesto { padding: 100px 48px; background: var(--fg); color: var(--bg); }
.manifesto-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.manifesto-quote {
  font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 30px);
  font-style: italic; line-height: 1.4; margin-bottom: 28px;
  color: var(--bg);
  opacity: 0.9;
}
.manifesto-body { font-size: 16px; color: rgba(250,248,245,0.65); line-height: 1.7; margin-bottom: 16px; }
.manifesto-visual { display: flex; flex-direction: column; gap: 0; }
.big-num {
  font-family: var(--font-display); font-size: clamp(64px, 7vw, 96px);
  font-weight: 700; color: var(--accent); line-height: 1;
  padding: 24px 0 0;
}
.big-num.second { border-top: 1px solid rgba(255,255,255,0.15); margin-top: 16px; padding-top: 24px; }
.big-label { font-size: 14px; color: rgba(250,248,245,0.5); margin-top: 8px; max-width: 320px; line-height: 1.5; }

/* ==================== CLOSING ==================== */
.closing { padding: 100px 48px; background: var(--bg); }
.closing-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.closing-headline { font-family: var(--font-display); font-size: clamp(36px, 4vw, 52px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--fg); margin-bottom: 24px; }
.closing-body { font-size: 18px; color: var(--fg-muted); line-height: 1.65; margin-bottom: 40px; }
.accent { color: var(--accent); }
.cta-tag { font-size: 14px; color: var(--fg-muted); }
.cta-tag .accent { font-weight: 600; }

/* ==================== FOOTER ==================== */
.footer { padding: 48px; background: var(--bg-dark); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.footer-tagline { font-size: 14px; color: var(--fg-muted); }
.footer-copy { font-size: 12px; color: var(--fg-subtle); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: none; }
  .hero { padding-top: 100px; min-height: auto; }
  .hero-headline { font-size: 42px; }

  .steps { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }
  .step { padding: 0; }

  .industries-label { max-width: none; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }

  .manifesto-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 600px) {
  .nav { padding: 16px 24px; }
  .hero, .how, .industries, .pricing, .manifesto, .closing { padding: 72px 24px; }
  .footer { padding: 48px 24px; }
  .tier-header, .tier-features, .tier-proof { padding: 28px 24px; }
  .section-title { font-size: 32px; }
  .pricing .section-header { margin-bottom: 32px; }
  .industry-grid { grid-template-columns: 1fr; }
}