*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
:root{
  --navy:#132248;
  --navy-deep:#0b1630;
  --navy-mid:#1a2f5e;
  --pink:#c8026e;
  --pink-light:#dc5fa3;
  --pink-pale:#f9e0ee;
  --off-white:#fbfafb;
  --slate:#8d97a7;
  --serif:'Cormorant Garamond','EB Garamond',Georgia,'Times New Roman',serif;
  --sans:'Switzer',system-ui,-apple-system,'Segoe UI',sans-serif;
  --ink:#111a33;
  --border:#e4e1ea;
  --border-strong:#cac5d4;
  --max-w:1200px;
}
html{font-size:16px;scroll-behavior:smooth;}
body{font-family:var(--sans);background:var(--off-white);color:var(--navy);-webkit-font-smoothing:antialiased;overflow-x:hidden;}

/* ── REUSABLE ── */
.container{max-width:var(--max-w);margin:0 auto;padding:0 56px;}
.section-eyebrow{display:flex;align-items:center;gap:14px;margin-bottom:24px;}
.eyebrow-line{width:36px;height:3px;background:var(--pink);border-radius:2px;flex-shrink:0;}
.eyebrow-text{font-size:12px;font-weight:700;letter-spacing:0.18em;text-transform:uppercase;color:var(--pink);}
.section-title{font-family:var(--serif);font-size:clamp(32px,4vw,52px);font-weight:700;color:var(--navy);line-height:1.1;margin-bottom:20px;}
.section-title em{font-style:italic;color:var(--pink);}
.section-body{font-size:18px;font-weight:400;color:#2a3550;line-height:1.85;max-width:680px;}
.btn-primary{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--sans);font-size:15px;font-weight:700;
  color:#fff;background:var(--pink);
  padding:16px 36px;border-radius:50px;border:none;cursor:pointer;
  text-decoration:none;transition:all .3s ease;
  box-shadow:0 4px 20px rgba(200,2,110,0.35);
  letter-spacing:0.02em;
}
.btn-primary:hover{background:#a80259;transform:translateY(-2px);box-shadow:0 8px 28px rgba(200,2,110,0.45);}
.btn-outline{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--sans);font-size:15px;font-weight:600;
  color:var(--off-white);background:transparent;
  padding:15px 32px;border-radius:50px;border:1.5px solid rgba(255,255,255,0.3);
  cursor:pointer;text-decoration:none;transition:all .3s ease;
  letter-spacing:0.02em;
}
.btn-outline:hover{border-color:var(--pink-light);color:var(--pink-light);background:rgba(220,95,163,0.08);}

/* ── FADE-IN ── */
.fade-in{opacity:0;transform:translateY(30px);transition:opacity .7s ease,transform .7s ease;}
.fade-in.visible{opacity:1;transform:translateY(0);}
.fade-in:nth-child(2){transition-delay:.1s;}
.fade-in:nth-child(3){transition-delay:.2s;}
.fade-in:nth-child(4){transition-delay:.3s;}
.fade-in:nth-child(5){transition-delay:.4s;}
.fade-in:nth-child(6){transition-delay:.5s;}

/* ═══════════════════════════════════════
   1. NAV
   ═══════════════════════════════════════ */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:rgba(11,22,48,0.92);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,0.06);
  transition:all .3s ease;
}
.nav-inner{
  max-width:var(--max-w);margin:0 auto;padding:0 56px;
  display:flex;justify-content:space-between;align-items:center;
  height:72px;
}
.nav-logo{display:flex;align-items:center;text-decoration:none;}
.nav-logo-img{height:44px;width:auto;object-fit:contain;display:block;}
.nav-links{display:flex;align-items:center;gap:32px;}
.nav-links a{font-size:15px;font-weight:600;color:var(--off-white);text-decoration:none;transition:color .2s;letter-spacing:0.01em;}
.nav-links a:not(.nav-cta):hover{color:var(--pink-light);}
.nav-cta{
  font-family:var(--sans);font-size:13px;font-weight:700;
  color:#fff;background:var(--pink);
  padding:14px 26px;border-radius:50px;border:none;cursor:pointer;
  text-decoration:none;transition:all .3s ease;letter-spacing:0.02em;
  min-height:44px;display:inline-flex;align-items:center;
}
.nav-cta:hover{background:#a80259;}
.nav-mobile-btn{display:none;background:none;border:none;cursor:pointer;padding:4px;}
.nav-mobile-btn svg{width:28px;height:28px;stroke:var(--off-white);}

/* ═══════════════════════════════════════
   2. HERO
   ═══════════════════════════════════════ */
.hero{
  background:var(--navy-deep);
  padding:120px 0 72px;
  position:relative;overflow:hidden;
  display:flex;align-items:center;
}
.hero-glow-tr{position:absolute;top:-220px;right:-180px;width:640px;height:640px;border-radius:50%;background:radial-gradient(circle,rgba(200,2,110,0.28) 0%,transparent 65%);pointer-events:none;}
.hero-glow-bl{position:absolute;bottom:-160px;left:-120px;width:520px;height:520px;border-radius:50%;background:radial-gradient(circle,rgba(220,95,163,0.18) 0%,transparent 65%);pointer-events:none;}
.hero-noise{position:absolute;inset:0;opacity:0.03;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");pointer-events:none;}
.hero-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start;
  position:relative;z-index:2;
}
.hero-eyebrow{
  display:block;
  margin-bottom:16px;
  font-family:var(--sans);
  font-size:clamp(14px,1.4vw,17px);
  font-weight:600;
  color:rgba(251,250,251,0.7);
  letter-spacing:0.01em;
  line-height:1.5;
}
.hero-eyebrow::before{display:none;}
.hero-eyebrow-text{
  background:none;
  -webkit-text-fill-color:rgba(251,250,251,0.7);
  color:rgba(251,250,251,0.7);
}
.hero-eyebrow-text strong,.hero-eyebrow em{
  color:var(--pink-light);
  -webkit-text-fill-color:var(--pink-light);
  font-style:normal;font-weight:700;
}
.hero-title{font-family:var(--serif);font-size:clamp(40px,5vw,64px);font-weight:700;color:var(--off-white);line-height:1.05;margin-bottom:20px;}
.hero-title em{font-style:italic;color:var(--pink-light);}
.hero-sub{font-size:17px;font-weight:400;color:rgba(251,250,251,0.82);line-height:1.65;max-width:520px;margin-bottom:12px;}
.hero-qualifier{font-size:14px;font-weight:600;color:var(--pink-light);margin-bottom:24px;display:flex;align-items:center;gap:8px;}
.hero-qualifier::before{content:'✓';font-size:12px;width:22px;height:22px;border-radius:50%;background:rgba(200,2,110,0.25);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.hero-btns{display:flex;gap:16px;flex-wrap:wrap;}

/* Hero Video */
.hero-video-wrap{display:flex;flex-direction:column;gap:16px;}
.hero-video{
  width:100%;display:block;
  background:var(--navy-mid);
  border-radius:20px;
  aspect-ratio:16/9;
  object-fit:cover;
  border:1.5px solid rgba(255,255,255,0.1);
  box-shadow:0 16px 56px rgba(0,0,0,0.4);
}
.hero-video-cta{font-size:15px;font-weight:500;color:rgba(251,250,251,0.82);line-height:1.6;font-style:italic;}

/* Hero proof stats */
.hero-proof{display:flex;gap:32px;flex-wrap:wrap;margin-top:24px;padding-top:22px;border-top:1px solid rgba(255,255,255,0.1);}
.hero-proof-stat{display:flex;flex-direction:column;gap:3px;}
.hero-proof-val{font-family:var(--serif);font-size:26px;font-weight:700;color:var(--off-white);line-height:1;font-variant-numeric:tabular-nums lining-nums;}
.hero-proof-val em{font-style:italic;color:var(--pink-light);}
.hero-proof-label{font-size:12px;font-weight:500;color:rgba(251,250,251,0.5);letter-spacing:0.02em;line-height:1.4;}

/* Hero video hook */
.hero-video-hook{font-family:var(--serif);font-size:clamp(18px,2vw,22px);font-weight:700;color:var(--off-white);line-height:1.3;margin-bottom:4px;}
.hero-video-hook em{font-style:italic;color:var(--pink-light);}

/* ── CTA STRIPS ── */
.cta-strip{
  background:#fff;border-top:1px solid #e8ecf2;border-bottom:1px solid #e8ecf2;
  padding:40px 0;
}
.cta-strip .container{display:flex;align-items:center;justify-content:center;gap:28px;flex-wrap:wrap;text-align:center;}
.cta-strip-text{font-size:17px;font-weight:600;color:var(--navy);}
.cta-strip-dark{
  background:var(--navy-deep);border-color:rgba(255,255,255,0.06);
}
.cta-strip-dark .cta-strip-text{color:rgba(251,250,251,0.9);}

/* ═══════════════════════════════════════
   3. TRUST BAR
   ═══════════════════════════════════════ */
.trust-bar{background:#fff;border-bottom:1px solid #e8ecf2;padding:36px 0;}
.trust-inner{display:flex;align-items:center;justify-content:center;gap:40px;flex-wrap:wrap;}
.trust-label{font-size:12px;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;color:var(--slate);flex-shrink:0;}
.trust-sep{width:1px;height:24px;background:#dde2ea;flex-shrink:0;}
.trust-logos{display:flex;align-items:center;gap:28px;flex-wrap:wrap;justify-content:center;}
.trust-item{font-size:13px;font-weight:600;color:var(--navy);opacity:0.5;letter-spacing:0.02em;white-space:nowrap;}


/* ═══════════════════════════════════════
   4. PROOF GRID (between Hero and Who It's For)
   ═══════════════════════════════════════ */
.proof-grid-section{
  padding:110px 0 100px;
  background:#fff;
  position:relative;
}
.proof-grid-sub{
  font-size:17px;font-weight:400;
  color:#2a3550;
  line-height:1.7;max-width:600px;margin-top:6px;
}

.proof-grid-list{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
  margin-top:56px;
  align-items:start;
}
.proof-tile{
  display:flex;flex-direction:column;gap:18px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:24px 22px 22px;
  transition:transform .35s ease,border-color .35s ease,box-shadow .35s ease;
}
.proof-tile:hover{
  transform:translateY(-4px);
  border-color:var(--pink);
  box-shadow:0 14px 36px rgba(19,34,72,0.09);
}
.proof-tile-headline{
  font-family:var(--serif);
  font-size:19px;font-weight:500;
  color:var(--navy);
  line-height:1.35;letter-spacing:-0.005em;
  min-height:52px;
}
.proof-tile-headline em{font-style:italic;color:var(--pink);font-weight:600;}

.proof-tile-frame{
  position:relative;
  aspect-ratio:4/5;
  border-radius:14px;
  overflow:hidden;
  background:#0e1730;
}

/* Browser-frame variant (AI citation) */
.proof-tile-frame--browser{
  border:1px solid var(--border);
  background:#fbfafb;
}
.proof-tile-frame--browser .browser-bar{
  display:flex;align-items:center;gap:12px;
  padding:10px 14px;
  background:#ecebef;
  border-bottom:1px solid #d8d6dd;
}
.proof-tile-frame--browser .browser-dots{display:flex;gap:6px;}
.proof-tile-frame--browser .browser-dots span{
  width:10px;height:10px;border-radius:50%;
  background:#cdcad2;
}
.proof-tile-frame--browser .browser-url{
  flex:1;height:22px;border-radius:11px;
  background:#fff;border:1px solid #d8d6dd;
  display:flex;align-items:center;
  padding:0 10px;
  font-size:11px;color:#6b6878;font-family:var(--sans);
  letter-spacing:0.01em;overflow:hidden;white-space:nowrap;
}
.proof-tile-frame--browser .browser-body{
  padding:18px 16px;
  height:calc(100% - 43px);
  display:flex;flex-direction:column;gap:10px;
  overflow:hidden;
}
.proof-tile-frame--browser .ai-engine{
  display:flex;align-items:center;gap:8px;
  font-size:11px;font-weight:700;
  color:var(--navy);letter-spacing:0.06em;text-transform:uppercase;
}
.proof-tile-frame--browser .ai-engine-dot{
  width:8px;height:8px;border-radius:50%;
  background:linear-gradient(135deg,#10a37f,#1ea888);
}
.proof-tile-frame--browser .ai-line{
  height:8px;border-radius:4px;
  background:linear-gradient(90deg,#d8d4e0,#e8e5ec);
}
.proof-tile-frame--browser .ai-line.short{width:62%;}
.proof-tile-frame--browser .ai-line.medium{width:84%;}
.proof-tile-frame--browser .ai-cite{
  margin-top:6px;
  padding:8px 10px;
  background:rgba(200,2,110,0.08);
  border-left:2px solid var(--pink);
  border-radius:4px;
  font-family:var(--serif);font-style:italic;
  font-size:13px;color:var(--navy);font-weight:600;
  line-height:1.35;
}

/* Phone-frame variant (text message) */
.proof-tile-frame--phone{
  background:#0a1428;
  border:1px solid rgba(255,255,255,0.08);
  padding:14px 16px 18px;
  display:flex;flex-direction:column;
  gap:8px;
}
.proof-tile-frame--phone .sms-time{
  text-align:center;
  font-size:11px;font-weight:600;
  color:rgba(251,250,251,0.45);
  letter-spacing:0.04em;
  margin-bottom:4px;
}
.proof-tile-frame--phone .sms-bubble{
  max-width:82%;
  padding:10px 14px;
  border-radius:18px;
  font-size:13px;line-height:1.45;
  font-family:var(--sans);
}
.proof-tile-frame--phone .sms-bubble.incoming{
  align-self:flex-start;
  background:#2a3550;
  color:rgba(251,250,251,0.92);
  border-bottom-left-radius:5px;
}
.proof-tile-frame--phone .sms-bubble.outgoing{
  align-self:flex-end;
  background:linear-gradient(135deg,var(--pink) 0%,#a80259 100%);
  color:#fff;
  border-bottom-right-radius:5px;
}

/* Real screenshot variant (clean dark frame, no fake chrome). */
.proof-tile-frame--screenshot{
  aspect-ratio:9/16;
  background-color:#000;
  background-size:cover;
  background-position:center top;
  background-repeat:no-repeat;
  border:1px solid var(--border);
}

.proof-tile-caption{
  font-size:11px;font-weight:700;
  color:var(--pink);
  letter-spacing:0.18em;text-transform:uppercase;
  line-height:1.5;
}

.proof-grid-cta{
  display:flex;justify-content:center;
  margin-top:56px;
}

/* ═══════════════════════════════════════
   5. WHO IT'S FOR
   ═══════════════════════════════════════ */
.who-section{padding:100px 0;background:#fff;}
.who-grid{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:auto auto auto 1fr;gap:28px;margin-top:48px;}
.who-card{display:grid;grid-template-rows:subgrid;grid-row:span 4;border-radius:24px;padding:48px 44px;position:relative;overflow:hidden;}
.who-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;}
.who-yes{background:var(--navy);border:1.5px solid rgba(255,255,255,0.08);}
.who-yes::before{background:linear-gradient(90deg,var(--pink),var(--pink-light));}
.who-no{background:var(--off-white);border:1.5px solid #e4e8f0;}
.who-no::before{background:#e4e8f0;}
.who-card-label{font-size:12px;font-weight:700;letter-spacing:0.16em;text-transform:uppercase;margin-bottom:20px;display:flex;align-items:center;gap:8px;}
.who-yes .who-card-label{color:var(--pink-light);}
.who-no .who-card-label{color:var(--slate);}
.who-card-title{font-family:var(--serif);font-size:clamp(22px,2.5vw,30px);font-weight:700;line-height:1.2;margin-bottom:20px;}
.who-yes .who-card-title{color:var(--off-white);}
.who-no .who-card-title{color:var(--navy);}
.who-card-title em{font-style:italic;color:var(--pink-light);}
.who-no .who-card-title em{color:var(--pink);}
.who-card-body{font-size:14.5px;line-height:1.65;margin-bottom:28px;font-weight:400;}
.who-yes .who-card-body{color:rgba(251,250,251,0.75);}
.who-no .who-card-body{color:#4a5670;}
.who-list{list-style:none;display:flex;flex-direction:column;gap:14px;}
.who-list li{display:flex;align-items:flex-start;gap:12px;font-size:15px;line-height:1.6;}
.who-yes .who-list li{color:rgba(251,250,251,0.85);}
.who-no .who-list li{color:#2e3d56;}
.who-check{width:20px;height:20px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:2px;}
.who-yes .who-check{background:rgba(200,2,110,0.3);}
.who-yes .who-check svg{width:12px;height:12px;stroke:var(--pink-light);fill:none;stroke-width:2.5;}
.who-no .who-check{background:#e8ecf2;}
.who-no .who-check svg{width:12px;height:12px;stroke:var(--slate);fill:none;stroke-width:2.5;}

/* ═══════════════════════════════════════
   6. PAIN POINTS
   ═══════════════════════════════════════ */
.pain-section{
  padding:110px 0 120px;
  background:linear-gradient(160deg,var(--navy-deep) 0%,#0e1c3a 100%);
  position:relative;overflow:hidden;
}
.pain-section::before{
  content:'';position:absolute;top:-100px;right:-200px;
  width:700px;height:700px;border-radius:50%;
  background:radial-gradient(circle,rgba(200,2,110,0.13) 0%,transparent 65%);
  pointer-events:none;
}
.pain-section .section-eyebrow .eyebrow-line{background:var(--pink-light);}
.pain-section .section-eyebrow .eyebrow-text{color:var(--pink-light);}
.pain-section .section-title{color:var(--off-white);}
.pain-section .section-body{color:rgba(251,250,251,0.55);max-width:560px;}
.pain-intro{
  font-size:clamp(17px,1.8vw,21px);font-weight:600;
  color:var(--off-white);
  line-height:1.5;margin-top:16px;
  max-width:620px;
}

/* Grid */
.pain-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:56px;
  position:relative;z-index:1;
}

/* Card */
.pain-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:20px;
  padding:36px 32px 32px;
  position:relative;overflow:hidden;
  display:flex;flex-direction:column;gap:0;
  transition:border-color .3s ease, background .3s ease, transform .3s ease;
  cursor:default;
}
.pain-card:hover,.pain-card:active{
  border-color:rgba(200,2,110,0.5);
  background:rgba(200,2,110,0.06);
  transform:translateY(-3px);
}

/* Accent top bar */
.pain-card::after{
  content:'';position:absolute;
  top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--pink),var(--pink-light));
  border-radius:20px 20px 0 0;
  opacity:0;transition:opacity .3s;
}
.pain-card:hover::after,.pain-card:active::after{opacity:1;}

/* Big stat number */
.pain-stat{
  font-family:var(--serif);
  font-size:clamp(44px,5vw,60px);
  font-weight:700;
  line-height:1;
  margin-bottom:8px;
  background:linear-gradient(135deg,#fff 0%,var(--pink-light) 100%);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}

/* Card headline, statement-style, serif italic anchor */
.pain-card h3{
  font-family:var(--serif);
  font-size:clamp(19px,1.9vw,23px);
  font-weight:700;font-style:italic;
  color:var(--off-white);
  line-height:1.3;
  margin-bottom:16px;
  margin-top:8px;
}

/* One-liner body */
.pain-card p{
  font-size:14px;font-weight:500;
  color:rgba(251,250,251,0.75);
  line-height:1.65;
  margin:0;
}

/* Small tag label */
.pain-tag{
  display:inline-flex;align-items:center;gap:6px;
  margin-bottom:20px;
  font-size:11px;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;
  color:var(--pink-light);opacity:0.8;
}
.pain-tag::before{
  content:'';width:20px;height:2px;
  background:var(--pink-light);border-radius:2px;
  flex-shrink:0;
}

/* ═══════════════════════════════════════
   7. TOTAL VISIBILITY FRAMEWORK
   ═══════════════════════════════════════ */
.framework-section{
  background:linear-gradient(135deg,var(--navy-deep) 0%,var(--navy-mid) 100%);
  padding:100px 0;position:relative;overflow:hidden;
}
.framework-section::after{content:'';position:absolute;bottom:-120px;right:-80px;width:400px;height:400px;border-radius:50%;background:radial-gradient(circle,rgba(220,95,163,0.18) 0%,transparent 65%);}
.framework-section::before{content:'';position:absolute;top:-100px;left:-100px;width:360px;height:360px;border-radius:50%;background:radial-gradient(circle,rgba(220,95,163,0.10) 0%,transparent 65%);pointer-events:none;}
.framework-section .eyebrow-line{background:var(--pink-light);}
.framework-section .eyebrow-text{color:var(--pink-light);}
.framework-section .section-title{color:var(--off-white);}
.framework-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:56px;position:relative;z-index:1;}
.framework-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:20px;
  padding:36px 32px 32px;
  position:relative;overflow:hidden;
  display:flex;flex-direction:column;
  transition:border-color .3s ease,background .3s ease,transform .3s ease;
}
.framework-card:hover,.framework-card:active{
  border-color:rgba(200,2,110,0.5);
  background:rgba(200,2,110,0.06);
  transform:translateY(-3px);
}
.framework-card::after{
  content:'';position:absolute;
  top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--pink),var(--pink-light));
  border-radius:20px 20px 0 0;
  opacity:0;transition:opacity .3s;
}
.framework-card:hover::after,.framework-card:active::after{opacity:1;}
.framework-card-index{
  display:inline-flex;align-items:center;gap:6px;
  margin-bottom:20px;
  font-size:11px;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;
  color:var(--pink-light);opacity:0.85;
}
.framework-card-index::before{
  content:'';width:20px;height:2px;
  background:var(--pink-light);border-radius:2px;
  flex-shrink:0;
}
.framework-card-icon{
  position:absolute;top:26px;right:26px;
  width:42px;height:42px;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.12);
  transition:transform .35s ease,border-color .35s ease,background .35s ease;
}
.framework-card:hover .framework-card-icon{
  transform:scale(1.08);
  border-color:rgba(255,255,255,0.28);
  background:rgba(255,255,255,0.08);
}
.framework-card-icon svg{
  width:20px;height:20px;
  stroke:var(--off-white);fill:none;
  stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;
}
.framework-card h3{
  font-family:var(--serif);
  font-size:clamp(19px,1.9vw,23px);
  font-weight:700;font-style:italic;
  color:var(--off-white);
  line-height:1.3;
  margin:0 0 16px;
  padding-right:52px;
  text-align:left;
}
.framework-card h3 em{font-style:italic;color:var(--pink-light);}
.framework-card p{
  font-size:14px;font-weight:500;
  color:rgba(251,250,251,0.75);
  line-height:1.65;
  margin:0;
  text-align:left;
  max-width:none;
}
.framework-outcome{
  margin-top:48px;text-align:center;position:relative;z-index:1;
  font-family:var(--serif);font-size:clamp(22px,2.5vw,32px);font-weight:700;
  color:var(--off-white);line-height:1.3;
  padding-top:40px;border-top:1px solid rgba(255,255,255,0.08);
}
.framework-outcome em{font-style:italic;color:var(--pink-light);}

/* ═══════════════════════════════════════
   8. PROCESS
   ═══════════════════════════════════════ */
.process-section{padding:100px 0;background:#fff;}
.process-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;margin-top:48px;}
.proc-step{text-align:center;position:relative;}
.proc-step::after{
  content:'';position:absolute;top:30px;left:calc(50% + 32px);right:calc(-50% + 32px);
  height:2px;background:linear-gradient(90deg,var(--pink),rgba(200,2,110,0.1));
}
.proc-step:last-child::after{display:none;}
.proc-num-wrap{
  width:60px;height:60px;border-radius:50%;
  background:linear-gradient(135deg,var(--pink),var(--pink-light));
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 24px;position:relative;z-index:1;
  box-shadow:0 4px 20px rgba(200,2,110,0.35);
}
.proc-num-wrap span{font-size:20px;font-weight:700;color:#fff;font-variant-numeric:tabular-nums lining-nums;}
.proc-step h3{font-size:18px;font-weight:700;color:var(--navy);margin-bottom:10px;}
.proc-step p{font-size:14px;font-weight:400;color:#2e3d56;line-height:1.7;max-width:280px;margin:0 auto;}

/* ═══════════════════════════════════════
   9. STRATEGY CALL
   ═══════════════════════════════════════ */
.call-section{
  background:var(--navy);padding:100px 0;
  position:relative;overflow:hidden;
}
.call-section::before{content:'';position:absolute;top:-150px;left:-100px;width:500px;height:500px;border-radius:50%;background:radial-gradient(circle,rgba(200,2,110,0.15) 0%,transparent 65%);}
.call-section .eyebrow-line{background:var(--pink-light);}
.call-section .eyebrow-text{color:var(--pink-light);}
.call-section .section-title{color:var(--off-white);margin-bottom:48px;}
.call-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;position:relative;z-index:1;}
.call-card{
  background:rgba(255,255,255,0.05);border:1.5px solid rgba(255,255,255,0.1);
  border-radius:20px;padding:36px 32px;
  display:flex;align-items:flex-start;gap:18px;
}
.call-icon{
  width:48px;height:48px;border-radius:14px;
  background:rgba(200,2,110,0.2);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.call-icon svg{width:22px;height:22px;stroke:var(--pink-light);fill:none;stroke-width:1.8;}
.call-card h3{font-size:16px;font-weight:700;color:var(--off-white);margin-bottom:8px;}
.call-card p{font-size:14px;font-weight:400;color:rgba(251,250,251,0.48);line-height:1.7;}

/* ═══════════════════════════════════════
   10. PROOF
   ═══════════════════════════════════════ */

  /* This section is drop-in. It styles only inside .rv-proof and won't leak globally. */
  .rv-proof{
    font-family: var(--sans);
    background: var(--off-white);
    color: var(--ink);
    padding: clamp(64px, 8vw, 128px) clamp(20px, 4vw, 48px);
    line-height: 1.5;
    position: relative;
    overflow: hidden;
  }

  /* Safety net: no image in this section may exceed its container */
  .rv-proof img{ max-width: 100%; height: auto; }

  /* Background texture, subtle grid + magenta glow */
  .rv-proof::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 15% 0%, rgba(200, 2, 110, 0.06) 0%, transparent 45%),
      radial-gradient(ellipse at 85% 100%, rgba(19, 34, 72, 0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
  }

  .rv-container{
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  /* ----- INTRO ----- */
  .rv-intro{
    max-width: 920px;
    margin: 0 auto clamp(56px, 7vw, 96px);
    text-align: center;
  }

  .rv-eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
  }
  .rv-eyebrow::before{
    content: "";
    display: inline-block;
    width: 36px;
    height: 3px;
    background: var(--pink);
    border-radius: 2px;
    box-shadow: none;
  }

  .rv-headline{
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0;
    color: var(--navy);
    margin: 24px 0 20px;
  }
  .rv-headline em{
    font-style: italic;
    color: var(--pink);
    white-space: nowrap;
  }

  .rv-lede{
    font-size: 18px;
    color: #2a3550;
    line-height: 1.85;
    max-width: 680px;
    margin: 0 auto;
    font-weight: 400;
  }


  /* ----- CHAPTER 3, REVENUE / TIMELINE ----- */
  .rv-stat-strip{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px;
    background: var(--navy);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 18px 48px -24px rgba(19, 34, 72, 0.4);
  }
  .rv-stat{
    background: var(--navy);
    padding: clamp(20px, 3vw, 32px) clamp(18px, 3vw, 32px);
    color: #fff;
    position: relative;
  }
  .rv-stat-label{
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--pink-light);
    margin-bottom: 8px;
  }
  .rv-stat-value{
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
  }
  .rv-stat-sub{
    display: block;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
    font-weight: 500;
    line-height: 1.45;
  }

  .rv-other-clients{
    margin-top: clamp(36px, 5vw, 56px);
    margin-bottom: 32px;
  }
  .rv-other-clients-eyebrow{
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--pink);
    margin: 0 0 14px;
    text-align: center;
  }


  /* ----- DISCLAIMER ----- */
  .rv-footnote{
    margin-top: clamp(48px, 6vw, 72px);
    padding: 20px 24px;
    background: rgba(19, 34, 72, 0.03);
    border-left: 3px solid var(--pink);
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--ink);
    opacity: 0.7;
    line-height: 1.6;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
  }
  .rv-footnote strong{
    color: var(--navy);
    opacity: 1;
    font-weight: 600;
  }

  /* ===== NARRATIVE SCROLL ===== */
  .rv-story{
    position: relative;
    max-width: 760px;
    margin: clamp(56px, 8vw, 88px) auto 0;
    padding-left: 56px;
  }
  /* Center spine, fades from pink to navy down the timeline */
  .rv-story::before{
    content: "";
    position: absolute;
    left: 19px;
    top: 16px;
    bottom: 16px;
    width: 2px;
    background: linear-gradient(to bottom,
      rgba(200, 2, 110, 0.55) 0%,
      rgba(200, 2, 110, 0.28) 55%,
      rgba(19, 34, 72, 0.18) 100%);
    border-radius: 2px;
  }

  .rv-beat{
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: clamp(22px, 3vw, 32px);
    margin-bottom: 24px;
    box-shadow:
      0 1px 0 rgba(19, 34, 72, 0.02),
      0 12px 32px -18px rgba(19, 34, 72, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .rv-beat:last-child{ margin-bottom: 0; }
  .rv-beat:hover{
    transform: translateX(2px);
    box-shadow:
      0 1px 0 rgba(19, 34, 72, 0.02),
      0 18px 40px -18px rgba(19, 34, 72, 0.22);
  }
  .rv-beat::before{
    content: "";
    position: absolute;
    left: -45px;
    top: 28px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--pink);
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px var(--border), 0 4px 12px rgba(200, 2, 110, 0.28);
  }

  .rv-beat-head{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
  }
  .rv-beat-day{
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pink);
    padding: 5px 12px;
    background: rgba(200, 2, 110, 0.08);
    border-radius: 100px;
  }
  .rv-beat-date{
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--slate);
    letter-spacing: 0.04em;
  }

  .rv-beat-headline{
    font-family: var(--serif);
    font-size: clamp(1.25rem, 2.2vw, 1.6rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0 0 14px;
  }

  .rv-beat-body{
    font-size: 0.95rem;
    color: var(--ink);
    opacity: 0.78;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
  }
  .rv-beat-body strong{
    color: var(--navy);
    opacity: 1;
    font-weight: 700;
  }
  .rv-beat-body em{
    font-style: italic;
    color: var(--navy);
    font-weight: 500;
  }

  /* --- Inline citation mockup (Day 5) --- */
  .rv-beat-mockup{
    margin: 4px 0 18px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
  }
  .rv-beat-chrome{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: linear-gradient(to bottom, #fff, var(--off-white));
    border-bottom: 1px solid var(--border);
  }
  .rv-beat-dots{ display: inline-flex; gap: 5px; flex-shrink: 0; }
  .rv-beat-dots span{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e6e3e8;
  }
  .rv-beat-url{
    flex: 1;
    min-width: 0;
    font-size: 0.82rem;
    color: var(--navy);
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .rv-beat-citation{
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #fff;
  }
  .rv-beat-source-tag{
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pink);
  }
  .rv-beat-source-name{
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.005em;
  }
  .rv-beat-screenshot{
    aspect-ratio: 5 / 2;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-color: #000;
  }
  .rv-beat-screenshot--chatgpt{
    aspect-ratio: 1080 / 354;
    background-position: center;
  }
  .rv-beat-screenshot--google{
    aspect-ratio: 1080 / 578;
    background-position: center top;
  }

  /* --- Inline form snippet (Day 10) --- */
  .rv-beat-snippet{
    margin: 4px 0 18px;
    padding: 14px 18px;
    background: rgba(200, 2, 110, 0.06);
    border: 1px solid rgba(200, 2, 110, 0.25);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .rv-beat-snippet-label{
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--slate);
  }
  .rv-beat-snippet-value{
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pink);
    letter-spacing: -0.01em;
  }

  .rv-beat-lead-image{
    margin: 4px 0 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
  }
  .rv-beat-lead-image img{
    display: block;
    width: 100%;
    height: auto;
  }

  /* --- Quote beats (Day 14, Day 19) --- */
  .rv-beat-quote{
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2.4vw, 1.65rem);
    font-style: italic;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.35;
    margin: 0 0 14px;
    padding: 0 0 0 26px;
    border-left: 3px solid var(--pink);
  }
  .rv-beat-quote strong{
    font-style: normal;
    color: var(--pink);
    font-weight: 700;
    letter-spacing: -0.01em;
  }
  .rv-beat-attribution{
    font-size: 0.78rem;
    color: var(--ink);
    opacity: 0.6;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  /* --- Closer beat (Day 23) --- */
  .rv-beat--closer{
    background: linear-gradient(160deg, var(--navy) 0%, #1a2c5c 100%);
    border-color: var(--navy);
    color: #fff;
    padding: clamp(28px, 4vw, 40px);
    box-shadow: 0 28px 60px -22px rgba(19, 34, 72, 0.5);
  }
  .rv-beat--closer:hover{
    box-shadow: 0 32px 70px -22px rgba(19, 34, 72, 0.6);
  }
  .rv-beat--closer::before{
    background: var(--pink-light);
    box-shadow: 0 0 0 1px var(--navy), 0 4px 16px rgba(220, 95, 163, 0.4);
  }
  .rv-beat-day--closer{
    background: rgba(220, 95, 163, 0.22);
    color: var(--pink-light);
  }
  .rv-beat--closer .rv-beat-date{ color: rgba(255,255,255,0.55); }
  .rv-beat-headline--closer{
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
  .rv-beat-closer-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 18px 0;
    padding: 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
  }
  .rv-beat-closer-label{
    display: block;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pink-light);
    margin-bottom: 8px;
  }
  .rv-beat-closer-value{
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.75rem, 2.8vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.05;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .rv-beat-closer-sub{
    display: block;
    font-size: 0.85rem;
    color: var(--pink-light);
    margin-top: 8px;
    font-weight: 600;
    line-height: 1.45;
  }
  .rv-beat--closer .rv-beat-body{
    color: rgba(255,255,255,0.78);
    opacity: 1;
  }
  .rv-beat--closer .rv-beat-body em{
    color: var(--pink-light);
    font-weight: 600;
    font-style: italic;
  }

  /* ===== CLIENT MESSAGE SCREENSHOTS ===== */
  .rv-msgs{
    margin: clamp(56px, 8vw, 88px) auto 0;
    max-width: 720px;
    text-align: center;
  }
  .rv-msgs-title{
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0;
    margin: 0 0 8px;
    line-height: 1.2;
  }
  .rv-msgs-sub{
    font-size: 0.85rem;
    color: var(--ink);
    opacity: 0.6;
    margin: 0 0 32px;
  }
  .rv-msgs-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .rv-msg-ph{
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px 18px 20px;
    box-shadow:
      0 1px 0 rgba(19, 34, 72, 0.02),
      0 14px 36px -22px rgba(19, 34, 72, 0.22);
    transition: transform .35s ease, box-shadow .35s ease;
  }
  .rv-msg-ph:hover{
    transform: translateY(-3px);
    box-shadow:
      0 1px 0 rgba(19, 34, 72, 0.02),
      0 22px 48px -20px rgba(19, 34, 72, 0.28);
  }
  .rv-msg-ph-label{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pink);
  }
  .rv-msg-ph-label::before{
    content: "";
    width: 16px; height: 2px;
    background: var(--pink);
    border-radius: 2px;
    flex-shrink: 0;
  }
  .rv-msg-ph-frame--filled{
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
  }

  /* ===== CLIENT CARD (replaces inline client-band content) ===== */
  .rv-client-card{
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 22px 14px 14px;
    margin: 28px auto 0;
    max-width: 540px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 100px;
    box-shadow: 0 8px 24px -16px rgba(19, 34, 72, 0.18);
  }
  .rv-client-avatar{
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff 0%, var(--off-white) 100%);
    border: 1px dashed var(--border-strong);
    flex-shrink: 0;
    position: relative;
  }
  .rv-client-avatar::before{
    content: "Photo";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate);
    opacity: 0.5;
  }
  .rv-client-avatar--filled{
    background-size: cover;
    background-position: 50% 22%;
    background-repeat: no-repeat;
    border-style: solid;
    border-color: var(--border);
  }
  .rv-client-avatar--filled::before{ content: none; }
  .rv-client-card-body{
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
    min-width: 0;
  }
  .rv-client-card-name{
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.005em;
  }
  .rv-client-card-meta{
    font-size: 0.76rem;
    color: var(--ink);
    opacity: 0.65;
    font-weight: 400;
  }

  /* ===== PLATFORM CHIPS (under Google mockup) ===== */
  .rv-beat-platforms{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 4px 0 16px;
  }
  .rv-beat-platform-chip{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
  }
  .rv-beat-platform-chip::before{
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4285F4;
    flex-shrink: 0;
  }
  .rv-beat-platform-chip-meta{
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* ===== QUOTE AVATAR (above quote beats 5 + 6) ===== */
  .rv-quote-attribution{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }
  .rv-quote-avatar{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff 0%, var(--off-white) 100%);
    border: 1px dashed var(--border-strong);
    flex-shrink: 0;
    position: relative;
  }
  .rv-quote-avatar::before{
    content: "Photo";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate);
    opacity: 0.5;
  }
  .rv-quote-avatar--filled{
    background-size: cover;
    background-position: 50% 22%;
    background-repeat: no-repeat;
    border-style: solid;
    border-color: var(--border);
  }
  .rv-quote-avatar--filled::before{ content: none;
  }
  .rv-quote-attribution-name{
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .rv-quote-attribution-name strong{
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.005em;
  }
  .rv-quote-attribution-name span{
    font-size: 0.7rem;
    color: var(--ink);
    opacity: 0.6;
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  /* ===== FIELD INTERLUDE CARD (between Day 30 and Day 45) ===== */
  .rv-field-card{
    margin: 0 0 24px;
    margin-left: 0;
    position: relative;
  }
  .rv-field-frame{
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #fff 0%, var(--off-white) 100%);
    border: 1px dashed var(--border-strong);
    border-radius: 18px;
    box-shadow:
      0 1px 0 rgba(19, 34, 72, 0.02),
      0 12px 32px -18px rgba(19, 34, 72, 0.16);
    position: relative;
  }
  .rv-field-frame::before{
    content: "Drop worksite photo here";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate);
    opacity: 0.5;
  }
  .rv-field-frame--filled{
    aspect-ratio: 3 / 4;
    max-width: 440px;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-style: solid;
    border-color: var(--border);
  }
  .rv-field-frame--filled::before{ content: none; }
  .rv-field-card:has(.rv-field-frame--filled) .rv-field-caption{
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .rv-field-caption{
    display: block;
    margin-top: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate);
    text-align: center;
  }

  /* ----- IN-PROOF CTA (after Day 120 closer beat) ----- */
  .rv-proof-cta{
    margin: clamp(40px, 6vw, 64px) auto 0;
    max-width: 1080px;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2c5c 100%);
    border-radius: 24px;
    padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 0 24px 60px -22px rgba(19, 34, 72, 0.45);
    position: relative;
    overflow: hidden;
  }
  .rv-proof-cta::before{
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 95, 163, 0.18) 0%, rgba(220, 95, 163, 0) 70%);
    pointer-events: none;
  }
  .rv-proof-cta-text{
    flex: 1 1 360px;
    position: relative;
    z-index: 1;
  }
  .rv-proof-cta-eyebrow{
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--pink-light);
    margin-bottom: 10px;
  }
  .rv-proof-cta-headline{
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.01em;
  }
  .rv-proof-cta-headline em{
    font-style: italic;
    color: var(--pink-light);
  }
  .rv-proof-cta .btn-primary{
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  /* ----- RESPONSIVE ----- */
  @media (max-width: 860px){
    .rv-proof-cta{
      flex-direction: column;
      align-items: stretch;
      text-align: center;
      gap: 18px;
      padding: 28px 24px;
    }
    .rv-proof-cta-text{
      flex: 0 0 auto;
    }
    .rv-proof-cta .btn-primary{
      justify-content: center;
    }
    .rv-stat-strip{
      grid-template-columns: minmax(0, 1fr);
    }
    .rv-client-card{
      flex-direction: row;
      border-radius: 18px;
      padding: 14px 18px;
      max-width: 100%;
    }
    .rv-story{
      padding-left: 32px;
    }
    .rv-story::before{
      left: 9px;
    }
    .rv-beat{
      padding: 22px 20px;
    }
    .rv-beat::before{
      left: -28px;
      top: 26px;
      width: 14px;
      height: 14px;
    }
    .rv-beat-closer-grid{
      grid-template-columns: minmax(0, 1fr);
      padding: 18px;
    }
    .rv-field-frame::before{
      font-size: 0.68rem;
    }
  }

  @media (prefers-reduced-motion: reduce){
    .rv-beat{ transition: none; }
  }


/* ── LIGHTBOX ── */
.lb-overlay{
  position:fixed;inset:0;z-index:9999;
  background:rgba(5,10,22,0.94);backdrop-filter:blur(8px);
  display:flex;align-items:center;justify-content:center;
  padding:24px;
  opacity:0;pointer-events:none;transition:opacity .25s ease;
}
.lb-overlay.open{opacity:1;pointer-events:all;}
.lb-img-wrap{
  position:relative;max-width:90vw;max-height:90vh;
  border-radius:16px;overflow:hidden;
  box-shadow:0 32px 80px rgba(0,0,0,0.6);
}
.lb-img-wrap img{
  display:block;max-width:90vw;max-height:88vh;
  width:auto;height:auto;object-fit:contain;
}
.lb-close{
  position:absolute;top:12px;right:12px;
  width:36px;height:36px;border-radius:50%;
  background:rgba(0,0,0,0.65);border:none;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s;
}
.lb-close:hover{background:var(--pink);}
.lb-close svg{width:16px;height:16px;stroke:#fff;fill:none;stroke-width:2.5;}
.lb-caption{
  position:absolute;bottom:0;left:0;right:0;
  background:linear-gradient(transparent,rgba(0,0,0,0.75));
  padding:24px 20px 16px;
  font-size:13px;font-weight:600;color:rgba(255,255,255,0.85);
  text-align:center;
}

/* ═══════════════════════════════════════
   11. FAQ
   ═══════════════════════════════════════ */
.faq-section{padding:100px 0;background:#fff;}
.faq-list{max-width:760px;margin:48px auto 0;display:flex;flex-direction:column;gap:0;}
.faq-item{border-bottom:1px solid #e4e8f0;}
.faq-item:first-child{border-top:1px solid #e4e8f0;}
.faq-q{
  display:flex;justify-content:space-between;align-items:center;
  padding:24px 0;cursor:pointer;gap:16px;
}
.faq-q h3{font-size:17px;font-weight:600;color:var(--navy);line-height:1.4;}
.faq-toggle{
  width:44px;height:44px;border-radius:50%;
  background:var(--pink-pale);display:flex;align-items:center;justify-content:center;
  flex-shrink:0;transition:transform .3s ease,background .3s ease;
}
.faq-toggle svg{width:16px;height:16px;stroke:var(--pink);stroke-width:2.5;fill:none;transition:transform .3s ease;}
.faq-item.open .faq-toggle{background:var(--pink);}
.faq-item.open .faq-toggle svg{stroke:#fff;transform:rotate(180deg);}
.faq-a{max-height:0;overflow:hidden;transition:max-height .4s ease;}
.faq-a-inner{padding:0 0 24px;font-size:15px;font-weight:400;color:#2e3d56;line-height:1.8;max-width:660px;}

/* ═══════════════════════════════════════
   12. APPLICATION FORM
   ═══════════════════════════════════════ */
.form-section{padding:100px 0;background:var(--navy-deep);position:relative;overflow:hidden;}
.form-section::before{content:'';position:absolute;top:-200px;right:-150px;width:600px;height:600px;border-radius:50%;background:radial-gradient(circle,rgba(200,2,110,0.15) 0%,transparent 65%);pointer-events:none;}
.form-section::after{content:'';position:absolute;bottom:-150px;left:-100px;width:400px;height:400px;border-radius:50%;background:radial-gradient(circle,rgba(220,95,163,0.10) 0%,transparent 65%);pointer-events:none;}
.form-section .section-eyebrow .eyebrow-line{background:var(--pink-light);}
.form-section .section-eyebrow .eyebrow-text{color:var(--pink-light);}
.form-section .section-title{color:var(--off-white);}
.form-section .section-body{color:rgba(251,250,251,0.72);}
.form-layout{display:grid;grid-template-columns:1fr 1.1fr;gap:56px;align-items:start;margin-top:56px;position:relative;z-index:1;}
/* Value panel (left col) */
.form-value-panel{display:flex;flex-direction:column;gap:0;}
.fvp-label{font-size:12px;font-weight:700;letter-spacing:0.16em;text-transform:uppercase;color:var(--pink-light);margin-bottom:20px;}
.fvp-call-badge{display:inline-flex;align-items:center;gap:8px;padding:8px 14px;border-radius:999px;background:rgba(200,2,110,0.14);border:1px solid rgba(200,2,110,0.28);color:var(--pink-light);font-size:13px;font-weight:600;letter-spacing:0.02em;margin-bottom:18px;}
.fvp-call-badge svg{width:14px;height:14px;stroke:var(--pink-light);fill:none;stroke-width:2;}
.fvp-title{font-family:var(--serif);font-size:clamp(24px,2.8vw,34px);font-weight:700;color:var(--off-white);line-height:1.2;margin-bottom:28px;}
.fvp-title em{font-style:italic;color:var(--pink-light);}
.fvp-items{display:flex;flex-direction:column;gap:16px;margin-bottom:36px;}
.fvp-item{display:flex;align-items:flex-start;gap:14px;}
.fvp-check{width:22px;height:22px;border-radius:50%;background:rgba(200,2,110,0.25);display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:1px;}
.fvp-check svg{width:11px;height:11px;stroke:var(--pink-light);fill:none;stroke-width:2.5;}
.fvp-item-text{font-size:15px;font-weight:500;color:rgba(251,250,251,0.82);line-height:1.55;}
.fvp-item-text strong{color:var(--off-white);font-weight:700;}
.fvp-divider{height:1px;background:rgba(255,255,255,0.08);margin:24px 0;}
.fvp-reassurance{font-size:13px;font-weight:500;color:rgba(251,250,251,0.45);line-height:1.7;}
.fvp-reassurance strong{color:rgba(251,250,251,0.65);font-weight:600;}
/* Form card (right col) */
.form-wrapper{
  background:rgba(255,255,255,0.04);border:1.5px solid rgba(255,255,255,0.1);border-radius:24px;
  padding:48px 44px;position:relative;overflow:hidden;
  backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
}
.form-anchor{
  display:block;width:0;height:0;overflow:hidden;
  scroll-margin-top:90px;
}
.form-wrapper::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--pink),var(--pink-light));}
.form-spots{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(200,2,110,0.18);border:1px solid rgba(200,2,110,0.3);
  border-radius:50px;padding:6px 14px;margin-bottom:28px;
}
.form-spots-dot{width:7px;height:7px;border-radius:50%;background:var(--pink-light);animation:pulse-dot 1.8s ease-in-out infinite;}
@keyframes pulse-dot{0%,100%{opacity:1;transform:scale(1);}50%{opacity:0.5;transform:scale(0.85);}}
.form-spots-text{font-size:12px;font-weight:700;color:var(--pink-light);letter-spacing:0.04em;}
.form-step{display:none;}
.form-step.active{display:block;}
.form-step-indicator{display:flex;align-items:center;gap:12px;margin-bottom:32px;}
.step-dot{width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:700;transition:all .3s;}
.step-dot.active{background:var(--pink);color:#fff;}
.step-dot.inactive{background:rgba(255,255,255,0.1);color:rgba(251,250,251,0.35);}
.step-dot.done{background:rgba(200,2,110,0.3);color:var(--pink-light);}
.step-line{flex:1;height:2px;background:rgba(255,255,255,0.1);}
.step-line.active{background:var(--pink);}
.step-label{font-size:13px;font-weight:600;color:rgba(251,250,251,0.5);margin-bottom:24px;}
.step-label span{color:var(--pink-light);}
.form-group{margin-bottom:20px;}
.form-group label{display:block;font-size:12.5px;font-weight:700;color:rgba(251,250,251,0.7);margin-bottom:8px;letter-spacing:0.04em;text-transform:uppercase;}
.form-group input,.form-group select,.form-group textarea{
  width:100%;font-family:var(--sans);font-size:15px;font-weight:400;
  color:var(--off-white);background:rgba(255,255,255,0.06);
  border:1.5px solid rgba(255,255,255,0.12);border-radius:12px;
  padding:14px 18px;outline:none;transition:border-color .2s,background .2s;
}
.form-group input::placeholder,.form-group textarea::placeholder{color:rgba(251,250,251,0.3);}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--pink-light);background:rgba(255,255,255,0.08);}
.form-group input.error,.form-group select.error,.form-group textarea.error{border-color:#e05252;}
.form-error-msg{font-size:12px;font-weight:600;color:#e08080;margin-top:6px;display:none;}
.form-error-msg.visible{display:block;}
.form-group select{cursor:pointer;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238d97a7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 16px center;background-color:rgba(255,255,255,0.06);}
.form-group select option{background:var(--navy);color:var(--off-white);}
.form-group textarea{resize:vertical;min-height:100px;}
/* Consent row, reset the inherited uppercase field-label styling and harden the
   checkbox + text layout against the WP theme's global form CSS (e.g. input{width:100%}). */
.form-group label.rv-consent{display:flex!important;align-items:flex-start;gap:10px;font-size:13.5px;line-height:1.55;font-weight:400;letter-spacing:normal;text-transform:none!important;text-align:left;color:rgba(251,250,251,0.7);cursor:pointer;margin-bottom:0;}
.form-group label.rv-consent input[type="checkbox"]{width:16px!important;height:16px!important;min-width:16px;flex:0 0 16px;margin:2px 0 0 0;padding:0;appearance:auto;-webkit-appearance:checkbox;}
.form-group label.rv-consent>span{flex:1 1 auto;min-width:0;}
.form-nav{display:flex;gap:12px;margin-top:28px;}
.form-back{
  font-family:var(--sans);font-size:14px;font-weight:600;
  color:rgba(251,250,251,0.6);background:transparent;
  border:1.5px solid rgba(255,255,255,0.15);border-radius:50px;
  padding:14px 24px;cursor:pointer;transition:all .2s;
}
.form-back:hover{border-color:rgba(255,255,255,0.35);color:var(--off-white);}
/* Success state */
.form-success{display:none;text-align:center;padding:20px 0;}
.form-success.visible{display:block;}
.form-success-icon{width:72px;height:72px;border-radius:50%;background:rgba(200,2,110,0.2);display:flex;align-items:center;justify-content:center;margin:0 auto 24px;}
.form-success-icon svg{width:34px;height:34px;stroke:var(--pink-light);fill:none;stroke-width:2;}
.form-success h3{font-family:var(--serif);font-size:clamp(22px,2.5vw,28px);font-weight:700;color:var(--off-white);margin-bottom:12px;line-height:1.2;}
.form-success h3 em{font-style:italic;color:var(--pink-light);}
.form-success p{font-size:15px;font-weight:400;color:rgba(251,250,251,0.7);line-height:1.75;max-width:380px;margin:0 auto 28px;}
.form-success-next{display:flex;flex-direction:column;gap:10px;text-align:left;background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.1);border-radius:14px;padding:20px 22px;}
.form-success-step{display:flex;align-items:center;gap:12px;font-size:14px;font-weight:500;color:rgba(251,250,251,0.75);}
.form-success-step-num{width:24px;height:24px;border-radius:50%;background:var(--pink);color:#fff;font-size:11px;font-weight:800;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.form-success-book{display:inline-block;background:var(--pink);color:#fff;font-family:var(--sans);font-size:15px;font-weight:700;letter-spacing:0.01em;padding:16px 32px;border-radius:999px;text-decoration:none;margin:0 auto 24px;transition:transform .15s ease, background .15s ease;box-shadow:0 8px 24px -10px rgba(200,2,110,0.6);}
.form-success-book:hover{background:#e0066a;transform:translateY(-1px);}
.form-success-book .arrow{display:inline-block;margin-left:8px;transition:transform .2s ease;}
.form-success-book:hover .arrow{transform:translateX(3px);}
.form-success-or{font-size:12px;font-weight:500;letter-spacing:0.18em;text-transform:uppercase;color:rgba(251,250,251,0.4);margin:0 auto 20px;}
.form-success .for-qualified{display:none;}
.form-success .for-unqualified{display:none;}
.form-success.qualified .for-qualified{display:block;}
.form-success.unqualified .for-unqualified{display:block;}


/* ═══════════════════════════════════════
   13. CTA BAND
   ═══════════════════════════════════════ */
.cta-band{
  background:var(--pink);padding:72px 0;text-align:center;
  position:relative;overflow:hidden;
}
.cta-band::before{content:'';position:absolute;top:-80px;right:-80px;width:300px;height:300px;border-radius:50%;background:rgba(255,255,255,0.07);}
.cta-band::after{content:'';position:absolute;bottom:-100px;left:-60px;width:250px;height:250px;border-radius:50%;background:rgba(0,0,0,0.06);}
.cta-band-title{font-family:var(--serif);font-size:clamp(28px,3.5vw,44px);font-weight:700;color:#fff;margin-bottom:16px;position:relative;z-index:1;}
.cta-band-sub{font-size:17px;font-weight:400;color:rgba(255,255,255,0.8);margin-bottom:32px;position:relative;z-index:1;}
.cta-band .btn-cta-white{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--sans);font-size:16px;font-weight:700;
  color:var(--pink);background:#fff;
  padding:18px 40px;border-radius:50px;border:none;cursor:pointer;
  text-decoration:none;transition:all .3s;position:relative;z-index:1;
  box-shadow:0 4px 20px rgba(0,0,0,0.15);letter-spacing:0.02em;
}
.cta-band .btn-cta-white:hover{transform:translateY(-2px);box-shadow:0 8px 28px rgba(0,0,0,0.2);}

/* ═══════════════════════════════════════
   14. FOOTER
   ═══════════════════════════════════════ */
.site-footer{background:var(--navy-deep);padding:48px 0;border-top:1px solid rgba(255,255,255,0.06);}
.footer-inner{display:flex;justify-content:space-between;align-items:center;}
.footer-logo-link{display:flex;align-items:center;text-decoration:none;}
.footer-logo-img{height:36px;width:auto;object-fit:contain;display:block;}
.footer-copy{font-size:13px;color:rgba(251,250,251,0.3);}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media(max-width:960px){
  .container{padding:0 32px;}
  .nav-inner{padding:0 32px;}
  .hero-grid{grid-template-columns:1fr;gap:48px;}
  .hero-video{max-width:560px;}
  .hero-proof{gap:24px;}  .form-layout{grid-template-columns:1fr;gap:40px;}  .pain-grid{grid-template-columns:1fr 1fr;}
  .proof-grid-list{grid-template-columns:repeat(2,1fr);gap:20px;}
  .framework-grid{grid-template-columns:1fr;}
  .call-grid{grid-template-columns:1fr;}
  .process-steps{grid-template-columns:1fr;gap:40px;}
  .proc-step::after{display:none;}
  .proc-step{text-align:left;display:flex;align-items:flex-start;gap:20px;}
  .proc-num-wrap{margin:0;flex-shrink:0;}
  .proc-step p{margin:0;}
  .who-grid{grid-template-columns:1fr;grid-template-rows:none;gap:20px;}
  .who-card{display:block;grid-row:auto;grid-template-rows:none;}
}
@media(max-width:768px){
  .container{padding:0 26px;}
  .nav-inner{padding:0 26px;}
  .pain-grid{gap:14px;}
  .proof-grid-list{gap:16px;}
  .hero-proof{gap:18px;}
  .form-wrapper{padding:40px 32px;}
  .who-card{padding:36px 28px;}
}
@media(max-width:640px){
  .container{padding:0 20px;}
  .nav-inner{padding:0 20px;}
  .nav-links{display:none;}
  .nav-links.open{
    display:flex;flex-direction:column;
    position:absolute;top:72px;left:0;right:0;
    background:var(--navy-deep);padding:24px 20px;gap:16px;
    border-bottom:1px solid rgba(255,255,255,0.08);
  }
  .nav-mobile-btn{display:block;}
  .hero{padding:110px 0 60px;min-height:auto;}
  .pain-grid{grid-template-columns:1fr;}
  .proof-grid-list{grid-template-columns:1fr;gap:18px;margin-top:40px;}
  .proof-tile{padding:20px 18px;}
  .proof-tile-headline{font-size:17px;min-height:0;}
  .proof-grid-section{padding:72px 0 64px;}
  .proof-grid-cta{margin-top:40px;}
  .form-wrapper{padding:36px 24px;}
  .who-card{padding:32px 22px;}
  .hero-btns{flex-direction:column;}
  .hero-btns .btn-primary,.hero-btns .btn-outline{width:100%;justify-content:center;}

  /* Tighter section paddings on mobile */
  .who-section,
  .framework-section,
  .process-section,
  .call-section,
  .faq-section,
  .form-section{padding:64px 0;}
  .pain-section{padding:72px 0 80px;}

  /* Tighter card paddings */
  .framework-card{padding:28px 22px;}
  .pain-card{padding:28px 22px 24px;}
  .call-card{padding:24px 22px;}

  /* Headline scales pull in slightly */
  .section-title{font-size:clamp(28px,7vw,40px);line-height:1.15;}
  .hero-title{font-size:clamp(32px,8vw,46px);line-height:1.1;}
  .hero-title em{display:block;}

  /* CTA strip tighter */
  .cta-strip{padding:28px 0;}
  .cta-strip .container{gap:16px;}
  .cta-strip-text{font-size:15px;}

  /* Hero proof stats wrap cleanly */
  .hero-proof{gap:20px;}
  .hero-proof-stat{flex:1 1 calc(50% - 10px);min-width:0;}
  .hero-proof-stat:nth-child(3){flex:1 1 100%;text-align:center;}

  /* Footer */
  .footer-inner{flex-direction:column;gap:14px;text-align:center;}

}

/* ── QUALIFYING CORNER POPUP ── */
.qual-popup{
  position:fixed;bottom:24px;right:24px;z-index:80;
  width:340px;max-width:calc(100vw - 32px);
  background:linear-gradient(140deg,var(--navy) 0%,var(--navy-mid) 100%);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  padding:22px 22px 20px;
  box-shadow:0 24px 60px -12px rgba(0,0,0,0.55);
  color:#fff;
  transform:translateY(120%);opacity:0;pointer-events:none;
  transition:transform .4s ease-out,opacity .35s ease-out;
  overflow:hidden;
}
.qual-popup::before{
  content:'';position:absolute;top:-50px;right:-50px;
  width:160px;height:160px;border-radius:50%;
  background:radial-gradient(circle,rgba(220,95,163,0.22) 0%,rgba(220,95,163,0) 70%);
  pointer-events:none;
}
.qual-popup.is-visible{
  transform:translateY(0);opacity:1;pointer-events:auto;
}
.qual-popup-eyebrow{
  display:block;font-size:11px;font-weight:700;letter-spacing:0.18em;
  text-transform:uppercase;color:var(--pink-light);margin-bottom:8px;
  position:relative;z-index:1;
}
.qual-popup-title{
  font-family:var(--serif);font-size:20px;font-weight:700;
  line-height:1.2;margin:0 0 10px;color:#fff;letter-spacing:-0.01em;
  position:relative;z-index:1;
}
.qual-popup-body{
  font-size:13.5px;line-height:1.55;margin:0 0 16px;
  color:rgba(251,250,251,0.78);font-weight:400;
  position:relative;z-index:1;
}
.qual-popup-cta.btn-primary{
  display:inline-flex;font-size:13px;padding:14px 22px;
  position:relative;z-index:1;
  min-height:44px;align-items:center;
}
.qual-popup-close{
  position:absolute;top:10px;right:10px;
  width:28px;height:28px;border-radius:50%;border:0;
  background:rgba(255,255,255,0.06);color:rgba(255,255,255,0.7);
  font-size:18px;line-height:1;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s,color .2s;z-index:2;
}
.qual-popup-close:hover{background:rgba(255,255,255,0.14);color:#fff;}
@media (max-width:860px){
  .qual-popup{display:none;}
}
@media (prefers-reduced-motion: reduce){
  .qual-popup{transition:opacity .2s ease;transform:none;}
  .qual-popup:not(.is-visible){opacity:0;}
}

/* ── STICKY MOBILE CTA ── */
.sticky-cta-mobile{
  display:none;
  position:fixed;left:0;right:0;bottom:0;z-index:90;
  background:rgba(11,22,48,0.96);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-top:1px solid rgba(255,255,255,0.08);
  box-shadow:0 -8px 28px rgba(0,0,0,0.25);
  padding:12px 18px calc(12px + env(safe-area-inset-bottom,0));
  transition:transform .35s ease,opacity .35s ease;
}
.sticky-cta-mobile-inner{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  max-width:560px;margin:0 auto;
}
.sticky-cta-mobile-text{
  font-size:13px;font-weight:600;color:rgba(251,250,251,0.92);
  line-height:1.3;flex:1 1 auto;min-width:0;
}
.sticky-cta-mobile .btn-primary{
  flex-shrink:0;font-size:13px;padding:14px 20px;
  box-shadow:0 4px 14px rgba(200,2,110,0.45);
  min-height:44px;align-items:center;
}
.sticky-cta-mobile.is-hidden{
  transform:translateY(110%);opacity:0;pointer-events:none;
}
@media (max-width:860px){
  .sticky-cta-mobile{display:block;}
  body{padding-bottom:72px;}
}