:root {
  --bg: #0c1523;
  --bg-2: #111d2e;
  --bg-light: #f8f6f2;
  --fg: #f0ede6;
  --fg-muted: #9a9490;
  --accent: #f59e0b;
  --accent-dim: #b45309;
  --green: #22c55e;
  --blue: #3b82f6;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

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

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;
}

/* — NAVBAR — */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.nav-tag {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
}

/* — HERO — */
.hero {
  padding: 80px 40px 60px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero-verticals {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--fg-muted);
}
.hero-verticals .dot { color: var(--accent); }

/* — PHONE FRAME — */
.hero-visual {
  display: flex;
  justify-content: center;
}
.phone-frame {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05) inset;
}
.phone-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--green);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.phone-chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.msg { border-radius: 12px; padding: 10px 12px; font-size: 12px; line-height: 1.5; }
.msg-in { background: #1e2d3d; color: var(--fg); align-self: flex-start; max-width: 90%; }
.msg-out { background: rgba(245,158,11,0.15); color: var(--fg); align-self: flex-end; max-width: 90%; border: 1px solid rgba(245,158,11,0.2); }
.msg-out.booked { border-color: var(--green); background: rgba(34,197,94,0.1); }
.time { display: block; font-size: 10px; color: var(--fg-muted); margin-top: 4px; }
.booked-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 10px;
  border-radius: 20px;
  margin-top: 4px;
  align-self: flex-end;
}

/* — STATS — */
.stats-row {
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.stat { text-align: center; flex: 1; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
}
.stat-label { font-size: 13px; color: var(--fg-muted); line-height: 1.5; max-width: 200px; margin: 0 auto; display: block; margin-top: 6px; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.1); }

/* — FEATURES — */
.features {
  padding: 80px 40px;
  background: var(--bg);
}
.features-header { max-width: 1200px; margin: 0 auto 56px; }
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.features-header h2, .process-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--fg);
}
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg);
  padding: 32px;
}
.feature-card.large { grid-column: span 1; }
.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* — PROCESS — */
.process {
  padding: 80px 40px;
  background: var(--bg-light);
}
.process-header { max-width: 1200px; margin: 0 auto 56px; }
.process-header h2 { color: #1a1a1a; }
.process-header .section-label { color: var(--accent-dim); }
.process-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.step {
  flex: 1;
  padding: 0 24px;
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-dim);
  opacity: 0.3;
  margin-bottom: 12px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.step p { font-size: 14px; color: #5a5a5a; line-height: 1.6; }
.step-connector {
  width: 40px;
  flex-shrink: 0;
  height: 1px;
  background: #d1cfc9;
  position: relative;
  top: -24px;
}
.process-pricing {
  max-width: 1200px;
  margin: 40px auto 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}
.pricing-note {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: #888;
  margin-top: 6px;
}

/* — CLOSER — */
.closer {
  padding: 100px 40px;
  background: var(--bg);
  text-align: center;
}
.closer-inner { max-width: 700px; margin: 0 auto; }
.closer h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 24px;
}
.closer p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}

/* — FOOTER — */
.site-footer {
  padding: 48px 40px;
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 8px;
}
.footer-tagline { font-size: 13px; color: var(--fg-muted); margin-bottom: 24px; }
.footer-divider { width: 40px; height: 1px; background: rgba(255,255,255,0.1); margin: 0 auto 20px; }
.footer-copy { font-size: 12px; color: #555; }

/* — RESPONSIVE — */
@media (max-width: 768px) {
  .navbar { padding: 16px 20px; }
  .hero { padding: 48px 20px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .phone-frame { width: 260px; }
  .stats-row { flex-direction: column; gap: 24px; padding: 32px 20px; }
  .stat-divider { width: 60px; height: 1px; }
  .features { padding: 48px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .process { padding: 48px 20px; }
  .process-steps { flex-direction: column; gap: 0; }
  .step { padding: 0 0 32px; }
  .step-connector { width: 1px; height: 24px; margin: 0 auto; top: 0; }
  .closer { padding: 64px 20px; }
}
