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

:root {
  --bg: #0c0c0e;
  --bg-card: #131318;
  --bg-elevated: #1a1a22;
  --fg: #f0ede8;
  --fg-muted: #8a8690;
  --accent: #d4871c;
  --accent-dim: rgba(212, 135, 28, 0.12);
  --accent-text: #d4871c;
  --border: rgba(240, 237, 232, 0.07);
  --radius: 10px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { font-size: 16px; }

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

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* NAV */
.nav {
  padding: 1.25rem 2rem;
  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-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* HERO */
.hero { padding: 5rem 2rem 4rem; }
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(212, 135, 28, 0.25);
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.accent { color: var(--accent); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 420px;
}
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-stat { display: flex; align-items: baseline; gap: 0.75rem; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label { font-size: 0.82rem; color: var(--fg-muted); }

/* WIDGET */
.hero-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
}
.widget-header {
  background: var(--bg-elevated);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.widget-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.widget-dot.green { background: #22c55e; }
.widget-dot.amber { background: var(--accent); }
.widget-dot.red { background: #ef4444; }
.widget-title {
  margin-left: 0.5rem;
  font-size: 0.72rem;
  color: var(--fg-muted);
  font-weight: 400;
}
.widget-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.9rem; }
.msg { display: flex; gap: 0.75rem; align-items: flex-start; }
.msg-icon { font-size: 1.1rem; flex-shrink: 0; width: 28px; }
.msg-label { font-size: 0.8rem; font-weight: 500; color: var(--fg); }
.msg-time { font-size: 0.72rem; color: var(--fg-muted); margin-top: 0.1rem; }
.msg-text { font-size: 0.78rem; color: var(--fg-muted); font-style: italic; margin-top: 0.2rem; }
.msg-ai-reply {
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 0.3rem;
  padding: 0.4rem 0.7rem;
  background: var(--accent-dim);
  border-radius: 6px;
  border-left: 2px solid var(--accent);
}
.msg-booked { background: rgba(34, 197, 94, 0.08); border-radius: 8px; padding: 0.6rem 0.8rem; }
.booked-label { color: #22c55e; }
.widget-footer {
  border-top: 1px solid var(--border);
  padding: 0.75rem 1.25rem;
  background: var(--bg-elevated);
}
.widget-footer-text { font-size: 0.7rem; color: var(--fg-muted); }

/* PAIN */
.pain { padding: 5rem 2rem; background: #0e0e12; }
.pain-inner { max-width: 1100px; margin: 0 auto; }
.pain-header { text-align: center; margin-bottom: 3.5rem; }
.pain-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 500px;
  margin: 0 auto;
}
.pain-headline em { color: var(--accent); font-style: normal; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.pain-icon { font-size: 1.6rem; margin-bottom: 1rem; }
.pain-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.pain-card p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }
.pain-cta {
  text-align: center;
  margin-top: 3rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}

/* FEATURES */
.features { padding: 5rem 2rem; }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 560px;
  margin-bottom: 3rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.feature-icon { font-size: 1.4rem; margin-bottom: 1rem; }
.feature h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.feature p { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.65; }

/* SOCIAL PROOF */
.social-proof { padding: 5rem 2rem; background: #0e0e12; }
.sp-inner { max-width: 1100px; margin: 0 auto; }
.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.sp-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  background: var(--bg-card);
}
.sp-icon { font-size: 1.4rem; margin-bottom: 0.75rem; }
.sp-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.sp-card p { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.6; }
.sp-note { margin-top: 2.5rem; text-align: center; }
.sp-note p { font-size: 0.85rem; color: var(--fg-muted); }

/* PRICING */
.pricing { padding: 5rem 2rem; }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 3rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: rgba(212, 135, 28, 0.04);
}
.p-tier {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}
.p-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1;
}
.p-per { font-size: 1.2rem; font-weight: 400; color: var(--fg-muted); }
.p-setup { font-size: 0.75rem; color: var(--fg-muted); margin-top: 0.3rem; margin-bottom: 1.5rem; }
.p-features { list-style: none; margin-bottom: 1.5rem; flex: 1; }
.p-features li {
  font-size: 0.82rem;
  color: var(--fg-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.p-features li:last-child { border-bottom: none; }
.p-tag { font-size: 0.72rem; color: var(--fg-muted); font-style: italic; }
.pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.pricing-note strong { color: var(--fg); }

/* PROCESS */
.process { padding: 5rem 2rem; background: #0e0e12; }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 3rem;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step { position: relative; }
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(212, 135, 28, 0.15);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.8rem; color: var(--fg-muted); line-height: 1.6; }

/* CLOSING */
.closing { padding: 6rem 2rem; text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.closing-sub { font-size: 1rem; color: var(--fg-muted); margin-bottom: 2rem; }
.closing-cta-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
}

/* FOOTER */
.footer { padding: 3rem 2rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.footer-desc { font-size: 0.8rem; color: var(--fg-muted); margin-bottom: 1.25rem; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}
.footer-links .sep { color: var(--border); }
.footer-bottom { font-size: 0.72rem; color: var(--fg-muted); opacity: 0.5; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pain-grid, .features-grid, .sp-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .hero-headline { font-size: 2.2rem; }
  .pain, .features, .social-proof, .pricing, .process, .closing { padding: 3.5rem 1.25rem; }
  .pain-grid, .features-grid, .sp-grid, .pricing-grid, .process-steps { grid-template-columns: 1fr; }
  .nav { padding: 1rem 1.25rem; }
  .p-price { font-size: 2.2rem; }
}