:root {
  --bg: #faf7f2;
  --bg-alt: #f3ede4;
  --fg: #1c1917;
  --fg-muted: #57534e;
  --accent: #d97706;
  --accent-light: #fef3c7;
  --border: #e7e0d8;
  --radius: 12px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem 8vw 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

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

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 42ch;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-primary {
  display: inline-block;
  background: var(--fg);
  color: var(--bg);
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s;
  width: fit-content;
}

.btn-primary:hover { background: #2c2926; }

.cta-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ── PHONE MOCKUP ── */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.phone-mockup {
  background: #1c1917;
  border-radius: 36px;
  padding: 12px;
  width: 300px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.05);
}

.phone-screen {
  background: #0f0e0c;
  border-radius: 28px;
  padding: 1.25rem;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mockup-status {
  background: #d97706;
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
}

.mockup-time {
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
}

.mockup-conversation {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.bubble {
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  font-size: 0.75rem;
  line-height: 1.45;
  max-width: 85%;
}

.bubble-incoming {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.bubble-outgoing {
  background: var(--accent);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.cal-link { text-decoration: underline; }

.mockup-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.action-pill {
  font-size: 0.65rem;
  padding: 0.25rem 0.6rem;
  border-radius: 99px;
  font-weight: 500;
}

.action-booked { background: #166534; color: #86efac; }
.action-reminder { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }

/* ── SHARED SECTION STYLES ── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.label-accent { color: var(--accent); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 28ch;
  margin-bottom: 3rem;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 6rem 8vw;
  background: var(--bg-alt);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 1rem;
  -webkit-text-stroke: 1px #d97706;
}

.step-icon { margin-bottom: 1rem; }

.step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-desc { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }

/* ── FEATURES ── */
.features {
  padding: 6rem 8vw;
  background: var(--bg);
}

.features .section-heading { max-width: 32ch; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-item {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
}

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

.feature-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.feature-desc { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }

/* ── PROOF POINTS ── */
.proof-points {
  padding: 6rem 8vw;
  background: var(--fg);
  color: white;
}

.proof-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.proof-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin-bottom: 1.25rem;
}

.proof-sub { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 0.75rem; }

.proof-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-block {
  padding: 1.5rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.45; }

/* ── PRICING ── */
.pricing-section {
  padding: 6rem 8vw;
  background: var(--bg-alt);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-tier {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  position: relative;
}

.pricing-tier--highlighted {
  border-color: var(--accent);
  background: linear-gradient(to bottom, #fffbeb, var(--bg));
}

.tier-badge {
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.75rem;
  border-radius: 99px;
}

.tier-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.tier-period { font-size: 1.25rem; font-weight: 500; color: var(--fg-muted); }

.tier-desc { font-size: 0.875rem; color: var(--fg-muted); margin-bottom: 1.25rem; line-height: 1.6; }

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tier-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-left: 1.25rem;
  position: relative;
}

.tier-features li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.revenue-table {
  background: var(--fg);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 480px;
}

.revenue-table-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.06);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.revenue-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0.875rem 1.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.revenue-value { font-weight: 600; color: white; }
.revenue-value--big { color: var(--accent); font-family: var(--font-display); font-size: 1.1rem; }

/* ── CLOSING ── */
.closing-statement {
  padding: 7rem 8vw;
  background: var(--bg);
  text-align: center;
}

.closing-inner { max-width: 60ch; margin: 0 auto; }

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 1.25rem;
}

.closing-sub { font-size: 1rem; color: var(--fg-muted); line-height: 1.65; margin-bottom: 0.75rem; }

/* ── FOOTER ── */
.site-footer {
  background: var(--fg);
  color: rgba(255,255,255,0.5);
  padding: 2.5rem 8vw;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  display: block;
}

.footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-note { font-size: 0.8rem; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 4rem; }
  .hero-visual { justify-content: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .proof-content { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .proof-stats { grid-template-columns: 1fr; }
  .phone-mockup { width: 260px; }
}