:root {
  --bg: #FAFAF7;
  --bg-alt: #F2F0EB;
  --text: #1C1C1A;
  --text-muted: #6A6A60;
  --accent: #D94F3D;
  --accent-dark: #B33D2D;
  --accent-light: #F5E8E6;
  --green: #2D8A5F;
  --green-light: #E6F4ED;
  --surface: #FFFFFF;
  --border: #E4E1D8;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217,79,61,0.06) 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;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.hero-text h1 {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-lede {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
}

/* WIDGET */
.hero-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.widget-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.automation-demo {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: 10px;
}

.demo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.demo-icon.missed { background: #FFF3F2; color: var(--accent); }
.demo-icon.sent { background: #EFF4FF; color: #3B6FE0; }
.demo-icon.booked { background: var(--green-light); color: var(--green); }

.demo-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.demo-time {
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'DM Mono', monospace;
}

.demo-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.demo-status {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.missed-badge { background: #FFF3F2; color: var(--accent); }
.sent-badge { background: #EFF4FF; color: #3B6FE0; }
.booked-badge { background: var(--green-light); color: var(--green); }

.demo-arrow {
  display: flex;
  justify-content: center;
  color: var(--text-muted);
  opacity: 0.4;
}

.demo-message {
  background: var(--accent-light);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
  font-style: italic;
}

/* PROOF */
.proof {
  padding: 48px;
  background: var(--text);
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.proof-stat {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}

.proof-number {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.proof-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.proof-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.12);
}

/* FEATURES */
.features {
  padding: 96px 48px;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-header.centered {
  margin: 0 auto 64px;
  text-align: center;
  max-width: 560px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}

.feature-card:hover {
  background: var(--surface);
}

.feature-card.feature-primary {
  grid-column: span 2;
  background: var(--surface);
  border-right: 1px solid var(--border);
}

.feature-card.feature-primary h3 {
  font-size: 24px;
}

.feature-card.feature-primary p {
  font-size: 15px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* HOW IT WORKS */
.howitworks {
  padding: 96px 48px;
  background: var(--bg-alt);
}

.howitworks-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 32px;
}

.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-connector {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin-top: 28px;
  flex-shrink: 0;
}

/* PRICING */
.pricing {
  padding: 96px 48px;
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 8px 40px rgba(217,79,61,0.12);
}

.pricing-top {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.pricing-price {
  font-family: 'Fraunces', serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-price span {
  font-size: 24px;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-note {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.pricing-feature svg {
  color: var(--green);
  flex-shrink: 0;
}

/* CLOSING */
.closing {
  padding: 96px 48px;
  background: var(--text);
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.closing h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.closing p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-quote blockquote {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 16px;
}

.closing-quote cite {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-style: normal;
}

/* FOOTER */
footer {
  padding: 64px 48px 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col div {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 10px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero {
    padding: 64px 24px;
    min-height: auto;
  }
  .proof-inner {
    flex-direction: column;
    gap: 32px;
  }
  .proof-divider {
    width: 80px;
    height: 1px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-card.feature-primary {
    grid-column: span 1;
  }
  .steps-row {
    flex-direction: column;
    gap: 40px;
  }
  .step-connector {
    width: 40px;
    height: 1px;
    margin-top: 0;
  }
  .features, .howitworks, .pricing, .closing {
    padding: 64px 24px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }
  .footer-links {
    flex-direction: column;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .proof {
    padding: 32px 24px;
  }
  .proof-stat {
    padding: 0;
  }
  .pricing-card {
    padding: 32px 24px;
  }
}