@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=IBM+Plex+Mono:wght@400;500;600;700&display=swap');

/* ══════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════ */
:root {
  --ink:         #0D1117;
  --ink-soft:    #161B22;
  --ink-border:  rgba(255,255,255,0.08);
  --paper:       #F5F0E8;
  --paper-alt:   #EDE8DB;
  --paper-line:  #DDD5C4;
  --text-dark:   #1A2035;
  --text-light:  #E8E2D6;
  --text-muted:  #8B93A8;
  --gold:        #E4A63A;
  --gold-light:  #F7C653;
  --gold-glow:   rgba(228,166,58,0.25);
  --teal:        #3E8E7E;
  --teal-light:  #4FB5A3;
  --teal-glow:   rgba(62,142,126,0.2);
  --red:         #C97B5A;
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --max:         1120px;
  --nav-h:       68px;
}

/* ══════════════════════════════════════
   CREATIVE SVG ANIMATIONS & UTILITIES
══════════════════════════════════════ */
@keyframes svgGlowPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(228,166,58,0.4)); }
  50% { transform: scale(1.12); filter: drop-shadow(0 0 8px rgba(228,166,58,0.8)); }
}

@keyframes svgBounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

@keyframes svgFloatRocket {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(4deg); }
}

@keyframes svgCheckPop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); filter: drop-shadow(0 0 5px rgba(16,185,129,0.6)); }
}

@keyframes svgCrossShake {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); filter: drop-shadow(0 0 4px rgba(239,68,68,0.5)); }
}

@keyframes svgStarTwinkle {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.85; filter: drop-shadow(0 0 6px rgba(228,166,58,0.8)); }
}

@keyframes svgLockPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 4px rgba(62,142,126,0.5)); }
}

@keyframes svgDotRadar {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.svg-fire-anim { animation: svgGlowPulse 2.5s infinite ease-in-out; display: inline-block; vertical-align: -2px; }
.svg-bounce-down { animation: svgBounceDown 1.8s infinite ease-in-out; display: inline-block; vertical-align: -2px; }
.svg-rocket { animation: svgFloatRocket 3s infinite ease-in-out; display: inline-block; vertical-align: -2px; }
.svg-bolt-anim { animation: svgGlowPulse 2s infinite ease-in-out; display: inline-block; vertical-align: -2px; }
.svg-check-anim { animation: svgCheckPop 2.2s infinite ease-in-out; display: inline-block; vertical-align: -2px; }
.svg-cross-anim { animation: svgCrossShake 2.5s infinite ease-in-out; display: inline-block; vertical-align: -2px; }
.svg-star-anim { animation: svgStarTwinkle 2.2s infinite ease-in-out; display: inline-block; vertical-align: -2px; }
.svg-lock-anim { animation: svgLockPulse 3s infinite ease-in-out; display: inline-block; vertical-align: -2px; }
.svg-dot-anim { animation: svgDotRadar 1.8s infinite ease-in-out; display: inline-block; vertical-align: -2px; }
.m-svg-icon { display: inline-block; vertical-align: -3px; flex-shrink: 0; }

/* ══════════════════════════════════════
   RESET & BASE
══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Outfit', system-ui, -apple-system, sans-serif; font-weight: 700; letter-spacing: -0.025em; line-height: 1.15; }
a { color: inherit; text-decoration: none; }
img, svg, iframe { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.wrap-wide {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ══════════════════════════════════════
   PERFORMANCE & GPU ACCELERATION TUNING
══════════════════════════════════════ */
.hero-orb, .pricing-orb, .marquee-track, .nav-badge-dot, .badge-pulse-dot, .sticky-pulse-dot, .eyebrow-pulse {
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.wysiwyg-section, .comparison-table-wrap, .bonuses-section, .faq-list, .press-section, .site-footer, .reviews-section, .founder-section, #proof, #post-purchase, #included, #business-model, #qualification, #tech-stack, #cost-comparison, #licensing, #offer-stack {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

/* ══════════════════════════════════════
   KEYFRAME ANIMATIONS
══════════════════════════════════════ */
@keyframes float {
  0%, 100% { transform: rotate(1.2deg) translateY(0px); }
  50%       { transform: rotate(1.2deg) translateY(-14px); }
}
@keyframes float-sm {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes orb-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, -30px) scale(1.1); }
  66%       { transform: translate(-25px, 20px) scale(0.95); }
}
@keyframes orb-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-30px, 25px) scale(0.9); }
  66%       { transform: translate(20px, -20px) scale(1.05); }
}
@keyframes orb-drift-c {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-20px, -15px); }
}
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 0.9; transform: scale(1.05); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(62,142,126,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(62,142,126,0); }
}
@keyframes cohort-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(.22,.68,0,1.2),
              transform 0.7s cubic-bezier(.22,.68,0,1.2);
}
.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   EYEBROW
══════════════════════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
}
.eyebrow.on-ink {
  background: rgba(228,166,58,0.12);
  color: var(--gold);
  border: 1px solid rgba(228,166,58,0.3);
}
.eyebrow.on-paper {
  background: rgba(62,142,126,0.1);
  color: var(--teal);
  border: 1px solid rgba(62,142,126,0.3);
}
.eyebrow-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: cohort-blink 2s ease-in-out infinite;
}

/* ══════════════════════════════════════
   SECTION UTILITIES
══════════════════════════════════════ */
.section-light  { padding: 96px 0; background: var(--paper); }
.section-alt    { padding: 96px 0; background: var(--paper-alt); }

.section-head {
  max-width: 600px;
  margin-bottom: 52px;
}
.section-head h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  margin-top: 14px;
  color: var(--ink);
}
.section-head p {
  color: #5A6379;
  font-size: 17px;
  margin-top: 14px;
  line-height: 1.65;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, #F7C653 0%, #E4A63A 100%);
  color: #1A0E00;
  font-weight: 800; font-size: 15px;
  padding: 15px 26px; border-radius: 12px;
  position: relative; overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 6px 24px -4px rgba(228, 166, 58, 0.45);
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.35) 50%, transparent 65%);
  transform: translateX(-100%);
  animation: shimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #FFD56B 0%, #F7C653 100%);
  transform: translateY(-2.5px);
  box-shadow: 0 12px 32px -4px rgba(228, 166, 58, 0.65);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  color: var(--ink); font-weight: 700; font-size: 15px;
  padding: 14px 28px;
  background: #FFFFFF;
  border: 1.5px solid var(--paper-line);
  border-radius: 100px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.btn-ghost:hover {
  color: var(--teal);
  border-color: var(--teal);
  background: rgba(62, 142, 126, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(62, 142, 126, 0.12);
}

/* Dark Background Hero/Footer Context Overrides */
.hero .btn-ghost,
.pricing-section .btn-ghost,
.dark-bg .btn-ghost {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}
.hero .btn-ghost:hover,
.pricing-section .btn-ghost:hover,
.dark-bg .btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(247, 198, 83, 0.12);
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 15, 23, 0.82);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  height: var(--nav-h);
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 20px;
  color: var(--text-light); letter-spacing: -0.03em;
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap; flex-shrink: 0;
}
.brand:hover { opacity: 0.95; transform: translateY(-1px); }
.brand-mark { flex-shrink: 0; filter: drop-shadow(0 2px 8px rgba(247,198,83,0.3)); }
.brand-name-txt { color: #FFFFFF; font-weight: 800; }
.brand-highlight { color: var(--gold); font-weight: 900; }

.nav-right {
  display: flex; align-items: center; gap: 16px;
  flex-shrink: 0;
}
/* Desktop Nav Links Floating Glass Pill Container */
.nav-links-desktop {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  padding: 4px 6px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 4px 20px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}
.nav-links-desktop a {
  font-size: 13.5px; font-weight: 600; color: rgba(237, 231, 216, 0.78);
  padding: 7px 16px; border-radius: 9999px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}
.nav-links-desktop a:hover {
  color: #FFFFFF;
  background: rgba(247, 198, 83, 0.12);
  text-shadow: 0 0 10px rgba(247, 198, 83, 0.4);
}

/* Mobile Menu Hamburger Button */
.mobile-menu-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  padding: 8px; cursor: pointer; transition: all 0.2s ease;
}
.mobile-menu-toggle:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
}
.menu-bar {
  width: 100%; height: 2px; background: #FFFFFF;
  border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease;
}
.mobile-menu-toggle.active .bar-1 {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active .bar-2 {
  opacity: 0;
}
.mobile-menu-toggle.active .bar-3 {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════════
   ADVANCED CREATIVE MOBILE NAV DRAWER
══════════════════════════════════════ */
.mobile-nav-drawer {
  position: fixed; inset: 0;
  background: rgba(6, 9, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 10000;
  display: flex; justify-content: flex-end;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-nav-drawer.active {
  opacity: 1; visibility: visible;
}

.mobile-drawer-inner {
  background: linear-gradient(180deg, #121824 0%, #0A0D14 100%);
  border-left: 1px solid rgba(228,166,58,0.3);
  width: 320px; max-width: 85vw; height: 100%;
  padding: 24px; display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.8);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav-drawer.active .mobile-drawer-inner {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.mobile-drawer-close {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #FFFFFF; width: 32px; height: 32px;
  border-radius: 50%; font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.mobile-drawer-close:hover {
  background: rgba(217,56,58,0.2); border-color: #D9383A;
}

.mobile-drawer-links {
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.mobile-drawer-links a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 10px;
  color: rgba(255,255,255,0.9); font-weight: 600; font-size: 14.5px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s ease;
}
.mobile-drawer-links a:hover,
.mobile-drawer-links a:active {
  background: rgba(228,166,58,0.12);
  border-color: var(--gold); color: var(--gold);
}
.mobile-drawer-links .m-icon { font-size: 16px; }

.mobile-drawer-footer {
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.mobile-drawer-cta {
  width: 100%; justify-content: center; font-size: 15px; padding: 14px 20px;
  border-radius: 12px;
}
.mobile-drawer-note {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  color: rgba(255,255,255,0.5); margin-top: 10px;
}
.nav-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.22);
  border-radius: 9999px;
  padding: 6px 14px;
  font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; font-weight: 600;
  color: #2DD4BF; letter-spacing: 0.02em;
  white-space: nowrap; flex-shrink: 0;
}
.nav-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #2DD4BF;
  box-shadow: 0 0 8px #2DD4BF;
  animation: badge-pulse 2s ease-in-out infinite;
}
.nav-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #F7C653 0%, #E4A63A 100%);
  color: #0E0900;
  font-weight: 700; font-size: 13.5px;
  padding: 9px 20px; border-radius: 9999px;
  box-shadow: 0 4px 16px rgba(228, 166, 58, 0.3);
  transition: all 0.2s ease;
  white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover {
  background: linear-gradient(135deg, #FFD56B 0%, #F7C653 100%);
  transform: translateY(-1.5px);
  box-shadow: 0 6px 22px rgba(228, 166, 58, 0.45);
}

/* ══════════════════════════════════════
   HERO (CINEMATIC)
══════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 65% 50% at 20% 20%, rgba(228,166,58,0.14), transparent 70%),
    radial-gradient(ellipse 70% 60% at 80% 80%, rgba(62,142,126,0.12), transparent 70%),
    radial-gradient(130% 120% at 10% -10%, #151C30 0%, var(--ink) 55%, #060910 100%);
  color: var(--text-light);
  padding: 92px 0 104px;
}

/* Background grid */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 100%);
}

/* Ambient orbs */
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 520px; height: 520px; top: -160px; left: -80px;
  background: radial-gradient(circle, rgba(228,166,58,0.12), transparent 70%);
  animation: orb-drift-a 14s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px; bottom: -80px; right: 5%;
  background: radial-gradient(circle, rgba(62,142,126,0.12), transparent 70%);
  animation: orb-drift-b 18s ease-in-out infinite;
}
.hero-orb-3 {
  width: 280px; height: 280px; top: 20%; right: 30%;
  background: radial-gradient(circle, rgba(100,120,200,0.06), transparent 70%);
  animation: orb-drift-c 22s ease-in-out infinite;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative; z-index: 2;
}
.hero-copy { max-width: 860px; margin: 0 auto; width: 100%; }

.hero-heading {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 800;
  line-height: 1.12;
  margin: 22px 0 24px;
  letter-spacing: -0.03em;
}
.hero-line-white {
  color: #FFFFFF;
  display: inline-block;
  text-shadow: 0 2px 20px rgba(255,255,255,0.1);
}
.hero-highlight {
  background: linear-gradient(135deg, #FFEAB5 0%, #E4A63A 50%, #F7C653 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  filter: drop-shadow(0 4px 20px rgba(228,166,58,0.3));
}
.hero-line-light {
  color: rgba(255, 255, 255, 0.92);
  display: inline-block;
}

.hero p.lead {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-size: 18px;
  color: rgba(232, 226, 214, 0.85);
  line-height: 1.68;
  margin-bottom: 36px;
  max-width: 520px;
  font-weight: 400;
}
.hero p.lead strong {
  color: #FFFFFF;
  font-weight: 600;
}

.cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-micro-note {
  margin-top: 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.hero-scarcity-pill {
  display: inline-flex; align-items: center; gap: 6px; width: fit-content;
  font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; font-weight: 700;
  color: #F7C653; background: rgba(247, 198, 83, 0.12);
  border: 1px solid rgba(247, 198, 83, 0.3);
  padding: 4px 12px; border-radius: 9999px; letter-spacing: 0.02em;
}
.note-sub {
  font-size: 12.5px; color: rgba(232, 226, 214, 0.75); font-weight: 500;
}

/* ══════════════════════════════════════
   3-STEP LAUNCH PROCESS SECTION
══════════════════════════════════════ */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.process-step-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px solid var(--paper-line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}
.process-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.09);
  border-color: var(--gold);
}
.step-badge {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 800;
  color: var(--gold); background: rgba(228, 166, 58, 0.12);
  border: 1px solid rgba(228, 166, 58, 0.3);
  padding: 4px 12px; border-radius: 9999px; letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.step-icon { font-size: 32px; margin-bottom: 14px; }
.process-step-card h3 {
  font-size: 19px; font-weight: 800; color: var(--ink); margin-bottom: 10px;
}
.process-step-card p {
  font-size: 14.5px; color: var(--text-dark); opacity: 0.85; line-height: 1.6;
}

.hero-trust {
  display: flex; align-items: center; gap: 24px;
  margin-top: 40px; flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; }
.trust-item strong {
  font-family: 'Outfit', sans-serif; font-size: 26px; font-weight: 800;
  color: #fff; line-height: 1;
}
.trust-item strong small { font-size: 14px; color: var(--text-muted); }
.trust-item span { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 3px; }
.trust-div { width: 1px; height: 32px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* ── Manifest Card (Clean, Modern Sans-Serif Font, Highlighted, Creative) ── */
.manifest {
  background: #FFFFFF;
  border-radius: 20px; padding: 0; overflow: hidden;
  box-shadow:
    0 32px 64px -16px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 30px rgba(228, 166, 58, 0.1);
  animation: float 6s ease-in-out infinite;
  position: relative; z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
}
.manifest:hover {
  box-shadow:
    0 40px 80px -16px rgba(0, 0, 0, 0.7),
    0 0 0 1.5px rgba(228, 166, 58, 0.45),
    0 0 40px rgba(228, 166, 58, 0.18);
}

.manifest-head {
  background: #0D1117;
  color: var(--text-light);
  padding: 16px 22px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.manifest-head > span:first-child {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(232, 226, 214, 0.8);
}
.stamp {
  font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; font-weight: 700;
  color: #25D366; background: rgba(37, 211, 102, 0.12);
  border: 1.5px solid rgba(37, 211, 102, 0.4);
  padding: 4px 12px; border-radius: 6px;
  letter-spacing: 0.04em; transform: rotate(-2deg); display: inline-block;
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.18);
}

.manifest-body { padding: 22px 24px; background: #FFFFFF; }
.manifest-body h4 {
  font-family: 'IBM Plex Mono', monospace; font-size: 10.5px;
  letter-spacing: 0.12em; text-transform: uppercase; color: #9E8546; margin-bottom: 14px;
  font-weight: 700;
}
.manifest-list { list-style: none; }
.manifest-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 0; font-size: 14px; color: var(--text-dark);
  border-bottom: 1px dashed rgba(13, 17, 23, 0.08);
}
.manifest-list li:last-child { border-bottom: none; }
.manifest-list .qty {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  color: #D9822B; font-weight: 700; min-width: 28px; padding-top: 2px;
}

.m-title {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-weight: 700; color: #0D1117; line-height: 1.35; font-size: 14.5px;
  letter-spacing: -0.01em;
}
.m-sub {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-size: 12.5px; color: #5A6379; margin-top: 3px; line-height: 1.5;
  font-weight: 400;
}

/* ⭐ Creative Highlighted Item 02 (Digital Product Engine Pro) */
.manifest-pro-item {
  background: linear-gradient(135deg, rgba(228, 166, 58, 0.1) 0%, rgba(228, 166, 58, 0.03) 100%) !important;
  border: 1.5px solid rgba(228, 166, 58, 0.45) !important;
  border-radius: 12px !important;
  padding: 12px 14px !important;
  margin: 6px 0 !important;
  box-shadow: 0 4px 16px -4px rgba(228, 166, 58, 0.15);
}
.pro-qty { color: #C6862A !important; font-weight: 800 !important; }
.pro-title {
  color: #1A0E00 !important; font-weight: 800 !important; font-size: 14.5px !important;
  letter-spacing: -0.01em;
}
.pro-sub { color: #4A3E20 !important; font-weight: 500 !important; }

.manifest-foot {
  background: #F8F5EE; padding: 14px 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: #6B6040;
  letter-spacing: 0.05em; text-transform: uppercase; font-weight: 700;
  border-top: 1px solid rgba(13, 17, 23, 0.06);
}

/* ══════════════════════════════════════
   MARQUEE BAND
══════════════════════════════════════ */
.marquee-band {
  background: var(--ink);
  border-top: 1px solid var(--ink-border);
  border-bottom: 1px solid var(--ink-border);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.marquee-track {
  display: inline-flex; gap: 28px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; letter-spacing: 0.06em;
  color: rgba(228,166,58,0.7);
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.marquee-track span { flex-shrink: 0; }
.msep { color: rgba(228,166,58,0.3); }

/* ══════════════════════════════════════
   BROWSER CHROME + PREVIEW
══════════════════════════════════════ */
.browser-chrome {
  background: #0D1117;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 32px 80px -16px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 35px rgba(228, 166, 58, 0.1);
  margin-bottom: 28px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.browser-chrome:hover {
  transform: translateY(-3px);
  box-shadow:
    0 40px 95px -16px rgba(0, 0, 0, 0.5),
    0 0 0 1.5px rgba(228, 166, 58, 0.35),
    0 0 50px rgba(228, 166, 58, 0.18);
}
.browser-bar {
  background: #2A2E3B;
  padding: 12px 18px;
  display: flex; align-items: center; gap: 16px;
}
.browser-dots {
  display: flex; gap: 6px; flex-shrink: 0;
}
.browser-dots span {
  width: 11px; height: 11px; border-radius: 50%; display: block;
}
.browser-url {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: 'IBM Plex Mono', monospace; font-size: 11.5px;
  color: #8B93A8; letter-spacing: 0.02em;
  background: rgba(255,255,255,0.06); border-radius: 6px;
  padding: 5px 12px; max-width: 360px;
}
.browser-refresh {
  flex-shrink: 0; opacity: 0.5;
  display: flex; align-items: center;
}
.preview-frame {
  background: #F0EBE0;
}
.preview-frame iframe {
  width: 100%; height: 680px;
  display: block; border: none;
}

/* Preview stats strip */
.preview-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius); overflow: hidden;
  background: #fff;
}
.preview-stat {
  padding: 20px 18px; text-align: center;
  border-right: 1px solid var(--paper-line);
  transition: background 0.2s ease;
}
.preview-stat:last-child { border-right: none; }
.preview-stat:hover { background: #FBF7EE; }
.preview-stat .timer-num {
  display: block; font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: 28px; color: var(--ink);
  line-height: 1; margin-bottom: 5px;
}
.preview-stat span {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em;
}

/* ══════════════════════════════════════
   PROBLEM / SOLUTION
══════════════════════════════════════ */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.split-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px; border: 1px solid var(--paper-line);
  position: relative; overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.split-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px -10px rgba(13,17,23,0.12); }
.split-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.split-card.no::before { background: linear-gradient(90deg, #C97B5A, #E09070); }
.split-card.yes::before { background: linear-gradient(90deg, var(--teal), var(--teal-light)); }

.split-card-hd {
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.split-card h3 { font-size: 18px; color: var(--ink); }
.split-card li {
  padding: 8px 0; font-size: 14.5px; color: #4A5268;
  display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px dotted var(--paper-line);
}
.split-card li:last-child { border-bottom: none; }
.split-card.no li::before { content: "–"; color: var(--red); font-weight: 700; margin-top: 1px; }
.split-card.yes li::before { content: "✓"; color: var(--teal); font-weight: 700; margin-top: 1px; }

/* ══════════════════════════════════════
   WHAT'S INCLUDED
══════════════════════════════════════ */
.included-wrap {
  background: var(--ink);
  border-radius: 24px; padding: 56px 52px;
  position: relative; overflow: hidden;
}
.included-wrap::before {
  content: ''; position: absolute;
  top: -80px; right: -80px; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(228,166,58,0.06), transparent 70%);
  pointer-events: none;
}
.included-head {
  margin-bottom: 44px;
}
.included-head h2 {
  color: #fff; font-size: clamp(24px, 2.8vw, 34px); margin-top: 14px;
}
.included-head p { color: var(--text-muted); font-size: 16px; margin-top: 10px; }

.included-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.included-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 22px 20px;
  border-right: 1px dotted rgba(255,255,255,0.08);
  border-bottom: 1px dotted rgba(255,255,255,0.08);
  transition: background 0.2s ease, transform 0.2s ease;
  transition-delay: calc(var(--i, 0) * 0.06s);
}
.included-item:hover { background: rgba(255,255,255,0.03); }
.included-item:nth-child(4n) { border-right: none; }
.included-item:nth-last-child(-n+4) { border-bottom: none; }

.included-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(228,166,58,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(228,166,58,0.18);
}
.included-item h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.included-item p { font-size: 12.5px; color: var(--text-muted); line-height: 1.55; }

/* ══════════════════════════════════════
   COMPARISON TABLE
══════════════════════════════════════ */
.compare-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--paper-line);
  box-shadow: 0 4px 24px -8px rgba(13,17,23,0.08);
}
.compare { width: 100%; border-collapse: collapse; background: #fff; }
.compare th, .compare td {
  padding: 16px 20px; text-align: left; font-size: 14.5px;
  border-bottom: 1px solid var(--paper-line);
}
.compare thead th {
  font-family: 'IBM Plex Mono', monospace; font-size: 11.5px;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-muted); background: #FBF8F2;
  vertical-align: bottom; padding-bottom: 14px;
}
.compare thead th.win {
  background: rgba(62,142,126,0.06);
  color: var(--teal);
}
.win-pill {
  display: block; font-size: 10px; margin-bottom: 4px;
  background: var(--teal); color: #fff;
  padding: 2px 8px; border-radius: 20px;
  width: fit-content; letter-spacing: 0.08em;
  font-weight: 600;
}
.compare tbody td.win { background: rgba(62,142,126,0.05); font-weight: 700; color: var(--teal); }
.compare tbody td.bad { color: var(--red); }
.compare tr:last-child td { border-bottom: none; }
.compare tr:hover td { background: rgba(0,0,0,0.015); }
.compare tr:hover td.win { background: rgba(62,142,126,0.08); }

/* ══════════════════════════════════════
   GUARANTEE
══════════════════════════════════════ */
.guarantee {
  display: grid; grid-template-columns: 140px 1fr;
  gap: 44px; align-items: center;
  background: #fff; border: 1px solid var(--paper-line);
  border-radius: var(--radius-xl); padding: 48px;
  box-shadow: 0 4px 24px -8px rgba(13,17,23,0.06);
}

.guarantee-seal {
  width: 130px; height: 130px;
  position: relative; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.seal-ring-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  animation: spin-slow 24s linear infinite;
}
.seal-body {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  background: radial-gradient(circle, rgba(62,142,126,0.08), transparent 70%);
  border: 2.5px solid var(--teal); border-radius: 50%;
  width: 96px; height: 96px; justify-content: center; gap: 0;
}
.seal-body svg { margin-bottom: 2px; }
.seal-body strong {
  font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 800;
  color: var(--teal); line-height: 1;
}
.seal-body span {
  font-family: 'IBM Plex Mono', monospace; font-size: 8.5px;
  color: var(--teal); letter-spacing: 0.08em; text-transform: uppercase;
  text-align: center; line-height: 1.3;
}

.guarantee-copy h3 { font-size: clamp(20px, 2.4vw, 26px); margin-bottom: 12px; }
.guarantee-copy p { color: #4A5268; font-size: 15px; max-width: 540px; line-height: 1.65; }
.guarantee-tags {
  display: flex; gap: 20px; margin-top: 20px; flex-wrap: wrap;
}
.guarantee-tags span {
  display: flex; align-items: center; gap: 6px;
  font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  color: var(--teal); font-weight: 500;
}

/* ══════════════════════════════════════
   VERIFIED CUSTOMER REVIEWS
══════════════════════════════════════ */
.reviews-section {
  padding: 88px 0 96px;
  background: var(--paper);
  border-top: 1px solid var(--paper-line);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.review-card {
  background: #FFFFFF;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 12px 32px -10px rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.12);
  border-color: rgba(228,166,58,0.4);
}

.review-card-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 2px 4px 0;
}
.review-stars {
  color: var(--gold); font-size: 15px; letter-spacing: 2px;
}
.review-verified {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 700;
  color: #25D366; background: rgba(37, 211, 102, 0.1);
  padding: 3px 10px; border-radius: 100px;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.review-img-wrap {
  width: 100%; border-radius: 12px; overflow: hidden;
  background: #0B0F17; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px;
  margin-top: 12px;
}
.review-img {
  width: 100%; height: auto; max-height: 420px; display: block; object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.review-card:hover .review-img {
  transform: scale(1.015);
}

.reviews-trust-bar {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  margin-top: 36px; font-family: 'IBM Plex Mono', monospace; font-size: 12.5px;
  color: var(--gold-deep); font-weight: 600;
}

/* ══════════════════════════════════════
   COST COMPARISON SECTION
══════════════════════════════════════ */
.cost-section {
  padding: 96px 0;
  background: var(--paper-alt);
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
}

.cost-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.cost-head h2 { font-size: clamp(28px, 3.4vw, 42px); color: var(--ink); margin-top: 14px; }
.cost-head p { font-size: 16px; color: #5A6379; margin-top: 14px; line-height: 1.65; }

/* Cost Table Wrapper */
.cost-table-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--paper-line);
  padding: 32px;
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.06);
  margin-bottom: 40px;
  overflow-x: auto;
}
.cost-table-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--ink);
  margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between;
}

.cost-table {
  width: 100%; border-collapse: collapse; text-align: left; min-width: 600px;
}
.cost-table th {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gold-deep); padding: 12px 16px;
  border-bottom: 2px solid var(--paper-line); background: var(--paper);
}
.cost-table td {
  padding: 14px 16px; font-size: 14.5px; color: var(--text-dark);
  border-bottom: 1px solid var(--paper-line);
}
.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr:hover td { background: rgba(228,166,58,0.03); }
.cost-badge-red {
  display: inline-block; font-family: 'IBM Plex Mono', monospace; font-size: 12px;
  font-weight: 700; color: #D9383A; background: rgba(217,56,58,0.08);
  padding: 3px 10px; border-radius: 6px; border: 1px solid rgba(217,56,58,0.2);
}
.cost-time-tag {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: #5A6379;
}

/* 2-Column Extra Cost & Missing Checklist Grid */
.cost-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 48px;
}
.cost-box-danger {
  background: #FFF; border: 1.5px solid rgba(217,56,58,0.25);
  border-radius: var(--radius-lg); padding: 28px 30px;
  box-shadow: 0 12px 32px -10px rgba(217,56,58,0.08);
}
.cost-box-danger h4 {
  color: #C92A2A; font-size: 18px; font-weight: 700; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.cost-box-success {
  background: var(--ink); border: 2px solid var(--gold);
  border-radius: var(--radius-lg); padding: 28px 30px;
  box-shadow: 0 16px 40px -10px rgba(228,166,58,0.2);
  color: #FFF;
}
.cost-box-success h4 {
  color: var(--gold); font-size: 18px; font-weight: 800; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}

.cost-check-list { list-style: none; }
.cost-check-list li {
  display: flex; align-items: flex-start; gap: 10px; padding: 8px 0;
  font-size: 14px; border-bottom: 1px dashed rgba(0,0,0,0.06);
}
.cost-box-success .cost-check-list li {
  border-bottom: 1px dashed rgba(255,255,255,0.08); color: rgba(255,255,255,0.9);
}
.cost-check-list li:last-child { border-bottom: none; }

/* Exclusive Advantage Box */
.cost-adv-box {
  background: linear-gradient(135deg, #161B22 0%, #0D1117 100%);
  border: 1px solid rgba(228,166,58,0.4); border-radius: var(--radius-xl);
  padding: 36px 40px; margin-bottom: 48px; color: #FFF;
  position: relative; overflow: hidden;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.4);
}
.cost-adv-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 700;
  color: #1A0E00; background: var(--gold); padding: 4px 14px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px;
}
.cost-adv-box h3 { font-size: 24px; color: #FFF; margin-bottom: 10px; }
.cost-adv-box p { font-size: 15px; color: rgba(232,226,214,0.8); max-width: 760px; line-height: 1.6; margin-bottom: 20px; }
.cost-adv-pills {
  display: flex; flex-wrap: wrap; gap: 10px; list-style: none;
}
.cost-adv-pills li {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 600;
  color: var(--gold); background: rgba(228,166,58,0.12);
  border: 1px solid rgba(228,166,58,0.3); padding: 6px 14px; border-radius: 8px;
}

/* Time & Final Value Comparison Table */
.cost-final-card {
  background: #FFFFFF; border-radius: var(--radius-xl);
  border: 2px solid var(--teal); padding: 36px 40px;
  box-shadow: 0 20px 50px -15px rgba(62,142,126,0.18);
  overflow-x: auto;
}
.cost-final-head { margin-bottom: 24px; text-align: center; }
.cost-final-head h3 { font-size: 24px; color: var(--ink); }

.final-comp-table {
  width: 100%; border-collapse: collapse; text-align: left; min-width: 600px;
}
.final-comp-table th {
  padding: 16px 20px; font-size: 13px; font-family: 'Outfit', sans-serif;
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
}
.final-comp-table th.col-trad { background: rgba(13,17,23,0.05); color: var(--text-dark); border-radius: 12px 12px 0 0; }
.final-comp-table th.col-our { background: var(--ink); color: var(--gold); border-radius: 12px 12px 0 0; }
.final-comp-table td { padding: 14px 20px; font-size: 14.5px; border-bottom: 1px solid var(--paper-line); }
.final-comp-table td.col-trad { background: rgba(13,17,23,0.02); color: #4A5268; }
.final-comp-table td.col-our { background: rgba(13,17,23,0.96); color: #FFF; font-weight: 700; }
.final-comp-table tr:last-child td { border-bottom: none; }
.price-tag-big-red { color: #D9383A; font-weight: 800; font-family: 'IBM Plex Mono', monospace; font-size: 15px; }
.price-tag-big-gold { color: var(--gold); font-weight: 800; font-family: 'Outfit', sans-serif; font-size: 18px; }

/* Cost Comparison CTA Banner */
.cost-cta-banner {
  margin-top: 48px;
  background: var(--ink);
  border: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: 44px 40px; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 20px 50px -15px rgba(228,166,58,0.25);
  color: #FFF;
}
.cost-cta-banner h3 {
  font-size: clamp(22px, 2.5vw, 30px);
  color: #FFF; margin-bottom: 12px;
}
.cost-cta-banner p {
  font-size: 15.5px; color: rgba(232,226,214,0.8);
  max-width: 640px; margin: 0 auto 28px; line-height: 1.6;
}
.cost-cta-action {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.cost-cta-trust {
  display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--teal-light);
}

/* ══════════════════════════════════════
   FREE BONUS PACKAGE SECTION
══════════════════════════════════════ */
.bonuses-section {
  padding: 96px 0;
  background: var(--paper);
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  position: relative; overflow: hidden;
}

.bonuses-head {
  text-align: center; max-width: 840px; margin: 0 auto 56px;
}
.bonuses-head h2 {
  font-size: clamp(28px, 3.4vw, 42px); color: var(--ink); margin-top: 14px;
  line-height: 1.25; font-weight: 800;
}
.bonuses-intro-lead {
  font-size: 16.5px; color: #475569; margin-top: 14px; line-height: 1.65;
}

.bonus-value-highlight {
  display: inline-block; margin-top: 24px;
  background: rgba(37, 211, 102, 0.1);
  border: 1.5px solid rgba(37, 211, 102, 0.4);
  padding: 10px 24px; border-radius: 100px;
  font-family: 'IBM Plex Mono', monospace; font-size: 14px; color: #15803D;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.1);
}
.bonus-value-highlight strong { color: #166534; font-size: 16px; font-weight: 800; }

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.bonus-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--paper-line);
  padding: 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 12px 32px -10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative; overflow: hidden;
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px -12px rgba(0,0,0,0.1);
  border-color: rgba(37, 211, 102, 0.4);
}
.bonus-card-featured {
  border-color: var(--gold-deep);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFDF8 100%);
  box-shadow: 0 16px 40px -12px rgba(228,166,58,0.15);
}

.bonus-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.bonus-card-visual {
  width: 100%; height: 130px; border-radius: 12px; overflow: hidden;
  margin-bottom: 20px; background: #0D1117;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.4);
}
.bonus-svg-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.3s ease;
}
.bonus-card:hover .bonus-svg-img {
  transform: scale(1.03);
}
.bonus-badge-free {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 800;
  color: #15803D; background: #DCFCE7;
  border: 1px solid #86EFAC; padding: 4px 12px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.bonus-val-tag {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 700;
  color: var(--gold-deep); background: rgba(228,166,58,0.12);
  border: 1px solid rgba(228,166,58,0.3); padding: 4px 12px; border-radius: 100px;
}
.val-exclusive {
  color: #7C3AED; background: #F3E8FF; border-color: #DDD6FE;
}

.bonus-title-group {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px;
}
.bonus-num-icon { font-size: 22px; line-height: 1.2; flex-shrink: 0; }
.bonus-title-group h3 {
  font-size: 18.5px; font-weight: 800; color: var(--ink); line-height: 1.35; margin: 0;
}
.bonus-desc {
  font-size: 15px; color: #475569; line-height: 1.6; margin-bottom: 18px;
}
.bonus-bullets {
  list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px;
}
.bonus-bullets li {
  font-size: 13.5px; font-weight: 600; color: #1E293B;
  display: flex; align-items: center; gap: 8px;
}
.b-check { color: #16A34A; font-weight: 800; }

.bonus-note {
  margin-top: 14px; padding: 10px 14px; background: rgba(228,166,58,0.08);
  border-left: 3px solid var(--gold-deep); border-radius: 6px;
  font-size: 12px; font-weight: 600; color: #92400E;
}

/* Total Value Summary Table Box */
.bonus-summary-table-card {
  background: #FFFFFF; border-radius: var(--radius-xl);
  border: 2px solid var(--paper-line); padding: 40px;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.06); text-align: center;
}
.bonus-summary-table-card h3 {
  font-size: clamp(20px, 2.5vw, 26px); color: var(--ink); margin-bottom: 28px;
}
.bonus-table-wrapper { overflow-x: auto; margin-bottom: 32px; }
.bonus-table {
  width: 100%; border-collapse: collapse; text-align: left; min-width: 540px;
}
.bonus-table th {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gold-deep); padding: 12px 18px;
  border-bottom: 2px solid var(--paper-line); background: var(--paper);
}
.bonus-table td {
  padding: 14px 18px; font-size: 14.5px; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--paper-line);
}
.val-pill {
  display: inline-block; font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 700;
  color: #15803D; background: #DCFCE7; padding: 3px 10px; border-radius: 6px;
}
.val-pill.exclusive { color: #7C3AED; background: #F3E8FF; }
.bonus-table tfoot td {
  background: rgba(37, 211, 102, 0.06); border-top: 2px solid #86EFAC;
  padding: 16px 18px; font-size: 16px;
}
.total-val-highlight { font-family: 'IBM Plex Mono', monospace; font-size: 18px; color: #15803D; }

/* Conversion Equation Summary Bar */
.bonus-equation-bar {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: #FFFFFF; border-radius: 14px; padding: 18px 24px;
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700;
  line-height: 1.5; margin-bottom: 36px; border: 1px solid rgba(228,166,58,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.bonus-cta-box {
  background: var(--paper); border: 1px dashed var(--gold-deep);
  border-radius: 16px; padding: 28px; display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.bonus-cta-box h3 { font-size: 20px; color: var(--ink); margin: 0; }
.bonus-cta-box p { font-size: 13.5px; color: #64748B; margin: 0 0 12px; }
.bonus-cta-btn { padding: 14px 28px; font-size: 15px; }

/* ══════════════════════════════════════
   ABOUT THE FOUNDER SECTION (CLEAN CREATIVE WHITE & BLACK)
══════════════════════════════════════ */
.founder-section {
  padding: 96px 0;
  background: var(--paper-alt);
  border-top: 1px solid var(--paper-line);
  position: relative; overflow: hidden;
}

.founder-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--paper-line);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: center;
  box-shadow:
    0 20px 50px -15px rgba(0,0,0,0.06),
    0 0 30px rgba(228,166,58,0.08);
  position: relative; z-index: 2;
  color: var(--ink);
}

.founder-img-col {
  display: flex; justify-content: center; position: relative;
}
.founder-avatar-wrapper {
  position: relative; max-width: 360px; width: 100%;
  border-radius: 24px; overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow:
    0 16px 40px -10px rgba(0, 0, 0, 0.15),
    0 0 25px rgba(228, 166, 58, 0.25);
  background: #0D1117;
}

/* 🎬 Cinematic Faded Black Vignette & Bottom Mask Overlay */
.founder-avatar-wrapper::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 50% 35%, transparent 25%, rgba(0,0,0,0.5) 75%, #000000 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 15%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.92) 85%, #000000 100%);
  z-index: 2;
}

.founder-avatar-img {
  width: 100%; height: auto; display: block; object-fit: cover;
  filter: brightness(0.9) contrast(1.15) saturate(0.92);
  transition: transform 0.4s ease, filter 0.4s ease;
}
.founder-avatar-wrapper:hover .founder-avatar-img {
  transform: scale(1.04);
  filter: brightness(0.98) contrast(1.2) saturate(1);
}
.founder-badge-overlay {
  position: absolute; bottom: 0; inset-x: 0; z-index: 4;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 40%, #000000 100%);
  padding: 30px 22px 20px; color: #FFF;
}
.founder-badge-overlay strong {
  display: block; font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 800;
  color: var(--gold); letter-spacing: -0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
.founder-badge-overlay span {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: rgba(232, 226, 214, 0.85);
  letter-spacing: 0.04em;
}

.founder-content-col h2 {
  font-size: clamp(24px, 2.8vw, 36px); color: var(--ink); margin: 14px 0 18px;
  line-height: 1.25; font-weight: 800;
}
.founder-intro {
  font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 12px; line-height: 1.5;
}
.founder-text {
  font-size: 15px; color: #334155; margin-bottom: 12px; line-height: 1.68;
}
.founder-mission-box {
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-left: 3.5px solid var(--gold-deep);
  border-radius: 12px; padding: 16px 20px; margin: 24px 0 28px;
  display: flex; align-items: flex-start; gap: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
}
.founder-mission-box p {
  font-size: 14.5px; color: var(--ink); line-height: 1.55; margin: 0;
}

.founder-highlights-title {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-deep);
  margin-bottom: 14px;
}
.founder-highlights-grid {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.founder-highlights-grid li {
  font-size: 14px; font-weight: 600; color: #1E293B;
  display: flex; align-items: center; gap: 8px;
}
.f-check { color: var(--teal); font-weight: 800; }
.f-star { color: var(--gold-deep); font-weight: 800; }

/* ══════════════════════════════════════
   FEATURED IN / AS SEEN ON SECTION
══════════════════════════════════════ */
.press-section {
  padding: 88px 0 96px;
  background: var(--paper-alt);
  border-top: 1px solid var(--paper-line);
  text-align: center;
}
.press-head { max-width: 600px; margin: 0 auto 40px; }
.press-head h2 { font-size: clamp(28px, 3.2vw, 38px); color: var(--ink); margin-top: 12px; }
.press-head p { font-size: 16px; color: #5A6379; margin-top: 10px; }

/* 🎬 Animated Dual-Row Press Ticker Capsules */
.press-ticker-card {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--paper-line);
  border-radius: 28px;
  padding: 24px 0;
  margin: 0 auto 40px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.02), 0 12px 36px -12px rgba(0,0,0,0.04);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.press-ticker-row {
  display: flex;
  overflow: hidden;
  user-select: none;
  margin-bottom: 14px;
}
.press-ticker-row:last-child {
  margin-bottom: 0;
}

.press-ticker-track {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  min-width: 100%;
}

/* Bi-Directional Infinite Marquee Animations */
.press-ticker-left .press-ticker-track {
  animation: pressScrollLeft 42s linear infinite;
}
.press-ticker-right .press-ticker-track {
  animation: pressScrollRight 42s linear infinite;
}

.press-ticker-card:hover .press-ticker-track {
  animation-play-state: paused;
}

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

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

/* White Pill Capsules for Publication Logos */
.press-logo-pill {
  background: #FFFFFF;
  border-radius: 50px;
  padding: 10px 24px;
  height: 50px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.press-logo-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-color: rgba(228, 166, 58, 0.4);
}

.press-logo-pill .press-logo-img {
  max-height: 26px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.3s ease;
}
.press-logo-pill:hover .press-logo-img {
  filter: grayscale(0%) opacity(1);
}

.press-note {
  font-size: 13.5px; color: #6B7280; max-width: 580px; margin: 0 auto 48px;
  font-style: italic; line-height: 1.5;
}

.press-cta-box {
  background: var(--ink); border: 2px solid var(--gold);
  border-radius: var(--radius-xl); padding: 40px 32px;
  max-width: 720px; margin: 0 auto; color: #FFF;
  box-shadow: 0 16px 40px -10px rgba(228,166,58,0.2);
}
.press-cta-box h3 { font-size: 24px; color: #FFF; margin-bottom: 10px; }
.press-cta-box p { font-size: 15px; color: rgba(232,226,214,0.8); margin-bottom: 24px; }

/* Featured Press Story Banner Card */
.press-story-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid var(--paper-line);
  padding: 32px 36px;
  margin: 36px 0 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.06);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.press-story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -12px rgba(0,0,0,0.12);
  border-color: rgba(67, 56, 202, 0.3);
}

.press-story-publisher {
  display: flex; flex-direction: column; align-items: center; gap: 10px; min-width: 160px;
}
.publisher-logo-box {
  background: #FFFFFF; border: 1px solid var(--paper-line); border-radius: 12px;
  padding: 12px 18px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.publisher-logo-img {
  max-height: 40px; width: auto; object-fit: contain;
}
.publisher-name {
  font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; font-weight: 700;
  color: #1E1B4B; letter-spacing: 0.08em; text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
}

.press-story-div {
  width: 1px; height: 72px; background: var(--paper-line); flex-shrink: 0;
}

.press-story-content { flex: 1; }
.press-story-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; font-weight: 800;
  color: #4338CA; background: #EEF2FF; border: 1px solid #C7D2FE;
  padding: 3px 12px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.press-story-title {
  font-family: 'Outfit', sans-serif; font-size: 19px; font-weight: 800;
  color: #0F172A; line-height: 1.35; margin-bottom: 8px; letter-spacing: -0.015em;
}
.press-story-snippet {
  font-size: 14px; color: #475569; line-height: 1.55; font-weight: 400;
}

.press-story-action {
  display: flex; flex-direction: column; align-items: center; gap: 8px; flex-shrink: 0;
}
.press-story-btn {
  background: #1E1B4B; color: #FFFFFF;
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 13.5px;
  letter-spacing: 0.06em; padding: 12px 24px; border-radius: 100px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap; box-shadow: 0 8px 20px -4px rgba(30, 27, 75, 0.3);
}
.press-story-btn:hover {
  background: #312E81; transform: translateY(-2px);
  box-shadow: 0 12px 24px -4px rgba(49, 46, 129, 0.4);
}

@media (max-width: 900px) {
  .press-story-card {
    flex-direction: column; text-align: center; gap: 20px; padding: 24px;
  }
  .press-story-div { display: none; }
  .press-story-publisher { min-width: auto; }
}

@media (max-width: 860px) {
  .founder-card { grid-template-columns: 1fr; padding: 28px; gap: 32px; }
  .founder-highlights-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .cost-grid-2 { grid-template-columns: 1fr; }
  .cost-table-card, .cost-final-card { padding: 20px; }
}

/* ══════════════════════════════════════
   PRICING SECTION
══════════════════════════════════════ */
.pricing-section {
  background: var(--ink);
  padding: 100px 0; position: relative; overflow: hidden;
}
.pricing-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(100px); opacity: 0.6;
}
.pricing-orb-1 {
  width: 500px; height: 500px; top: -100px; left: -80px;
  background: radial-gradient(circle, rgba(228,166,58,0.15), transparent 70%);
  animation: orb-drift-a 16s ease-in-out infinite;
}
.pricing-orb-2 {
  width: 400px; height: 400px; bottom: -80px; right: -40px;
  background: radial-gradient(circle, rgba(62,142,126,0.1), transparent 70%);
  animation: orb-drift-b 20s ease-in-out infinite;
}

.pricing-head {
  text-align: center; max-width: 500px; margin: 0 auto 52px;
}
.pricing-head h2 { color: #fff; font-size: clamp(28px, 3vw, 38px); margin-top: 14px; }
.pricing-head p { color: var(--text-muted); margin-top: 12px; font-size: 16px; }

.price-card {
  max-width: 480px; margin: 0 auto;
  background: var(--ink-soft);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px; padding: 48px 44px;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(228,166,58,0.1), 0 40px 80px -20px rgba(0,0,0,0.5);
}
.price-card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% -10%, rgba(228,166,58,0.14), transparent 70%);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}

.cohort-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); margin-right: 4px; vertical-align: middle;
  animation: cohort-blink 2s ease-in-out infinite;
}
.price-cohort {
  display: inline-block; position: relative;
  font-family: 'IBM Plex Mono', monospace; font-size: 11.5px;
  color: var(--gold); letter-spacing: 0.06em;
  border: 1px solid rgba(228,166,58,0.35);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 22px;
  background: rgba(228,166,58,0.08);
}
.price-num {
  font-family: 'Outfit', sans-serif; font-size: 58px; font-weight: 800;
  letter-spacing: -0.03em; color: #fff; line-height: 1; margin: 12px 0 6px;
  position: relative;
}
.price-sub {
  color: var(--text-muted); font-size: 13px;
  font-family: 'IBM Plex Mono', monospace;
  margin-bottom: 28px; position: relative;
}
.btn-checkout {
  width: 100%; justify-content: center;
  font-size: 16px; padding: 16px 24px;
  border-radius: 11px; position: relative;
}
.price-guarantee {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  margin: 16px 0 0; padding: 11px 14px;
  background: rgba(62,142,126,0.1); border: 1px solid rgba(62,142,126,0.22);
  border-radius: 9px; font-size: 12.5px; color: var(--teal-light);
  font-family: 'IBM Plex Mono', monospace; position: relative;
}

/* Pricing Card Digital Product Engine Pro Highlight Block */
.price-included-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 700;
  color: var(--gold); text-transform: uppercase;
  letter-spacing: 0.08em; text-align: left;
  margin: 24px 0 14px; position: relative;
}
.price-pro-highlight {
  background: rgba(13, 17, 23, 0.85);
  border: 1px solid rgba(228, 166, 58, 0.45);
  border-radius: var(--radius);
  padding: 18px 20px; text-align: left;
  margin-bottom: 20px; position: relative;
  box-shadow: inset 0 0 20px rgba(228, 166, 58, 0.08);
}
.price-pro-badge {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 700;
  color: #1A0E00; background: var(--gold);
  padding: 3px 10px; border-radius: 100px;
  margin-bottom: 10px; letter-spacing: 0.06em;
}
.price-pro-head {
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 700;
  color: #FFF; margin-bottom: 4px;
}
.price-pro-desc {
  font-size: 13px; color: rgba(232, 226, 214, 0.8);
  margin-bottom: 12px; line-height: 1.4;
}
.price-pro-pills {
  display: flex; flex-wrap: wrap; gap: 6px;
  list-style: none; margin-bottom: 12px;
}
.price-pro-pills li {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px; color: var(--gold);
  background: rgba(228, 166, 58, 0.12);
  border: 1px solid rgba(228, 166, 58, 0.25);
  padding: 3px 8px; border-radius: 5px;
}
.price-pro-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: var(--teal-light);
  font-style: italic; border-top: 1px dotted rgba(255,255,255,0.1);
  padding-top: 10px; margin-top: 6px;
}
.price-list {
  list-style: none; text-align: left; margin-top: 28px; position: relative;
}
.price-list li {
  padding: 9px 0; font-size: 14px; color: var(--text-light);
  display: flex; gap: 10px; align-items: flex-start;
  border-bottom: 1px dotted rgba(255,255,255,0.08);
}
.price-list li:last-child { border-bottom: none; }
.price-list .check { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.price-secure {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 20px; font-size: 12px; color: rgba(255,255,255,0.25);
  font-family: 'IBM Plex Mono', monospace; position: relative;
}

/* ══════════════════════════════════════
   REDESIGNED FAQ SECTION
══════════════════════════════════════ */
.faq-wrap { max-width: 880px; margin: 0 auto; }

.faq-cat-head {
  display: flex; align-items: center; gap: 10px;
  font-family: 'IBM Plex Mono', monospace; font-size: 13px; font-weight: 700;
  color: var(--teal); letter-spacing: 0.08em; text-transform: uppercase;
  margin: 36px 0 14px; padding-bottom: 8px; border-bottom: 2px solid rgba(62,142,126,0.2);
}
.faq-cat-head:first-child { margin-top: 0; }

.faq-item {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item.open {
  border-color: var(--teal);
  box-shadow: 0 6px 20px -6px rgba(62,142,126,0.12);
}
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; font-size: 16px; font-weight: 700;
  text-align: left; font-family: 'Outfit', sans-serif; color: var(--ink);
  cursor: pointer; background: transparent; border: none;
  transition: color 0.15s ease;
}
.faq-q:hover { color: var(--teal); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  background: var(--paper-alt); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.3s ease;
  color: var(--text-muted);
}
.faq-item.open .faq-icon {
  background: rgba(62,142,126,0.14);
  color: var(--teal);
  transform: rotate(45deg);
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 480px; }
.faq-a p {
  padding: 0 22px 20px; color: #4A5268; font-size: 15.5px;
  line-height: 1.65; max-width: 800px;
}
.faq-a p strong { color: var(--ink); }

/* Pre-Purchase Help Box */
.faq-help-box {
  margin-top: 48px;
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  box-shadow: 0 12px 32px -10px rgba(228,166,58,0.18);
}
.faq-help-head {
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
}
.faq-help-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(228,166,58,0.12); border: 1px solid rgba(228,166,58,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.faq-help-head h3 { font-size: 22px; color: var(--ink); margin-bottom: 4px; }
.faq-help-head p { font-size: 14.5px; color: var(--text-muted); }

.faq-help-links {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.faq-help-link {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: var(--paper);
  border: 1px solid var(--paper-line); border-radius: 10px;
  font-size: 13.5px; color: var(--text-dark); text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.faq-help-link:hover {
  transform: translateY(-2px);
  border-color: var(--teal);
  background: #fff;
}

/* ══════════════════════════════════════
   FINAL CTA
══════════════════════════════════════ */
.final-cta {
  background: var(--ink);
  border-radius: 28px; padding: 72px 60px;
  text-align: center; position: relative; overflow: hidden;
}
.final-cta-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 110%, rgba(228,166,58,0.14), transparent 70%),
    radial-gradient(ellipse 80% 40% at 50% -20%, rgba(62,142,126,0.08), transparent 70%);
  pointer-events: none;
}
.final-cta h2 {
  color: #fff; font-size: clamp(26px, 3.2vw, 38px);
  margin-top: 18px; margin-bottom: 14px; position: relative;
}
.final-cta p {
  color: var(--text-muted); max-width: 440px; margin: 0 auto 32px;
  font-size: 15.5px; position: relative;
}
.final-cta .btn-primary { position: relative; font-size: 16px; padding: 16px 30px; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
/* ══════════════════════════════════════
   FOOTER ENHANCEMENTS
══════════════════════════════════════ */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--ink-border);
  padding: 80px 0 44px;
  color: var(--text-light);
}

.footer-contact-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}
.footer-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: rgba(22, 27, 34, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.footer-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.4);
}
.wa-card:hover {
  border-color: rgba(37, 211, 102, 0.5);
}
.ig-card:hover {
  border-color: rgba(225, 48, 108, 0.5);
}

.contact-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-icon {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.25);
}
.ig-icon {
  background: rgba(225, 48, 108, 0.12);
  color: #E1306C;
  border: 1px solid rgba(225, 48, 108, 0.25);
}

.contact-card-info h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 700;
  color: #fff; margin: 4px 0 6px;
}
.contact-card-info p {
  font-size: 13.5px; color: var(--text-muted);
  line-height: 1.5; margin-bottom: 10px;
}
.contact-card-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold);
}
.contact-card-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 600;
  color: #FFF; transition: color 0.15s ease;
}
.wa-card:hover .contact-card-link { color: #25D366; }
.ig-card:hover .contact-card-link { color: #E1306C; }

/* Main Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-col h5 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gold);
  margin-bottom: 18px; font-weight: 600;
}
.footer-desc {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.65; margin: 14px 0 20px; max-width: 400px;
}
.footer-trust-badge {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; color: var(--teal-light);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px; color: var(--text-muted);
  transition: color 0.15s ease; text-decoration: none;
}
.footer-links a:hover { color: #fff; text-decoration: underline; }

.footer-bottom {
  padding-top: 32px; text-align: center;
  display: flex; flex-direction: column; gap: 8px; align-items: center;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-disclaimer { font-size: 11.5px !important; opacity: 0.6; }

@media (max-width: 860px) {
  .footer-contact-bar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ══════════════════════════════════════
   STICKY MOBILE CTA
══════════════════════════════════════ */
/* ══════════════════════════════════════
   ADVANCED FLOATING PILL DOCK (STICKY)
══════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  z-index: 99;
  transform: translate(-50%, 140%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  width: auto;
  max-width: 92vw;
}
.sticky-cta.visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-dock-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 10px 8px 18px;
  background: rgba(13, 17, 23, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(228, 166, 58, 0.35);
  border-radius: 999px;
  box-shadow:
    0 16px 36px -8px rgba(0, 0, 0, 0.6),
    0 0 24px -4px rgba(228, 166, 58, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.sticky-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.sticky-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.sticky-price {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

.sticky-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  margin-top: 3px;
  display: block;
}

.sticky-btn {
  font-size: 13.5px;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  white-space: nowrap;
  background: linear-gradient(135deg, #FFD56B 0%, #E4A63A 100%);
  color: #0B0F17;
  border: none;
  box-shadow: 0 4px 16px rgba(228, 166, 58, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sticky-btn:hover {
  transform: translateY(-1.5px) scale(1.02);
  box-shadow: 0 8px 24px rgba(228, 166, 58, 0.55);
}

@media (max-width: 480px) {
  .sticky-cta { bottom: 16px; }
  .sticky-dock-inner { padding: 8px 8px 8px 16px; gap: 12px; }
  .sticky-price { font-size: 15.5px; }
  .sticky-btn { font-size: 12.5px; padding: 8px 14px; }
}

/* ══════════════════════════════════════
   DYNAMIC EVERGREEN COUNTDOWN TIMER
══════════════════════════════════════ */
.timer-block {
  margin: 18px 0 24px;
  background: rgba(13, 17, 23, 0.7);
  border: 1px solid rgba(228, 166, 58, 0.35);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: inset 0 0 20px rgba(228, 166, 58, 0.08), 0 8px 24px -8px rgba(0,0,0,0.4);
}
.timer-header {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  font-weight: 600;
  color: #FF7B7B;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.pulse-fire {
  display: inline-block;
  animation: cohort-blink 1s ease-in-out infinite;
}
.timer-digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.timer-unit {
  background: rgba(22, 27, 34, 0.95);
  border: 1px solid rgba(228, 166, 58, 0.25);
  border-radius: 8px;
  padding: 8px 12px;
  min-width: 60px;
}
.timer-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 26px;
  font-weight: 700;
  color: #FFF;
  line-height: 1;
}
.timer-colon {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  animation: cohort-blink 1s ease-in-out infinite;
}
.timer-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.urgency-badge {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: #FFD166;
  background: rgba(255, 107, 107, 0.12);
  border: 1px solid rgba(255, 107, 107, 0.35);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ══════════════════════════════════════
   TECH STACK SECTION
══════════════════════════════════════ */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.tech-card {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tech-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -12px rgba(13,17,23,0.12);
}
.tech-card-icon {
  width: 48px; height: 48px;
  background: rgba(62,142,126,0.08);
  border: 1px solid rgba(62,142,126,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.tech-card h3 {
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.25;
}
.tech-card p {
  font-size: 15.5px;
  color: #4A5268;
  line-height: 1.65;
  margin-bottom: 10px;
}
.tech-card p:last-child { margin-bottom: 0; }

/* Highlighted Pro Engine Card (Card 2) */
.tech-card-pro {
  grid-column: span 2;
  background: var(--ink);
  color: var(--text-light);
  border: 1px solid rgba(228,166,58,0.4);
  box-shadow: 0 20px 48px -12px rgba(13,17,23,0.3);
  position: relative;
  overflow: hidden;
}
.tech-card-pro::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(228,166,58,0.15), transparent 70%);
  pointer-events: none;
}
.pro-badge {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 700;
  color: #1A0E00; background: var(--gold);
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 18px; letter-spacing: 0.06em;
}
.pro-icon {
  background: rgba(228,166,58,0.12);
  border-color: rgba(228,166,58,0.3);
}
.tech-card-pro h3 {
  color: #fff; font-size: 24px;
}
.tech-card-pro p {
  color: rgba(232,226,214,0.8); font-size: 15px;
}
.pro-features {
  margin: 24px 0 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.pro-features-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gold);
  margin-bottom: 14px; font-weight: 600;
}
.pro-features-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px; list-style: none;
}
.pro-features-list li {
  font-size: 13.5px; color: var(--text-light);
  display: flex; align-items: center; gap: 8px;
}
.pro-features-list .chk { color: var(--gold); font-weight: 700; }
.pro-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; color: var(--teal-light);
  font-style: italic; border-top: 1px dotted rgba(255,255,255,0.1);
  padding-top: 14px; margin-top: 14px;
}

/* ══════════════════════════════════════
   PROOF SCREENSHOTS SECTION (SECTION 09)
══════════════════════════════════════ */
.proof-screenshots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.proof-card {
  background: #FFFFFF;
  border: 1px solid var(--paper-line);
  border-radius: 16px;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.proof-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -8px rgba(13,17,23,0.1);
}
.proof-img-container {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 16px;
  background: #0B0F17;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
}
.proof-card-img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 6.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.proof-card:hover .proof-card-img,
.proof-img-container:hover .proof-card-img {
  transform: translateY(calc(-100% + 420px));
}
.scroll-hint-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 5;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFF;
  background: rgba(11, 15, 23, 0.85);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.proof-card:hover .scroll-hint-badge {
  opacity: 0.35;
}

/* Bottom Highlight Box */
.tech-summary-box {
  background: #fff;
  border: 2px solid var(--teal);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  box-shadow: 0 12px 36px -10px rgba(62,142,126,0.15);
}
.tech-summary-head {
  text-align: center; margin-bottom: 28px;
}
.tech-summary-head h3 {
  font-size: 24px; color: var(--ink); margin-bottom: 6px;
}
.tech-summary-head p {
  font-size: 15px; color: var(--text-muted); font-family: 'IBM Plex Mono', monospace;
}
.tech-summary-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
}
.tech-summary-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: var(--text-dark); font-weight: 600;
  padding: 8px 12px; border-radius: 8px;
  background: var(--paper);
}
.tech-summary-item .chk { color: var(--teal); font-weight: 800; }
.tech-summary-item.highlight-item {
  background: rgba(228,166,58,0.12);
  border: 1px solid rgba(228,166,58,0.3);
  color: var(--ink);
}
.tech-summary-item.highlight-item .chk { color: var(--gold-deep); }

/* ══════════════════════════════════════
   WHAT YOU SEE IS EXACTLY WHAT YOU GET SECTION
══════════════════════════════════════ */
.wysiwyg-section {
  padding: 88px 0;
  background: var(--paper-alt);
  border-top: 1px solid var(--paper-line);
}
.wysiwyg-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--paper-line);
  padding: 56px 48px;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.06);
  max-width: 960px; margin: 0 auto;
}
.wysiwyg-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 700;
  color: #C92A2A; background: rgba(217,56,58,0.08);
  border: 1px solid rgba(217,56,58,0.25);
  padding: 5px 14px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px;
}
.wysiwyg-title {
  font-size: clamp(26px, 3.2vw, 38px);
  color: var(--ink); margin-bottom: 16px;
  line-height: 1.25;
}
.wysiwyg-lead {
  font-size: 17px; color: #4A5268; line-height: 1.65;
  margin-bottom: 36px;
}
.wysiwyg-lead strong {
  color: var(--ink); font-weight: 800;
}

.wysiwyg-grid-head h3 {
  font-size: 20px; color: var(--ink); font-weight: 800;
  margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.wysiwyg-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 24px;
  margin-bottom: 28px;
}
.wysiwyg-item {
  font-size: 15px; font-weight: 600; color: var(--text-dark);
  display: flex; align-items: center; gap: 10px;
  background: var(--paper); padding: 12px 18px; border-radius: 12px;
  border: 1px solid var(--paper-line);
}
.wysiwyg-item .w-check { font-size: 16px; }

.wysiwyg-subnote {
  font-size: 14.5px; color: #5A6379; line-height: 1.6;
  margin-bottom: 36px; font-style: italic;
}

.wysiwyg-highlight-box {
  background: linear-gradient(135deg, #161B22 0%, #0D1117 100%);
  border: 1px solid rgba(228,166,58,0.4);
  border-radius: var(--radius-lg);
  padding: 32px 36px; margin-bottom: 40px; color: #FFF;
  display: flex; gap: 20px; align-items: flex-start;
  box-shadow: 0 16px 40px -10px rgba(0,0,0,0.3);
}
.wysiwyg-hl-icon { font-size: 28px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.wysiwyg-hl-content h4 { font-size: 20px; color: var(--gold); margin-bottom: 10px; font-weight: 800; }
.wysiwyg-hl-content p { font-size: 15px; color: rgba(232,226,214,0.85); line-height: 1.6; margin-bottom: 8px; }
.wysiwyg-hl-content p:last-child { margin-bottom: 0; }

.wysiwyg-cta-box {
  background: var(--paper);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  box-shadow: 0 12px 32px -10px rgba(228,166,58,0.18);
}
.wysiwyg-cta-text h3 { font-size: 22px; color: var(--ink); margin-bottom: 6px; font-weight: 800; }
.wysiwyg-cta-text p { font-size: 14.5px; color: #5A6379; line-height: 1.5; margin: 0; }
.wysiwyg-cta-btn { flex-shrink: 0; font-size: 15px; padding: 14px 28px; }


/* ══════════════════════════════════════
   FLOATING STICKY LIVE DEMO BUTTON WIDGET
══════════════════════════════════════ */
.floating-demo-widget {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  pointer-events: auto;
}

.floating-demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: var(--gold);
  border: 1px solid var(--gold);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  letter-spacing: 0.04em;
  transform: translateY(2px);
  transition: transform 0.2s ease;
}

.badge-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: cohort-blink 1.8s ease-in-out infinite;
}

.floating-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #161B22 0%, #0D1117 100%);
  color: #FFFFFF;
  border: 2px solid var(--gold);
  padding: 14px 22px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  cursor: pointer;
  box-shadow:
    0 10px 30px -5px rgba(0,0,0,0.4),
    0 0 25px rgba(228, 166, 58, 0.3);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-demo-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 16px 40px -5px rgba(0,0,0,0.5),
    0 0 35px rgba(228, 166, 58, 0.45);
  border-color: var(--gold-light);
}
.floating-demo-btn .btn-sparkle { font-size: 16px; }
.floating-demo-btn .btn-label { color: #FFFFFF; letter-spacing: -0.01em; }
.btn-label-mobile { display: none; }

/* Desktop Tooltip */
.floating-demo-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  background: var(--ink);
  color: rgba(232,226,214,0.95);
  border: 1px solid rgba(228,166,58,0.4);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 12.5px;
  line-height: 1.4;
  width: 260px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.25s ease;
  pointer-events: none;
}
.floating-demo-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 24px;
  border-width: 6px;
  border-style: solid;
  border-color: var(--ink) transparent transparent transparent;
}

.floating-demo-widget:hover .floating-demo-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* ══════════════════════════════════════
   POPUP MODAL: SEE BEFORE YOU BUY
══════════════════════════════════════ */
.demo-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 9, 16, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.demo-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.demo-modal-card {
  background: linear-gradient(145deg, #161B22 0%, #0D1117 100%);
  border: 2px solid var(--gold);
  border-radius: 24px;
  max-width: 540px;
  width: 100%;
  padding: 40px 36px 32px;
  color: #FFFFFF;
  position: relative;
  box-shadow:
    0 24px 70px -10px rgba(0,0,0,0.8),
    0 0 45px rgba(228,166,58,0.25);
  transform: scale(0.92) translateY(12px);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.demo-modal-overlay.active .demo-modal-card {
  transform: scale(1) translateY(0);
}

.demo-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.demo-modal-close:hover {
  background: rgba(217,56,58,0.2);
  color: #FFF;
  border-color: #D9383A;
}

.demo-modal-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.demo-modal-icon { font-size: 32px; }
.demo-modal-header h3 {
  font-size: 26px; color: #FFFFFF; font-weight: 800; margin: 0;
}

.demo-modal-intro {
  font-size: 15px; color: rgba(232, 226, 214, 0.85); line-height: 1.6;
  margin-bottom: 20px;
}

.demo-modal-list-title {
  font-size: 14px; color: var(--gold); margin-bottom: 14px;
}

.demo-modal-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.04);
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}
.demo-modal-list li {
  font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.92);
  display: flex; align-items: center; gap: 8px;
}
.demo-modal-list .m-check { color: var(--teal-light); font-weight: 800; }

.demo-modal-instruction {
  font-size: 13.5px; color: rgba(232, 226, 214, 0.75); line-height: 1.5;
  margin-bottom: 24px; font-style: italic; text-align: center;
}

.demo-modal-footer {
  display: flex; justify-content: center;
}
.demo-modal-btn {
  width: 100%; justify-content: center; font-size: 16px; padding: 16px 32px;
}


/* ══════════════════════════════════════
   FLOATING STICKY WHATSAPP CHAT WIDGET
══════════════════════════════════════ */
.wa-floating-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  pointer-events: auto;
}

.wa-online-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0D1117;
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.4);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  letter-spacing: 0.04em;
  transform: translateY(2px);
}

.wa-online-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 10px #25D366;
  animation: cohort-blink 1.8s ease-in-out infinite;
}

.wa-floating-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  border: 2px solid rgba(255,255,255,0.25);
  padding: 13px 22px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  cursor: pointer;
  box-shadow:
    0 10px 30px -5px rgba(37, 211, 102, 0.45),
    0 0 25px rgba(37, 211, 102, 0.3);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.wa-floating-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 16px 40px -5px rgba(37, 211, 102, 0.6),
    0 0 35px rgba(37, 211, 102, 0.5);
  border-color: #FFFFFF;
}
.wa-btn-label { color: #FFFFFF; letter-spacing: -0.01em; }

/* Desktop Tooltip */
.wa-floating-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  background: #0D1117;
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(37, 211, 102, 0.4);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 12.5px;
  line-height: 1.4;
  width: 270px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.25s ease;
  pointer-events: none;
}
.wa-floating-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 28px;
  border-width: 6px;
  border-style: solid;
  border-color: #0D1117 transparent transparent transparent;
}
.wa-floating-widget:hover .wa-floating-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* ══════════════════════════════════════
   MINIMAL CREATIVE WHATSAPP FORM MODAL
══════════════════════════════════════ */
.wa-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 9, 16, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.wa-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.wa-minimal-card {
  max-width: 440px;
  width: 100%;
  padding: 32px 28px 26px;
  background: linear-gradient(145deg, #121824 0%, #0A0D14 100%);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 20px;
  color: #FFFFFF;
  position: relative;
  box-shadow:
    0 24px 60px -10px rgba(0,0,0,0.85),
    0 0 30px rgba(37, 211, 102, 0.15);
  transform: scale(0.94) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.wa-modal-overlay.active .wa-minimal-card {
  transform: scale(1) translateY(0);
}

.wa-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.wa-modal-close:hover {
  background: rgba(217,56,58,0.2);
  color: #FFF;
  border-color: #D9383A;
}

.wa-minimal-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px; text-align: left;
}
.wa-founder-avatar-sm {
  position: relative; width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%; overflow: hidden; border: 2px solid #25D366;
}
.wa-avatar-img {
  width: 100%; height: 100%; object-fit: cover;
}
.wa-avatar-online {
  position: absolute; bottom: 2px; right: 2px;
  width: 9px; height: 9px; border-radius: 50%;
  background: #25D366; border: 2px solid #0D1117;
}

.wa-minimal-header h3 {
  font-size: 18px; color: #FFFFFF; font-weight: 800; margin: 0 0 2px;
}
.wa-header-sub {
  font-size: 12px; font-family: 'IBM Plex Mono', monospace;
  color: #25D366; margin: 0;
}

.wa-minimal-form {
  display: flex; flex-direction: column; gap: 16px; text-align: left;
}
.wa-form-group {
  display: flex; flex-direction: column; gap: 6px;
}
.wa-form-group label {
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9);
  font-family: 'Outfit', sans-serif;
}
.opt-label { font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.5); }

.wa-minimal-form .wa-form-group input[type="text"] {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 11px 14px;
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}
.wa-minimal-form .wa-form-group input[type="text"]:focus {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.08);
}

.wa-intent-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.wa-intent-card {
  position: relative; cursor: pointer;
}
.wa-intent-card input {
  position: absolute; opacity: 0; pointer-events: none;
}
.wa-intent-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 10px 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  transition: all 0.2s ease; text-align: center;
}
.wa-intent-inner .intent-icon { font-size: 18px; line-height: 1; }
.wa-intent-inner .intent-title {
  font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,0.8);
  line-height: 1.2;
}
.wa-intent-card input:checked + .wa-intent-inner {
  background: rgba(37, 211, 102, 0.14);
  border-color: #25D366;
}
.wa-intent-card input:checked + .wa-intent-inner .intent-title {
  color: #25D366;
}

.wa-field-error {
  font-size: 11.5px; color: #FF5F57; font-weight: 600;
  display: none; margin-top: 2px;
}

.wa-minimal-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF; font-family: 'Outfit', sans-serif;
  font-size: 14.5px; font-weight: 800;
  padding: 13px 20px; border-radius: 12px;
  border: none; cursor: pointer; width: 100%;
  box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 4px;
}
.wa-minimal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -4px rgba(37, 211, 102, 0.6);
}


/* ══════════════════════════════════════
   WIDE CREATIVE DEMO CATEGORY SWITCHER
══════════════════════════════════════ */
.demo-category-switcher {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin-bottom: 36px; text-align: center;
}
.switcher-label {
  font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-deep);
  background: rgba(228, 166, 58, 0.1); border: 1px solid rgba(228, 166, 58, 0.3);
  padding: 4px 16px; border-radius: 100px; display: inline-flex; align-items: center; gap: 6px;
}
.switcher-pills {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  max-width: 1150px; margin: 0 auto; padding: 6px;
  background: rgba(13, 17, 23, 0.04); border: 1px solid var(--paper-line);
  border-radius: 100px; box-shadow: inset 0 2px 6px rgba(0,0,0,0.03);
}
.switcher-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FFFFFF; border: 1.5px solid var(--paper-line);
  color: var(--text-dark); font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 700; padding: 10px 20px; border-radius: 100px;
  cursor: pointer; transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04); position: relative; overflow: hidden;
}
.switcher-pill .pill-icon {
  font-size: 16px; transition: transform 0.25s ease; display: inline-block;
}
.switcher-pill:hover {
  transform: translateY(-2px);
  border-color: var(--gold-deep); color: var(--ink);
  box-shadow: 0 8px 20px -4px rgba(228,166,58,0.25);
}
.switcher-pill:hover .pill-icon {
  transform: scale(1.2) rotate(6deg);
}
.switcher-pill.active {
  background: linear-gradient(135deg, #0D1117 0%, #1A2234 100%);
  color: #F7C653; border-color: var(--gold);
  box-shadow: 0 10px 28px -6px rgba(13,17,23,0.4), 0 0 15px rgba(228,166,58,0.3);
}
.switcher-pill.active .pill-icon {
  transform: scale(1.15);
}

/* ══════════════════════════════════════
   INTERACTIVE SAVINGS & ROI CALCULATOR
══════════════════════════════════════ */
.calculator-section {
  padding: 88px 0; background: var(--paper-alt);
  border-top: 1px solid var(--paper-line); border-bottom: 1px solid var(--paper-line);
}
.calculator-card {
  background: #FFFFFF; border-radius: var(--radius-xl);
  border: 1.5px solid var(--paper-line); padding: 48px;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.06);
}
.calc-head { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.calc-head h2 { font-size: clamp(26px, 3vw, 36px); color: var(--ink); margin-top: 10px; }
.calc-head p { font-size: 15.5px; color: #64748B; margin-top: 10px; }

.calc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.calc-group label {
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--ink); margin-bottom: 14px; display: block;
}
.calc-path-options { display: flex; flex-direction: column; gap: 12px; }
.calc-option { position: relative; cursor: pointer; }
.calc-option input { position: absolute; opacity: 0; pointer-events: none; }
.calc-option-inner {
  display: flex; flex-direction: column; gap: 4px; padding: 16px 20px;
  background: var(--paper); border: 1.5px solid var(--paper-line);
  border-radius: 14px; transition: all 0.2s ease;
}
.calc-option input:checked + .calc-option-inner {
  background: #FFFFFF; border-color: var(--gold-deep);
  box-shadow: 0 8px 24px -4px rgba(228,166,58,0.2);
}
.opt-title { font-size: 15px; font-weight: 800; color: var(--ink); }
.opt-sub { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: #64748B; }

.calc-result-box {
  background: linear-gradient(145deg, #0F172A 0%, #020617 100%);
  border-radius: 20px; border: 1px solid rgba(228,166,58,0.3);
  padding: 36px 32px; color: #FFFFFF; text-align: center;
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.5);
}
.res-tag {
  font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.08em; color: var(--gold); background: rgba(228,166,58,0.14);
  padding: 4px 14px; border-radius: 100px; display: inline-block; margin-bottom: 24px;
}
.res-big-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px;
}
.res-num { display: block; font-family: 'Outfit', sans-serif; font-size: 32px; font-weight: 900; color: #25D366; }
.res-lbl { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.7); }
.res-note { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 24px; }
.calc-cta-btn { width: 100%; justify-content: center; font-size: 15px; }

/* ══════════════════════════════════════
   REAL-TIME SOCIAL PROOF SALES TOAST
══════════════════════════════════════ */
.sales-proof-toast {
  position: fixed; bottom: 84px; right: 24px; z-index: 9999;
  opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}
.sales-proof-toast.active {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
  pointer-events: auto;
}
.toast-inner {
  background: rgba(13, 17, 23, 0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(228, 166, 58, 0.4);
  border-radius: 14px; padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 16px 40px -10px rgba(0,0,0,0.7);
  max-width: 340px;
}
.toast-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(228, 166, 58, 0.15); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.toast-content { text-align: left; flex: 1; }
.toast-title { font-size: 13.5px; font-weight: 800; color: #FFFFFF; margin: 0 0 2px; }
.toast-sub { font-size: 11.5px; font-family: 'IBM Plex Mono', monospace; color: var(--teal-light); margin: 0; }
.toast-close {
  background: transparent; border: none; color: rgba(255,255,255,0.5);
  font-size: 12px; cursor: pointer; padding: 2px 4px;
}
.toast-close:hover { color: #FFF; }

/* ══════════════════════════════════════
   ⚡ HIGH-PERFORMANCE RENDERING OPTIMIZATIONS
══════════════════════════════════════ */
/* Content-Visibility Deferral for Offscreen Sections */
.wysiwyg-section,
.tech-section,
.reviews-section,
.cost-section,
.bonuses-section,
.founder-section,
.press-section,
.faq-section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

/* GPU Hardware Acceleration & Smooth Rendering */
.press-ticker-track,
.hero-orb,
.price-card-glow,
.sticky-cta,
.floating-demo-widget,
.wa-floating-widget {
  will-change: transform;
  transform: translateZ(0);
}

/* Font Display Swap Safeguard */
body, input, button, textarea, select {
  font-display: swap;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1280px) {
  .nav-badge { display: none; }
}

@media (max-width: 1050px) {
  .nav-links-desktop { display: none; }
  .mobile-menu-toggle { display: flex; }
}

@media (max-width: 980px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 52px; }
  .manifest { animation: none; transform: none; max-width: 440px; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .included-item:nth-child(4n) { border-right: 1px dotted rgba(255,255,255,0.08); }
  .included-item:nth-child(2n) { border-right: none; }
  .included-item:nth-last-child(-n+4) { border-bottom: 1px dotted rgba(255,255,255,0.08); }
  .included-item:nth-last-child(-n+2) { border-bottom: none; }
  .nav-badge { display: none; }
  .nav-links-desktop { display: none; }
  .mobile-menu-toggle { display: flex; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .faq-help-links { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 760px) {
  .section-light, .section-alt { padding: 64px 0; }
  .hero { padding: 60px 0 72px; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
  
  /* Mobile ROI Calculator & Toast Optimization */
  .calculator-card { padding: 28px 20px; }
  .calc-grid { grid-template-columns: 1fr; gap: 24px; }
  .res-big-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .res-num { font-size: 24px; }
  .sales-proof-toast { right: 12px; bottom: 136px; max-width: 280px; }

  /* Mobile Wide Layout & Category Pills Optimization */
  .wrap-wide { padding: 0 10px; }
  .switcher-pills {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    border-radius: 20px;
    padding: 10px 8px;
    background: rgba(13, 17, 23, 0.04);
  }
  .switcher-pill {
    flex: 0 1 auto;
    padding: 8px 14px;
    font-size: 12.5px;
    font-weight: 700;
  }
  .preview-frame iframe { height: 650px; }
  .split { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .tech-card-pro { grid-column: span 1; padding: 28px; }
  .pro-features-list { grid-template-columns: 1fr; }
  .tech-summary-box { padding: 32px 24px; }
  .tech-summary-grid { grid-template-columns: 1fr; }
  .guarantee { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 28px; }
  .preview-stats { grid-template-columns: repeat(2, 1fr); }
  .preview-stat:nth-child(2) { border-right: none; }
  .preview-stat:nth-child(3) { border-top: 1px solid var(--paper-line); }
  .preview-stat:nth-child(4) { border-top: 1px solid var(--paper-line); }
  .preview-frame iframe { height: 680px; }
  .included-wrap { padding: 40px 28px; }
  .final-cta { padding: 48px 28px; }
  .guarantee-tags { justify-content: center; }
  .sticky-cta { display: flex; }

  /* Mobile FAQ Help Box Optimization */
  .faq-help-box { padding: 24px 20px; }
  .faq-help-head { flex-direction: row; align-items: flex-start; gap: 14px; text-align: left; }
  .faq-help-links { grid-template-columns: 1fr; gap: 10px; }
  .faq-help-link { width: 100%; justify-content: flex-start; padding: 12px 14px; font-size: 13px; }

  /* Mobile Bonus Grid Optimization */
  .bonuses-grid { grid-template-columns: 1fr; gap: 20px; }
  .bonus-card { padding: 22px 18px; }
  .bonus-summary-table-card { padding: 24px 18px; }

  /* Mobile Review Grid Optimization */
  .reviews-grid { grid-template-columns: 1fr; gap: 24px; }
  .review-card { padding: 20px 16px; }
  .review-card-head { flex-direction: row; justify-content: space-between; align-items: center; }
  .review-stars { white-space: nowrap; font-size: 16px; }
  .review-verified { font-size: 11px; white-space: nowrap; }

  .wysiwyg-card { padding: 36px 24px; }
  .wysiwyg-grid { grid-template-columns: 1fr; }
  .wysiwyg-cta-box { flex-direction: column; text-align: center; padding: 28px 24px; }
  .wysiwyg-cta-btn { width: 100%; justify-content: center; }
  .wysiwyg-highlight-box { flex-direction: column; gap: 14px; padding: 28px 24px; }

  /* Hide noisy badges on mobile to prevent clutter */
  .floating-demo-badge,
  .wa-online-badge,
  .floating-demo-tooltip,
  .wa-floating-tooltip {
    display: none !important;
  }

  .btn-label-desktop { display: none !important; }
  .btn-label-mobile { display: inline !important; }

  /* Position Left Floating Demo Button Above Bottom Sticky Bar */
  .floating-demo-widget {
    bottom: 84px;
    left: 12px;
    gap: 0;
  }
  .floating-demo-btn {
    padding: 9px 14px;
    font-size: 12px;
    border-radius: 100px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  }
  .floating-demo-btn .btn-sparkle { font-size: 13px; }

  /* Position Right Floating WhatsApp Circle Button Above Bottom Sticky Bar */
  .wa-floating-widget {
    bottom: 84px;
    right: 12px;
    gap: 0;
  }
  .wa-floating-btn {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  }
  .wa-btn-label { display: none !important; }

  .demo-modal-list { grid-template-columns: 1fr; }
  .demo-modal-card { padding: 32px 24px 24px; }
  .wa-phone-grid { grid-template-columns: 1fr; }
  .wa-intent-pills { grid-template-columns: 1fr; }
  .wa-modal-card { padding: 28px 20px 20px; }

  /* Creative Compact 2-Column Mobile Footer Optimization */
  .site-footer {
    padding: 64px 0 160px; /* Generous 160px bottom clearance for floating sticky widgets & CTA dock */
  }
  .footer-contact-bar {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }
  .footer-contact-card {
    padding: 18px 20px;
    gap: 14px;
  }
  .contact-card-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
  }
  .contact-card-info h4 {
    font-size: 16px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Creative 2-Column Mobile Layout */
    gap: 28px 16px;
    padding-bottom: 32px;
  }
  .brand-col {
    grid-column: span 2; /* Brand header spans full width at top */
  }
  .footer-desc {
    max-width: 100%;
    font-size: 13.5px;
    line-height: 1.6;
    margin: 10px 0 14px;
  }
  .footer-trust-badge {
    gap: 10px 14px;
  }

  .footer-col h5 {
    font-size: 11px;
    margin-bottom: 12px;
  }
  .footer-links li {
    margin-bottom: 8px;
  }
  .footer-links a {
    font-size: 13px;
  }

  .footer-bottom {
    padding-top: 24px;
    gap: 10px;
  }
  .footer-bottom p {
    font-size: 12px;
    line-height: 1.5;
  }
  .footer-disclaimer {
    font-size: 11px !important;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .price-card { padding: 36px 28px; }
  .included-grid { grid-template-columns: 1fr; }
  .included-item { border-right: none !important; }
  .included-item:nth-last-child(-n+1) { border-bottom: none; }
  .preview-stats { grid-template-columns: 1fr 1fr; }
  .hero-trust { gap: 16px; }
  .trust-div { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ══════════════════════════════════════
   NEW CRO RESTRUCTURE COMPONENTS CSS
══════════════════════════════════════ */

/* Hero Bullet Proof Points */
.hero-copy-full {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}
.hero-copy-full .lead {
  margin-left: auto;
  margin-right: auto;
}
.hero-copy-full .cta-row {
  justify-content: center;
  margin-top: 28px;
}
.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
  margin: 24px 0 16px;
}
.hero-bullet-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}
.hero-bullet-item .h-chk {
  color: var(--gold);
  font-weight: 800;
}
.hero-copy-full .hero-trust {
  justify-content: center;
}
.hero-legal-note {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* Customer Qualification Section ("Who Is This For") */
.who-its-for-section {
  padding: 80px 0;
  background: var(--paper-bg, #F8FAFC);
}
.qual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}
.qual-card {
  padding: 32px 28px;
  border-radius: 18px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.qual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}
.qual-yes {
  border-top: 4px solid var(--teal, #0D9488);
}
.qual-no {
  border-top: 4px solid #E11D48;
}
.qual-card-head {
  margin-bottom: 20px;
}
.qual-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}
.yes-badge {
  background: rgba(13, 148, 136, 0.1);
  color: var(--teal, #0D9488);
}
.no-badge {
  background: rgba(225, 29, 72, 0.1);
  color: #E11D48;
}
.qual-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0F172A;
  margin: 4px 0 0;
}
.qual-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.qual-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: #334155;
  line-height: 1.5;
}
.q-icon {
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
}
.yes-icon { color: var(--teal, #0D9488); }
.no-icon { color: #E11D48; }

/* Mid-Page Founder Anchor Block */
.founder-inline-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, rgba(26, 34, 52, 0.9), rgba(11, 15, 23, 0.95));
  border: 1px solid rgba(247, 198, 83, 0.2);
  border-radius: 20px;
  padding: 28px 36px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.founder-inline-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(247, 198, 83, 0.25);
}
.founder-inline-info {
  color: #FFFFFF;
}
.founder-inline-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gold);
  background: rgba(247, 198, 83, 0.12);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
}
.founder-inline-info h4 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #FFFFFF;
}
.founder-inline-info p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  margin: 0 0 10px;
}
.founder-inline-name {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
}

/* Collapsible Cost Breakdown Table */
.cost-collapse-wrap {
  margin-bottom: 32px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.03);
}
.cost-collapse-trigger {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 15.5px;
  color: #0F172A;
  background: #F1F5F9;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: background 0.2s ease;
}
.cost-collapse-trigger:hover {
  background: #E2E8F0;
}
.cost-collapse-wrap[open] .cost-collapse-trigger {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background: #E2E8F0;
}

/* Launch Resources Box */
.launch-resources-box {
  margin-top: 32px;
  background: linear-gradient(135deg, rgba(247, 198, 83, 0.08), rgba(247, 198, 83, 0.02));
  border: 1px dashed rgba(247, 198, 83, 0.4);
  border-radius: 16px;
  padding: 24px 28px;
}
.launch-resources-box h4 {
  font-size: 16px;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 12px;
}
.launch-res-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.res-item {
  font-size: 14px;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Pre-Pricing Objections Grid */
.pre-pricing-objections {
  margin-bottom: 28px;
}
.pre-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pre-p-item {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
}
.p-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
}
.pre-p-item strong {
  display: block;
  font-size: 13.5px;
  color: #0F172A;
  margin-bottom: 3px;
  font-weight: 700;
}
.pre-p-item p {
  font-size: 12px;
  color: #64748B;
  line-height: 1.4;
  margin: 0;
}

/* Price Anchoring Display */
.price-anchor-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin: 12px 0 4px;
}
.price-strike-old {
  font-size: 26px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  font-weight: 600;
}

/* Payment Logos Strip Under CTA */
.payment-logos-strip {
  margin: 16px 0 12px;
  text-align: center;
}
.payment-logos-strip span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  font-weight: 500;
}
.p-logos-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.p-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 11px !important;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
}

/* ══════════════════════════════════════
   WHAT HAPPENS AFTER YOU PURCHASE SECTION STYLES
══════════════════════════════════════ */
.after-purchase-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}

.after-purchase-card {
  background: #FFFFFF;
  border: 1.5px solid var(--paper-line);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.after-purchase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--teal);
}

.after-purchase-card.highlight-card {
  border-color: var(--teal);
  box-shadow: 0 4px 24px rgba(62, 142, 126, 0.12);
}

.after-purchase-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(62, 142, 126, 0.1);
  border-radius: 16px;
  margin-bottom: 20px;
  color: var(--teal);
}

.after-purchase-icon-wrap.highlight-icon {
  background: rgba(62, 142, 126, 0.18);
}

.after-purchase-badge {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--teal);
  margin-bottom: 8px;
}

.after-purchase-badge.highlight-badge {
  color: var(--teal);
  background: rgba(62, 142, 126, 0.1);
  padding: 2px 10px;
  border-radius: 100px;
}

.after-purchase-card h3 {
  font-size: 18.5px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 12px;
  line-height: 1.35;
}

.after-purchase-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.flow-arrow-col {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(62, 142, 126, 0.12);
  border: 1.5px solid rgba(62, 142, 126, 0.35);
  color: var(--teal);
  margin: 0 auto;
  box-shadow: 0 0 16px rgba(62, 142, 126, 0.2);
  animation: arrowPulseDesktop 1.8s ease-in-out infinite;
  will-change: transform;
}

@keyframes arrowPulseDesktop {
  0%, 100% {
    transform: translateX(0) scale(1);
    box-shadow: 0 0 12px rgba(62, 142, 126, 0.2);
  }
  50% {
    transform: translateX(7px) scale(1.1);
    box-shadow: 0 0 22px rgba(62, 142, 126, 0.6);
  }
}

@keyframes arrowPulseMobile {
  0%, 100% {
    transform: rotate(90deg) translateX(0) scale(1);
    box-shadow: 0 0 12px rgba(62, 142, 126, 0.2);
  }
  50% {
    transform: rotate(90deg) translateX(7px) scale(1.1);
    box-shadow: 0 0 22px rgba(62, 142, 126, 0.6);
  }
}

.support-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  background: rgba(62, 142, 126, 0.1);
  border: 1px solid rgba(62, 142, 126, 0.3);
  padding: 10px 24px;
  border-radius: 100px;
}

/* ══════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE OPTIMIZATIONS
══════════════════════════════════════ */
@media (max-width: 1080px) {
  .wrap { padding: 0 20px; }
  .wrap-wide { padding: 0 16px; }
  .section-light, .section-alt, .pricing-section, .cost-section, .founder-section, .reviews-section { padding: 64px 0; }
  .section-head h2 { font-size: clamp(28px, 5.5vw, 38px); }
  
  .qual-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pre-pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .proof-screenshots-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
  .process-steps-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
  .launch-res-grid { grid-template-columns: 1fr; }
  .founder-inline-trust { flex-direction: column; text-align: center; padding: 24px 20px; }
  
  .after-purchase-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .offer-stack-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .after-purchase-flow {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 480px;
    margin: 0 auto;
  }
  .after-purchase-card {
    padding: 20px 16px;
    border-radius: 14px;
  }
  .hero { padding: 48px 0 60px; }
  .hero h1 { font-size: clamp(28px, 7vw, 42px); }
  .hero p.lead { font-size: 15.5px; line-height: 1.55; }
  .hero-price-tag { font-size: 17px !important; padding: 5px 16px !important; }
  
  .cta-row {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .cta-row .btn-primary,
  .cta-row .btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 15px 20px;
  }
  
  .included-grid { grid-template-columns: 1fr; gap: 14px; }
  .qual-grid { grid-template-columns: 1fr; gap: 14px; }
  .tech-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .tech-card-pro { grid-column: span 1 !important; }
  .process-steps-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .proof-screenshots-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .reviews-grid { grid-template-columns: 1fr; gap: 18px; }
  
  .cost-table-card { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .cost-table { min-width: 520px; }
  
  .offer-stack-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .price-card { padding: 32px 20px !important; }
  .price-num { font-size: 38px !important; }
  
  .founder-card { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .founder-highlights-grid { text-align: left; }
  
  .final-cta { padding: 36px 20px !important; }
  .final-cta h2 { font-size: 26px !important; }
  
  .support-pill-tag {
    font-size: 13px;
    padding: 8px 16px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .wrap { padding: 0 16px; }
  .wrap-wide { padding: 0 12px; }
  .section-light, .section-alt, .pricing-section, .cost-section, .founder-section, .reviews-section { padding: 48px 0; }
  
  .pre-pricing-grid { grid-template-columns: 1fr; }
  .hero-bullets { flex-direction: column; align-items: flex-start; text-align: left; gap: 8px; }
  .desktop-only-txt { display: none !important; }
  .mobile-only-txt { display: inline !important; }
  
  /* Sticky bottom CTA mobile optimizations (Compact & Fit-Content) */
  .sticky-cta {
    position: fixed !important;
    bottom: 12px !important;
    left: 50% !important;
    transform: translate(-50%, 140%);
    width: max-content !important;
    max-width: calc(100vw - 24px) !important;
    padding: 0 !important;
  }
  .sticky-cta.visible {
    transform: translate(-50%, 0) !important;
  }
  .sticky-dock-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 5px 5px 5px 14px !important;
    width: auto !important;
    gap: 10px !important;
    background: rgba(11, 15, 23, 0.94) !important;
    border: 1.5px solid rgba(247, 198, 83, 0.4) !important;
    border-radius: 100px !important;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5), 0 0 16px rgba(247, 198, 83, 0.15) !important;
  }
  .sticky-info {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
  }
  .sticky-price {
    font-size: 15px !important;
    font-weight: 900 !important;
    color: var(--gold) !important;
    line-height: 1 !important;
    margin: 0 !important;
  }
  .sticky-sub {
    font-size: 9.5px !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    line-height: 1 !important;
    margin-top: 2px !important;
    white-space: nowrap !important;
    display: block !important;
  }
  .sticky-btn {
    font-size: 12px !important;
    font-weight: 800 !important;
    padding: 9px 14px !important;
    border-radius: 100px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    background: linear-gradient(135deg, #FFD56B 0%, #E4A63A 100%) !important;
    color: #0B0F17 !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(228, 166, 58, 0.4) !important;
  }
}

/* ══════════════════════════════════════
   ANIMATED CREATIVE CHECKOUT BUTTON
══════════════════════════════════════ */
@keyframes buttonShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 300% 0; }
}

@keyframes buttonPulseGlow {
  0%, 100% { box-shadow: 0 8px 32px rgba(247, 198, 83, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.25); }
  50% { box-shadow: 0 14px 45px rgba(247, 198, 83, 0.75), 0 0 20px rgba(247, 198, 83, 0.6); }
}

.creative-checkout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  padding: 20px 36px;
  border-radius: 9999px;
  background: linear-gradient(110deg, #E4A63A 0%, #F7C653 25%, #FFF0BD 50%, #F7C653 75%, #E4A63A 100%);
  background-size: 200% 100%;
  animation: buttonShimmer 3.5s linear infinite, buttonPulseGlow 2.5s ease-in-out infinite;
  color: #0E0900;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.creative-checkout-btn:hover {
  transform: translateY(-4px) scale(1.02);
  background: linear-gradient(110deg, #FFD56B 0%, #FFF0BD 40%, #FFD56B 100%);
  box-shadow: 0 16px 50px rgba(247, 198, 83, 0.85), 0 0 25px rgba(255, 255, 255, 0.5);
  color: #000000;
}

.creative-checkout-btn:active {
  transform: translateY(-1px) scale(0.99);
}

.btn-arrow-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #0E0900;
  color: var(--gold);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 900;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.creative-checkout-btn:hover .btn-arrow-badge {
  transform: translateX(4px) scale(1.1);
  background: #000000;
  color: #FFFFFF;
}

@media (max-width: 600px) {
  .creative-checkout-btn {
    padding: 16px 24px;
    font-size: 15.5px;
  }
}

@media (min-width: 601px) {
  .mobile-only-txt { display: none !important; }
  .desktop-only-txt { display: inline !important; }
}

