/* ============================================
   BRIEFED — HOSPITALITY INTELLIGENCE SaaS
   Premium warm design. Navy accent #1E40AF.
   Font: Plus Jakarta Sans ONLY (PJS)
   Max width: 1000px centred
   Mobile-first: 375px → 768px → 1200px
   Updated: 13 Apr 2026 (s349 — PRODUCT_TRUTH alignment)
   ============================================ */

/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
h1, h2, h3 { font-family: 'Plus Jakarta Sans', -apple-system, sans-serif; }

:root {
  --bg: #F5F4F0;
  --bg-2: #F5F4F0;
  --bg-3: #FFFFFF;
  --border: #E8E8EC;
  --border-2: #E5E5EA;
  --navy: #1E40AF;
  --navy-dim: rgba(30,64,175,0.10);
  --navy-border: rgba(30,64,175,0.25);
  --navy-glow: rgba(30,64,175,0.3);
  --cream: #1a1a1a;
  --text: #48484A;
  --text-dim: #636366;
  --text-muted: #8E8E93;
  --white: #000000;
  --success: #1B9E3E;
  --danger: #DC2626;
  --amber: #B45309;
  --radius: 14px;
  --radius-lg: 14px;
  --radius-xl: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: #1a3494; }

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  background: rgba(248,250,252,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
nav.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.06); }

.nav-logo {
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-decoration: none;
  text-transform: uppercase;
}

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

.nav-link {
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--white); }

.nav-cta {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 2px 12px rgba(30,64,175,0.2);
}
.nav-cta:hover {
  background: #1a3494;
  color: #fff;
  box-shadow: 0 4px 20px var(--navy-glow);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  margin: 5px 0;
  transition: 0.3s;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(30,64,175,0.3);
}
.btn-primary:hover {
  background: #1a3494;
  color: #fff;
  box-shadow: 0 6px 28px rgba(30,64,175,0.45);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid var(--border-2);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-large {
  font-size: 17px;
  padding: 18px 40px;
}

/* ─── CONTAINER ─── */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── SECTION COMMON ─── */
.section {
  padding: 88px 40px;
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-header {
  max-width: 1000px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif; font-variant-numeric: tabular-nums;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.section-h2 em {
  color: var(--navy);
  font-style: normal;
}

.section-p {
  font-size: 17px;
  color: var(--text);
  line-height: 1.7;
  max-width: 600px;
}

.section-centered {
  text-align: center;
}
.section-centered .section-p {
  margin: 0 auto;
}

/* ─── HERO ─── */
.hero {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,64,175,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--navy), transparent);
  opacity: 0.4;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-dim);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--navy-border);
  margin-bottom: 28px;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--navy);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2.5px;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 800px;
}
.hero h1 em {
  color: var(--navy);
  font-style: normal;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

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

.hero-proof {
  margin-top: 52px;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-proof-item {
  text-align: center;
}

.hero-proof-num {
  font-family: 'Plus Jakarta Sans', sans-serif; font-variant-numeric: tabular-nums;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.hero-proof-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* ─── HERO SPLIT GRID (v2) ─── */
.hero-v2 {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #06101e 0%, #0b1a2e 55%, #0f1f3a 100%);
  --white: #ffffff;
  --cream: #f8fafc;
  --text: rgba(255,255,255,0.72);
  --text-dim: rgba(255,255,255,0.50);
  --text-muted: rgba(255,255,255,0.38);
  --border: rgba(255,255,255,0.08);
  --border-2: rgba(255,255,255,0.10);
  --navy-dim: rgba(96,165,250,0.12);
  --navy-border: rgba(96,165,250,0.28);
}
.hero-v2-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 60px 48px 40px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-v2::before {
  content: ''; position: absolute; top: -150px; right: -100px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,64,175,0.35) 0%, transparent 65%);
  pointer-events: none;
}
.hero-v2::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(96,165,250,0.5), transparent);
  opacity: 1;
}

.hero-copy { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.hero-copy h1 {
  font-size: clamp(34px, 4.2vw, 52px); font-weight: 900; line-height: 1.08;
  letter-spacing: -2px; color: var(--white); margin-bottom: 20px;
}
.hero-copy h1 em { color: var(--navy); font-style: normal; }
.hero-v2 .hero-sub { font-size: clamp(15px, 1.3vw, 17px); max-width: 460px; line-height: 1.65; margin: 0 0 32px; }
.hero-v2 .hero-actions { justify-content: flex-start; }
.hero-v2 .hero-proof { margin-top: 40px; gap: 28px; justify-content: flex-start; }
.hero-v2 .hero-proof-item { text-align: left; }
.hero-v2 .hero-proof-num { font-size: 22px; }
.hero-v2 .hero-proof-label { font-size: 10px; }

/* Hero Visual (right side) — briefing screenshot + phone side by side */
.hero-visual { display: flex; flex-direction: row; gap: 20px; align-items: flex-start; position: relative; }

/* Report email mockup */
.report-email {
  background: var(--bg-2); border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s ease;
  max-width: 400px; margin: 0 auto;
  animation: reportSlide 0.8s ease-out;
}
.report-email:hover { transform: perspective(1200px) rotateY(-1deg) rotateX(0.5deg) scale(1.01); }
@keyframes reportSlide { from { opacity: 0; transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(20px); } to { opacity: 1; } }

.rpt-header { background: #1a1a1a; padding: 16px 20px; }
.rpt-header-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.rpt-brand { color: #fff; font-size: 11px; text-transform: uppercase; letter-spacing: 3px; font-weight: 700; }
.rpt-date { color: #999; font-size: 10px; }
.rpt-venue { color: #fff; font-size: 18px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 8px; }
.rpt-badge-row { display: flex; gap: 6px; align-items: center; }
.rpt-badge { display: inline-block; font-size: 9px; text-transform: uppercase; letter-spacing: 1.2px; font-weight: 700; padding: 3px 8px; border-radius: 3px; }
.rpt-badge-daily { background: #1e3a5f; color: #fff; }
.rpt-badge-month { background: #333; color: #999; }
.rpt-accent { height: 3px; background: #1e3a5f; border-radius: 2px; width: 50px; margin-top: 8px; }

.rpt-headline { background: #f0fdf4; padding: 18px 20px; text-align: center; border-bottom: 3px solid #1e3a5f; }
.rpt-headline-status { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--success); font-weight: 600; }
.rpt-headline-num { font-size: 30px; font-weight: 800; color: #1a1a1a; margin: 4px 0; letter-spacing: -1px; font-family: 'Plus Jakarta Sans', sans-serif; font-variant-numeric: tabular-nums; }
.rpt-headline-sub { font-size: 11px; color: #555; }

.rpt-kpis { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; padding: 12px 16px; }
.rpt-kpi { background: #fff; border-radius: 8px; padding: 10px 6px; text-align: center; border: 1px solid #E2E8F0; }
.rpt-kpi-label { font-size: 9px; color: #666; text-transform: uppercase; letter-spacing: 0.5px; }
.rpt-kpi-value { font-size: 16px; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; font-variant-numeric: tabular-nums; letter-spacing: -0.5px; }
.rpt-kpi-value.green { color: var(--success); }
.rpt-kpi-value.red { color: #F85149; }
.rpt-kpi-value.dark { color: #1a1a1a; }
.rpt-kpi-sub { font-size: 9px; color: #888; }

.rpt-onething { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); margin: 0 16px 12px; border-radius: 10px; padding: 14px 16px; }
.rpt-onething-tag { font-size: 9px; text-transform: uppercase; letter-spacing: 2px; color: #1e3a5f; font-weight: 700; margin-bottom: 6px; }
.rpt-onething-text { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 4px; }
.rpt-onething-saves { font-size: 11px; color: var(--success); font-weight: 600; }

.rpt-footer { padding: 10px 16px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #E2E8F0; }
.rpt-footer-time { font-size: 9px; color: #999; font-family: 'Plus Jakarta Sans', sans-serif; font-variant-numeric: tabular-nums; display: flex; align-items: center; gap: 5px; }
.rpt-footer-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--success); animation: pulse 2s infinite; }
.rpt-footer-brand { font-size: 9px; color: #bbb; letter-spacing: 0.5px; }

/* Hero phone SMS mockup */
.hero-phone {
  position: absolute; bottom: -10px; right: -20px; width: 180px;
  background: #1a1a1a; border-radius: 24px; padding: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  animation: phoneSlide 1s ease-out 0.4s both; z-index: 2;
}
@keyframes phoneSlide { from { opacity: 0; transform: translateY(30px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.hero-phone .phone-screen { background: #fff; border-radius: 18px; overflow: hidden; }
.hero-phone .phone-notch { background: #1a1a1a; margin: 0 auto; width: 60px; height: 18px; border-radius: 0 0 12px 12px; }
.hero-phone .phone-header { padding: 6px 10px; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid #E8E8EC; }
.phone-avatar { width: 20px; height: 20px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 8px; color: #fff; font-weight: 800; }
.phone-contact { font-size: 10px; font-weight: 700; color: #1a1a1a; }
.hero-phone .phone-msgs { padding: 8px; display: flex; flex-direction: column; gap: 6px; }
.phone-msg { font-size: 9px; line-height: 1.4; padding: 6px 8px; border-radius: 10px; max-width: 90%; }
.phone-msg-in { background: #F5F4F0; color: #1E293B; align-self: flex-start; border-bottom-left-radius: 4px; }
.phone-msg-out { background: var(--navy); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.phone-msg strong { font-weight: 700; }
.phone-msg-time { font-size: 7px; color: #94a3b8; text-align: right; padding: 0 8px 6px; }

/* ─── GUARANTEE SECTION ─── */
.guarantee-section {
  padding: 80px 40px;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.guarantee-inner {
  max-width: 640px;
  margin: 0 auto;
}
.guarantee-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}
.guarantee-section p {
  font-size: 17px;
  color: var(--text);
  line-height: 1.7;
}
.guarantee-fine {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 16px;
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-divider {
  width: 1px;
  height: 16px;
  background: var(--border-2);
}

.trust-item {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}

.trust-dot {
  color: var(--border-2);
}

/* ─── PROBLEM SECTION ─── */
.problem-section {
  padding: 88px 40px;
}

.problem-grid {
  display: grid;
  gap: 12px;
  margin-top: 40px;
  max-width: 700px;
}

.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-3);
  border-radius: var(--radius);
  border-left: 3px solid var(--danger);
  border: 1px solid var(--border-2);
  border-left: 3px solid var(--danger);
  transition: border-color 0.2s;
}
.problem-card:hover {
  border-color: rgba(233,69,96,0.4);
  border-left-color: var(--danger);
}

.problem-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-card p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

.problem-card strong {
  color: var(--cream);
  font-weight: 700;
}

.agitation-box {
  margin-top: 32px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(30,64,175,0.06) 0%, transparent 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--navy-border);
  max-width: 700px;
}

.agitation-box p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
}

.agitation-hook {
  margin-top: 12px;
  font-size: 19px;
  color: var(--navy);
  font-weight: 700;
}

/* ─── HOW IT WORKS ─── */
.how-section {
  padding: 88px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.step-card {
  background: var(--bg-3);
  padding: 36px 28px;
  text-align: center;
  transition: background 0.2s;
  position: relative;
}
.step-card:hover {
  background: var(--bg-2);
}

.step-number {
  font-family: 'Plus Jakarta Sans', sans-serif; font-variant-numeric: tabular-nums;
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

.step-time {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 14px;
  background: var(--navy-dim);
  color: var(--navy);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--navy-border);
}

/* ─── FEATURES ─── */
.features-section {
  padding: 88px 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.feature-card {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.2s;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.feature-card:hover {
  border-color: var(--navy-border);
  transform: translateY(-3px);
}
.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--navy-dim);
  border: 1px solid var(--navy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-variant-numeric: tabular-nums;
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ─── TAGLINE ─── */
.tagline-section {
  padding: 100px 40px;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #0c0c0c 50%, #1a1a1a 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.tagline-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(30,64,175,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.tagline-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tagline-section h2 {
  font-size: clamp(52px, 10vw, 110px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -4px;
  line-height: 1;
}
.tagline-section h2 span {
  color: var(--navy);
}

.tagline-section p {
  font-size: 15px;
  color: var(--text-dim);
  margin-top: 20px;
  line-height: 1.7;
}

/* ─── ORIGIN STORY ─── */
.origin-section {
  padding: 88px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.origin-inner {
  max-width: 700px;
}

.origin-inner p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.origin-inner strong {
  color: var(--cream);
}

.origin-author {
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  margin-top: 32px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── SOCIAL PROOF ─── */
.proof-section {
  padding: 88px 40px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.proof-card {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.2s;
}
.proof-card:hover {
  border-color: var(--navy-border);
}

.proof-metric {
  font-family: 'Plus Jakarta Sans', sans-serif; font-variant-numeric: tabular-nums;
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.proof-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}

.proof-detail {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  font-style: italic;
}

/* ─── PRICING ─── */
.pricing-section {
  padding: 88px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.pricing-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.pricing-card {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.2s;
}
.pricing-card:hover {
  transform: translateY(-2px);
}

.pricing-card.featured {
  border-color: var(--navy-border);
  box-shadow: 0 0 40px rgba(30,64,175,0.08);
}
.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--navy);
}

.pricing-badge {
  display: inline-block;
  background: var(--navy-dim);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--navy-border);
  margin-bottom: 16px;
}

.pricing-trial-badge {
  display: inline-block;
  background: var(--success);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.pricing-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.pricing-amount {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.price-number {
  font-family: 'Plus Jakarta Sans', sans-serif; font-variant-numeric: tabular-nums;
}

.pricing-amount span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-tagline {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.4;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features .tick {
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-features li.coming-soon {
  color: var(--text-muted);
  font-style: italic;
  border-bottom: none;
}

.pricing-features li.coming-soon .tick {
  color: var(--text-muted);
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
  width: 100%;
  text-align: center;
}

.pricing-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 640px;
  margin: 36px auto 0;
  padding: 20px 24px;
  background: var(--bg-3);
  border-radius: var(--radius);
  border: 1px solid var(--border-2);
}

.guarantee-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.pricing-guarantee p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}
.pricing-guarantee strong {
  color: var(--cream);
}

.pricing-urgency {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-dim);
}
.pricing-urgency strong {
  color: var(--cream);
}

.pricing-contact {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}
.pricing-contact a {
  color: var(--navy);
  font-weight: 600;
}

/* ─── VENUE TYPES ─── */
.venues-section {
  padding: 60px 40px;
  text-align: center;
}

.venue-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}

.venue-tag {
  padding: 8px 18px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
  transition: border-color 0.2s, color 0.2s;
}
.venue-tag:hover {
  border-color: var(--navy-border);
  color: var(--cream);
}

.venues-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── FAQ ─── */
.faq-section {
  padding: 88px 40px;
}

.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--navy);
}

.faq-arrow {
  color: var(--navy);
  transition: transform 0.3s;
  font-size: 18px;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ─── FINAL CTA ─── */
.final-cta-section {
  padding: 100px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(30,64,175,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-content {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta-content h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.final-cta-content p {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 40px;
}

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

.final-cta-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── FOOTER ─── */
footer {
  padding: 52px 40px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 8px;
  line-height: 1.6;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--navy);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
}
.footer-legal a:hover {
  color: var(--navy);
}

/* ─── MOBILE STICKY CTA ─── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 12px 20px;
  background: rgba(248,250,252,0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: none;
}
.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-btn {
  display: block;
  text-align: center;
  background: var(--navy);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 4px 20px var(--navy-glow);
}

/* ─── PHONE MOCKUP ─── */
.phone-mockup {
  display: inline-block;
  margin-top: 8px;
}

.phone-frame {
  width: 320px;
  background: var(--bg-2);
  border: 2px solid var(--border);
  border-radius: 32px;
  padding: 12px 16px 24px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10), 0 0 20px rgba(30,64,175,0.03);
}

.phone-notch {
  width: 100px;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin: 0 auto 16px;
}

.phone-screen {
  background: #0c0c0c;
  border-radius: 16px;
  padding: 20px 16px;
  min-height: 260px;
  --text-muted: #444;
  --text: #aaa;
  --cream: #1a1a1a;
  --white: #fff;
  --bg-3: #161616;
  --border-2: #2a2a2a;
  --border: #1e1e1e;
}

.sms-header {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-align: center;
}

.sms-bubble {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  border-top-left-radius: 4px;
  padding: 16px;
}

.sms-time {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.sms-text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.65;
}

.sms-text strong {
  color: var(--cream);
  font-weight: 700;
}

.mockup-caption {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ─── HERO ACCUSATION ─── */
.hero-accusation {
  font-size: 15px;
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 32px;
  max-width: 480px;
}

/* ─── TRUST LOGOS ─── */
.trust-logo {
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ─── INLINE MONO ─── */
.mono-inline {
  font-family: 'Plus Jakarta Sans', sans-serif; font-variant-numeric: tabular-nums;
  font-weight: 700;
}

/* ─── LABOUR BREAKDOWN ─── */
.labour-breakdown-card {
  display: block;
  border-left: 3px solid var(--danger);
}

.labour-stack {
  width: 100%;
}

.labour-stack-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.labour-stack-header p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.labour-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.labour-bar {
  background: var(--bg);
  border-radius: 4px;
  height: 32px;
  overflow: hidden;
}

.labour-bar-fill {
  height: 100%;
  background: var(--navy-dim);
  border: 1px solid var(--navy-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  font-size: 12px;
  color: var(--text);
  font-weight: 600;
}

.labour-bar-super {
  background: rgba(30,64,175,0.25);
}

.labour-bar-full {
  background: rgba(233,69,96,0.2);
  border-color: rgba(233,69,96,0.4);
}

.labour-pct {
  font-family: 'Plus Jakarta Sans', sans-serif; font-variant-numeric: tabular-nums;
  font-weight: 800;
  color: var(--cream);
}

.labour-gap-note {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

/* ─── REPORT PREVIEW ─── */
.report-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.report-preview-card {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.report-preview-card:hover {
  border-color: var(--navy-border);
}

.report-card-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.report-card-mock {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.report-mock-title {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.report-mock-number {
  font-family: 'Plus Jakarta Sans', sans-serif; font-variant-numeric: tabular-nums;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.report-mock-bar {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  position: relative;
  margin-bottom: 8px;
}

.report-mock-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--success), var(--navy));
  border-radius: 4px;
}

.report-mock-bar-marker {
  position: absolute;
  top: -4px;
  width: 2px;
  height: 16px;
  background: var(--white);
  border-radius: 1px;
}

.report-mock-detail {
  font-size: 12px;
  color: var(--text-dim);
  font-family: 'Plus Jakarta Sans', sans-serif; font-variant-numeric: tabular-nums;
}

.report-mock-callout {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.6;
}

.report-mock-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.report-mock-row:last-child { border-bottom: none; }

.report-preview-card > p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ─── COMPARISON (What Briefed Is NOT) ─── */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.comparison-col {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
}

.comparison-muted {
  opacity: 0.6;
}
.comparison-muted:hover {
  opacity: 0.8;
}

.comparison-featured {
  border-color: var(--navy-border);
  opacity: 1;
  box-shadow: 0 0 40px rgba(30,64,175,0.06);
  position: relative;
}
.comparison-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--navy);
}

.comparison-header {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  text-align: center;
}

.comparison-list {
  list-style: none;
}

.comparison-list li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.comparison-list li:last-child { border-bottom: none; }

.comparison-x {
  color: var(--danger);
  font-weight: 700;
  flex-shrink: 0;
}

.comparison-check {
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── FEATURE HERO ─── */
.feature-hero {
  background: var(--bg-3);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}
.feature-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--navy);
}

.feature-hero-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin: 12px 0;
}

.feature-hero-content p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  max-width: 700px;
}

.feature-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.feature-hero-stats span {
  font-size: 13px;
  color: var(--text-dim);
}
.feature-hero-stats strong {
  color: var(--cream);
}

/* ─── CADENCE STRIP ─── */
.cadence-strip {
  margin-top: 48px;
  padding: 24px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  text-align: center;
}

.cadence-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.cadence-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cadence-step {
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.cadence-daily {
  background: rgba(30,58,95,0.12);
  color: #1e3a5f;
  border: 1px solid rgba(30,58,95,0.3);
}

.cadence-weekly {
  background: rgba(99,102,241,0.12);
  color: #6366f1;
  border: 1px solid rgba(99,102,241,0.3);
}

.cadence-monthly {
  background: rgba(139,92,246,0.12);
  color: #8b5cf6;
  border: 1px solid rgba(139,92,246,0.3);
}

.cadence-quarterly {
  background: rgba(20,184,166,0.12);
  color: #14b8a6;
  border: 1px solid rgba(20,184,166,0.3);
}

.cadence-annual {
  background: rgba(245,158,11,0.12);
  color: #f59e0b;
  border: 1px solid rgba(245,158,11,0.3);
}

.cadence-arrow {
  color: var(--text-muted);
  font-size: 16px;
}

/* ─── FEATURES EXPAND ─── */
.features-expand {
  margin-top: 20px;
  text-align: center;
}

.features-expand-btn {
  background: none;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 14px 28px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.features-expand-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.features-expand-btn.open .faq-arrow {
  transform: rotate(180deg);
}

.features-expand-grid {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ─── FRAMEWORKS ─── */
.frameworks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.framework-item {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.framework-item:hover {
  border-color: var(--navy-border);
}

.framework-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.framework-item p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ─── RUNNING LIVE ─── */
.running-live {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.running-live-badge {
  font-size: 11px;
  font-weight: 800;
  color: var(--success);
  letter-spacing: 1px;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.running-live p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.running-live strong {
  color: var(--cream);
}

/* ─── VALUE EQUATION ─── */
.value-equation {
  margin-top: 32px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(30,64,175,0.06) 0%, transparent 100%);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  text-align: center;
}

.value-equation p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

/* ─── FREE TOOLS ─── */
.tools-calculators {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.calc-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 20px;
}

.calc-email-gate {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.calc-email-gate p {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 8px;
}

/* ─── GAP CALCULATOR ─── */
.gap-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}

.gap-item {
  text-align: center;
}

.gap-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.gap-number {
  font-family: 'Plus Jakarta Sans', sans-serif; font-variant-numeric: tabular-nums;
  font-size: 32px;
  font-weight: 800;
  color: var(--cream);
}

.gap-arrow {
  font-size: 24px;
  color: var(--text-muted);
}

.gap-cost {
  font-size: 15px;
  color: var(--danger);
  font-weight: 700;
  text-align: center;
}

/* ─── AUDIT CARDS ─── */
.audit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.audit-card {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 24px 20px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.audit-card:hover {
  border-color: var(--navy-border);
  transform: translateY(-2px);
}

.audit-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  font-weight: 800;
  color: var(--success);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(63,185,80,0.1);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(63,185,80,0.3);
}

.audit-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  margin-top: 4px;
}

.audit-card p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 16px;
}

.audit-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.audit-includes span {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.audit-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.audit-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  min-height: 44px;
  padding: 8px 4px;
}

.audit-check input[type="checkbox"] {
  accent-color: var(--navy);
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  padding: 12px;
  cursor: pointer;
}

/* ─── PRICING VALUE BAR ─── */
.pricing-value-bar {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  text-align: center;
}

.pricing-value-bar p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
}
.pricing-value-bar strong {
  color: var(--cream);
}

/* ─── SIGNUP FORM ─── */
.signup-form-card {
  max-width: 640px;
  margin: 40px auto 0;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ─── TRANSFORMATION ─── */
.transformation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.transformation-card {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  transition: border-color 0.2s;
}
.transformation-card:hover {
  border-color: var(--navy-border);
}

.transformation-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.transformation-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

.identity-box {
  margin-top: 40px;
  padding: 36px 40px;
  background: linear-gradient(135deg, rgba(30,64,175,0.06) 0%, transparent 100%);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  max-width: 700px;
}

.identity-box h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.identity-box p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 12px;
}
.identity-box p:last-child { margin-bottom: 0; }

.identity-box strong {
  color: var(--cream);
}

/* ─── BEFORE/AFTER TRANSFORMATION ─── */
.transformation-compare {
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.transformation-compare-title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.5px;
  text-align: center;
  margin-bottom: 28px;
}
.transformation-compare-title em {
  color: var(--navy);
  font-style: normal;
}

.transformation-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.transformation-before,
.transformation-after {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
}

.transformation-before {
  border-top: 3px solid var(--text-muted);
}

.transformation-after {
  border-top: 3px solid var(--navy);
}

.transformation-compare-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.transformation-compare-tag-before {
  color: var(--text-muted);
}
.transformation-compare-tag-after {
  color: var(--navy);
}

.transformation-before ul,
.transformation-after ul {
  list-style: none;
  padding: 0;
}

.transformation-before li,
.transformation-after li {
  font-size: 14px;
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.transformation-before li:last-child,
.transformation-after li:last-child {
  border-bottom: none;
}
.transformation-after li {
  color: var(--cream);
}

/* ─── FAILURE STAKES ─── */
.stakes-section {
  padding: 88px 40px;
  background: var(--bg);
}

.stakes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.stakes-card {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.2s;
}
.stakes-card:hover {
  border-color: var(--navy-border);
}

.stakes-number {
  font-family: 'Plus Jakarta Sans', sans-serif; font-variant-numeric: tabular-nums;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  background: linear-gradient(135deg, #1E40AF 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.stakes-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.4;
}

.stakes-detail {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

.stakes-bottom {
  text-align: center;
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.stakes-bottom p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
}
.stakes-bottom strong {
  color: var(--cream);
}

/* ─── SECTION WRAPPERS ─── */
.report-preview-section,
.comparison-section,
.free-tools-section,
.signup-section { /* inherit from .section */ }

.audit-request-form {
  margin-top: 40px;
}

.signup-form {
  /* wrapper for form element */
}

.signup-success {
  text-align: center;
  padding: 40px 20px;
}

.calc-email-sent {
  font-size: 13px;
  font-weight: 600;
}

/* ─── CALCULATOR ─── */
.calc-card {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.calc-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-variant-numeric: tabular-nums;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.calc-field {
  margin-bottom: 16px;
}

.calc-field label {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 6px;
  font-weight: 600;
}

.calc-field input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: 'Plus Jakarta Sans', sans-serif; font-variant-numeric: tabular-nums;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.calc-field input:focus {
  border-color: var(--navy-border);
}
.calc-field input::placeholder {
  color: var(--text-muted);
}

.calc-result {
  margin-top: 20px;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-2);
  text-align: center;
}

.calc-result-number {
  font-family: 'Plus Jakarta Sans', sans-serif; font-variant-numeric: tabular-nums;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
}

.calc-result-label {
  font-size: 14px;
  color: var(--text);
  margin-top: 6px;
  font-weight: 600;
}

.calc-cta {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
}
.calc-cta a {
  color: var(--navy);
  font-weight: 700;
}

/* ─── DATA CONNECTIONS ─── */
.connections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.connection-card {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: border-color 0.2s;
}
.connection-card:hover {
  border-color: var(--navy-border);
}

.connection-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.connection-items {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.connections-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-dim);
  text-align: center;
  font-style: italic;
}

/* ─── BLOG PREVIEW ─── */
.blog-preview-section {
  border-top: 1px solid var(--border);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.blog-preview-card {
  display: block;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.blog-preview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.blog-preview-card:hover {
  border-color: var(--navy-border);
  transform: translateY(-3px);
}
.blog-preview-card:hover::before {
  transform: scaleX(1);
}

.blog-preview-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-preview-cat {
  color: var(--navy);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-preview-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-preview-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ─── DARK ACCENT SECTIONS ─── */
/* Tagline, Origin Story, and Final CTA stay dark for contrast */
.tagline-section,
.origin-section,
.final-cta-section {
  --white: #fff;
  --cream: #1a1a1a;
  --text: #b8b8b8;
  --text-dim: #999;
  --text-muted: #888;
  --border: #2a2a2a;
  --border-2: #333;
  --bg-3: #222;
}

.origin-section {
  background: #1a1a1a;
  border-top-color: #2a2a2a;
  border-bottom-color: #2a2a2a;
}

.final-cta-section {
  background: #1a1a1a;
  border-top-color: #2a2a2a;
}

.final-cta-section .btn-primary,
.final-cta-section .btn-secondary {
  color: #fff;
}

.final-cta-section .btn-secondary {
  color: #aaa;
  border-color: #333;
}
.final-cta-section .btn-secondary:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* ─── SCREEN READER ONLY ─── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── SKIP TO CONTENT ─── */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
}
.skip-to-content:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 8px 16px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ─── GLOBAL FOCUS STATES (WCAG 2.1 AA) ─── */
:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}
button:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--navy-dim);
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px var(--navy-dim);
}

/* ─── PREMIUM LIGHT MODE: CARD SHADOWS ─── */
.feature-card,
.proof-card,
.pricing-card,
.calc-card,
.comparison-col,
.framework-item,
.transformation-card,
.audit-card,
.report-preview-card,
.blog-preview-card,
.signup-form-card,
.problem-card,
.running-live,
.pricing-guarantee,
.pricing-value-bar,
.stakes-card,
.transformation-before,
.transformation-after {
  box-shadow: 0 1px 3px rgba(0,0,0,0.03), 0 4px 16px rgba(0,0,0,0.03);
}

.feature-card:hover,
.pricing-card:hover,
.blog-preview-card:hover,
.report-preview-card:hover,
.audit-card:hover,
.transformation-card:hover,
.framework-item:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.07);
}

/* Featured pricing card gets amber glow on light bg */
.pricing-card.featured {
  box-shadow: 0 4px 20px rgba(30,64,175,0.10), 0 1px 3px rgba(0,0,0,0.03);
}

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }
  .nav-links.nav-open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { text-align: center; width: 100%; display: block; }

  .hero { padding: 60px 20px; min-height: auto; }
  .hero h1 { letter-spacing: -1.5px; }
  .hero-proof { gap: 24px; }
  .hero-proof-num { font-size: 24px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; max-width: 320px; }

  .trust-strip { padding: 16px 20px; }

  .hero-v2-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px 24px; }
  .hero-v2 { min-height: auto; }
  .hero-copy { align-items: center; text-align: center; }
  .hero-v2 .hero-sub { max-width: 520px; margin-left: auto; margin-right: auto; }
  .hero-v2 .hero-actions { justify-content: center; }
  .hero-v2 .hero-proof { justify-content: center; }
  .hero-v2 .hero-proof-item { text-align: center; }
  .report-email { max-width: 360px; transform: none; }
  .report-email:hover { transform: none; }
  .hero-phone { right: -10px; bottom: -20px; width: 150px; }
  .before-after-grid { grid-template-columns: 1fr !important; }
  .testimonial-grid { grid-template-columns: 1fr !important; }
  .depth-grid { grid-template-columns: 1fr !important; }

  .section, .problem-section, .how-section, .features-section,
  .proof-section, .pricing-section, .faq-section,
  .final-cta-section, .origin-section, .tagline-section,
  .lead-magnet-section { padding: 60px 20px; }
  .container { padding: 0 20px; }

  .section-h2 { font-size: clamp(24px, 6vw, 32px); }

  .steps-grid { grid-template-columns: 1fr; gap: 0; }
  .features-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid-4 { grid-template-columns: 1fr; }

  .tagline-section h2 { letter-spacing: -2px; }

  .lead-magnet-grid { grid-template-columns: 1fr; gap: 32px; }
  .connections-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-preview-grid { grid-template-columns: 1fr; }
  .phone-frame { width: 280px; }
  .report-preview-grid { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-muted { opacity: 0.8; }
  .features-expand-grid { grid-template-columns: repeat(2, 1fr); }
  .frameworks-grid { grid-template-columns: 1fr; }
  .tools-calculators { grid-template-columns: 1fr; }
  .free-tools-featured { grid-template-columns: 1fr !important; }
  .audit-grid { grid-template-columns: repeat(2, 1fr); }
  .audit-checkboxes { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .transformation-grid { grid-template-columns: 1fr; }
  .transformation-compare-grid { grid-template-columns: 1fr; }
  .stakes-grid { grid-template-columns: 1fr; }
  .stakes-section { padding: 60px 20px; }
  .gap-comparison { flex-direction: column; gap: 12px; }
  .gap-arrow { transform: rotate(90deg); }

  .sticky-cta { display: block; }
  footer { padding: 40px 20px 80px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links { gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .final-cta-actions { flex-direction: column; align-items: center; }
  .final-cta-actions .btn-primary,
  .final-cta-actions .btn-secondary { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; letter-spacing: -1px; }
  .hero-sub { font-size: 15px; }
  .pricing-amount { font-size: 36px; }
  .proof-metric { font-size: 28px; }
  .nav-logo { font-size: 13px; letter-spacing: 2px; }
  .connections-grid { grid-template-columns: 1fr; }
  .phone-frame { width: 260px; }
  .calc-result-number { font-size: 32px; }
  .audit-grid { grid-template-columns: 1fr; }
  .features-expand-grid { grid-template-columns: 1fr; }
  .gap-number { font-size: 24px; }
  .identity-box { padding: 24px 20px; }
  .plan-selector { grid-template-columns: 1fr; }

  .hero-v2-inner { padding: 32px 20px; gap: 32px; }
  .hero-v2 .hero-copy h1 { font-size: 30px; letter-spacing: -1px; }
  .hero-v2 .hero-sub { font-size: 15px; }
  .hero-v2 .hero-proof { gap: 20px; }
  .hero-v2 .hero-proof-num { font-size: 20px; }
  .hero-v2 .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .hero-v2 .hero-actions .btn-primary,
  .hero-v2 .hero-actions .btn-secondary { width: 100%; max-width: 320px; }
  .hero-phone { position: relative; right: auto; bottom: auto; width: 200px; margin: 0 auto; }
}

/* ─── HERO PHONE WRAPPER ─── */
.hero-phone-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* ─── PLAN SELECTOR ─── */
.plan-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.plan-option {
  cursor: pointer;
}
.plan-option input[type="radio"] {
  display: none;
}
.plan-option-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}
.plan-option-inner strong {
  font-size: 15px;
  color: var(--white);
}
.plan-option-inner span {
  font-size: 12px;
  color: var(--text-dim);
}
.plan-option input[type="radio"]:checked + .plan-option-inner {
  border-color: var(--navy);
  background: var(--navy-dim);
}

/* ─── FOOTER VENUE TYPES ─── */
.footer-venues {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════
   VISUAL UPGRADE — Apr 2026
   Dark hero · Float · Ticker · Dark proof · Before/After
═══════════════════════════════════════════════ */

/* ─── HERO DARK CONTEXT OVERRIDES ─── */
.hero-v2 .hero-tag {
  background: rgba(96,165,250,0.10);
  border-color: rgba(96,165,250,0.30);
  color: #93c5fd;
}
.hero-v2 .hero-tag-dot { background: #60a5fa; }
.hero-copy h1 em { color: #60a5fa; }

.hero-v2 .btn-secondary {
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
}
.hero-v2 .btn-secondary:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.10);
  transform: translateY(-1px);
}
.hero-v2 .hero-proof {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-v2 .hero-proof-num { color: #ffffff; }
.hero-v2 .hero-proof-label { color: rgba(255,255,255,0.42); }

/* ─── HERO SCREENSHOT GLOW + FLOAT ─── */
.hero-screenshot-wrap { position: relative; }
.hero-screenshot-wrap::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center, rgba(30,64,175,0.5) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-screenshot-wrap > div { position: relative; z-index: 1; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
.hero-float { animation: heroFloat 6s ease-in-out infinite; }

/* ─── ANIMATED TICKER STRIP ─── */
.trust-ticker {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.trust-ticker::before,
.trust-ticker::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 100px; z-index: 2; pointer-events: none;
}
.trust-ticker::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.trust-ticker::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.trust-ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: trustedTicker 40s linear infinite;
  padding: 13px 0;
  will-change: transform;
}
.trust-ticker-track:hover { animation-play-state: paused; }
@keyframes trustedTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
  flex-shrink: 0;
  user-select: none;
}
.ticker-sep {
  width: 1px; height: 14px;
  background: var(--border-2);
  flex-shrink: 0;
}
.ticker-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--navy-dim);
  border: 1px solid var(--navy-border);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.3px;
}
.ticker-live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

/* ─── DARK PROOF SECTION ─── */
.section-dark {
  background: linear-gradient(160deg, #06101e 0%, #0b1a2e 60%, #0f1e36 100%);
  --white: #ffffff;
  --cream: #f8fafc;
  --text: rgba(255,255,255,0.70);
  --text-dim: rgba(255,255,255,0.50);
  --text-muted: rgba(255,255,255,0.35);
  --border: rgba(255,255,255,0.08);
  --border-2: rgba(255,255,255,0.10);
  --bg-3: rgba(255,255,255,0.05);
  --navy-dim: rgba(96,165,250,0.12);
  --navy-border: rgba(96,165,250,0.25);
}
.section-dark .section-tag { color: #60a5fa; }
.section-dark .section-h2 em { color: #60a5fa; }
.section-dark .proof-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.section-dark .proof-card:hover { border-color: rgba(96,165,250,0.3); }
.section-dark .proof-metric { color: #60a5fa; }
.section-dark .proof-label { color: rgba(255,255,255,0.88); }
.section-dark .proof-detail { color: rgba(255,255,255,0.48); }
.section-dark .running-live {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
}
.section-dark .running-live p { color: rgba(255,255,255,0.70); }
.section-dark .value-equation {
  color: rgba(255,255,255,0.70);
  border-color: rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

/* ─── BEFORE / AFTER ENHANCED ─── */
.before-card {
  background: rgba(220,38,38,0.025) !important;
  border-color: rgba(220,38,38,0.15) !important;
}
.after-card {
  background: rgba(30,64,175,0.04) !important;
  border-color: rgba(30,64,175,0.20) !important;
  box-shadow: 0 0 60px rgba(30,64,175,0.06);
}

/* ─── FEATURED PRICING CARD DARK ─── */
.pricing-card.featured {
  background: linear-gradient(145deg, #0d1b2e 0%, #1a3060 100%);
  border-color: rgba(96,165,250,0.45);
  box-shadow: 0 0 60px rgba(30,64,175,0.25), 0 20px 40px rgba(0,0,0,0.2);
  --white: #ffffff;
  --cream: #f8fafc;
  --text: rgba(255,255,255,0.75);
  --text-dim: rgba(255,255,255,0.55);
  --text-muted: rgba(255,255,255,0.38);
  --border: rgba(255,255,255,0.10);
  --border-2: rgba(255,255,255,0.10);
  --navy-dim: rgba(96,165,250,0.15);
  --navy-border: rgba(96,165,250,0.35);
}
.pricing-card.featured h3 { color: #ffffff; }
.pricing-card.featured .pricing-amount { color: #ffffff; }
.pricing-card.featured .pricing-amount span { color: rgba(255,255,255,0.45); }
.pricing-card.featured .pricing-tagline { color: rgba(255,255,255,0.60); }
.pricing-card.featured .pricing-badge { background: rgba(96,165,250,0.15); border-color: rgba(96,165,250,0.4); color: #93c5fd; }
.pricing-card.featured .pricing-trial-badge { background: #22c55e; color: #fff; }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.08); }
.pricing-card.featured .tick { color: #60a5fa; }
.pricing-card.featured::before { background: #60a5fa; }
.pricing-card.featured .btn-primary { background: #3b82f6; box-shadow: 0 4px 24px rgba(59,130,246,0.45); }
.pricing-card.featured .btn-primary:hover { background: #2563eb; box-shadow: 0 6px 32px rgba(59,130,246,0.6); }

/* ─── DARK FINAL CTA ─── */
.final-cta-section.section-dark::before {
  background: radial-gradient(ellipse, rgba(30,64,175,0.25) 0%, transparent 70%) !important;
}
.final-cta-section.section-dark .final-cta-content h2 { color: #ffffff; }
.final-cta-section.section-dark .btn-secondary {
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
}
.final-cta-section.section-dark .btn-secondary:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.10);
}

/* ─── COUNTER ANIMATE ─── */
[data-counter] { display: inline; }

/* ─── RESPONSIVE: hero inner grid ─── */
@media (max-width: 768px) {
  .hero-copy { align-items: center; text-align: center; }
  .hero-copy h1 { text-align: center; }
}
@media (max-width: 480px) {
  .hero-v2 .hero-copy h1 { font-size: 30px; letter-spacing: -1px; }
}
