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

:root {
  --bg: #F7F4EE;
  --bg-alt: #EDE8DC;
  --fg: #1A1714;
  --fg-muted: #6B6560;
  --accent: #E8560A;
  --accent-dark: #C44308;
  --surface: #FFFFFF;
  --border: #DDD8CF;
  --success: #2D8A5E;
  --step-sent: #E8560A;
  --step-booked: #2D8A5E;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  line-height: 1.15;
  font-weight: 700;
}

/* Navigation */
.nav {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Hero */
.hero {
  padding: 5rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-cta-line {
  font-size: 0.875rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* Call Widget */
.call-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.call-widget-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}
.call-widget-number {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 0.25rem;
}
.call-widget-phone {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
}
.call-widget-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.25rem;
}
.call-widget-response {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.response-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--fg);
}
.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.step-dot.sent { background: var(--step-sent); }
.step-dot.booked { background: var(--step-booked); }
.call-widget-saved {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
  text-align: center;
  padding: 0.6rem;
  background: #EDFAF4;
  border-radius: 8px;
}

/* Proof bar */
.proof {
  background: var(--fg);
  padding: 2.5rem 2rem;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.proof-stat {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}
.proof-number {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.proof-desc {
  font-size: 0.8rem;
  color: #A09890;
  line-height: 1.4;
  max-width: 180px;
  margin: 0 auto;
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: #3A3530;
  flex-shrink: 0;
}

/* Features */
.features {
  padding: 5rem 2rem;
  background: var(--bg);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.features-headline {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--fg);
  margin-bottom: 3rem;
  max-width: 560px;
  letter-spacing: -0.02em;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: box-shadow 0.2s ease;
}
.feature-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.6rem;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
}
.feature-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* How it works */
.howitworks {
  padding: 5rem 2rem;
  background: var(--bg-alt);
}
.howitworks-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.howitworks-headline {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--fg);
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 4rem;
}
.step {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
}
.step-number {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.75rem;
  line-height: 1;
}
.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
}
.step-desc {
  font-size: 0.825rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 2.5rem;
  color: var(--border);
  flex-shrink: 0;
}

.howitworks-pricing {
  text-align: center;
  padding: 3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.pricing-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}
.pricing-figure {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pricing-period {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg-muted);
}
.pricing-note {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* Closing */
.closing {
  padding: 5rem 2rem 6rem;
  background: var(--fg);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.closing-stripe {
  max-width: 700px;
}
.closing-headline {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.closing-sub {
  font-size: 1.05rem;
  color: #A09890;
  line-height: 1.7;
  max-width: 560px;
}

/* Footer */
.footer {
  padding: 2rem;
  border-top: 1px solid #2E2A26;
  background: var(--fg);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: #6B6560;
}
.footer-meta {
  font-size: 0.8rem;
  color: #6B6560;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-right {
    order: -1;
  }
  .proof-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
  .proof-divider {
    width: 48px;
    height: 1px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    flex-direction: column;
  }
  .step-arrow {
    display: none;
  }
  .hero {
    padding: 3rem 1.5rem 2.5rem;
  }
  .features, .howitworks, .closing {
    padding: 3.5rem 1.5rem;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}