:root {
  --olive:      #5C6B4E;
  --olive-dark: #3A4730;
  --gold:       #D4AF37;
  --paper:      #F5F2EC;
  --ink:        #1C1C1C;
  --muted:      #6B7060;
  --line:       #DDD8CC;
  --white:      #FFFFFF;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body:    "Inter", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }

img, svg { display: block; }

/* ── UTILITIES ── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow.light { color: rgba(212, 175, 55, 0.85); }
.eyebrow.muted { color: var(--muted); }

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── NAV ── */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(58, 71, 48, 0.88);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

.nav-brand-by {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.15s;
}

.nav-links a:hover { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--olive-dark);
  padding: 11px 22px;
}

.btn-primary:hover {
  background: #c9a52e;
  box-shadow: 0 4px 16px rgba(212,175,55,0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 10px 22px;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}

.btn-olive {
  background: var(--olive);
  color: #fff;
  padding: 14px 32px;
  font-size: 1rem;
}

.btn-olive:hover {
  background: var(--olive-dark);
  box-shadow: 0 6px 24px rgba(58,71,48,0.35);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.05rem;
  border-radius: 8px;
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  background: var(--olive-dark);
  background-image:
    radial-gradient(ellipse at 60% 40%, #6B7A57 0%, #3A4730 65%),
    repeating-linear-gradient(
      -55deg,
      rgba(255,255,255,0.025) 0px,
      rgba(255,255,255,0.025) 1px,
      transparent 1px,
      transparent 28px
    );
  display: flex;
  align-items: center;
  padding-top: 68px;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 28px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}

.hero-content { max-width: 560px; }

.hero-eyebrow { margin-bottom: 22px; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 38px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stat-strip {
  margin-top: 56px;
  display: flex;
  gap: 40px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat {}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-num span { color: var(--gold); }

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

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

.phone-wrap {
  position: relative;
  width: 300px;
}

.phone-shell {
  width: 300px;
  background: #111;
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.04),
    0 40px 90px rgba(0,0,0,0.55),
    0 8px 24px rgba(0,0,0,0.35);
  position: relative;
}

/* Side buttons */
.phone-shell::before {
  content: '';
  position: absolute;
  right: -3px;
  top: 80px;
  width: 3px;
  height: 60px;
  background: #222;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 80px 0 #222;
}

.phone-shell::after {
  content: '';
  position: absolute;
  left: -3px;
  top: 60px;
  width: 3px;
  height: 36px;
  background: #222;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 52px 0 #222, 0 96px 0 #222;
}

.phone-screen {
  background: #fff;
  border-radius: 36px;
  overflow: hidden;
  height: 560px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Dynamic island */
.phone-screen::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #111;
  border-radius: 20px;
  z-index: 10;
}

/* Phone UI */
.p-topbar {
  background: #3d6b4a;
  padding: 46px 14px 10px;
  flex-shrink: 0;
}

.p-topbar-row1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}

.p-brand { font-size: 15px; font-weight: 600; color: #fff; }

.p-owner-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 3px 8px 3px 5px;
}

.p-owner-av {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  font-size: 9px; font-weight: 700;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}

.p-owner-name { font-size: 11px; color: rgba(255,255,255,0.9); }

.p-sub { font-size: 10px; color: rgba(255,255,255,0.5); }

.p-tabs {
  display: flex;
  background: #f7f2ea;
  border-bottom: 1px solid #e0d8cc;
  flex-shrink: 0;
}

.p-tab {
  flex: 1;
  padding: 9px 4px;
  text-align: center;
  font-size: 11px;
  color: #9e8e7a;
  border-bottom: 2px solid transparent;
}

.p-tab.on { color: #3d6b4a; border-bottom-color: #3d6b4a; font-weight: 600; }

.p-badge-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b06820;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 14px; height: 14px;
  border-radius: 50%;
  margin-left: 3px;
  vertical-align: middle;
}

.p-list { flex: 1; overflow: hidden; }

.p-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  border-bottom: 1px solid #e0d8cc;
  background: #fff;
  border-left: 3px solid transparent;
}

.p-item.esc    { background: #fdf0e0; border-left-color: #b06820; }
.p-item.unread { background: #f7f2ea; }

.p-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: #fff;
  flex-shrink: 0;
  position: relative;
}

.p-dot {
  position: absolute;
  bottom: -1px; right: -1px;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  background: #3d6b4a;
}

.p-dot.amber { background: #b06820; }

.p-body { flex: 1; overflow: hidden; min-width: 0; }
.p-row1 { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 2px; }
.p-name { font-size: 13px; font-weight: 500; color: #2a2218; }
.p-name.bold { font-weight: 700; }
.p-time { font-size: 10px; color: #9e8e7a; flex-shrink: 0; margin-left: 6px; }
.p-reason { font-size: 11px; color: #b06820; font-weight: 500; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.p-preview { font-size: 11px; color: #9e8e7a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 4px; }

.p-tag {
  display: inline-block;
  font-size: 10px; font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
}

.p-tag-booking   { background: #eef4ef; color: #3d6b4a; }
.p-tag-inquiry   { background: #eff0fe; color: #5050b0; }
.p-tag-escalated { background: #fdf0e0; color: #b06820; border: 1px solid #e8c898; }

.p-unread-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.amber-dot { background: #b06820; }
.green-dot  { background: #3d6b4a; }

/* Phone glow badges */
.phone-glow {
  position: absolute;
  background: rgba(212,175,55,0.15);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.phone-glow-1 { width: 200px; height: 200px; top: -60px; right: -60px; }
.phone-glow-2 { width: 150px; height: 150px; bottom: -40px; left: -40px; background: rgba(92,107,78,0.25); }

/* ── MARQUEE / TICKER ── */
.ticker {
  background: var(--olive);
  overflow: hidden;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}

.ticker-track span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 0 24px;
  white-space: nowrap;
}

.ticker-track span.gold { color: var(--gold); }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── PROBLEM SECTION ── */
.problem {
  background: var(--paper);
  padding: 100px 0;
}

.problem-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 20px;
}

.problem-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.problem-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pain-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pain-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #fef3f3;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.pain-text h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.pain-text p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── HOW IT WORKS ── */
.how {
  background: var(--olive-dark);
  background-image:
    repeating-linear-gradient(
      -55deg,
      rgba(255,255,255,0.02) 0px,
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 28px
    );
  padding: 100px 0;
  color: #fff;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.how-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin-bottom: 60px;
  line-height: 1.65;
}

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

.step {
  padding: 36px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.step:first-child { border-radius: 12px 0 0 12px; }
.step:last-child  { border-radius: 0 12px 12px 0; }

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.22);
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.step-accent {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 2rem;
}

/* ── FEATURES ── */
.features {
  background: var(--paper);
  padding: 100px 0;
}

.features-header {
  margin-bottom: 70px;
}

.features h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 560px;
}

.features-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.65;
}

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

.feat {
  background: var(--paper);
  padding: 36px 32px;
  transition: background 0.2s;
}

.feat:hover { background: #fff; }

.feat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--olive);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
  color: #fff;
}

.feat h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.feat p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.feat-highlight {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--olive);
  letter-spacing: 0.02em;
}

/* ── DEMO SECTION ── */
.demo {
  background: #fff;
  padding: 100px 0;
  overflow: hidden;
}

.demo h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 14px;
}

.demo-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 60px;
  line-height: 1.65;
}

.demo-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}

.demo-points { display: flex; flex-direction: column; gap: 28px; }

.demo-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.demo-point.active,
.demo-point:hover {
  background: var(--paper);
  border-color: var(--line);
}

.demo-point.active .demo-point-icon { background: var(--olive); }

.demo-point-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.demo-point h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.demo-point p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Large phone mockup in demo */
.demo-phone {
  position: sticky;
  top: 100px;
}

.demo-phone-shell {
  width: 320px;
  background: #1a1a1a;
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.15),
    0 40px 100px rgba(0,0,0,0.2),
    0 8px 24px rgba(0,0,0,0.12);
  margin: 0 auto;
}

.demo-phone-screen {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  height: 620px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  display: flex;
  flex-direction: column;
}

/* Reuse phone UI for demo screen */
.demo-phone-screen .p-topbar { padding: 14px 16px 12px; }

/* Thread view inside demo */
.thread-view {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ── THREAD VIEW (demo phone) ── */
.t-hdr {
  background: #3d6b4a;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.t-back {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 17px;
  flex-shrink: 0;
}

.t-av {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; color: #fff;
  flex-shrink: 0;
}

.t-info { flex: 1; min-width: 0; }
.t-name { font-size: 13px; font-weight: 600; color: #fff; }
.t-meta { font-size: 10px; color: rgba(255,255,255,0.55); margin-top: 1px; }

.t-status {
  font-size: 10px; font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  flex-shrink: 0;
}
.t-status.esc   { background: #b06820; color: #fff; }
.t-status.owner { background: #fff; color: #3d6b4a; }
.t-status.ai    { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }

.t-msgs {
  flex: 1;
  overflow: hidden;
  padding: 10px 12px;
  background: #ede7d9;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.t-row { display: flex; gap: 7px; align-items: flex-end; }
.t-row.out { justify-content: flex-end; }

.t-bav {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}

.t-bubble {
  max-width: 78%;
  padding: 7px 10px;
  border-radius: 16px;
  font-size: 11px;
  line-height: 1.45;
}

.t-bubble.in {
  background: #fff;
  border: 1px solid #e0d8cc;
  border-bottom-left-radius: 4px;
  color: #2a2218;
}

.t-bubble.ai {
  background: #3d6b4a;
  color: #fff;
  border-bottom-right-radius: 4px;
}

.t-bubble.owner {
  background: #2a5a8a;
  color: #fff;
  border-bottom-right-radius: 4px;
}

.t-blabel {
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(61,107,74,0.65);
  margin-bottom: 2px;
}

.t-blabel.owner-lbl { color: rgba(42,90,138,0.7); }

.t-bmeta { font-size: 9px; color: #9e8e7a; margin-top: 2px; }
.t-bmeta.right { text-align: right; }

.t-sys-esc {
  background: #fdf0e0;
  border: 1px solid #e8c898;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 10px;
  color: #b06820;
  font-weight: 500;
  text-align: center;
}

.t-sys-owner {
  background: #eef4ef;
  border: 1px solid #b8d8c8;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 10px;
  color: #3d6b4a;
  font-weight: 500;
  text-align: center;
}

.t-owner-bar {
  background: #eaf2ee;
  border-top: 1px solid #b8d8c8;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.t-owner-label {
  font-size: 11px; font-weight: 500;
  color: #3d6b4a;
}

.t-handback-btn {
  font-size: 10px; font-weight: 600;
  color: #3d6b4a;
  background: #fff;
  border: 1.5px solid #3d6b4a;
  border-radius: 14px;
  padding: 4px 10px;
  cursor: pointer;
}

.t-compose {
  background: #fff;
  border-top: 1px solid #e0d8cc;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.t-input {
  flex: 1;
  background: #f7f2ea;
  border: 1px solid #e0d8cc;
  border-radius: 18px;
  padding: 7px 12px;
  font-size: 11px;
  color: #9e8e7a;
}

.t-send {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #2a5a8a;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* ── CTA ── */
.cta {
  background: var(--olive);
  background-image:
    radial-gradient(ellipse at 30% 60%, #6B7A57 0%, #3A4730 70%),
    repeating-linear-gradient(
      -55deg,
      rgba(255,255,255,0.025) 0px,
      rgba(255,255,255,0.025) 1px,
      transparent 1px,
      transparent 28px
    );
  padding: 100px 0;
  text-align: center;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: var(--olive-dark);
  padding: 15px 34px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
}

.btn-white:hover {
  background: var(--paper);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

/* ── FOOTER ── */
.footer {
  background: #0e1209;
  padding: 48px 0 36px;
  color: rgba(255,255,255,0.5);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
}

.footer-brand span { color: rgba(255,255,255,0.4); font-size: 0.8rem; font-family: var(--font-body); margin-left: 10px; }

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

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
}

.footer-links a:hover { color: rgba(255,255,255,0.8); }

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 28px;
  }

  .hero-visual { display: none; }

  .hero-stat-strip { gap: 24px; }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step:first-child { border-radius: 12px 12px 0 0; }
  .step:last-child  { border-radius: 0 0 12px 12px; }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .demo-layout {
    grid-template-columns: 1fr;
  }

  .demo-phone { display: none; }

  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-stat-strip { flex-direction: column; gap: 16px; }
}

/* ── CALCULATOR SECTION ── */
.calc-section { background: var(--off-white); padding: 100px 0; }

.calc-intro {
  font-size: 17px; color: #666; max-width: 520px;
  margin: 0 auto 56px; text-align: center; line-height: 1.7;
}

.calc-section h2,
.calc-section .eyebrow { text-align: center; }

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.calc-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8e4dc;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.calc-slider-group { display: flex; flex-direction: column; }

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}

.calc-label-row label { font-size: 13px; font-weight: 600; color: #333; }

.calc-val {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px; font-weight: 700; color: var(--olive);
}

.calc-hint { font-size: 11px; color: #888; margin-bottom: 8px; }

.calc-section input[type="range"] {
  width: 100%; height: 3px;
  appearance: none; -webkit-appearance: none;
  outline: none; cursor: pointer;
  border-radius: 99px;
  background: #d8d4cc;
}

.calc-section input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--olive); cursor: pointer;
  border: 2.5px solid #F5F2EC;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}

.calc-section input[type="range"]::-moz-range-thumb {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--olive); cursor: pointer;
  border: 2.5px solid #F5F2EC;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}

.calc-range-ends {
  display: flex; justify-content: space-between;
  font-size: 10px; color: #ccc; margin-top: 3px;
}

.calc-results { display: flex; flex-direction: column; gap: 16px; }

.calc-result-card {
  background: #fff; border-radius: 14px;
  border: 1px solid #e8e4dc;
  padding: 28px; text-align: center;
}

.calc-result-card.dark {
  background: var(--olive-dark); border-color: transparent;
}

.calc-result-label {
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: #aaa; margin-bottom: 6px;
}

.calc-result-label.light { color: rgba(255,255,255,0.5); }

.calc-result-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px; font-weight: 400;
  color: var(--olive); letter-spacing: -0.03em; line-height: 1;
}

.calc-result-num.light { color: #fff; font-size: 52px; }

.calc-result-sub  { font-size: 11px; color: #ccc; margin-top: 8px; }
.calc-result-tagline { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 10px; line-height: 1.5; }

.calc-breakdown {
  background: #fff; border-radius: 14px;
  border: 1px solid #e8e4dc; padding: 4px 20px;
}

.calc-brow {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid #f4f2ee;
}

.calc-brow.last { border-bottom: none; }
.calc-brow span:first-child { font-size: 13px; color: #888; }
.calc-brow span:last-child  { font-size: 14px; font-weight: 600; color: var(--olive); }

.calc-cta {
  margin-top: 48px; text-align: center;
  font-size: 22px;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--near-black);
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap; gap: 16px;
}

.calc-cta strong { color: var(--olive); }

@media (max-width: 720px) {
  .calc-grid { grid-template-columns: 1fr; }
  .calc-cta { font-size: 18px; flex-direction: column; }
}
