:root {
  --bg: #0D0D14;
  --surface: #13131C;
  --surface2: #1A1A25;
  --amber: #E8A838;
  --amber-dim: #C48B2A;
  --offwhite: #F7F4EE;
  --muted: #8A8A9A;
  --border: #252535;
  --text: #E8E6E1;
  --text-dim: #9A9AAA;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--offwhite);
  letter-spacing: -0.02em;
}
.nav-badge {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--amber-dim);
  padding: 3px 8px;
  border-radius: 2px;
}

/* HERO */
.hero {
  padding: 80px 48px 100px;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 8px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  font-weight: 800;
  color: var(--amber);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.stat-unit {
  font-size: 18px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
}
.hero-copy {}
.hero-kicker {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-copy h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--offwhite);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.7;
}

/* PROBLEM */
.problem {
  padding: 80px 48px;
  background: var(--surface);
}
.problem-inner { max-width: 1100px; }
.problem-headline {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--offwhite);
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.problem-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 28px 28px 32px;
}
.problem-icon {
  color: var(--amber);
  font-size: 10px;
  margin-bottom: 16px;
}
.problem-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--offwhite);
  margin-bottom: 12px;
}
.problem-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* HOW */
.how {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.how-inner { max-width: 1100px; }
.how-kicker {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.how-headline {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--offwhite);
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}
.how-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.how-step:first-child { border-top: 1px solid var(--border); }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--amber);
  opacity: 0.5;
  line-height: 1;
}
.step-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--offwhite);
  margin-bottom: 8px;
}
.step-body p {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 560px;
}
.how-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.badge {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--offwhite);
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 2px;
}
.badge:first-child { border-color: var(--amber-dim); color: var(--amber); }

/* DASHBOARD */
.dashboard {
  padding: 80px 48px;
  background: var(--surface);
}
.dashboard-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
}
.dash-kicker {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.dashboard-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--offwhite);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.dash-desc {
  font-size: 15px;
  color: var(--text-dim);
}
.dashboard-mock {
  background: #0A0A12;
  border: 1px solid var(--border);
  overflow: hidden;
}
.mock-topbar {
  background: var(--surface2);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
}
.mock-dot.live { background: #4ADE80; }
.mock-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  margin-left: 4px;
}
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}
.mock-stat {
  padding: 16px;
  border-right: 1px solid var(--border);
}
.mock-stat:last-child { border-right: none; }
.mock-stat-val {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--offwhite);
}
.mock-stat-label {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mock-chart {
  padding: 20px 16px 12px;
  border-bottom: 1px solid var(--border);
}
.chart-label {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 80px;
  margin-bottom: 8px;
}
.bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}
.bar {
  width: 100%;
  border-radius: 2px 2px 0 0;
}
.bar.leads { background: var(--amber); }
.bar.appts { background: var(--border); }
.chart-legend {
  display: flex;
  gap: 16px;
  font-size: 10px;
  color: var(--muted);
}
.chart-legend span { display: flex; align-items: center; gap: 4px; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot.leads { background: var(--amber); }
.dot.appts { background: var(--border); border: 1px solid var(--muted); }
.mock-activity {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.activity-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.activity-icon {
  width: 22px;
  height: 22px;
  background: var(--surface2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 600;
  color: var(--amber);
  flex-shrink: 0;
}
.activity-text {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.4;
}

/* VS TABLE */
.vs {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.vs-inner { max-width: 1100px; }
.vs-headline {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--offwhite);
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}
.vs-table {
  border: 1px solid var(--border);
  overflow: hidden;
}
.vs-row {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.vs-row:last-child { border-bottom: none; }
.vs-row.vs-header {
  background: var(--surface2);
}
.vs-header .vs-feature {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.vs-header .vs-col {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
.vs-header .bookd-col { color: var(--amber); }
.vs-feature {
  font-size: 14px;
  color: var(--text-dim);
  padding: 14px 20px;
  border-right: 1px solid var(--border);
}
.vs-cell {
  font-size: 16px;
  text-align: center;
  padding: 14px 12px;
  border-right: 1px solid var(--border);
}
.vs-cell:last-child { border-right: none; }
.check { color: var(--amber); }
.partial { color: var(--text-dim); font-size: 13px; }
.no { color: var(--surface2); }

/* TESTIMONIALS */
.testimonials {
  padding: 80px 48px;
  background: var(--surface);
}
.testimonials-inner { max-width: 1100px; }
.testi-kicker {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.testi-headline {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--offwhite);
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.testi-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.testi-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 32px;
}
.testi-quote {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.testi-attr {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-initial {
  width: 36px;
  height: 36px;
  background: var(--amber);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--offwhite);
}
.testi-role {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  border-bottom: 1px solid var(--border);
}
.closing-inner { max-width: 720px; }
.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--offwhite);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.closing p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* FOOTER */
footer {
  padding: 28px 48px;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--offwhite);
}
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav, .hero, .problem, .how, .dashboard, .vs, .testimonials, .closing, footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero { padding-top: 48px; padding-bottom: 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-number { font-size: 80px; }
  .hero-copy h1 { font-size: 28px; }
  .problem-cards { grid-template-columns: 1fr; gap: 16px; }
  .dashboard-inner { grid-template-columns: 1fr; gap: 48px; }
  .vs-row { grid-template-columns: 1.5fr repeat(4, 1fr); }
  .vs-feature { font-size: 11px; padding: 10px 8px; }
  .vs-cell { font-size: 12px; padding: 10px 4px; }
  .testi-cards { grid-template-columns: 1fr; }
  .closing h2 { font-size: 28px; }
}