/* Property Pros v5 — Light theme, Unicorn Marketers pattern */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: #FFFFFF; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Plus Jakarta Sans', sans-serif;
  background: #FFFFFF;
  color: #0F172A;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; padding: 0; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }

:root {
  /* Backgrounds */
  --bg: #FFFFFF;
  --bg-warm: #FAFAFA;
  --bg-cool: #F8FAFC;
  --bg-cyan: #E0F2FE;
  --bg-cyan-2: #EFF6FF;
  --bg-cyan-3: #DBEAFE;
  --bg-dark: #0F172A;
  --bg-dark-2: #1E293B;

  /* Lines */
  --line: #E5E7EB;
  --line-2: #D1D5DB;
  --line-blue: #BFDBFE;

  /* Foreground */
  --fg: #0F172A;
  --fg-1: #334155;
  --fg-2: #64748B;
  --fg-3: #94A3B8;
  --fg-invert: #FFFFFF;

  /* Accent — electric blue like unicorn */
  --blue: #2563EB;
  --blue-h: #3B82F6;
  --blue-d: #1D4ED8;
  --blue-light: #93C5FD;
  --blue-lightest: #DBEAFE;
  --blue-highlight: #BFDBFE;
  --blue-glow: rgba(37, 99, 235, 0.3);
  --blue-glow-soft: rgba(37, 99, 235, 0.1);

  /* Semantic */
  --gold: #F59E0B;
  --gold-h: #FBBF24;
  --success: #10B981;
  --danger: #EF4444;
  --warning: #F59E0B;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 30px 80px rgba(15, 23, 42, 0.15);
  --shadow-blue: 0 12px 40px rgba(37, 99, 235, 0.25);
  --shadow-blue-soft: 0 8px 24px rgba(37, 99, 235, 0.15);

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-full: 999px;

  /* Layout */
  --container: 1240px;
  --container-narrow: 1000px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

::selection { background: var(--blue-highlight); color: var(--fg); }

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.08; letter-spacing: -0.028em; color: var(--fg); }
h1 { font-size: clamp(38px, 4.8vw, 64px); letter-spacing: -0.035em; line-height: 1.04; }
h2 { font-size: clamp(30px, 3.6vw, 48px); letter-spacing: -0.032em; line-height: 1.08; }
h3 { font-size: clamp(20px, 1.8vw, 24px); font-weight: 700; letter-spacing: -0.018em; }
h4 { font-size: 17px; font-weight: 700; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-d);
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s ease-in-out infinite;
}

.lead { font-size: clamp(16px, 1.3vw, 19px); color: var(--fg-1); line-height: 1.55; letter-spacing: -0.005em; }
.mono { font-family: 'JetBrains Mono', 'SF Mono', ui-monospace, monospace; }

/* Highlight (like Unicorn's "Top 1%" treatment) */
.highlight {
  position: relative;
  display: inline-block;
  z-index: 0;
  padding: 0 8px;
}
.highlight::before {
  content: '';
  position: absolute;
  inset: 8% -2%;
  background: var(--blue-highlight);
  border-radius: 8px;
  z-index: -1;
  transform: rotate(-1deg);
}
.emp { color: var(--blue-d); font-weight: 800; font-style: normal; }

.text-blue { color: var(--blue); }
.text-fg1 { color: var(--fg-1); }
.text-fg2 { color: var(--fg-2); }

.stars {
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 14px;
}

/* =========================================
   LAYOUT
   ========================================= */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 3.5vw, 40px); }
.container-narrow { max-width: var(--container-narrow); }

section { position: relative; padding: clamp(64px, 8vw, 120px) 0; }
.section-tight { padding: clamp(44px, 5vw, 72px) 0; }
.section-head { max-width: 780px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { margin-bottom: 16px; }

/* Section backgrounds */
.sec-cyan { background: var(--bg-cyan-2); }
.sec-cool { background: var(--bg-cool); }
.sec-warm { background: var(--bg-warm); }
.sec-dark { background: var(--bg-dark); color: var(--fg-invert); }
.sec-dark h1, .sec-dark h2, .sec-dark h3, .sec-dark h4 { color: var(--fg-invert); }
.sec-dark .lead { color: rgba(255, 255, 255, 0.7); }
.sec-dark .eyebrow { color: var(--blue-light); }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: all 220ms var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-lg { padding: 17px 30px; font-size: 15px; }
.btn-xl { padding: 20px 36px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 13px; }

.btn-primary {
  background: var(--blue);
  color: white;
  font-weight: 600;
  box-shadow: var(--shadow-blue-soft);
}
.btn-primary:hover { background: var(--blue-d); transform: translateY(-1px); box-shadow: var(--shadow-blue); }

.btn-dark {
  background: var(--bg-dark);
  color: white;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}
.btn-dark:hover { background: #000; transform: translateY(-1px); }

.btn-outline {
  background: white;
  color: var(--fg);
  border: 1px solid var(--line-2);
}
.btn-outline:hover { border-color: var(--fg); background: var(--bg-cool); }

.btn-ghost { color: var(--fg-1); }
.btn-ghost:hover { color: var(--blue); }

.btn-block { width: 100%; }

.btn-arrow::after { content: '→'; transition: transform 220ms var(--ease); }
.btn-arrow:hover::after { transform: translateX(3px); }

/* =========================================
   NAV
   ========================================= */
.nav { position: fixed; top: 16px; left: 0; right: 0; z-index: 100; padding: 0 clamp(12px, 2vw, 24px); transition: top 260ms var(--ease); }
.nav.scrolled { top: 10px; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 10px 10px 22px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: all 260ms var(--ease);
}
.nav.scrolled .nav-inner {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 44px rgba(15, 23, 42, 0.1), 0 2px 6px rgba(15, 23, 42, 0.04);
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 15px; letter-spacing: -0.02em; color: var(--fg); }
.logo-img { height: 32px; width: auto; display: block; flex-shrink: 0; }
.footer-brand .logo-img { height: 36px; }
.logo { flex-shrink: 0; }
.logo-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 13px;
  box-shadow: var(--shadow-blue-soft);
}
.logo-sub { font-size: 10px; color: var(--fg-2); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; color: var(--fg-1); font-weight: 500; transition: color 180ms; }
.nav-links a:hover { color: var(--fg); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-mobile-toggle { display: none; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line-2); align-items: center; justify-content: center; }

.mobile-menu { position: fixed; inset: 0; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px); z-index: 200; padding: 96px 24px 40px; display: none; flex-direction: column; gap: 8px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 16px 20px; font-size: 18px; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 16px; }
.mobile-menu-close { position: absolute; top: 22px; right: 22px; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; }

/* =========================================
   HERO
   ========================================= */
.hero {
  padding: clamp(110px, 13vw, 150px) 0 clamp(60px, 8vw, 100px);
  background: linear-gradient(180deg, var(--bg-cyan-2) 0%, var(--bg-cyan) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(59, 130, 246, 0.14), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(147, 197, 253, 0.2), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 60px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-1);
  margin-bottom: 24px;
  box-shadow: var(--shadow-xs);
}
.hero-kicker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  animation: pulse 2s ease-in-out infinite;
}
.hero-content h1 { margin-bottom: 20px; }
.hero-lede { font-size: clamp(15px, 1.2vw, 18px); color: var(--fg-1); line-height: 1.6; max-width: 500px; margin-bottom: 24px; }

.hero-checks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.hero-check { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--fg-1); font-weight: 500; }
.hero-check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue-lightest);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-d);
  flex-shrink: 0;
}
.hero-check-icon svg { width: 12px; height: 12px; }

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--fg-1);
  font-weight: 500;
}
.hero-rating strong { color: var(--fg); font-weight: 700; }
.hero-rating .sep { color: var(--fg-3); }

.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-cta-sub { font-size: 13px; color: var(--fg-2); }

/* Hero video */
.hero-video {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.hero-video-thumb {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.3), transparent 60%),
    linear-gradient(135deg, #334155 0%, #0f172a 100%);
}
.hero-video-thumb::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}
.hero-video-person {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  width: 46%;
  aspect-ratio: 3 / 4;
  border-radius: 50%;
  background: linear-gradient(135deg, #94a3b8 0%, #64748b 50%, #334155 100%);
  opacity: 0.65;
}
.hero-video-caption {
  position: absolute;
  bottom: 60px; left: 50%;
  transform: translateX(-50%);
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--fg);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.008em;
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.hero-video-caption .hl {
  background: var(--blue-highlight);
  padding: 2px 6px;
  border-radius: 4px;
}
.hero-video-controls {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
}
.hero-video-play-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.hero-video-play-btn svg { width: 12px; height: 12px; margin-left: 2px; }
.hero-video-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  overflow: hidden;
}
.hero-video-bar div {
  height: 100%;
  width: 20%;
  background: var(--blue-h);
  border-radius: 999px;
}
.hero-video-time { color: rgba(255, 255, 255, 0.9); font-family: 'JetBrains Mono', monospace; }
.hero-video-cta {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  z-index: 4;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transition: transform 220ms var(--ease);
}
.hero-video-cta svg { width: 28px; height: 28px; margin-left: 4px; }
.hero-video:hover .hero-video-cta { transform: translate(-50%, -50%) scale(1.08); }

/* =========================================
   LOGO STRIP
   ========================================= */
.logo-strip {
  padding: 40px 0;
  background: white;
  border-bottom: 1px solid var(--line);
}
.logo-strip-title {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 24px;
}
.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 60px);
  flex-wrap: wrap;
  opacity: 0.65;
}
.logo-item {
  font-weight: 800;
  font-size: clamp(15px, 1.4vw, 22px);
  letter-spacing: -0.02em;
  color: var(--fg-1);
  transition: opacity 200ms;
}
.logo-item:hover { opacity: 1; }
.logo-item.italic { font-style: italic; }
.logo-item.serif { font-family: 'Playfair Display', Georgia, serif; font-weight: 900; }
.logo-item.thin { font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; font-size: clamp(11px, 1vw, 14px); }
.logo-item.tight { letter-spacing: -0.04em; }

/* =========================================
   STAT BAND
   ========================================= */
.stat-band {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--bg-cool);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.stat-cell {
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat-cell:last-child { border-right: none; }
.stat-value {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--blue);
  margin-bottom: 8px;
}
.stat-label { font-size: 13px; color: var(--fg-1); font-weight: 600; }
.stat-sub { font-size: 11px; color: var(--fg-2); margin-top: 4px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.how-step {
  padding: 36px 30px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: white;
  transition: all 260ms var(--ease);
  box-shadow: var(--shadow-xs);
}
.how-step:hover { border-color: var(--blue-light); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: var(--r-full);
  background: var(--blue-lightest);
  color: var(--blue-d);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.how-title { font-size: 22px; font-weight: 800; letter-spacing: -0.022em; margin-bottom: 12px; }
.how-body { font-size: 14px; color: var(--fg-1); line-height: 1.6; }
.how-body strong { color: var(--fg); font-weight: 600; }

/* =========================================
   PAIN SECTION (softer for light theme)
   ========================================= */
.pain-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.pain-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 40px 0 32px;
  text-align: left;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg-1);
  transition: all 220ms var(--ease);
}
.pain-item:hover { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.pain-item .x {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: var(--danger);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.pain-item .x svg { width: 11px; height: 11px; }
.pain-punch {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  letter-spacing: -0.024em;
  line-height: 1.15;
  margin-top: 20px;
}

/* =========================================
   PORTAL PREVIEW (dark for contrast)
   ========================================= */
.portal-wrap {
  position: relative;
  padding: 10px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-d) 100%);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-xl), 0 40px 80px rgba(37, 99, 235, 0.25);
}
.portal-frame { background: #0F172A; border-radius: var(--r-xl); overflow: hidden; }
.portal-topbar { display: flex; align-items: center; gap: 14px; padding: 12px 18px; border-bottom: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.02); }
.portal-dots { display: flex; gap: 6px; }
.portal-dots span { width: 9px; height: 9px; border-radius: 50%; }
.portal-dots span:nth-child(1) { background: #EF4444; }
.portal-dots span:nth-child(2) { background: #F59E0B; }
.portal-dots span:nth-child(3) { background: #10B981; }
.portal-url { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.5); margin-left: 6px; }
.portal-live { margin-left: auto; display: flex; align-items: center; gap: 6px; padding: 3px 10px; background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16, 185, 129, 0.35); border-radius: var(--r-full); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #34D399; }
.portal-live-dot { width: 5px; height: 5px; border-radius: 50%; background: #10B981; box-shadow: 0 0 8px #10B981; animation: pulse 2s ease-in-out infinite; }
.portal-body { padding: 26px; color: white; }
.portal-kpi { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 20px; }
.portal-kpi-card { padding: 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; position: relative; overflow: hidden; }
.portal-kpi-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--blue-h), transparent 60%); opacity: 0.7; }
.portal-kpi-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 700; margin-bottom: 6px; }
.portal-kpi-value { font-size: 22px; font-weight: 800; letter-spacing: -0.024em; }
.portal-kpi-delta { font-size: 10px; margin-top: 3px; font-weight: 700; color: #34D399; }
.portal-chart { padding: 18px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; margin-bottom: 16px; }
.portal-chart-title { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.portal-chart-sub { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 14px; }

.deals-table { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 16px; }
.deals-table-head, .deals-table-row { display: grid; grid-template-columns: 60px 1.3fr 100px 100px 80px 80px; gap: 12px; align-items: center; }
.deals-table-head { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 700; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 6px; }
.deals-table-row { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 12px; color: rgba(255,255,255,0.85); }
.deals-table-row:last-child { border-bottom: none; }
.deals-table-row .addr { color: white; font-weight: 500; }
.deals-table-row .kw { color: rgba(255,255,255,0.6); font-family: 'JetBrains Mono', monospace; font-size: 11px; }
.deals-table-row .val { color: var(--blue-h); font-weight: 700; font-size: 13px; }
.deals-table-row .val.pending { color: #FBBF24; }
.status-pill { display: inline-flex; align-items: center; padding: 3px 8px; border-radius: 4px; font-size: 9px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.status-signed { background: rgba(16, 185, 129, 0.15); color: #34D399; }
.status-pending { background: rgba(251, 191, 36, 0.15); color: #FBBF24; }

/* =========================================
   HERO BRANDLINE (Top 1% pill)
   ========================================= */
.hero-brandline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-1);
  margin-bottom: 24px;
  box-shadow: var(--shadow-xs);
}
.hero-brandline-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FDE68A 0%, #F59E0B 100%);
  color: white;
  font-size: 11px;
  font-weight: 900;
}

/* =========================================
   HERO SOCIAL PROOF (avatars + rating)
   ========================================= */
.hero-social {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px 12px 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-xs);
  margin-top: 20px;
  max-width: fit-content;
}
.hero-social-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-1);
  font-weight: 500;
}
.hero-social-text strong { color: var(--fg); font-weight: 800; }
.hero-social-text .stars { color: var(--gold); letter-spacing: 1px; font-size: 12px; }

/* =========================================
   STAT PROOF BAND (Unicorn-inspired)
   ========================================= */
.stat-proof {
  padding: 48px 0;
  background: linear-gradient(180deg, var(--bg-cyan) 0%, var(--bg-cool) 100%);
  border-bottom: 1px solid var(--line);
}
.stat-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: 20px;
  align-items: stretch;
}
.stat-proof-grid.three { grid-template-columns: repeat(3, 1fr); }
.stat-proof-cell {
  padding: 22px 26px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat-proof-cell:last-child { border-right: none; }
.stat-proof-value {
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--blue-d);
  margin-bottom: 8px;
}
.stat-proof-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.stat-proof-sub {
  font-size: 12px;
  color: var(--fg-2);
}
.stat-proof-cell-pill {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: var(--shadow-xs);
}
.stat-proof-pill-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-2);
  font-weight: 700;
  margin-bottom: 8px;
}
.stat-proof-pill-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.stat-proof-num {
  color: var(--blue-d);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.028em;
}
.stat-proof-pill-bar {
  height: 6px;
  background: var(--bg-cool);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.stat-proof-pill-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-d) 100%);
  border-radius: 999px;
}
.stat-proof-pill-sub {
  font-size: 12px;
  color: var(--fg-2);
  font-weight: 500;
}
@media (max-width: 1080px) {
  .stat-proof-grid,
  .stat-proof-grid.three { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-proof-cell { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 20px; }
  .stat-proof-cell:last-child, .stat-proof-cell:nth-last-child(2) { border-bottom: none; }
}
@media (max-width: 720px) {
  .stat-proof-grid,
  .stat-proof-grid.three { grid-template-columns: 1fr; }
  .stat-proof-cell {
    border-bottom: 1px solid var(--line);
    padding: 18px 4px;
    text-align: left;
  }
  .stat-proof-cell:last-child { border-bottom: none; }
}

/* =========================================
   QUALIFICATION BAND (legacy — kept for compat)
   ========================================= */
.qual-band {
  padding: 32px 0;
  background: linear-gradient(180deg, var(--bg-cyan) 0%, var(--bg-cool) 100%);
  border-bottom: 1px solid var(--line);
}
.qual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: 20px;
  align-items: center;
}
.qual-cell {
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}
.qual-cell:last-child { border-right: none; }
.qual-value {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--blue-d);
}
.qual-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
  margin-top: 4px;
}
.qual-sub {
  font-size: 12px;
  color: var(--fg-2);
  margin-top: 2px;
}
.qual-cell-pill {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: var(--shadow-xs);
}
.qual-pill-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-2);
  font-weight: 700;
  margin-bottom: 6px;
}
.qual-pill-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.qual-num {
  color: var(--blue-d);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.026em;
}
.qual-pill-bar {
  height: 6px;
  background: var(--bg-cool);
  border-radius: 999px;
  overflow: hidden;
}
.qual-pill-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-d) 100%);
  border-radius: 999px;
}

/* =========================================
   HOW WE WORK — replaces pricing
   ========================================= */
.how-we-work { max-width: 1080px; margin: 0 auto; }
.hww-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hww-col {
  padding: 32px 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-xs);
}
.hww-col.yes { border-left: 3px solid var(--blue); }
.hww-col.no { background: var(--bg-cool); }
.hww-col-title {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-2);
  font-weight: 700;
  margin-bottom: 20px;
}
.hww-col.yes .hww-col-title { color: var(--blue-d); }
.hww-list { display: flex; flex-direction: column; gap: 14px; }
.hww-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--fg-1);
  line-height: 1.55;
}
.hww-list li:last-child { border-bottom: none; }
.hww-list li strong { color: var(--fg); font-weight: 700; }
.hww-cta {
  text-align: center;
  margin-top: 40px;
}
.hww-cta-sub {
  font-size: 13px;
  color: var(--fg-2);
  margin-top: 14px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   SCHEDULE-CALL PAGE
   ========================================= */
.sc-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.sc-what-cover {
  margin-top: 32px;
  padding: 24px 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xs);
}
.sc-cover-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-d);
  margin-bottom: 16px;
}
.sc-cover-list { display: flex; flex-direction: column; gap: 12px; }
.sc-cover-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--fg);
  line-height: 1.55;
}
.sc-ck {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue-lightest);
  color: var(--blue-d);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.sc-ck svg { width: 12px; height: 12px; }

.sc-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.sc-side-cal-head {
  padding: 4px 4px 0;
}
.sc-side-cal-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.022em;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 6px;
}
.sc-side-cal-sub {
  font-size: 13px;
  color: var(--fg-2);
  line-height: 1.5;
}
.sc-proof-band {
  padding: clamp(48px, 6vw, 80px) 0;
  background: linear-gradient(180deg, var(--bg-cool) 0%, white 100%);
}
.sc-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}
.sc-proof-grid .sc-side-stats {
  padding-bottom: 0;
  border-bottom: none;
  grid-template-columns: 1fr;
  align-content: start;
}
.sc-proof-grid .sc-side-quote {
  padding: 28px 32px 28px 52px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xs);
}
.sc-proof-grid .sc-side-quote-mark {
  top: 4px; left: 20px;
}
.sc-proof-grid .sc-side-quote p { font-size: 16px; line-height: 1.6; }
.sc-side-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.sc-side-stat {
  padding: 12px 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.sc-side-val {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.028em;
  color: var(--blue-d);
}
.sc-side-lbl { font-size: 12px; color: var(--fg-1); margin-top: 4px; font-weight: 500; }
.sc-side-quote {
  position: relative;
  padding-left: 28px;
}
.sc-side-quote-mark {
  position: absolute;
  top: -8px; left: -2px;
  font-size: 44px;
  font-weight: 900;
  line-height: 0.8;
  color: var(--blue-light);
  font-family: 'Playfair Display', serif;
}
.sc-side-quote p {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 12px;
}
.sc-side-quote-attrib { font-size: 12px; color: var(--fg-2); }
.sc-side-quote-attrib strong { color: var(--fg); font-weight: 700; }

.sc-calendar-embed {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  min-height: 460px;
  overflow: hidden;
}
.sc-calendar-embed-side {
  min-height: 460px;
  border-radius: var(--r-lg);
}
.sc-calendar-embed .iclosed-widget {
  border-radius: inherit;
}
.sc-cal-placeholder { text-align: center; max-width: 420px; }
.sc-cal-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--line);
  color: var(--blue-d);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-xs);
}
.sc-cal-icon svg { width: 30px; height: 30px; }
.sc-cal-title { font-size: 20px; font-weight: 800; letter-spacing: -0.018em; margin-bottom: 8px; }
.sc-cal-sub { font-size: 14px; color: var(--fg-2); line-height: 1.55; }

.sc-fit-section { padding: clamp(56px, 7vw, 96px) 0; }
.sc-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.sc-fit-col {
  padding: 32px 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xs);
}
.sc-fit-col.yes { border-left: 3px solid var(--blue); }
.sc-fit-col.no { background: var(--bg-cool); }
.sc-fit-col-title {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-2);
  font-weight: 700;
  margin-bottom: 20px;
}
.sc-fit-col.yes .sc-fit-col-title { color: var(--blue-d); }
.sc-fit-col ul { display: flex; flex-direction: column; }
.sc-fit-col li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--fg-1);
  line-height: 1.55;
}
.sc-fit-col li:last-child { border-bottom: none; }

.sc-faq-section { padding: clamp(56px, 7vw, 96px) 0; }

@media (max-width: 1080px) {
  .sc-hero-inner { grid-template-columns: 1fr; }
  .sc-side { position: static; }
  .sc-side-stats { grid-template-columns: 1fr 1fr 1fr; }
  .sc-proof-grid { grid-template-columns: 1fr; }
  .sc-fit-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .sc-side-stats { grid-template-columns: 1fr; }
}

/* =========================================
   THANK-YOU PAGE
   ========================================= */
.ty-hero { padding: clamp(100px, 12vw, 140px) 0 clamp(56px, 7vw, 96px); }
.ty-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.ty-check {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #34D399 0%, #059669 100%);
  color: white;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
}
.ty-check svg { width: 44px; height: 44px; }
.ty-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 20px;
}
.ty-lede { margin: 0 auto 40px; max-width: 640px; }
.ty-trust-row { margin: 0 auto 28px; }

.ty-video {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.ty-video-thumb {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.3), transparent 60%),
    linear-gradient(135deg, #334155 0%, #0f172a 100%);
}
.ty-video-thumb::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}
.ty-video-person {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  width: 30%;
  aspect-ratio: 3 / 4;
  border-radius: 50%;
  background: linear-gradient(135deg, #94a3b8 0%, #64748b 50%, #334155 100%);
  opacity: 0.65;
}
.ty-video-caption {
  position: absolute;
  bottom: 70px; left: 50%;
  transform: translateX(-50%);
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--fg);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.ty-video-caption .hl {
  background: var(--blue-highlight);
  padding: 2px 6px;
  border-radius: 4px;
}
.ty-video-cta {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  z-index: 4;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transition: transform 220ms var(--ease);
}
.ty-video-cta svg { width: 32px; height: 32px; margin-left: 4px; }
.ty-video:hover .ty-video-cta { transform: translate(-50%, -50%) scale(1.08); }
.ty-video-controls {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  z-index: 3;
  display: flex; align-items: center; gap: 12px;
  color: rgba(255, 255, 255, 0.85); font-size: 12px;
}
.ty-video-play-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.ty-video-play-btn svg { width: 12px; height: 12px; margin-left: 2px; }
.ty-video-bar {
  flex: 1; height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px; overflow: hidden;
}
.ty-video-bar div {
  height: 100%; width: 0%;
  background: var(--blue-h); border-radius: 999px;
}
.ty-video-time { color: rgba(255, 255, 255, 0.9); font-family: 'JetBrains Mono', monospace; }

.ty-prep { padding: clamp(56px, 7vw, 96px) 0; }
.ty-prep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.ty-prep-card {
  padding: 32px 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xs);
  transition: all 220ms var(--ease);
}
.ty-prep-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-md); }
.ty-prep-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  background: var(--blue-lightest);
  color: var(--blue-d);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.ty-prep-title { font-size: 19px; font-weight: 800; letter-spacing: -0.018em; margin-bottom: 12px; }
.ty-prep-body { font-size: 14px; color: var(--fg-1); line-height: 1.6; }
.ty-prep-body strong { color: var(--fg); font-weight: 700; }

.ty-next { padding: clamp(56px, 7vw, 96px) 0; }
.ty-next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.ty-next-item {
  padding: 28px 26px;
  background: linear-gradient(180deg, var(--bg-cool) 0%, white 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
}
.ty-next-time {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-d);
  margin-bottom: 10px;
}
.ty-next-title { font-size: 17px; font-weight: 800; letter-spacing: -0.014em; margin-bottom: 8px; }
.ty-next-body { font-size: 13px; color: var(--fg-1); line-height: 1.6; }

.ty-while { padding: clamp(56px, 7vw, 96px) 0; }
.ty-while-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.ty-while h2 { margin-bottom: 16px; }
.ty-while-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

@media (max-width: 1080px) {
  .ty-prep-grid { grid-template-columns: 1fr; }
  .ty-next-grid { grid-template-columns: 1fr; }
}

/* =========================================
   STATEMENT VISUAL (Real estate investors only)
   ========================================= */
.statement-visual { padding: clamp(72px, 8vw, 120px) 0; }
.statement-visual-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.statement-visual-copy h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.08;
  margin-bottom: 22px;
}
.statement-visual-copy .lead { font-size: 17px; color: var(--fg-1); line-height: 1.65; }
.statement-visual-copy .lead + .lead { margin-top: 16px; }

.statement-image-card {
  position: relative;
  padding: 44px 36px;
  background: linear-gradient(160deg, var(--bg-cyan) 0%, white 100%);
  border: 1px solid var(--blue-light);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.statement-image-card::before {
  content: '';
  position: absolute;
  top: -30%; right: -30%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--blue-glow-soft), transparent 65%);
  pointer-events: none;
}
.statement-image-mark {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--blue);
  color: white;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow-blue-soft);
}
.statement-image-mark svg { width: 30px; height: 30px; }
.statement-image-badge {
  position: absolute;
  top: 32px; right: 32px;
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--blue-d);
  box-shadow: var(--shadow-xs);
}
.statement-image-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  position: relative;
}
.sit {
  padding: 8px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
}
.statement-image-metric {
  position: relative;
  padding-top: 20px;
  border-top: 1px solid var(--blue-light);
}
.sim-val {
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--blue-d);
  margin-bottom: 8px;
}
.sim-label {
  font-size: 14px;
  color: var(--fg-1);
  font-weight: 500;
}

/* Headshot placeholder card (swap in real photos later) */
.statement-headshots {
  position: relative;
  padding: 44px 36px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.statement-headshots::before {
  content: '';
  position: absolute;
  top: -40%; right: -30%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--blue-glow-soft), transparent 65%);
  pointer-events: none;
}
.hs-badge {
  position: absolute;
  top: 28px; right: 28px;
  padding: 6px 14px;
  background: var(--blue);
  color: white;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  box-shadow: var(--shadow-blue-soft);
  z-index: 2;
}
.hs-grid {
  display: flex;
  margin-bottom: 28px;
  position: relative;
}
.hs {
  width: 76px; height: 76px;
  border-radius: 50%;
  border: 4px solid white;
  margin-left: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.12);
  transition: transform 220ms var(--ease);
  position: relative;
  overflow: hidden;
  background: var(--blue-lightest);
}
.hs:first-child { margin-left: 0; }
.hs:hover { transform: translateY(-4px); z-index: 10; }
.hs img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hs-1 { z-index: 5; }
.hs-2 { z-index: 4; }
.hs-3 { z-index: 3; }
.hs-4 { z-index: 2; }
.hs-5 { z-index: 1; }
.hs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  position: relative;
}
.hs-metric {
  position: relative;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* =========================================
   TRUST ROW (faces + copy)
   ========================================= */
.trust-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 8px 20px 8px 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
}
.trust-faces { display: flex; flex-shrink: 0; }
.trust-face {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2.5px solid white;
  margin-left: -12px;
  overflow: hidden;
  background: var(--blue-lightest);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
  position: relative;
}
.trust-face:first-child { margin-left: 0; }
.trust-face:nth-child(1) { z-index: 5; }
.trust-face:nth-child(2) { z-index: 4; }
.trust-face:nth-child(3) { z-index: 3; }
.trust-face:nth-child(4) { z-index: 2; }
.trust-face:nth-child(5) { z-index: 1; }
.trust-face img { width: 100%; height: 100%; object-fit: cover; display: block; }
.trust-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.trust-copy-main {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.trust-copy-accent {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue-d);
  letter-spacing: -0.005em;
  line-height: 1.25;
}
@media (max-width: 560px) {
  .trust-row {
    display: flex;
    padding: 6px 14px 6px 6px;
    gap: 10px;
    max-width: 100%;
  }
  .trust-face { width: 32px; height: 32px; margin-left: -10px; border-width: 2px; }
  .trust-copy-main { font-size: 12px; }
  .trust-copy-accent { font-size: 11.5px; }
}

@media (max-width: 1080px) {
  .statement-visual-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================
   CLIENT STORIES · video-first
   ========================================= */
.client-stories { padding: clamp(72px, 8vw, 120px) 0; }
.client-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.client-video {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 260ms var(--ease);
  isolation: isolate;
}
.client-video.feature {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 620px;
}
.client-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.88) 100%);
  z-index: 2;
}
.client-video:hover { border-color: var(--blue); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.cv-bg { position: absolute; inset: 0; z-index: 1; background-size: cover; background-position: center 15%; background-repeat: no-repeat; }
.cv-bg-1 { background-color: #1e3a5f; background-image: linear-gradient(135deg, rgba(30,58,95,0.35) 0%, rgba(13,30,52,0.55) 100%), url('images/client-1.webp'); }
.cv-bg-2 { background-color: #4a3a25; background-image: linear-gradient(135deg, rgba(74,58,37,0.35) 0%, rgba(32,24,16,0.55) 100%), url('images/client-2.webp'); }
.cv-bg-3 { background-color: #2f4a6b; background-image: linear-gradient(135deg, rgba(47,74,107,0.35) 0%, rgba(23,37,56,0.55) 100%), url('images/client-6.webp'); }
.cv-bg-4 { background-color: #5a2f45; background-image: linear-gradient(135deg, rgba(90,47,69,0.35) 0%, rgba(44,21,35,0.55) 100%), url('images/client-5.webp'); }
.cv-bg-5 { background-color: #3a5a45; background-image: linear-gradient(135deg, rgba(58,90,69,0.35) 0%, rgba(26,44,34,0.55) 100%), url('images/client-3.webp'); }

.cv-badge {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 3;
  padding: 6px 12px;
  background: white;
  color: var(--blue-d);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cv-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  z-index: 3;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  transition: transform 260ms var(--ease);
}
.cv-play svg { width: 26px; height: 26px; margin-left: 3px; }
.client-video:hover .cv-play { transform: translate(-50%, -50%) scale(1.08); }
.client-video.feature .cv-play { width: 88px; height: 88px; }
.client-video.feature .cv-play svg { width: 32px; height: 32px; margin-left: 4px; }

.cv-meta {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  z-index: 3;
  color: white;
}
.client-video.feature .cv-meta { left: 32px; right: 32px; bottom: 32px; }
.cv-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.client-video.feature .cv-name { font-size: 32px; }
.cv-detail {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
}
.client-video.feature .cv-detail { font-size: 15px; }
.cv-metric-row {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.cv-metric-pill {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  color: white;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.cv-metric-pill strong { font-weight: 800; }

@media (max-width: 1080px) {
  .client-video-grid { grid-template-columns: 1fr 1fr; }
  .client-video.feature { grid-column: span 2; min-height: 440px; }
}
@media (max-width: 720px) {
  .client-video-grid { grid-template-columns: 1fr; }
  .client-video.feature { grid-column: span 1; min-height: 380px; }
}

/* =========================================
   CHAD UNIT ECONOMICS
   ========================================= */
.anchor-unit-econ {
  margin-bottom: 32px;
  padding: 22px 24px;
  background: var(--bg-dark);
  color: white;
  border-radius: 14px;
}
.anchor-unit-title {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  margin-bottom: 14px;
}
.anchor-unit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.anchor-unit-cell {
  border-right: 1px solid rgba(255,255,255,0.08);
  padding-right: 16px;
}
.anchor-unit-cell:last-child { border-right: none; }
.anchor-unit-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  margin-bottom: 6px;
}
.anchor-unit-val {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #7DFEE4;
}

@media (max-width: 1080px) {
  .qual-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .qual-cell { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
  .qual-cell:last-child, .qual-cell:nth-last-child(2) { border-bottom: none; }
  .hww-cols { grid-template-columns: 1fr; }
  .anchor-unit-grid { grid-template-columns: 1fr 1fr; }
  .anchor-unit-cell { border-right: none; padding-right: 0; }
}
@media (max-width: 720px) {
  .qual-grid { grid-template-columns: 1fr; }
  .qual-cell { border-bottom: 1px solid var(--line); }
  .qual-cell:last-child { border-bottom: none; }
  .anchor-unit-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* =========================================
   HERO TRUST BADGES
   ========================================= */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
  max-width: 640px;
}
.hero-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 12px;
  color: var(--fg-1);
  line-height: 1.4;
}
.hero-trust-item svg { flex-shrink: 0; width: 14px; height: 14px; color: var(--blue-d); margin-top: 1px; }
.hero-trust-item strong { color: var(--fg); font-weight: 700; display: block; }

/* =========================================
   CHAD ANCHOR CASE STUDY
   ========================================= */
.anchor-case {
  padding: clamp(56px, 7vw, 96px) 0;
  background: linear-gradient(180deg, white 0%, var(--bg-cool) 100%);
}
.anchor-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.anchor-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-d) 100%);
}
.anchor-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-d);
  font-weight: 700;
  margin-bottom: 18px;
}
.anchor-headline {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 32px;
}
.anchor-strike {
  text-decoration: line-through;
  text-decoration-color: rgba(239, 68, 68, 0.5);
  text-decoration-thickness: 3px;
  color: var(--fg-2);
}
.anchor-punch { color: var(--blue-d); }
.anchor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.anchor-metric {
  padding: 24px 24px;
  background: var(--bg-cool);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.anchor-metric.flip {
  background: linear-gradient(160deg, var(--blue-lightest) 0%, white 100%);
  border-color: var(--blue-light);
}
.anchor-metric-value {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--fg-2);
  margin-bottom: 10px;
}
.anchor-metric.flip .anchor-metric-value {
  color: var(--blue);
}
.anchor-metric-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}
.anchor-metric-sub {
  font-size: 13px;
  color: var(--fg-2);
}
.anchor-quote {
  position: relative;
  padding: 28px 32px 28px 60px;
  background: var(--bg-cool);
  border-radius: 14px;
  border: 1px solid var(--line);
}
.anchor-quote-mark {
  position: absolute;
  top: 20px; left: 22px;
  font-size: 52px;
  font-weight: 900;
  line-height: 0.8;
  color: var(--blue-light);
  font-family: 'Playfair Display', serif;
}
.anchor-quote p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  margin-bottom: 16px;
  font-style: italic;
}
.anchor-quote-attrib {
  font-size: 13px;
  color: var(--fg-2);
}
.anchor-quote-attrib strong { color: var(--fg); font-weight: 700; }

/* =========================================
   INTENT KEYWORD MOCKUP (Pillar 02)
   ========================================= */
.mockup-intent .mockup-inner { padding: 24px 22px; }
.mockup-intent-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.mockup-intent-col {
  padding: 16px 14px;
  background: var(--bg-cool);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.mockup-intent-col.skip {
  background: #fef7f7;
  border-color: #fee2e2;
}
.mockup-intent-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.mockup-intent-tick {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.mockup-intent-tick.ok { background: rgba(16,185,129,0.14); color: #059669; }
.mockup-intent-tick.no { background: rgba(239,68,68,0.14); color: #DC2626; }
.mockup-intent-tick svg { width: 12px; height: 12px; }
.mockup-intent-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.012em;
}
.mockup-intent-col.skip .mockup-intent-title { color: #7F1D1D; }
.mockup-intent-kw {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  padding: 6px 10px;
  background: white;
  border-radius: 6px;
  margin-bottom: 5px;
  color: var(--fg);
  border: 1px solid var(--line);
}
.mockup-intent-kw.skip {
  color: var(--fg-2);
  text-decoration: line-through;
  text-decoration-color: rgba(239, 68, 68, 0.4);
}
.mockup-intent-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
  padding: 14px;
  background: var(--fg);
  color: white;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.mockup-intent-vs {
  padding: 3px 10px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

/* =========================================
   SINGLE PRICE CARD
   ========================================= */
.price-single {
  max-width: 960px;
  margin: 0 auto;
}
.price-single-inner {
  padding: clamp(36px, 4.5vw, 56px);
  background: white;
  border: 2px solid var(--blue);
  border-radius: 28px;
  box-shadow: var(--shadow-lg), var(--shadow-blue-soft);
  position: relative;
  overflow: hidden;
}
.price-single-inner::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--blue-glow-soft), transparent 70%);
  pointer-events: none;
}
.price-single-top {
  text-align: center;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.price-single-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-d);
  margin-bottom: 14px;
}
.price-single-amount {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 12px;
}
.price-single-currency {
  font-size: 32px;
  font-weight: 700;
  color: var(--fg-1);
}
.price-single-value {
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--fg);
}
.price-single-period {
  font-size: 20px;
  color: var(--fg-2);
  font-weight: 500;
}
.price-single-sub {
  font-size: 15px;
  color: var(--fg-1);
  max-width: 520px;
  margin: 0 auto;
}
.price-single-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
  position: relative;
}
.price-single-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 18px;
}
.price-single-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-single-list li {
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  color: var(--fg-1);
  line-height: 1.55;
}
.price-single-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 5px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}
.price-single-list.checks li strong { color: var(--fg); }
.price-single-cta {
  text-align: center;
  position: relative;
}
.price-single-cta-sub {
  font-size: 13px;
  color: var(--fg-2);
  margin-top: 14px;
}

@media (max-width: 720px) {
  .hero-trust { grid-template-columns: 1fr; }
  .anchor-grid { grid-template-columns: 1fr; }
  .price-single-cols { grid-template-columns: 1fr; gap: 32px; }
}

/* =========================================
   INSIDE THE DEAL ENGINE · PILLARS
   ========================================= */
.pillar {
  padding: clamp(40px, 5vw, 72px) 0;
  border-bottom: 1px solid var(--line);
}
.pillar:first-of-type { padding-top: clamp(16px, 2vw, 24px); }
.pillar:last-child { border-bottom: none; }
.pillar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.pillar.reverse .pillar-visual { order: -1; }
.pillar-content .pillar-num {
  display: inline-block;
  padding: 6px 12px;
  background: var(--blue-lightest);
  color: var(--blue-d);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pillar-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 18px;
  color: var(--fg);
}
.pillar-body {
  font-size: 16px;
  color: var(--fg-1);
  line-height: 1.65;
  margin-bottom: 20px;
}
.pillar-body p + p { margin-top: 14px; }
.pillar-body strong { color: var(--fg); font-weight: 600; }
.pillar-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}
.pillar-fact {
  padding: 14px 16px;
  background: var(--bg-cool);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.pillar-fact-value { font-size: 20px; font-weight: 800; letter-spacing: -0.018em; color: var(--blue-d); line-height: 1; }
.pillar-fact-label { font-size: 11px; color: var(--fg-2); font-weight: 600; margin-top: 6px; letter-spacing: 0.04em; text-transform: uppercase; }

/* Mockup card - shared */
.mockup {
  position: relative;
  padding: 10px;
  background: linear-gradient(180deg, var(--blue-lightest) 0%, transparent 100%);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.mockup-inner {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

/* Pillar 1 — Landing page mockup */
.mockup-lp { background: #fff; box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16); }
.mockup-lp .mockup-inner { padding: 0; }
.mockup-lp-bar { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-bottom: 1px solid var(--line); background: var(--bg-cool); }
.mockup-lp-bar span { width: 8px; height: 8px; border-radius: 50%; }
.mockup-lp-bar span:nth-child(1) { background: #EF4444; }
.mockup-lp-bar span:nth-child(2) { background: #F59E0B; }
.mockup-lp-bar span:nth-child(3) { background: #10B981; }
.mockup-lp-url { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--fg-2); margin-left: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.mockup-lp-body { padding: 22px 26px; }
.mockup-lp-body.is-screenshot { padding: 0; line-height: 0; }
.mockup-lp-screenshot { display: block; width: 100%; height: auto; }
.mockup-lp-brand { display: flex; align-items: center; gap: 8px; padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.mockup-lp-brand-mark {
  width: 24px; height: 24px; border-radius: 6px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 10px;
}
.mockup-lp-brand-name { font-size: 13px; font-weight: 700; letter-spacing: -0.012em; }
.mockup-lp-brand-phone { margin-left: auto; font-size: 12px; color: var(--blue-d); font-weight: 700; }
.mockup-lp-h { font-size: clamp(18px, 1.5vw, 22px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 10px; color: var(--fg); }
.mockup-lp-h .hl { background: #FEF3C7; padding: 0 4px; border-radius: 3px; }
.mockup-lp-sub { font-size: 12px; color: var(--fg-1); line-height: 1.5; margin-bottom: 18px; }
.mockup-lp-badges { display: flex; gap: 8px; margin-bottom: 18px; }
.mockup-lp-badge { padding: 4px 10px; background: var(--blue-lightest); color: var(--blue-d); border-radius: 999px; font-size: 10px; font-weight: 700; }
.mockup-lp-form { padding: 14px; background: var(--bg-cool); border-radius: 10px; }
.mockup-lp-input { padding: 10px 12px; background: white; border: 1px solid var(--line); border-radius: 6px; font-size: 11px; color: var(--fg-2); margin-bottom: 8px; }
.mockup-lp-btn { padding: 11px; background: var(--blue); color: white; border-radius: 6px; font-size: 12px; font-weight: 700; text-align: center; }
.mockup-lp-annotation {
  position: absolute;
  padding: 4px 10px;
  background: var(--fg);
  color: white;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.mockup-lp-annotation::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  background: var(--fg);
  transform: rotate(45deg);
}
.mockup-lp-annotation.top { top: 20px; right: -20px; }
.mockup-lp-annotation.top::after { left: -3px; top: 50%; margin-top: -4px; }
.mockup-lp-annotation.mid { top: 45%; left: -30px; }
.mockup-lp-annotation.mid::after { right: -3px; top: 50%; margin-top: -4px; }
.mockup-lp-annotation.bot { bottom: 30px; right: -20px; }
.mockup-lp-annotation.bot::after { left: -3px; top: 50%; margin-top: -4px; }

/* Pillar 2 — Google Ads mockup */
.mockup-ads .mockup-inner { padding: 20px 22px; }
.mockup-ads-h { display: flex; align-items: center; gap: 8px; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.mockup-ads-h svg { width: 20px; height: 20px; }
.mockup-ads-title { font-size: 13px; font-weight: 700; }
.mockup-ads-status { margin-left: auto; padding: 3px 8px; background: rgba(16,185,129,0.12); color: #059669; border-radius: 4px; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.mockup-ads-campaign {
  padding: 12px 14px;
  background: var(--bg-cool);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}
.mockup-ads-campaign-name { font-size: 12px; font-weight: 700; color: var(--fg); }
.mockup-ads-campaign-meta { font-size: 10px; color: var(--fg-2); font-family: 'JetBrains Mono', monospace; margin-top: 3px; }
.mockup-ads-campaign-val { font-size: 13px; font-weight: 700; color: var(--blue-d); }
.mockup-ads-callouts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.mockup-ads-callout {
  padding: 10px 12px;
  background: var(--blue-lightest);
  border-radius: 8px;
}
.mockup-ads-callout-value { font-size: 17px; font-weight: 800; color: var(--blue-d); letter-spacing: -0.02em; }
.mockup-ads-callout-label { font-size: 10px; color: var(--fg-1); font-weight: 600; margin-top: 3px; }

/* Pillar 3 — Form mockup */
.mockup-form .mockup-inner { padding: 24px 26px; background: linear-gradient(180deg, white 0%, var(--bg-cool) 100%); }
.mockup-form-h { text-align: center; margin-bottom: 20px; }
.mockup-form-title { font-size: 15px; font-weight: 800; letter-spacing: -0.014em; margin-bottom: 4px; }
.mockup-form-sub { font-size: 11px; color: var(--fg-2); }
.mockup-form-q { padding: 14px; background: white; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 10px; position: relative; }
.mockup-form-q.passed { border-color: rgba(16,185,129,0.4); background: rgba(16,185,129,0.05); }
.mockup-form-q.filtered { border-color: rgba(239,68,68,0.4); background: rgba(239,68,68,0.05); }
.mockup-form-q-label { font-size: 11px; font-weight: 700; margin-bottom: 8px; color: var(--fg); }
.mockup-form-q-opts { display: flex; gap: 6px; }
.mockup-form-q-opt {
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  color: var(--fg-2);
  background: white;
}
.mockup-form-q-opt.selected { background: var(--blue); color: white; border-color: var(--blue); }
.mockup-form-q-tag {
  position: absolute;
  top: 12px; right: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.mockup-form-q.passed .mockup-form-q-tag { background: #10B981; color: white; }
.mockup-form-q.filtered .mockup-form-q-tag { background: #EF4444; color: white; }
.mockup-form-result {
  margin-top: 10px;
  padding: 12px 14px;
  background: var(--bg-dark);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mockup-form-result-icon { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: #34D399; }
.mockup-form-result-icon.warn { background: rgba(239,68,68,0.2); color: #FCA5A5; }
.mockup-form-result-text { flex: 1; font-size: 12px; font-weight: 600; }
.mockup-form-result-text strong { color: #34D399; }
.mockup-form-result-icon.warn ~ .mockup-form-result-text strong { color: #FCA5A5; }

/* Pillar 4 — Loop diagram (light theme version) */
.mockup-loop {
  aspect-ratio: 1 / 1;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
}
.mockup-loop svg { width: 100%; height: 100%; }
.loop-node-light {
  position: absolute;
  padding: 12px 16px;
  background: white;
  border: 1px solid var(--blue-light);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  min-width: 140px;
  text-align: center;
}
.loop-node-light .lnl-num { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-d); font-weight: 700; margin-bottom: 4px; }
.loop-node-light .lnl-title { font-size: 13px; font-weight: 700; color: var(--fg); letter-spacing: -0.01em; }
.loop-node-light.n1 { top: 0; left: 50%; transform: translateX(-50%); }
.loop-node-light.n2 { top: 50%; right: -20px; transform: translateY(-50%); }
.loop-node-light.n3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.loop-node-light.n4 { top: 50%; left: -20px; transform: translateY(-50%); }
.loop-center-light {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 12px 16px;
  background: var(--bg-dark);
  border-radius: 12px;
  color: white;
  box-shadow: var(--shadow-lg);
  max-width: 140px;
}
.loop-center-light-title { font-size: 13px; font-weight: 800; letter-spacing: -0.014em; line-height: 1.15; }
.loop-center-light-sub { font-size: 10px; color: rgba(255,255,255,0.75); margin-top: 3px; line-height: 1.2; }
.loop-path-light { fill: none; stroke: var(--blue); stroke-width: 1.5; stroke-dasharray: 5 7; opacity: 0.7; animation: dashLight 2.5s linear infinite; }
@keyframes dashLight { to { stroke-dashoffset: -24; } }

/* Pillar 5 — Ops feed mockup */
.mockup-ops .mockup-inner { padding: 20px 22px; }
.mockup-ops-h { display: flex; align-items: center; gap: 8px; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 12px; }
.mockup-ops-title { font-size: 13px; font-weight: 700; }
.mockup-ops-badge { margin-left: auto; padding: 3px 8px; background: rgba(37,99,235,0.1); color: var(--blue-d); border-radius: 4px; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.mockup-ops-item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.mockup-ops-item:last-child { border-bottom: none; }
.mockup-ops-dot { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.mockup-ops-dot.warn { background: rgba(245,158,11,0.15); color: #D97706; }
.mockup-ops-dot.info { background: rgba(37,99,235,0.15); color: var(--blue-d); }
.mockup-ops-dot.ok { background: rgba(16,185,129,0.15); color: #059669; }
.mockup-ops-dot svg { width: 10px; height: 10px; }
.mockup-ops-body { flex: 1; }
.mockup-ops-msg { font-size: 12px; font-weight: 600; color: var(--fg); }
.mockup-ops-meta { font-size: 10px; color: var(--fg-2); margin-top: 2px; font-family: 'JetBrains Mono', monospace; }
.mockup-ops-time { font-size: 10px; color: var(--fg-3); flex-shrink: 0; }

@media (max-width: 1080px) {
  .pillar-inner { grid-template-columns: 1fr; gap: 40px; }
  .pillar.reverse .pillar-visual { order: 0; }
  .mockup-lp-annotation { display: none; }
  .mockup-loop { max-width: 380px; }
  .loop-node-light { min-width: 120px; padding: 10px 12px; }
}

/* =========================================
   TESTIMONIALS (Unicorn-style cards)
   ========================================= */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial {
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xs);
  transition: all 260ms var(--ease);
}
.testimonial:hover { border-color: var(--blue-light); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; margin-bottom: 16px; }
.testimonial-quote { font-size: 15px; line-height: 1.65; color: var(--fg); margin-bottom: 24px; }
.testimonial-quote::before { content: '"'; }
.testimonial-quote::after { content: '"'; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--line); }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: white;
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--fg); }
.testimonial-detail { font-size: 12px; color: var(--fg-2); margin-top: 2px; }
.testimonial-metric {
  margin-left: auto;
  padding: 4px 10px;
  background: var(--blue-lightest);
  color: var(--blue-d);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

/* =========================================
   CASE RECEIPTS
   ========================================= */
.receipts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.receipt {
  padding: 22px 20px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: white;
  transition: all 240ms var(--ease);
  box-shadow: var(--shadow-xs);
}
.receipt:hover { transform: translateY(-3px); border-color: var(--blue-light); box-shadow: var(--shadow-md); }
.receipt-tag {
  display: inline-block;
  padding: 3px 8px;
  background: var(--blue-lightest);
  color: var(--blue-d);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.receipt-big {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 900;
  letter-spacing: -0.028em;
  line-height: 1.02;
  color: var(--blue);
  margin-bottom: 4px;
}
.receipt-label { font-size: 12px; color: var(--fg-1); margin-bottom: 16px; }
.receipt-meta { padding-top: 14px; border-top: 1px solid var(--line); }
.receipt-name { font-size: 13px; font-weight: 700; color: var(--fg); }
.receipt-detail { font-size: 11px; color: var(--fg-2); font-family: 'JetBrains Mono', monospace; margin-top: 3px; }

.receipt.feature {
  grid-column: span 2;
  grid-row: span 2;
  padding: 32px 28px;
  background: linear-gradient(160deg, var(--blue-lightest) 0%, white 100%);
  border-color: var(--blue-light);
  display: flex;
  flex-direction: column;
}
.receipt.feature .receipt-big { font-size: clamp(38px, 4.5vw, 60px); margin-bottom: 8px; }
.receipt.feature .receipt-label { font-size: 15px; margin-bottom: 24px; }
.receipt.feature .receipt-quote {
  font-size: 14px;
  color: var(--fg-1);
  line-height: 1.6;
  padding-left: 14px;
  border-left: 3px solid var(--blue);
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
}

/* =========================================
   VIDEO WALL
   ========================================= */
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.video-card {
  position: relative;
  aspect-ratio: 1 / 1.25;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  transition: all 260ms var(--ease);
  background: white;
}
.video-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.75) 100%); z-index: 2; }
.video-card:hover { transform: translateY(-3px); border-color: var(--blue-light); box-shadow: var(--shadow-md); }
.video-bg { position: absolute; inset: 0; z-index: 1; }
.video-bg-1 { background: linear-gradient(135deg, #64748b, #334155); }
.video-bg-2 { background: linear-gradient(135deg, #92765a, #5a4a3a); }
.video-bg-3 { background: linear-gradient(135deg, #4b6b8a, #2a4360); }
.video-bg-4 { background: linear-gradient(135deg, #7a5aa4, #4a3468); }
.video-bg-5 { background: linear-gradient(135deg, #4a7a68, #2a4a3a); }
.video-bg-6 { background: linear-gradient(135deg, #92703a, #5a4520); }
.video-bg-7 { background: linear-gradient(135deg, #55606c, #2a3038); }
.video-bg-8 { background: linear-gradient(135deg, #8a4545, #5a2828); }
.video-bg-9 { background: linear-gradient(135deg, #3a8a7a, #205855); }
.video-bg-10 { background: linear-gradient(135deg, #6a5a3a, #3a301c); }
.video-bg-11 { background: linear-gradient(135deg, #5a3a6a, #2c1c34); }
.video-bg-12 { background: linear-gradient(135deg, #3a6a5a, #1c342c); }

.video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  z-index: 3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 240ms var(--ease);
}
.video-play svg { width: 18px; height: 18px; margin-left: 3px; }
.video-card:hover .video-play { transform: translate(-50%, -50%) scale(1.1); }
.video-meta { position: absolute; bottom: 14px; left: 14px; right: 14px; z-index: 3; color: white; }
.video-name { font-size: 13px; font-weight: 700; letter-spacing: -0.01em; }
.video-detail { font-size: 11px; color: rgba(255, 255, 255, 0.75); margin-top: 1px; }
.video-metric {
  position: absolute; top: 12px; right: 12px;
  z-index: 3;
  padding: 4px 9px;
  background: var(--blue);
  color: white;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* =========================================
   VALUE STACK
   ========================================= */
.stack-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 44px;
  border-radius: var(--r-2xl);
  background: white;
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.stack-wrap::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--blue-glow-soft), transparent 70%);
  pointer-events: none;
}
.stack-title {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-d);
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  position: relative;
}
.stack-headline {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: -0.024em;
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.15;
  position: relative;
}
.stack-list { display: flex; flex-direction: column; position: relative; }
.stack-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
}
.stack-row:last-child { border-bottom: none; }
.stack-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue-lightest);
  color: var(--blue-d);
  display: flex; align-items: center; justify-content: center;
}
.stack-check svg { width: 10px; height: 10px; }
.stack-item { color: var(--fg); font-weight: 500; }
.stack-item strong { color: var(--fg); font-weight: 700; }
.stack-value { color: var(--fg-2); font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 600; text-align: right; }
.stack-total {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--bg-cool);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.stack-total-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-1); font-weight: 700; }
.stack-total-value { font-size: 28px; font-weight: 800; letter-spacing: -0.024em; color: var(--fg); }
.stack-strike {
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  color: var(--fg-1);
}
.stack-strike .old {
  text-decoration: line-through;
  color: var(--fg-3);
  margin-right: 10px;
}
.stack-strike .now {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.022em;
}
.stack-cta { text-align: center; margin-top: 32px; }

/* =========================================
   PRICING
   ========================================= */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card {
  position: relative;
  padding: 32px 28px 28px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: white;
  display: flex;
  flex-direction: column;
  transition: all 260ms var(--ease);
  box-shadow: var(--shadow-xs);
}
.price-card.featured {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-lg), var(--shadow-blue-soft);
  transform: translateY(-6px);
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.price-card.featured:hover { transform: translateY(-9px); }
.price-badge {
  position: absolute;
  top: -13px; left: 28px;
  padding: 5px 12px;
  background: var(--blue);
  color: white;
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.price-tier { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-2); font-weight: 700; margin-bottom: 6px; }
.price-name { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 20px; }
.price-amount { display: flex; align-items: baseline; gap: 3px; margin-bottom: 4px; }
.price-currency { font-size: 20px; font-weight: 700; color: var(--fg-2); }
.price-value { font-size: 46px; font-weight: 900; letter-spacing: -0.035em; line-height: 1; color: var(--fg); }
.price-period { font-size: 12px; color: var(--fg-2); }
.price-spend { margin: 16px 0; padding: 10px 12px; background: var(--bg-cool); border: 1px solid var(--line); border-radius: 8px; font-size: 12px; color: var(--fg-1); }
.price-spend strong { color: var(--fg); }
.price-best { font-size: 13px; color: var(--fg-1); line-height: 1.55; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.price-includes { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; flex: 1; }
.price-includes li { font-size: 12px; color: var(--fg-1); padding-left: 22px; position: relative; line-height: 1.5; }
.price-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 12px; height: 7px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}
.pricing-note { text-align: center; margin-top: 32px; font-size: 13px; color: var(--fg-2); }

/* =========================================
   STATEMENT
   ========================================= */
.statement-block { max-width: 900px; margin: 0 auto; text-align: center; }
.statement-block .lead { max-width: 640px; margin: 20px auto 0; }

/* =========================================
   FAQ
   ========================================= */
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: white;
  overflow: hidden;
  transition: all 240ms var(--ease);
}
.faq-item:hover { border-color: var(--line-2); }
.faq-item.open { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; font-size: 15px; font-weight: 700; color: var(--fg); transition: color 200ms; }
.faq-q:hover { color: var(--blue); }
.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px;
  border-radius: 50%; border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-2);
  transition: all 240ms var(--ease);
}
.faq-item.open .faq-icon { background: var(--blue); border-color: var(--blue); color: white; transform: rotate(45deg); }
.faq-icon svg { width: 12px; height: 12px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 320ms var(--ease); }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 26px 24px; color: var(--fg-1); font-size: 14px; line-height: 1.65; }

/* =========================================
   FINAL CTA
   ========================================= */
.cta-final {
  padding: clamp(60px, 8vw, 100px);
  border-radius: var(--r-2xl);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-d) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl), var(--shadow-blue);
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%; right: -20%; bottom: -50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1), transparent 60%);
  pointer-events: none;
}
.cta-final .eyebrow { color: rgba(255, 255, 255, 0.8); }
.cta-final .eyebrow::before { background: white; box-shadow: 0 0 12px rgba(255, 255, 255, 0.8); }
.cta-final h2 { color: white; margin-bottom: 16px; }
.cta-final .lead { color: rgba(255, 255, 255, 0.85); max-width: 640px; margin: 0 auto 32px; }
.cta-final .hero-ctas { justify-content: center; }
.cta-final .btn-primary { background: white; color: var(--blue); }
.cta-final .btn-primary:hover { background: #F8FAFC; }
.cta-contact { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; font-size: 13px; color: rgba(255, 255, 255, 0.75); margin-top: 24px; }
.cta-contact a { color: white; }
.cta-contact a:hover { text-decoration: underline; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--line);
  background: var(--bg-cool);
}
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-tagline { font-size: 13px; color: var(--fg-2); line-height: 1.6; max-width: 320px; }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social a { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 9px; border: 1px solid var(--line); color: var(--fg-2); transition: all 220ms var(--ease); background: white; }
.footer-social a:hover { color: var(--blue); border-color: var(--blue); }
.footer-col-title { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-2); font-weight: 700; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: var(--fg-1); }
.footer-col a:hover { color: var(--blue); }
.footer-bottom { padding-top: 28px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 12px; color: var(--fg-3); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: var(--fg-3); }
.footer-legal a:hover { color: var(--fg-1); }

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.15); } }

[data-animate] { opacity: 1; transform: none; transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.js-ready [data-animate]:not(.in) { opacity: 0; transform: translateY(24px); }
[data-animate].in { opacity: 1; transform: translateY(0); }
[data-animate-delay="1"] { transition-delay: 60ms; }
[data-animate-delay="2"] { transition-delay: 120ms; }
[data-animate-delay="3"] { transition-delay: 180ms; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-video { max-width: 600px; margin: 0 auto; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .how-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .receipts-grid { grid-template-columns: repeat(2, 1fr); }
  .receipt.feature { grid-column: span 2; grid-row: auto; }
  .video-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-3px); }
  .pain-list { grid-template-columns: 1fr; }
  .portal-kpi { grid-template-columns: repeat(3, 1fr); }
  .portal-body { padding: 20px; }
  .deals-table-head, .deals-table-row { grid-template-columns: 60px 1fr 100px 80px; }
  .deals-table-head > *:nth-child(5), .deals-table-head > *:nth-child(6), .deals-table-row > *:nth-child(5), .deals-table-row > *:nth-child(6) { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .stack-wrap { padding: 32px 24px; }
  .stack-total { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-cta .btn-outline { display: none; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .stat-cell:last-child { border-bottom: none; }
  .receipts-grid { grid-template-columns: 1fr 1fr; }
  .receipt.feature { grid-column: span 2; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .portal-kpi { grid-template-columns: repeat(2, 1fr); }
  .deals-table-head, .deals-table-row { grid-template-columns: 1fr 80px; }
  .deals-table-head > *:nth-child(3), .deals-table-head > *:nth-child(4), .deals-table-row > *:nth-child(3), .deals-table-row > *:nth-child(4) { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .stack-row { grid-template-columns: 20px 1fr; }
  .stack-row .stack-value { grid-column: 2; font-size: 12px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* =========================================
   SELLER PERSONAS
   ========================================= */
.personas { padding: clamp(64px, 8vw, 110px) 0; }
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.persona-card {
  padding: 26px 26px 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.persona-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.persona-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-cool);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  color: var(--fg);
  font-weight: 500;
}
.persona-search-icon {
  width: 18px; height: 18px;
  color: var(--fg-2);
  flex-shrink: 0;
}
.persona-search-icon svg { width: 100%; height: 100%; }
.persona-search-text { flex: 1; }
.persona-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 12px;
  background: var(--blue-lightest);
  color: var(--blue-d);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}
.persona-body {
  font-size: 14px;
  color: var(--fg-1);
  line-height: 1.6;
}
.persona-card-cta {
  background: linear-gradient(160deg, var(--blue-d) 0%, var(--blue) 100%);
  color: white;
  border-color: transparent;
}
.persona-cta-eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 800;
  margin-bottom: 4px;
}
.persona-cta-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.25;
  color: white;
}
.persona-cta-body {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  margin-bottom: 8px;
}
.persona-card-cta .btn-primary {
  background: white;
  color: var(--blue-d);
  margin-top: auto;
}
.persona-card-cta .btn-primary:hover { background: rgba(255,255,255,0.92); color: var(--blue-d); }
@media (max-width: 1080px) {
  .persona-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .persona-grid { grid-template-columns: 1fr; }
}

/* =========================================
   PLAYBOOK / BLOG PREVIEW
   ========================================= */
.playbook-section { padding: clamp(64px, 8vw, 110px) 0; background: var(--bg-cool); }
.playbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.playbook-card {
  padding: 30px 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: inherit;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}
.playbook-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
.playbook-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 12px;
  background: var(--blue-lightest);
  color: var(--blue-d);
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}
.playbook-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.2;
  color: var(--ink);
}
.playbook-body {
  font-size: 14px;
  color: var(--fg-1);
  line-height: 1.6;
  flex: 1;
}
.playbook-more {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-d);
  letter-spacing: -0.005em;
}
.playbook-more-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
@media (max-width: 1080px) {
  .playbook-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .playbook-grid { grid-template-columns: 1fr; }
  .playbook-title { font-size: 20px; }
}

/* =========================================
   BLOG INDEX + POST PAGES
   ========================================= */
.blog-hero {
  padding: clamp(110px, 13vw, 150px) 0 clamp(40px, 5vw, 64px);
  background: linear-gradient(180deg, var(--bg-cyan-2) 0%, white 100%);
  border-bottom: 1px solid var(--line);
}
.blog-hero-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.blog-hero .eyebrow { color: var(--blue-d); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 800; margin-bottom: 16px; }
.blog-hero h1 { font-size: clamp(36px, 5vw, 58px); letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 20px; }
.blog-hero p { font-size: clamp(15px, 1.8vw, 18px); color: var(--fg-1); line-height: 1.55; max-width: 620px; margin: 0 auto; }

.blog-list-section { padding: clamp(48px, 6vw, 88px) 0; background: white; }
.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}
.blog-list .playbook-card { padding: 32px; }

.post-hero {
  padding: clamp(110px, 13vw, 150px) 0 clamp(32px, 4vw, 56px);
  background: linear-gradient(180deg, var(--bg-cyan-2) 0%, white 100%);
  border-bottom: 1px solid var(--line);
}
.post-hero-inner { max-width: 760px; margin: 0 auto; }
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-d);
  margin-bottom: 20px;
}
.post-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: var(--fg-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.post-meta .post-tag {
  padding: 5px 12px;
  background: var(--blue-lightest);
  color: var(--blue-d);
  border-radius: 999px;
  letter-spacing: 0.14em;
}
.post-hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 20px;
}
.post-hero .post-dek {
  font-size: clamp(15px, 1.8vw, 19px);
  color: var(--fg-1);
  line-height: 1.55;
}
.post-body {
  padding: clamp(40px, 5vw, 72px) 0;
  background: white;
}
.post-body-inner { max-width: 720px; margin: 0 auto; font-size: 17px; line-height: 1.75; color: var(--fg); }
.post-body-inner p { margin-bottom: 24px; }
.post-body-inner h2 {
  font-size: 26px;
  letter-spacing: -0.022em;
  margin: 48px 0 16px;
  line-height: 1.2;
}
.post-body-inner h3 {
  font-size: 20px;
  letter-spacing: -0.018em;
  margin: 36px 0 12px;
  line-height: 1.25;
}
.post-body-inner ul,
.post-body-inner ol { margin: 0 0 24px 22px; }
.post-body-inner ul li,
.post-body-inner ol li { margin-bottom: 10px; list-style: disc; padding-left: 4px; }
.post-body-inner ol li { list-style: decimal; }
.post-body-inner strong { font-weight: 700; color: var(--ink); }
.post-body-inner blockquote {
  border-left: 3px solid var(--blue);
  padding: 4px 0 4px 20px;
  margin: 32px 0;
  color: var(--fg);
  font-style: italic;
  font-size: 18px;
}
.post-cta-band {
  padding: clamp(48px, 6vw, 88px) 0;
  background: linear-gradient(160deg, var(--blue-d) 0%, var(--blue) 100%);
  color: white;
  text-align: center;
}
.post-cta-band h2 { color: white; font-size: clamp(26px, 3vw, 36px); letter-spacing: -0.022em; margin-bottom: 16px; }
.post-cta-band p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 28px; }
.post-cta-band .btn-primary { background: white; color: var(--blue-d); }
.post-cta-band .btn-primary:hover { background: rgba(255,255,255,0.92); color: var(--blue-d); }

@media (max-width: 720px) {
  .post-body-inner { font-size: 16px; }
  .post-body-inner h2 { font-size: 22px; }
  .post-body-inner h3 { font-size: 18px; }
}

/* =========================================
   MOBILE PRODUCTION-READY PASS
   Fixes overflow, tightens spacing, protects against right-edge cutoff.
   ========================================= */
@media (max-width: 720px) {
  /* Nav pill: shrink to fit 375px */
  .nav { padding: 0 10px; top: 12px; }
  .nav-inner {
    padding: 6px 6px 6px 14px;
    gap: 10px;
  }
  .logo { font-size: 14px; gap: 8px; }
  .logo-mark { width: 26px; height: 26px; font-size: 12px; }
  .logo-img { height: 26px; }
  .nav-cta { gap: 6px; }
  .nav-cta .btn-sm { padding: 8px 14px; font-size: 12px; }
  .nav-mobile-toggle { width: 36px; height: 36px; }

  /* Hero copy padding trimmed on mobile */
  .hero { padding-top: 96px; }

  /* Pillar 04 loop diagram — pull outside nodes inside container */
  /* Pillar 04 loop — stack linearly on mobile, hide SVG cycle art */
  .mockup-loop {
    aspect-ratio: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
  }
  .mockup-loop svg { display: none; }
  .loop-node-light,
  .loop-node-light.n1,
  .loop-node-light.n2,
  .loop-node-light.n3,
  .loop-node-light.n4 {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    padding: 12px 16px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .loop-node-light .lnl-num { margin-bottom: 0; font-size: 10px; }
  .loop-node-light .lnl-title { font-size: 14px; }
  .loop-node-light .lnl-num::after { content: ' ·'; opacity: 0.5; margin-left: 2px; }
  .loop-center-light {
    position: static;
    transform: none;
    max-width: 100%;
    margin-top: 8px;
    padding: 14px 16px;
    text-align: center;
  }
  .loop-center-light-title { font-size: 14px; }
  .loop-center-light-sub { font-size: 11px; }

  /* Statement-headshots — mute the radial glow so it doesn't push overflow */
  .statement-headshots { padding: 32px 24px; }
  .statement-headshots::before {
    top: -30%; right: -20%;
    width: 240px; height: 240px;
  }
  .hs { width: 60px; height: 60px; margin-left: -16px; border-width: 3px; }
  .hs-badge { top: 20px; right: 20px; padding: 5px 11px; font-size: 10px; }

  /* Trust row — ensure it stays inside container */
  .trust-row { max-width: 100%; }

  /* Client stories — single column on very small screens for readability */
  .client-video-grid { grid-template-columns: 1fr; gap: 14px; }
  .client-video.feature { aspect-ratio: 4 / 5; }
  .client-video { aspect-ratio: 4 / 5; }

  /* Schedule-call: sidebar becomes full-width; calendar embed shrinks */
  .sc-side { padding: 20px 18px; }
  .sc-calendar-embed { min-height: 380px; }
  .sc-side-cal-title { font-size: 20px; }

  /* Thank-you: trust row centered inline-flex needs to fit */
  .ty-trust-row { max-width: calc(100% - 8px); }
  .ty-prep-grid { grid-template-columns: 1fr; gap: 14px; }
  .ty-next-grid { grid-template-columns: 1fr; gap: 12px; }
  .ty-while-links { flex-direction: column; align-items: stretch; }
  .ty-while-links .btn { width: 100%; text-align: center; justify-content: center; }

  /* Hero CTAs stack full-width */
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

@media (max-width: 420px) {
  /* Very small phones — extra safety */
  .container { padding: 0 16px; }
  .nav { padding: 0 8px; }
  .hero h1 { font-size: 32px; }
  .stat-proof-value { font-size: 28px; }
}
