:root {
  --bg: #F7F4EF;
  --bg-alt: #EEEAE3;
  --fg: #1A1A1A;
  --fg-muted: #6B6B6B;
  --accent: #1A3C34;
  --accent-warm: #C8561D;
  --amber: #F59E0B;
  --white: #FFFFFF;
  --border: #D9D4CC;
  --green-deep: #1A3C34;
  --green-light: #F0F7F4;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #8A8A8A;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
}

*, *::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;
}

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-dark);
}
.logo-mark {
  font-size: 20px;
  color: var(--accent-warm);
}
.logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 400;
}

/* ── HERO ── */
.hero {
  padding: 80px 24px 60px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero-stat-block {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.stat-row {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}
.stat-row:last-child { margin-bottom: 0; }
.stat { flex: 1; }
.stat-wide { flex: 1; }
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Phone mockup */
.hero-visual {}
.phone-mockup {
  background: #111111;
  border-radius: 28px;
  padding: 20px;
  max-width: 280px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
}
.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 4px;
}
.phone-time { font-size: 12px; color: rgba(255,255,255,0.6); font-family: var(--font-body); }
.phone-signal { font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 2px; }
.phone-thread { display: flex; flex-direction: column; gap: 12px; }
.thread-missed { display: flex; flex-direction: column; align-items: flex-start; }
.thread-reply { display: flex; flex-direction: column; align-items: flex-end; }
.thread-confirm { display: flex; flex-direction: column; align-items: flex-end; }
.msg-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
  font-family: var(--font-body);
}
.missed-bubble { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border-bottom-left-radius: 4px; }
.reply-bubble { background: #1A3C34; color: #fff; border-bottom-right-radius: 4px; }
.confirm-bubble { background: #2D6A4F; color: #fff; border-bottom-right-radius: 4px; font-size: 12px; }
.book-link { color: #86EFAC; text-decoration: underline; }
.msg-time { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 4px; padding: 0 4px; }
.ai-tag { background: rgba(255,255,255,0.15); border-radius: 4px; padding: 1px 6px; font-size: 10px; color: rgba(255,255,255,0.6); }

.hero-right {}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-warm);
  background: rgba(200,86,29,0.1);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px;
}
.hero-promise {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.promise-item {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
}

/* ── PROOF ── */
.proof {
  padding: 40px 24px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.proof-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 600;
}
.proof-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.proof-chip {
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
}

/* ── HOW ── */
.how {
  padding: 80px 24px;
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-warm);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  max-width: 640px;
  letter-spacing: -0.02em;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step {}
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--amber);
  margin-bottom: 16px;
  line-height: 1;
}
.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.step-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── FEATURES ── */
.features {
  padding: 80px 24px;
  background: var(--accent);
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.features .section-tag { color: #86EFAC; }
.features .section-title { color: #FFFFFF; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature {
  background: var(--accent);
  padding: 36px 32px;
  transition: background 0.2s;
}
.feature:hover { background: #1F4D42; }
.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.3;
}
.feature-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ── PRICING ── */
.pricing {
  padding: 80px 24px;
  background: var(--bg);
}
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}
.card-featured {
  border-color: var(--accent-warm);
  box-shadow: 0 0 0 1px var(--accent-warm);
}
.card-badge {
  display: inline-block;
  background: var(--accent-warm);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.card-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 8px;
}
.card-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1;
}
.price-unit { font-size: 20px; font-weight: 400; }
.card-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 24px;
}
.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-features li {
  font-size: 14px;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.card-features li::before {
  content: '→';
  color: var(--accent-warm);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-note {
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 24px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-cta {}
.form-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.form-row input {
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  min-width: 180px;
  transition: border-color 0.15s;
}
.form-row input:focus {
  outline: none;
  border-color: var(--accent-warm);
}
.form-row button {
  padding: 14px 28px;
  background: var(--accent-warm);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.form-row button:hover { background: #b34d1a; }
.form-row button:active { transform: scale(0.97); }
.form-row button:disabled { opacity: 0.6; cursor: not-allowed; }
.form-success {
  background: var(--green-light);
  color: var(--accent);
  padding: 16px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--accent);
}
.form-error {
  color: #B91C1C;
  font-size: 14px;
  margin-top: 10px;
}
.cta-tagline {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-mid);
}

/* ── FOOTER ── */
.site-footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.footer-logo-mark { font-size: 18px; color: var(--accent-warm); }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.footer-legal {
  font-size: 13px;
  color: var(--text-light);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-left { order: 2; }
  .hero-right { order: 1; }
  .hero-stat-block { padding: 20px; }
  .stat-value { font-size: 28px; }
  .phone-mockup { max-width: 100%; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 48px 20px 40px; }
  .how, .features, .pricing, .closing { padding: 60px 20px; }
  .proof { padding: 32px 20px; }
  .nav-tagline { display: none; }
  .hero-headline { font-size: 28px; }
  .section-title { font-size: 26px; }
  .closing-headline { font-size: 26px; }
}