:root {
  --bg: #FAFAF5;
  --bg-dark: #0F0F0F;
  --bg-alt: #F0EDE6;
  --fg: #141414;
  --fg-light: #F8F7F3;
  --green: #2D6A4F;
  --green-light: #52B788;
  --amber: #E8A838;
  --amber-dark: #C47D0A;
  --text-muted: #6B6B6B;
  --text-light: #9A9A9A;
  --border: #E2DDD5;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: #fff; letter-spacing: -0.5px; }
.nav-tag { font-size: 12px; color: var(--text-light); letter-spacing: 0.08em; text-transform: uppercase; }

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45,106,79,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 1100px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-eyebrow { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-light); margin-bottom: 20px; font-weight: 500; }
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.6); line-height: 1.65; max-width: 420px; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--amber); letter-spacing: -0.5px; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.03em; text-transform: uppercase; line-height: 1.3; }

/* PHONE MOCKUP */
.phone-mockup {
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
}
.phone-topbar { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; gap: 10px; background: #141414; }
.phone-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green-light); }
.phone-label { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 500; letter-spacing: 0.04em; }
.call-transcript { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.call-line { display: flex; gap: 10px; align-items: flex-start; }
.call-badge { font-size: 10px; font-weight: 600; padding: 3px 7px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.05em; flex-shrink: 0; margin-top: 2px; }
.call-badge.ai { background: var(--green); color: #fff; }
.call-badge.caller { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.call-text { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.5; }
.call-booked, .call-text-sent {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 4px;
}
.call-booked { background: rgba(82,183,136,0.15); border: 1px solid rgba(82,183,136,0.3); color: #7CEBA8; }
.call-text-sent { background: rgba(232,168,56,0.12); border: 1px solid rgba(232,168,56,0.25); color: #F5C87A; }
.booked-icon, .text-icon { font-size: 14px; flex-shrink: 0; }
.phone-footer { padding: 12px 20px; border-top: 1px solid rgba(255,255,255,0.07); background: #141414; }
.call-duration { font-size: 11px; color: rgba(255,255,255,0.3); }

/* PROOF */
.proof { background: var(--green); padding: 80px 40px; }
.proof-inner { max-width: 1100px; margin: 0 auto; }
.proof-header { max-width: 620px; margin-bottom: 60px; }
.proof-headline { font-family: var(--font-head); font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: #fff; letter-spacing: -0.8px; line-height: 1.15; margin-bottom: 16px; }
.proof-sub { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.proof-block { border-left: 2px solid rgba(255,255,255,0.2); padding-left: 24px; }
.proof-big { display: block; font-family: var(--font-head); font-size: 52px; font-weight: 800; color: #fff; letter-spacing: -2px; margin-bottom: 10px; }
.proof-desc { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* SECTION EYEBROW */
.section-eyebrow { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); font-weight: 600; margin-bottom: 16px; }

/* PROBLEM */
.problem { padding: 100px 40px; background: var(--bg); }
.problem-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.problem-tag { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; margin-bottom: 20px; }
.problem-headline { font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; color: var(--fg); letter-spacing: -1px; line-height: 1.1; }
.problem-list { display: flex; flex-direction: column; gap: 20px; }
.problem-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px; background: #fff; border: 1px solid var(--border); border-radius: 10px; }
.problem-x { font-size: 18px; color: #C0392B; flex-shrink: 0; margin-top: 1px; font-weight: 700; }
.problem-item p { font-size: 15px; color: var(--fg); line-height: 1.5; }

/* HOW */
.how { padding: 100px 40px; background: var(--bg-dark); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how .section-eyebrow { color: var(--green-light); }
.how-headline { font-family: var(--font-head); font-size: clamp(28px, 3vw, 42px); font-weight: 800; color: #fff; letter-spacing: -1px; margin-bottom: 60px; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.step-num { display: block; font-family: var(--font-head); font-size: 52px; font-weight: 800; color: rgba(255,255,255,0.08); letter-spacing: -2px; margin-bottom: 16px; }
.step-title { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.step-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* WHO */
.who { padding: 100px 40px; background: var(--bg); }
.who-inner { max-width: 1100px; margin: 0 auto; }
.who-headline { font-family: var(--font-head); font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: var(--fg); letter-spacing: -0.8px; margin-bottom: 52px; max-width: 600px; }
.who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.who-card { padding: 32px; background: #fff; border: 1px solid var(--border); border-radius: 16px; }
.who-icon { display: block; font-size: 28px; margin-bottom: 16px; }
.who-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--fg); margin-bottom: 10px; }
.who-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* PRICING */
.pricing { padding: 100px 40px; background: var(--bg-alt); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-headline { font-family: var(--font-head); font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: var(--fg); letter-spacing: -0.8px; margin-bottom: 52px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-tier { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 32px; position: relative; }
.pricing-tier.tier-featured { border-color: var(--green); box-shadow: 0 0 0 1px var(--green); }
.tier-badge { position: absolute; top: -13px; left: 32px; background: var(--green); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; }
.tier-header h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--fg); margin-bottom: 16px; }
.tier-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 28px; }
.price-dollar { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--text-muted); }
.price-num { font-family: var(--font-head); font-size: 42px; font-weight: 800; color: var(--fg); letter-spacing: -1px; }
.price-period { font-size: 14px; color: var(--text-muted); margin-left: 4px; }
.tier-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.tier-features li { font-size: 14px; color: var(--fg); padding-left: 20px; position: relative; line-height: 1.4; }
.tier-features li::before { content: '—'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.pricing-cta { margin-top: 28px; font-size: 13px; color: var(--text-muted); text-align: center; }

/* CLOSING */
.closing { padding: 120px 40px; background: var(--bg-dark); text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline { font-family: var(--font-head); font-size: clamp(30px, 4vw, 52px); font-weight: 800; color: #fff; letter-spacing: -1.2px; line-height: 1.1; margin-bottom: 24px; }
.closing-body { font-size: 18px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* FOOTER */
.footer { padding: 40px; background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-logo { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: rgba(255,255,255,0.4); display: block; margin-bottom: 8px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.25); margin-bottom: 4px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.15); }

/* HERO CTAs */
.hero-ctas { display: flex; gap: 16px; align-items: center; margin-bottom: 48px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: -0.2px;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--green-light); color: #fff; }
.btn-primary-lg { font-size: 17px; padding: 18px 36px; border-radius: 10px; }
.btn-ghost {
  display: inline-block;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* CLOSING CTA */
.closing-cta { margin-top: 40px; }

/* DEMO SECTION */
.demo { padding: 100px 40px; background: var(--bg-dark); }
.demo-inner { max-width: 1100px; margin: 0 auto; }
.demo-header { max-width: 620px; margin-bottom: 56px; }
.demo-headline { font-family: var(--font-head); font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: #fff; letter-spacing: -0.8px; line-height: 1.15; margin-bottom: 14px; }
.demo-sub { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.6; }

.demo-stage { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.demo-phone {
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
}
.demo-topbar {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: #141414;
  display: flex;
  align-items: center;
  gap: 10px;
}
.demo-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }
.demo-phone-label { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 500; letter-spacing: 0.04em; flex: 1; }
.demo-time-badge { font-size: 11px; color: var(--amber); font-weight: 600; background: rgba(232,168,56,0.12); padding: 3px 8px; border-radius: 4px; }

.demo-transcript {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
  max-height: 380px;
  overflow-y: auto;
}
.demo-line { display: flex; gap: 10px; align-items: flex-start; }
.demo-badge { font-size: 10px; font-weight: 600; padding: 3px 7px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.05em; flex-shrink: 0; margin-top: 2px; white-space: nowrap; }
.demo-badge-ai { background: var(--green); color: #fff; }
.demo-badge-caller { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.demo-text { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.55; }

.demo-outcome {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.outcome-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.4;
}
.outcome-row strong { display: block; margin-bottom: 2px; }
.outcome-row span:last-child { color: inherit; opacity: 0.75; }
.outcome-icon { font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.outcome-booked { background: rgba(82,183,136,0.15); border: 1px solid rgba(82,183,136,0.3); color: #7CEBA8; }
.outcome-sms-caller { background: rgba(232,168,56,0.12); border: 1px solid rgba(232,168,56,0.25); color: #F5C87A; }
.outcome-sms-tech { background: rgba(82,136,183,0.12); border: 1px solid rgba(82,136,183,0.25); color: #8AB8F5; }

.demo-footer { padding: 12px 20px; border-top: 1px solid rgba(255,255,255,0.07); background: #141414; }
.demo-duration { font-size: 11px; color: rgba(255,255,255,0.3); }

.demo-controls { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }
.demo-btn {
  background: var(--green);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 10px;
  transition: background 0.15s;
  letter-spacing: -0.2px;
}
.demo-btn:hover:not(:disabled) { background: var(--green-light); }
.demo-btn:disabled { opacity: 0.6; cursor: default; }
.demo-btn-done { background: rgba(82,183,136,0.2) !important; color: var(--green-light) !important; }
.demo-hint { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* BOOK DEMO FORM */
.book-demo { padding: 100px 40px; background: var(--bg-alt); }
.book-demo-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.book-demo-headline { font-family: var(--font-head); font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: var(--fg); letter-spacing: -0.8px; line-height: 1.15; margin-bottom: 16px; }
.book-demo-sub { font-size: 16px; color: var(--text-muted); line-height: 1.65; margin-bottom: 28px; }
.book-demo-promises { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.book-demo-promises li { font-size: 14px; color: var(--fg); padding-left: 22px; position: relative; }
.book-demo-promises li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.book-demo-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--fg); letter-spacing: 0.01em; }
.req { color: #C0392B; }
.form-field input,
.form-field select {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg);
  background: #fff;
  transition: border-color 0.15s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,106,79,0.1); }
.form-field input::placeholder { color: var(--text-light); }
.form-submit {
  background: var(--green);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 10px;
  transition: background 0.15s;
  letter-spacing: -0.2px;
  margin-top: 4px;
}
.form-submit:hover:not(:disabled) { background: var(--green-light); }
.form-submit:disabled { opacity: 0.6; cursor: default; }
.form-note { font-size: 13px; color: var(--text-muted); }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 48px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
}
.success-icon { font-size: 36px; color: var(--green); }
.form-success h3 { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--fg); }
.form-success p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* NAV LINKS (for nav with links) */
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-link { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; font-weight: 500; transition: color 0.15s; }
.nav-link:hover { color: #fff; }
.nav-link-active { color: #fff; }

/* PRICING PAGE */
.pricing-page-hero {
  background: var(--bg-dark);
  padding: 140px 40px 80px;
  text-align: center;
}
.pricing-page-hero-inner { max-width: 700px; margin: 0 auto; }
.pricing-page-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
}
.pricing-page-sub { font-size: 18px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* TIER CARDS */
.pricing-page-tiers { padding: 80px 40px; background: var(--bg-alt); }
.pricing-page-tiers-inner { max-width: 1100px; margin: 0 auto; }
.pricing-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.ppage-tier {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.ppage-tier-featured {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green), 0 12px 40px rgba(45,106,79,0.12);
}
.ppage-badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
.ppage-tier-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 4px;
}
.ppage-tier-who { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.ppage-price-row { display: flex; align-items: baseline; gap: 2px; margin-bottom: 28px; }
.ppage-dollar { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--text-muted); }
.ppage-amount {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -2px;
  line-height: 1;
}
.ppage-period { font-size: 16px; color: var(--text-muted); margin-left: 4px; }
.ppage-price-custom { align-items: center; }
.ppage-amount-custom {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.ppage-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 32px;
}
.ppage-features li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}
.ppage-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}
.ppage-cta-btn {
  display: block;
  text-align: center;
  background: var(--bg-dark);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
  margin-top: auto;
}
.ppage-cta-btn:hover { background: #2a2a2a; }
.ppage-cta-featured {
  background: var(--green);
}
.ppage-cta-featured:hover { background: var(--green-light); }
.pricing-page-note { text-align: center; font-size: 14px; color: var(--text-muted); }

/* VS COMPARISON */
.pricing-vs { padding: 100px 40px; background: var(--bg-dark); }
.pricing-vs-inner { max-width: 900px; margin: 0 auto; }
.pricing-vs-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}
.pricing-vs-sub { font-size: 16px; color: rgba(255,255,255,0.5); margin-bottom: 48px; }
.pricing-vs-table {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: start;
}
.vs-col {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 32px;
}
.vs-col-answered { border-color: var(--green); background: rgba(45,106,79,0.08); }
.vs-col-header { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.vs-col-price { font-family: var(--font-head); font-size: 40px; font-weight: 800; color: rgba(255,255,255,0.5); letter-spacing: -1px; margin-bottom: 6px; }
.vs-col-price span { font-size: 16px; font-weight: 500; letter-spacing: 0; }
.vs-price-green { color: var(--green-light); }
.vs-col-sub { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.vs-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.vs-list li { font-size: 14px; line-height: 1.4; padding-left: 22px; position: relative; }
.vs-bad { color: rgba(255,255,255,0.5); }
.vs-bad::before { content: '✕'; position: absolute; left: 0; color: #C0392B; font-weight: 700; font-size: 12px; }
.vs-good { color: rgba(255,255,255,0.85); }
.vs-good::before { content: '✓'; position: absolute; left: 0; color: var(--green-light); font-weight: 700; font-size: 13px; }
.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: rgba(255,255,255,0.25);
  padding-top: 40px;
}

/* FAQ */
.pricing-faq { padding: 100px 40px; background: var(--bg); }
.pricing-faq-inner { max-width: 780px; margin: 0 auto; }
.pricing-faq-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.8px;
  margin-bottom: 52px;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.faq-a { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

/* PRICING PAGE CLOSING */
.pricing-page-closing { padding: 120px 40px; background: var(--bg-dark); text-align: center; }
.pricing-page-closing-inner { max-width: 700px; margin: 0 auto; }
.pricing-page-closing-headline {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.pricing-page-closing-body { font-size: 18px; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 40px; }

/* AUDIO DEMO PLAYER */
.audio-demo-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(45,106,79,0.18) 0%, rgba(82,183,136,0.10) 100%);
  border: 1.5px solid rgba(82,183,136,0.35);
  border-radius: 16px;
  padding: 22px 28px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.audio-demo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(82,183,136,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.audio-demo-card:hover,
.audio-demo-card.audio-playing {
  border-color: var(--green-light);
  box-shadow: 0 0 0 1px rgba(82,183,136,0.3), 0 8px 32px rgba(45,106,79,0.2);
}

.audio-demo-left { flex-shrink: 0; }

.audio-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.15s, transform 0.1s;
  flex-shrink: 0;
}
.audio-play-btn:hover { background: #3ea670; transform: scale(1.05); }
.audio-play-btn:active { transform: scale(0.97); }
.play-icon, .pause-icon {
  width: 28px;
  height: 28px;
  color: #fff;
}

.audio-demo-center { flex: 1; min-width: 0; }

.audio-demo-label {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.audio-demo-duration { font-weight: 400; color: rgba(255,255,255,0.5); font-size: 14px; }

.audio-progress-bar {
  position: relative;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.audio-progress-fill {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  background: var(--green-light);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
  z-index: 2;
}

/* Animated waveform bars */
.audio-waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  width: 100%;
  height: 36px;
}
.audio-waveform span {
  flex: 1;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  height: 8px;
  transition: height 0.1s;
}
/* Vary heights for a natural waveform look */
.audio-waveform span:nth-child(1)  { height: 14px; }
.audio-waveform span:nth-child(2)  { height: 22px; }
.audio-waveform span:nth-child(3)  { height: 10px; }
.audio-waveform span:nth-child(4)  { height: 28px; }
.audio-waveform span:nth-child(5)  { height: 18px; }
.audio-waveform span:nth-child(6)  { height: 8px; }
.audio-waveform span:nth-child(7)  { height: 30px; }
.audio-waveform span:nth-child(8)  { height: 20px; }
.audio-waveform span:nth-child(9)  { height: 12px; }
.audio-waveform span:nth-child(10) { height: 24px; }
.audio-waveform span:nth-child(11) { height: 16px; }
.audio-waveform span:nth-child(12) { height: 32px; }
.audio-waveform span:nth-child(13) { height: 10px; }
.audio-waveform span:nth-child(14) { height: 26px; }
.audio-waveform span:nth-child(15) { height: 18px; }
.audio-waveform span:nth-child(16) { height: 8px; }
.audio-waveform span:nth-child(17) { height: 22px; }
.audio-waveform span:nth-child(18) { height: 14px; }
.audio-waveform span:nth-child(19) { height: 28px; }
.audio-waveform span:nth-child(20) { height: 16px; }
.audio-waveform span:nth-child(21) { height: 34px; }
.audio-waveform span:nth-child(22) { height: 12px; }
.audio-waveform span:nth-child(23) { height: 20px; }
.audio-waveform span:nth-child(24) { height: 8px; }
.audio-waveform span:nth-child(25) { height: 24px; }
.audio-waveform span:nth-child(26) { height: 18px; }
.audio-waveform span:nth-child(27) { height: 30px; }
.audio-waveform span:nth-child(28) { height: 14px; }
.audio-waveform span:nth-child(29) { height: 10px; }
.audio-waveform span:nth-child(30) { height: 20px; }

/* Active waveform animation when playing */
.audio-playing .audio-waveform span {
  animation: waveBar 0.8s ease-in-out infinite alternate;
}
.audio-playing .audio-waveform span:nth-child(odd)  { animation-delay: 0.1s; }
.audio-playing .audio-waveform span:nth-child(3n)   { animation-delay: 0.25s; }
.audio-playing .audio-waveform span:nth-child(4n)   { animation-delay: 0.4s; }
@keyframes waveBar {
  0%   { opacity: 0.3; transform: scaleY(0.6); }
  100% { opacity: 1;   transform: scaleY(1.1); }
}

.audio-demo-time {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.audio-demo-right { flex-shrink: 0; }
.audio-live-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
  background: rgba(82,183,136,0.15);
  border: 1px solid rgba(82,183,136,0.3);
  padding: 5px 10px;
  border-radius: 6px;
}

.audio-demo-caption {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  margin-bottom: 56px;
  font-style: italic;
  line-height: 1.5;
}

/* PRICING PAGE CALCULATOR BANNER */
.pricing-calc-banner {
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(45,106,79,0.12) 0%, rgba(82,183,136,0.06) 100%);
  border-top: 1px solid rgba(45,106,79,0.2);
  border-bottom: 1px solid rgba(45,106,79,0.2);
}
.pricing-calc-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.pricing-calc-banner-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 6px;
}
.pricing-calc-banner-headline {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.pricing-calc-banner-sub { font-size: 15px; color: var(--text-muted); line-height: 1.5; max-width: 420px; }
.pricing-calc-banner-btn {
  flex-shrink: 0;
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
  letter-spacing: -0.2px;
  white-space: nowrap;
}
.pricing-calc-banner-btn:hover { background: var(--green-light); }

/* CALCULATOR PAGE */

/* Hero calculator link */
.hero-calc-link {
  display: inline-block;
  font-size: 13px;
  color: var(--green-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(82,183,136,0.35);
  padding-bottom: 1px;
  margin-top: -24px;
  margin-bottom: 36px;
  transition: color 0.15s, border-color 0.15s;
}
.hero-calc-link:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

.calc-hero {
  background: var(--bg-dark);
  padding: 140px 40px 80px;
  text-align: center;
}
.calc-hero-inner { max-width: 720px; margin: 0 auto; }
.calc-hero-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
}
.calc-hero-sub { font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.65; max-width: 560px; margin: 0 auto; }

.calc-section { padding: 80px 40px 100px; background: var(--bg-alt); }
.calc-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}

/* INPUTS */
.calc-inputs-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.4px;
  margin-bottom: 32px;
}

.calc-field { margin-bottom: 36px; }
.calc-field:last-child { margin-bottom: 0; }

.calc-field-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.calc-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.01em;
}
.calc-value-display {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.5px;
  min-width: 64px;
  text-align: right;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  outline: none;
  cursor: pointer;
  margin-bottom: 8px;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: background 0.15s, transform 0.1s;
}
.calc-slider::-webkit-slider-thumb:hover { background: var(--green-light); transform: scale(1.1); }
.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.calc-slider-range {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 6px;
}
.calc-field-hint { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* OUTPUT CARD */
.calc-output { position: sticky; top: 100px; }
.calc-result-card {
  background: var(--bg-dark);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.calc-result-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  margin-bottom: 12px;
}

.calc-big-number {
  font-family: var(--font-head);
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 800;
  color: rgba(255,255,255,0.3);
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s, font-size 0.15s;
}
.calc-big-number-red {
  color: #E8594A;
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.calc-result-label { font-size: 14px; color: rgba(255,255,255,0.45); }
.calc-result-val {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.4px;
}

.calc-result-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 20px; }

/* ROI multiples */
.calc-roi-block { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.calc-roi-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 12px 14px;
}
.calc-roi-icon { font-size: 18px; flex-shrink: 0; }
.calc-roi-row > div { display: flex; flex-direction: column; gap: 2px; }
.calc-roi-plan { font-size: 12px; color: rgba(255,255,255,0.4); }
.calc-roi-multiple {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--green-light);
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.calc-roi-caption { font-size: 11px; color: rgba(255,255,255,0.3); }

.calc-breakdown {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 24px;
  min-height: 52px;
}

/* CTA BLOCK */
.calc-cta-block { display: flex; flex-direction: column; gap: 12px; }
.calc-cta-primary {
  display: block;
  text-align: center;
  background: var(--green);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
  letter-spacing: -0.2px;
  line-height: 1.3;
}
.calc-cta-primary:hover { background: var(--green-light); }
.calc-cta-secondary {
  display: block;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  text-decoration: none;
  padding: 8px;
  border-radius: 8px;
  transition: color 0.15s;
}
.calc-cta-secondary:hover { color: rgba(255,255,255,0.8); }

/* CONTEXT SECTION */
.calc-context { padding: 100px 40px; background: var(--bg); }
.calc-context-inner { max-width: 1100px; margin: 0 auto; }
.calc-context-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.8px;
  margin-bottom: 52px;
  max-width: 640px;
}
.calc-context-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.calc-context-item { border-left: 3px solid var(--green); padding-left: 24px; }
.calc-context-num {
  display: block;
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -1.5px;
  margin-bottom: 10px;
}
.calc-context-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-left { order: 1; }
  .hero-right { order: 2; }
  .proof-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .problem-inner { grid-template-columns: 1fr; }
  .demo-stage { grid-template-columns: 1fr; gap: 32px; }
  .audio-demo-card { gap: 14px; padding: 18px 20px; }
  .audio-demo-right { display: none; }
  .book-demo-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  /* Pricing page */
  .pricing-page-grid { grid-template-columns: 1fr; }
  .pricing-vs-table { grid-template-columns: 1fr; gap: 0; }
  .vs-divider { padding: 16px 0; }
  /* Pricing calculator banner */
  .pricing-calc-banner-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  /* Calculator */
  .calc-inner { grid-template-columns: 1fr; gap: 40px; }
  .calc-output { position: static; }
  .calc-context-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .nav { padding: 16px 20px; }
  .nav-links { gap: 14px; }
  .hero { padding: 100px 20px 60px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .proof { padding: 60px 20px; }
  .problem { padding: 60px 20px; }
  .how { padding: 60px 20px; }
  .who { padding: 60px 20px; }
  .pricing { padding: 60px 20px; }
  .closing { padding: 80px 20px; }
  .footer { padding: 32px 20px; }
  .demo { padding: 60px 20px; }
  .audio-demo-card { flex-wrap: wrap; }
  .audio-play-btn { width: 48px; height: 48px; }
  .audio-demo-label { font-size: 15px; }
  .book-demo { padding: 60px 20px; }
  /* Pricing page */
  .pricing-page-hero { padding: 110px 20px 60px; }
  .pricing-page-tiers { padding: 60px 20px; }
  .pricing-vs { padding: 60px 20px; }
  .pricing-faq { padding: 60px 20px; }
  .pricing-page-closing { padding: 80px 20px; }
  .ppage-amount { font-size: 48px; }
  /* Calculator */
  .calc-hero { padding: 110px 20px 60px; }
  .calc-section { padding: 60px 20px 80px; }
  .calc-context { padding: 60px 20px; }
  .calc-big-number { font-size: 52px; }
}