/* ==========================================================================
   10,001+ DIGITAL PRODUCT MEGA VAULT — CHIC LUXURY SALES PAGE STYLES
   Aesthetic: Maria Wendt Inspired Chic Luxury Cream, Rose Gold, Coral & Champagne
   Crisp Modern Typography, Soft Elevated Glassmorphic Cards & High-Converting Layout
   ========================================================================== */

/* --- CSS RESET & LUXURY DESIGN SYSTEM --- */
:root {
  --bg-main: #FAF8F5;
  --bg-surface: #FFFFFF;
  --bg-surface-warm: #F4EFEA;
  --bg-card: rgba(255, 255, 255, 0.94);
  --bg-card-hover: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.82);
  
  --border-subtle: rgba(180, 140, 120, 0.14);
  --border-card: rgba(180, 140, 120, 0.18);
  --border-glow: rgba(225, 29, 72, 0.25);
  --border-gold: rgba(217, 119, 6, 0.35);

  --text-primary: #1C1917;
  --text-secondary: #44403C;
  --text-muted: #78716C;
  --text-light: #A8A29E;

  --accent-rose: #E11D48;
  --accent-rose-light: #FB7185;
  --accent-rose-glow: rgba(225, 29, 72, 0.22);

  --accent-coral: #F43F5E;
  --accent-gold: #D97706;
  --accent-gold-light: #FBBF24;
  --accent-gold-bg: rgba(245, 158, 11, 0.1);

  --accent-emerald: #059669;
  --accent-emerald-light: #10B981;
  --accent-emerald-bg: rgba(16, 185, 129, 0.1);

  --accent-purple: #9333EA;
  --accent-purple-bg: rgba(147, 51, 234, 0.08);

  --font-heading: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  --shadow-sm: 0 2px 8px rgba(120, 90, 80, 0.05);
  --shadow-md: 0 10px 30px rgba(120, 80, 70, 0.08);
  --shadow-lg: 0 20px 45px rgba(120, 80, 70, 0.12);
  --shadow-glow: 0 10px 30px rgba(225, 29, 72, 0.25);

  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 10%, rgba(251, 113, 133, 0.09) 0%, transparent 45%),
    radial-gradient(circle at 85% 25%, rgba(251, 191, 36, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 50% 60%, rgba(147, 51, 234, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 85%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
  background-attachment: fixed;
}

/* --- CONTAINER & UTILITIES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* --- SHADCN / LUCIDE SVG ICON UTILITIES --- */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-xs {
  width: 0.85rem;
  height: 0.85rem;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}

.icon-sparkle {
  color: var(--accent-rose);
}

.icon-star {
  width: 1.1rem;
  height: 1.1rem;
  color: #F59E0B;
}

.icon-check {
  color: var(--accent-emerald);
}

.icon-x {
  color: #EF4444;
}

.icon-emerald {
  color: var(--accent-emerald);
}

.icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle-rose {
  background: rgba(225, 29, 72, 0.12);
  color: var(--accent-rose);
}

.icon-circle-gold {
  background: rgba(245, 158, 11, 0.15);
  color: #D97706;
}

.icon-circle-blue {
  background: rgba(2, 132, 199, 0.12);
  color: #0284C7;
}

.icon-circle-emerald {
  background: rgba(16, 185, 129, 0.14);
  color: var(--accent-emerald);
}

.icon-circle-muted {
  background: #F5F5F4;
  color: #78716C;
}

.icon-box-danger {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box-success {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-emerald-bg);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box-large {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.12);
  color: var(--accent-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.highlight-text {
  background: linear-gradient(135deg, #1C1917 15%, #E11D48 70%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* --- GLOW ORBS --- */
.glow-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.glow-top-left {
  top: -120px;
  left: -180px;
  background: radial-gradient(circle, rgba(251, 113, 133, 0.18), transparent 70%);
}

.glow-top-right {
  top: 80px;
  right: -180px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.2), transparent 70%);
}

/* --- TOP ANNOUNCEMENT BANNER --- */
.top-banner {
  background: linear-gradient(90deg, #1F1B18, #2E2522 50%, #1F1B18);
  border-bottom: 1px solid rgba(251, 191, 36, 0.3);
  padding: 10px 0;
  position: relative;
  z-index: 100;
  color: #FFFFFF;
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 191, 36, 0.2);
  border: 1px solid rgba(251, 191, 36, 0.4);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FDE68A;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #FBBF24;
  border-radius: 50%;
  box-shadow: 0 0 8px #FBBF24;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 14px #FBBF24; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.banner-text {
  font-size: 0.88rem;
  color: #F5F5F4;
  flex: 1;
  min-width: 280px;
}

.banner-text strong {
  color: #FDE68A;
}

.banner-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: #D6D3D1;
}

.timer-display {
  display: inline-flex;
  gap: 4px;
  background: rgba(0, 0, 0, 0.45);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FDE68A;
  font-weight: 700;
}

/* --- HEADER / NAV --- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 90;
  padding: 16px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #E11D48, #BE123C);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.3);
}

.logo-icon svg {
  width: 22px;
  height: 22px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.brand-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-rose);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--accent-rose);
}

/* --- BUTTONS & CTA STYLES --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: scale(0.98);
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Specific CTA Variants */
.btn-banner {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #1F1604;
  padding: 6px 16px;
  font-size: 0.8rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
}

.btn-banner:hover {
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.5);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-outline-glow {
  background: #FFFFFF;
  border: 1.5px solid var(--accent-rose);
  color: var(--accent-rose);
  box-shadow: 0 2px 8px rgba(225, 29, 72, 0.1);
}

.btn-outline-glow:hover {
  background: var(--accent-rose);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(225, 29, 72, 0.3);
}

.btn-hero {
  flex-direction: column;
  background: linear-gradient(135deg, #E11D48, #BE123C);
  color: #FFFFFF;
  padding: 20px 36px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 35px rgba(225, 29, 72, 0.35);
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

.btn-hero:hover {
  background: linear-gradient(135deg, #F43F5E, #E11D48);
  box-shadow: 0 16px 45px rgba(225, 29, 72, 0.5);
  transform: translateY(-2px);
}

.pulse-cta {
  animation: subtlePulse 3s infinite;
}

@keyframes subtlePulse {
  0%, 100% { box-shadow: 0 10px 35px rgba(225, 29, 72, 0.35); }
  50% { box-shadow: 0 10px 50px rgba(225, 29, 72, 0.55); }
}

.btn-text-main {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.btn-text-sub {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.95;
  font-family: var(--font-body);
}

.btn-primary {
  background: linear-gradient(135deg, #E11D48, #BE123C);
  color: #FFFFFF;
  padding: 16px 32px;
  font-size: 1.05rem;
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #F43F5E, #E11D48);
  box-shadow: 0 12px 30px rgba(225, 29, 72, 0.45);
  transform: translateY(-2px);
}

.btn-mega-checkout {
  flex-direction: column;
  background: linear-gradient(135deg, #E11D48, #BE123C);
  color: #FFFFFF;
  padding: 20px 32px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(225, 29, 72, 0.35);
  width: 100%;
}

.btn-mega-checkout:hover {
  background: linear-gradient(135deg, #F43F5E, #E11D48);
  box-shadow: 0 16px 45px rgba(225, 29, 72, 0.5);
  transform: translateY(-2px);
}

.btn-primary-line {
  font-size: 1.2rem;
  font-weight: 800;
}

.btn-sub-line {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.92;
}

.btn-guarantee {
  background: linear-gradient(135deg, #059669, #047857);
  color: #FFFFFF;
  padding: 16px 28px;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
  align-self: flex-start;
}

.btn-guarantee:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #10B981, #059669);
  box-shadow: 0 12px 30px rgba(5, 150, 105, 0.45);
}

.btn-final-buy {
  flex-direction: column;
  background: linear-gradient(135deg, #E11D48, #BE123C);
  color: #FFFFFF;
  padding: 22px 36px;
  font-size: 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 45px rgba(225, 29, 72, 0.4);
  width: calc(100% - 30px) !important;
  margin: 20px 15px 0 !important;
}

.btn-final-buy:hover {
  background: linear-gradient(135deg, #F43F5E, #E11D48);
  box-shadow: 0 18px 55px rgba(225, 29, 72, 0.6);
  transform: translateY(-2px);
}

.btn-main-txt {
  font-size: 1.3rem;
  font-weight: 900;
}

.btn-sub-txt {
  font-size: 0.84rem;
  font-weight: 500;
  opacity: 0.95;
  font-family: var(--font-body);
}

.btn-sticky {
  background: linear-gradient(135deg, #E11D48, #BE123C);
  color: #FFFFFF;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.3);
}

.btn-sticky:hover {
  background: linear-gradient(135deg, #F43F5E, #E11D48);
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.5);
}

.btn-modal-pay {
  background: linear-gradient(135deg, #E11D48, #BE123C);
  color: #FFFFFF;
  padding: 16px;
  width: 100%;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  margin-top: 10px;
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.3);
}

.btn-modal-pay:hover {
  background: linear-gradient(135deg, #F43F5E, #E11D48);
}

/* --- SECTION HEADERS & BADGES --- */
.section-header {
  margin-bottom: 48px;
}

.section-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent-rose);
  background: rgba(225, 29, 72, 0.08);
  border: 1px solid rgba(225, 29, 72, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.sec-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  background: var(--accent-gold-bg);
  border: 1px solid var(--border-gold);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtext {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
}

/* --- HERO SECTION --- */
.hero-section {
  padding: 70px 0 60px;
  position: relative;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid rgba(225, 29, 72, 0.2);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent-rose);
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.08);
}

.hero-headline {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 3.15rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  max-width: 980px;
  margin: 0 auto 24px;
  color: var(--text-primary);
  text-wrap: balance;
}

.hero-subhead {
  font-size: 1.18rem;
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0 auto 36px;
  line-height: 1.62;
  font-weight: 500;
}

.hero-subhead strong {
  color: var(--accent-rose);
}

/* HERO STAT BADGES */
.hero-stat-badges {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 14px 32px;
  gap: 28px;
  margin-bottom: 48px;
  box-shadow: var(--shadow-md);
}

.stat-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.price-highlight {
  color: var(--accent-rose);
  font-size: 1.75rem;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-card);
}

/* HERO 3D VISUAL SHOWCASE */
.hero-visual-wrapper {
  perspective: 1200px;
  margin-bottom: 48px;
}

.bundle-showcase-card {
  background: linear-gradient(145deg, #FFFFFF 0%, #FDFCFB 100%);
  border: 1.5px solid rgba(180, 140, 120, 0.25);
  border-radius: var(--radius-xl);
  padding: 38px;
  box-shadow: 0 25px 60px rgba(120, 80, 70, 0.1), 0 0 40px rgba(225, 29, 72, 0.06);
  max-width: 1020px;
  margin: 0 auto;
  position: relative;
  transition: transform var(--transition-normal);
}

.bundle-visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 12px;
}

.bundle-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-gold);
  background: var(--accent-gold-bg);
  border: 1px solid var(--border-gold);
  padding: 5px 14px;
  border-radius: var(--radius-sm);
}

.bundle-item-count {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.pdf-fan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.mini-pdf-card {
  background: #FFFFFF;
  border: 1px solid rgba(180, 140, 120, 0.2);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 170px;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(120, 80, 70, 0.05);
}

.mini-pdf-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--accent-rose);
  box-shadow: 0 14px 30px rgba(225, 29, 72, 0.18);
}

.card-featured {
  border: 2px solid var(--accent-rose);
  background: #FFF8F9;
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.12);
}

.featured-ribbon {
  position: absolute;
  top: -10px;
  right: 10px;
  background: var(--accent-rose);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(225, 29, 72, 0.3);
}

.pdf-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent-rose);
  margin-bottom: 8px;
}

.pdf-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.pdf-pages {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.bundle-visual-footer {
  font-size: 0.88rem;
  color: var(--accent-rose);
  font-weight: 700;
  background: rgba(225, 29, 72, 0.06);
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(225, 29, 72, 0.3);
}

/* HERO CTA BOX */
.hero-cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-guarantee-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* --- SOCIAL PROOF TICKER BAR --- */
.proof-ticker-bar {
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0;
  box-shadow: var(--shadow-sm);
}

.ticker-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.ticker-icon {
  font-size: 1.4rem;
}

.ticker-text strong {
  color: var(--text-primary);
  display: block;
}

/* --- COMPARISON SECTION --- */
.comparison-section {
  padding: 90px 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1020px;
  margin: 0 auto;
}

.comparison-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-md);
}

.card-pain {
  border: 1.5px solid rgba(239, 68, 68, 0.2);
  background: linear-gradient(180deg, #FFF8F8 0%, #FFFFFF 100%);
}

.card-solution {
  border: 2px solid var(--accent-rose);
  background: linear-gradient(180deg, #FFF5F7 0%, #FFFFFF 100%);
  box-shadow: 0 15px 40px rgba(225, 29, 72, 0.12);
}

.comp-badge-top {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--accent-rose);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 10px rgba(225, 29, 72, 0.3);
}

.comp-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.comp-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-list li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.comp-list li .icon {
  margin-top: 3px;
  flex-shrink: 0;
}

.card-solution .comp-list li {
  color: var(--text-primary);
  font-weight: 500;
}

/* --- 26 PDF PRODUCT VAULT --- */
.vault-section {
  padding: 90px 0;
  background: linear-gradient(180deg, rgba(250, 248, 245, 0) 0%, #F5EFE8 50%, rgba(250, 248, 245, 0) 100%);
}

.vault-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  border-color: var(--accent-rose);
  color: var(--accent-rose);
}

.filter-btn.active {
  background: var(--accent-rose);
  border-color: var(--accent-rose);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(225, 29, 72, 0.3);
}

.vault-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
  margin-bottom: 48px;
}

.vault-card {
  background: #FFFFFF;
  border: 1px solid rgba(180, 140, 120, 0.2);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.vault-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-rose);
  box-shadow: 0 14px 35px rgba(225, 29, 72, 0.12);
}

.card-spotlight {
  border: 2px solid var(--accent-gold);
  background: linear-gradient(160deg, #FFFDF8, #FFF8ED);
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.1);
}

.card-num-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.card-item-counter {
  display: inline-block;
  align-self: flex-start;
  background: rgba(225, 29, 72, 0.08);
  color: var(--accent-rose);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.card-spotlight .card-item-counter {
  background: var(--accent-gold-bg);
  color: var(--accent-gold);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
  font-size: 0.75rem;
}

.card-meta .tag {
  color: var(--text-muted);
  font-weight: 500;
}

.card-meta .value-tag {
  font-weight: 700;
  color: var(--accent-gold);
  font-family: var(--font-mono);
}

.vault-cta-banner {
  background: linear-gradient(135deg, #2E2522, #1C1715);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: var(--radius-xl);
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  color: #FFFFFF;
}

.vault-cta-content h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.vault-cta-content p {
  font-size: 0.92rem;
  color: #E7E5E4;
}

/* --- VALUE STACK & PRICING BREAKDOWN --- */
.breakdown-section {
  padding: 90px 0;
}

.value-stack-box {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  max-width: 1020px;
  margin: 0 auto;
}

.stack-list {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-md);
}

.stack-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 12px;
  font-size: 0.92rem;
}

.stack-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stack-name {
  color: var(--text-primary);
  font-weight: 600;
}

.stack-val {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent-gold);
}

.stack-summary-card {
  background: linear-gradient(145deg, #FFFBF5 0%, #FFF5EA 100%);
  border: 2.5px solid var(--accent-gold);
  border-radius: var(--radius-xl);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 20px 50px rgba(217, 119, 6, 0.15);
}

.total-retail-line {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.retail-strike {
  text-decoration: line-through;
  color: #DC2626;
  font-weight: 700;
  font-family: var(--font-mono);
}

.your-price-tag {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  display: block;
}

.price-giant-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 10px 0 14px;
}

.price-giant-box .currency {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.price-giant-box .amount {
  font-family: var(--font-heading);
  font-size: 4.6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent-rose);
}

.price-giant-box .one-time {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.savings-pill {
  background: var(--accent-emerald-bg);
  border: 1px solid rgba(5, 150, 105, 0.3);
  color: var(--accent-emerald);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.micro-reassurance {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- ROI CALCULATOR SECTION --- */
.calculator-section {
  padding: 90px 0;
  background: #F4EFEA;
}

.calc-container {
  max-width: 800px;
  margin: 0 auto;
}

.calc-slider-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.slider-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.slider-title-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.slider-val-badge {
  background: var(--accent-rose);
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
}

.range-slider {
  width: 100%;
  height: 10px;
  border-radius: 6px;
  background: #E7E5E4;
  outline: none;
  -webkit-appearance: none;
  margin-bottom: 36px;
  cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-rose);
  cursor: pointer;
  box-shadow: 0 0 14px rgba(225, 29, 72, 0.4);
  transition: transform var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.calc-res-box {
  background: #FAF8F5;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
}

.res-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.res-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
}

.highlight-green { color: var(--accent-rose); }
.highlight-gold { color: var(--accent-gold); }
.highlight-blue { color: #0284C7; }

.res-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.calc-cta-wrap {
  display: flex;
  justify-content: center;
}

/* --- WILL THIS WORK FOR MY NICHE? SECTION --- */
.niches-section {
  padding: 95px 0;
  background: linear-gradient(180deg, #FAF8F5 0%, #F1ECF8 40%, #EDE6F6 70%, #FAF8F5 100%);
}

.niche-main-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.niche-main-subtext {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 3 Main Pillars Top Cards */
.niche-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 40px auto 0;
}

.niche-pillar-card {
  background: #E8FBF4;
  border: 1.5px solid #82E5C9;
  border-radius: var(--radius-md);
  padding: 38px 20px;
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.niche-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(13, 148, 136, 0.12);
}

.pillar-seal-badge {
  width: 48px;
  height: 48px;
  background: #14B8A6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(20, 184, 166, 0.35);
}

.seal-icon {
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 900;
}

.niche-pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #0F172A;
}

.niche-secondary-intro p {
  font-size: 1.15rem;
  color: #334155;
  font-style: italic;
  margin: 48px 0 28px;
}

/* 3-Column Specific Industries White Card */
.niche-columns-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.niche-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.niche-check-list li {
  font-size: 0.95rem;
  color: #334155;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.teal-check {
  color: #0D9488;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.niche-bottom-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* --- AUDIENCE SECTION --- */
.audience-section {
  padding: 100px 0;
  position: relative;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1020px;
  margin: 0 auto;
}

.audience-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-for {
  border: 2px solid rgba(225, 29, 72, 0.3);
  background: #FFFFFF;
}

.card-not {
  border: 1.5px solid var(--border-card);
  background: #FAFAFA;
}

.aud-card-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.aud-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.aud-pill-for {
  color: var(--accent-rose);
  background: rgba(225, 29, 72, 0.08);
  border: 1px solid rgba(225, 29, 72, 0.2);
}

.aud-pill-not {
  color: var(--text-muted);
  background: rgba(120, 113, 108, 0.08);
  border: 1px solid rgba(120, 113, 108, 0.2);
}

.aud-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
}

.aud-clean-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aud-clean-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.card-for .aud-clean-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-rose);
  font-weight: 800;
}

.card-not .aud-clean-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--text-muted);
  font-weight: 800;
}

/* --- REVIEWS / TESTIMONIALS --- */
.reviews-section {
  padding: 90px 0;
  background: #F4EFEA;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
}

.review-card {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.featured-rev {
  border-color: rgba(225, 29, 72, 0.35);
  box-shadow: 0 10px 30px rgba(225, 29, 72, 0.1);
  background: linear-gradient(160deg, #FFF8FA, #FFFFFF);
}

.rev-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.rev-text {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.rev-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rev-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #FDE68A, #F59E0B);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #1F1604;
  font-size: 0.9rem;
}

.rev-meta {
  display: flex;
  flex-direction: column;
}

.rev-name {
  font-weight: 700;
  font-size: 0.92rem;
}

.rev-verified {
  font-size: 0.72rem;
  color: var(--accent-emerald);
  font-weight: 600;
}

/* --- VIP ACCESS & COMMERCIAL LICENSE (CTA #6) --- */
.guarantee-section {
  padding: 90px 0;
}

.guarantee-box {
  background: linear-gradient(145deg, #FFFFFF 0%, #FFF8FA 100%);
  border: 2px solid rgba(225, 29, 72, 0.3);
  border-radius: var(--radius-xl);
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 980px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.guarantee-badge-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}

.shield-icon {
  font-size: 4rem;
  margin-bottom: 10px;
}

.badge-ring {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-rose);
  text-align: center;
}

.guarantee-text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.guarantee-text p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* --- FAQ ACCORDION --- */
.faq-section {
  padding: 90px 0;
  background: #F4EFEA;
}

.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--accent-rose);
}

.faq-trigger {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-chevron {
  font-size: 1.2rem;
  color: var(--accent-rose);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 26px 22px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-content {
  display: block;
}

/* --- FINAL CHECKOUT CLOSE --- */
.checkout-section {
  padding: 90px 0 120px;
}

.checkout-card {
  background: #FFFFFF;
  border: 2.5px solid var(--accent-rose);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 25px 70px rgba(225, 29, 72, 0.15), var(--shadow-lg);
}

.checkout-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.checkout-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.checkout-recap-box {
  background: #FAF8F5;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.checkout-recap-box h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.recap-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.recap-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.recap-list li strong {
  color: var(--text-primary);
}

.order-pricing-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
  padding: 16px 0;
  margin-bottom: 10px;
}

.price-old {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.price-now {
  font-size: 1.45rem;
  color: var(--accent-rose);
  font-family: var(--font-heading);
  font-weight: 800;
}

.security-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.sec-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* --- FOOTER --- */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 100px;
  background: #FFFFFF;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

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

.footer-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 12px;
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-rose);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 24px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --- PERSISTENT STICKY BOTTOM BAR --- */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1.5px solid rgba(225, 29, 72, 0.25);
  padding: 12px 0;
  z-index: 80;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.sticky-bottom-bar.visible {
  transform: translateY(0);
}

.sticky-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sticky-prod-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sticky-badge {
  background: rgba(225, 29, 72, 0.1);
  color: var(--accent-rose);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
}

.sticky-titles {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-name {
  font-weight: 700;
  font-size: 0.92rem;
}

.sticky-price {
  font-size: 1.15rem;
  color: var(--accent-rose);
  font-weight: 800;
}

.strike-muted {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 4px;
  font-weight: 500;
}

/* --- CHECKOUT SIMULATOR MODAL --- */
.checkout-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 25, 23, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  padding: 20px;
}

.checkout-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.checkout-modal {
  background: #FFFFFF;
  border: 1.5px solid rgba(225, 29, 72, 0.3);
  border-radius: var(--radius-xl);
  padding: 38px;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.checkout-modal-backdrop.open .checkout-modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-rose);
  background: rgba(225, 29, 72, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 10px;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.modal-header p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  background: #FAF8F5;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-input:focus {
  border-color: var(--accent-rose);
  background: #FFFFFF;
}

.order-summary-pill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(225, 29, 72, 0.06);
  border: 1px solid rgba(225, 29, 72, 0.2);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-primary);
  margin: 18px 0;
}

.order-summary-pill strong {
  color: var(--accent-rose);
  font-family: var(--font-mono);
  font-size: 1.05rem;
}

.modal-footer-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}

@media (max-width: 992px) {
  .hero-headline { font-size: 2.6rem; }
  .comparison-grid { grid-template-columns: 1fr; }
  .value-stack-box { grid-template-columns: 1fr; }
  .guarantee-box { flex-direction: column; text-align: center; }
  .btn-guarantee { align-self: center; }
  .header-nav { display: none; }
  .niche-pillars-grid { grid-template-columns: 1fr; gap: 16px; }
  .niche-columns-card { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
  .hero-headline { font-size: 2.1rem; }
  .hero-stat-badges { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .stat-divider { display: none; }
  .audience-grid { grid-template-columns: 1fr; }
  .calc-results-grid { grid-template-columns: 1fr; }
  .vault-cta-banner { flex-direction: column; text-align: center; }
  .banner-inner { flex-direction: column; text-align: center; }
  .banner-timer { margin: 8px 0; }
  .sticky-prod-info { display: none; }
  .sticky-bottom-bar .container { justify-content: center; }
  .btn-sticky { width: 100%; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 1.8rem; }
  .hero-subhead { font-size: 1rem; }
  .btn-text-main { font-size: 1.05rem; }
  .btn-primary-line { font-size: 1rem; }
  .btn-main-txt { font-size: 1.05rem; }
}

/* Payhip & Dodo Generated Button Alignment Override */
.payhip-buy-button, .dodo-buy-button {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

