:root {
  --bg: #F7F5F0;
  --surface: #EFECE5;
  --fg: #1C1C1A;
  --fg-muted: #6B6960;
  --accent: #1E5631;
  --accent-light: #2D7A47;
  --gold: #C8973A;
  --white: #FFFFFF;
  --border: #D8D4CA;
}

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

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

/* Navbar */
.navbar {
  padding: 24px 48px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
}

/* Hero */
.hero {
  padding: 80px 48px 64px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hero-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 900px;
}
.hero-headline em {
  color: var(--accent);
  font-style: italic;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  max-width: 900px;
}
.stat {
  flex: 1;
  padding: 24px 28px;
}
.stat-num {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.stat-div {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
}

/* Problem */
.problem {
  padding: 96px 48px;
  background: var(--surface);
}
.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.problem-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 56px;
  max-width: 700px;
  line-height: 1.2;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
}
.problem-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.problem-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}
.problem-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.problem-bottom {
  margin-top: 48px;
  font-size: 20px;
  font-weight: 500;
  color: var(--accent);
  font-family: 'Fraunces', Georgia, serif;
}

/* Features */
.features {
  padding: 96px 48px;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.features-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 56px;
  max-width: 700px;
  line-height: 1.2;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.feature {
  background: var(--white);
  padding: 36px 28px;
}
.feature-accent {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 16px;
}
.feature h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.feature p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* How It Works */
.howitworks {
  padding: 96px 48px;
  background: var(--surface);
}
.hiw-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hiw-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 56px;
  max-width: 700px;
  line-height: 1.2;
}
.steps {
  display: flex;
  align-items: center;
  gap: 24px;
}
.step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
}
.step-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: #E8F0EA;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.step h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}
.step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-arrow {
  font-size: 24px;
  color: var(--border);
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
}

/* Niches */
.niches {
  padding: 96px 48px;
}
.niches-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.niches-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 56px;
  max-width: 700px;
  line-height: 1.2;
}
.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.niche {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
}
.niche-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 14px;
}
.niche h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.niche p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 96px 48px;
  background: var(--accent);
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing-tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 32px;
}
.closing-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 32px;
}
.closing-statement {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto;
}

/* Footer */
.footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Navbar link */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  text-decoration: none;
}
.nav-pricing-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 8px 16px;
  border: 1.5px solid var(--accent);
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.nav-pricing-link:hover {
  background: var(--accent);
  color: var(--white);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--accent-light); }

.btn-secondary {
  display: inline-block;
  color: var(--accent);
  padding: 12px 24px;
  border: 1.5px solid var(--accent);
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.btn-secondary:hover { background: var(--accent); color: var(--white); }

/* Pricing hero */
.pricing-hero {
  padding: 80px 48px 48px;
}
.pricing-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 16px;
  margin-top: 16px;
}
.pricing-sub {
  font-size: 16px;
  color: var(--fg-muted);
}

/* Pricing cards */
.pricing-section {
  padding: 0 48px 96px;
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card-featured {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.pricing-card-featured .pricing-tier-label { color: rgba(255,255,255,0.7); }
.pricing-card-featured .pricing-tier-name  { color: var(--white); }
.pricing-card-featured .pricing-tier-desc  { color: rgba(255,255,255,0.8); }
.pricing-card-featured .pricing-price      { color: var(--white); }
.pricing-card-featured .pricing-price-note { color: rgba(255,255,255,0.75); }
.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.9); }
.pricing-card-featured .pricing-features li::before { color: rgba(255,255,255,0.6); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-tier-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.pricing-tier-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.pricing-tier-desc {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.pricing-card-featured .pricing-price-row {
  border-bottom-color: rgba(255,255,255,0.2);
}
.pricing-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.pricing-price-note {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 32px;
}
.pricing-features li {
  font-size: 15px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.pricing-card-featured .pricing-features li::before {
  color: var(--gold);
}
.pricing-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-cta {
  text-align: center;
  width: 100%;
  padding: 16px;
  font-size: 16px;
}
.pricing-cta-white {
  background: var(--white);
  color: var(--accent);
}
.pricing-cta-white:hover {
  background: var(--surface);
}
.pricing-guarantee {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
}

/* Pricing reassurance */
.pricing-reassurance {
  text-align: center;
  font-size: 15px;
  color: var(--fg-muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pricing-reassurance a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

/* Welcome page */
.welcome-section {
  padding: 80px 48px 96px;
}
.welcome-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.welcome-check {
  font-size: 56px;
  margin-bottom: 24px;
  color: var(--accent);
}
.welcome-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
}
.welcome-sub {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 64px;
  line-height: 1.6;
}
.welcome-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  text-align: left;
}
.welcome-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
}
.welcome-step-num {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: #E8F0EA;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
  width: fit-content;
}
.welcome-step h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}
.welcome-step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────────
   Demo page — personalized /demo/:slug
   ───────────────────────────────────────────────────────────────── */

.demo-hero { padding: 80px 48px 48px; }
.demo-hero-inner { max-width: 860px; margin: 0 auto; }
.demo-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.demo-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(40px, 6vw, 72px); font-weight: 700;
  line-height: 1.1; color: var(--fg); margin-bottom: 24px;
}
.demo-headline em { color: var(--accent); font-style: italic; }
.demo-biz-name {
  color: var(--accent);
  text-decoration: underline; text-underline-offset: 4px;
  text-decoration-color: var(--gold);
}
.demo-sub { font-size: 18px; color: var(--fg-muted); max-width: 640px; line-height: 1.65; }

/* Chat section */
.demo-chat-section { padding: 0 48px 64px; }
.demo-chat-inner { max-width: 680px; margin: 0 auto; }
.demo-chat-label { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.demo-chat-pill {
  background: var(--accent); color: white;
  font-size: 12px; font-weight: 600; padding: 5px 12px;
  border-radius: 20px; white-space: nowrap;
}
.demo-chat-pill-sub { font-size: 13px; color: var(--fg-muted); line-height: 1.4; }

.demo-chat-container {
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
  background: var(--bg); box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  display: flex; flex-direction: column;
}
.demo-chat-header {
  background: var(--accent); color: white;
  padding: 18px 24px; display: flex; align-items: center; gap: 14px;
}
.demo-chat-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.2); display: flex;
  align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.demo-chat-header-name { font-family: 'Fraunces', Georgia, serif; font-size: 16px; font-weight: 700; }
.demo-chat-header-status { font-size: 12px; opacity: 0.8; margin-top: 2px; }
.demo-chat-body {
  height: 380px; overflow-y: auto; padding: 20px;
  display: flex; flex-direction: column; gap: 12px; scroll-behavior: smooth;
}
.demo-msg { display: flex; gap: 10px; align-items: flex-end; }
.demo-msg.bot  { justify-content: flex-start; }
.demo-msg.user { justify-content: flex-end; }
.demo-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent); color: white;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.demo-bubble {
  background: var(--surface); color: var(--fg);
  border-radius: 16px; padding: 10px 14px;
  font-size: 14px; line-height: 1.5; max-width: 76%;
  word-break: break-word; border-bottom-left-radius: 4px;
}
.demo-bubble.user-bubble {
  background: var(--accent); color: white;
  border-bottom-left-radius: 16px; border-bottom-right-radius: 4px;
}
.demo-success {
  background: #E6F4EA; border: 1px solid #A8D5B5;
  border-radius: 10px; padding: 14px 16px;
  font-size: 14px; color: var(--accent); line-height: 1.5;
}
.demo-success strong { display: block; margin-bottom: 4px; font-size: 15px; }
.demo-success a { color: var(--accent); font-weight: 600; }
.demo-chat-input-area {
  display: flex; gap: 8px; padding: 12px 16px;
  border-top: 1px solid var(--border); background: white;
}
#demo-input {
  flex: 1; border: 1.5px solid var(--border); border-radius: 8px;
  padding: 10px 12px; font-size: 14px; font-family: inherit;
  color: var(--fg); outline: none; transition: border-color 0.15s;
}
#demo-input:focus { border-color: var(--accent); }
#demo-input:disabled { background: var(--surface); }
#demo-input::placeholder { color: #9B9790; }
#demo-send {
  background: var(--accent); color: white; border: none; border-radius: 8px;
  width: 42px; height: 42px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s; flex-shrink: 0;
}
#demo-send:hover { background: var(--accent-light); }
#demo-send:disabled { opacity: 0.4; cursor: not-allowed; }

/* How it works (demo) */
.demo-hiw { padding: 80px 48px; background: var(--surface); }
.demo-hiw-inner { max-width: 1100px; margin: 0 auto; }
.demo-hiw-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 3.5vw, 42px); font-weight: 600;
  color: var(--fg); margin-bottom: 48px; max-width: 680px;
  line-height: 1.25; margin-top: 12px;
}
.demo-steps { display: flex; align-items: center; gap: 20px; }
.demo-step {
  flex: 1; background: var(--white);
  border: 1px solid var(--border); border-radius: 4px; padding: 32px 28px;
}
.demo-step h3 {
  font-family: 'Fraunces', Georgia, serif; font-size: 17px; font-weight: 600;
  margin-bottom: 10px; color: var(--fg); margin-top: 12px;
}
.demo-step p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.demo-step-arrow { font-size: 24px; color: var(--border); flex-shrink: 0; }

/* Social proof stats */
.demo-proof { padding: 64px 48px; }
.demo-proof-inner { max-width: 900px; margin: 0 auto; }
.demo-stat-row {
  display: flex; align-items: stretch; gap: 0;
  border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden; background: var(--white);
}
.demo-stat { flex: 1; padding: 32px 28px; text-align: center; }
.demo-stat-num {
  display: block; font-family: 'Fraunces', Georgia, serif;
  font-size: 48px; font-weight: 700; color: var(--accent);
  margin-bottom: 8px; line-height: 1;
}
.demo-stat-label { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }
.demo-stat-div { width: 1px; background: var(--border); flex-shrink: 0; }

/* Sticky CTA */
.demo-sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--accent); color: white;
  padding: 14px 32px; display: flex; align-items: center;
  justify-content: center; gap: 20px; z-index: 1000;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
}
.demo-sticky-inner {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; justify-content: center;
}
.demo-sticky-text { font-size: 15px; color: rgba(255,255,255,0.9); }
.demo-sticky-text strong { color: white; }
.demo-sticky-btn {
  display: inline-block; background: var(--gold); color: white;
  padding: 10px 22px; border-radius: 4px; font-weight: 700;
  font-size: 14px; text-decoration: none; white-space: nowrap;
  transition: background 0.15s;
}
.demo-sticky-btn:hover { background: #d9a542; }
.demo-sticky-close {
  background: none; border: none; color: rgba(255,255,255,0.6);
  cursor: pointer; font-size: 16px; padding: 4px 8px;
  position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%); transition: color 0.15s;
}
.demo-sticky-close:hover { color: white; }

/* ─────────────────────────────────────────────────────────────────
   Missed-Revenue Calculator
   ───────────────────────────────────────────────────────────────── */
.calc-section {
  padding: 80px 48px;
  background: var(--fg);
  color: var(--white);
}
.calc-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.calc-header {
  margin-bottom: 56px;
}
.calc-header .section-label {
  color: var(--gold);
}
.calc-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 12px;
  margin-top: 12px;
}
.calc-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* Two-column body: inputs left, output right */
.calc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Input column */
.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.calc-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calc-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calc-slider-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}
.calc-number-input {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: var(--white);
  font-size: 20px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  padding: 12px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.15s;
  -moz-appearance: textfield;
}
.calc-number-input::-webkit-inner-spin-button,
.calc-number-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.calc-number-input:focus { border-color: var(--gold); }
.calc-input-row { position: relative; }
.calc-input-dollar .calc-number-input { padding-left: 36px; }
.calc-dollar-sign {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

/* Slider */
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.15);
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 3px solid var(--fg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 3px solid var(--fg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.calc-slider-scale {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

/* Output column */
.calc-output {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Result box */
.calc-result-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 32px 28px;
}
.calc-result-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}
.calc-result-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  color: #F45B37;
  line-height: 1;
  margin-bottom: 4px;
}
.calc-result-period {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.calc-result-annual {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: rgba(244,91,55,0.75);
  margin-bottom: 20px;
}
.calc-result-rule {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 16px;
}
.calc-result-breakdown {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* ROI box */
.calc-roi-box {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
}
.calc-roi-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.calc-roi-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.calc-roi-mo {
  font-size: 16px;
  font-weight: 400;
  color: var(--fg-muted);
}
.calc-roi-math {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: 24px;
}
.calc-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calc-cta-primary {
  text-align: center;
  font-size: 15px;
  padding: 14px 20px;
}
.calc-cta-secondary {
  text-align: center;
  font-size: 14px;
  padding: 12px 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar { padding: 20px 24px; }
  .hero { padding: 48px 24px 40px; }
  .hero-headline { font-size: 44px; }
  .hero-sub { font-size: 16px; }
  .hero-stats { flex-direction: column; }
  .stat-div { width: auto; height: 1px; }
  .problem { padding: 64px 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .features { padding: 64px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .hiw-inner { padding: 0 24px; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .niches { padding: 64px 24px; }
  .niches-grid { grid-template-columns: 1fr; }
  .closing { padding: 64px 24px; }
  .footer { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 8px; }
  .pricing-hero { padding: 48px 24px 32px; }
  .pricing-section { padding: 0 24px 64px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .welcome-section { padding: 48px 24px 64px; }
  .welcome-steps { grid-template-columns: 1fr; }
  .demo-hero { padding: 48px 24px 32px; }
  .demo-chat-section { padding: 0 24px 48px; }
  .demo-hiw { padding: 48px 24px; }
  .demo-steps { flex-direction: column; }
  .demo-step-arrow { transform: rotate(90deg); }
  .demo-proof { padding: 48px 24px; }
  .demo-stat-row { flex-direction: column; }
  .demo-stat-div { width: auto; height: 1px; }
  .demo-sticky-cta { padding: 12px 20px; }
  .demo-sticky-text { font-size: 13px; }
  .calc-section { padding: 56px 24px; }
  .calc-body { grid-template-columns: 1fr; gap: 32px; }
  .calc-result-amount { font-size: 52px; }
}