/* ==========================================================================
   THE CRIME KEY - DESIGN SYSTEM & STYLESHEET
   Aesthetics: Dark mystery theme with white offer sections
   ========================================================================== */

/* 1. Core Variables & Fonts */
:root {
  /* Light mode defaults (used for offer/testimonial/guarantee) */
  --color-bg-main: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-bg-dossier: #fcfbfa;
  
  --color-text-title: #0f172a;
  --color-text-body: #334155;
  --color-text-muted: #64748b;
  
  --color-accent: #b91c1c;         /* Crimson Red */
  --color-accent-hover: #991b1b;
  --color-accent-light: #fef2f2;
  --color-accent-glow: rgba(185, 28, 28, 0.3);
  
  --color-border: #e2e8f0;
  --color-border-dark: #cbd5e1;
  
  /* Dark mode palette */
  --dark-bg-primary: #0a0a0f;
  --dark-bg-secondary: #111118;
  --dark-bg-tertiary: #16161f;
  --dark-bg-card: #1a1a24;
  --dark-bg-card-hover: #1f1f2a;
  --dark-text-primary: #f1f5f9;
  --dark-text-secondary: #94a3b8;
  --dark-text-muted: #64748b;
  --dark-border: rgba(255, 255, 255, 0.08);
  --dark-border-hover: rgba(255, 255, 255, 0.15);
  
  --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.04), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-premium: 0 20px 25px -5px rgba(158, 28, 28, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
  --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-dark-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
  
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* 2. Reset & Document Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark-bg-primary);
  color: var(--color-text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Cinematic Overlays */
.vignette-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(circle, transparent 50%, rgba(0, 0, 0, 0.65) 150%);
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url('images/01.-noise-gif-square-anim.gif');
  background-repeat: repeat;
  opacity: 0.05;
}

/* 3. Typography & Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--color-text-title);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.35rem, 6.5vw, 3.85rem);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.text-gradient {
  background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #ef4444 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: shimmer-gradient 3s ease infinite;
}

@keyframes shimmer-gradient {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.no-wrap {
  white-space: nowrap;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 40px;
}

/* Decorative crimson line under section titles */
h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: 2px;
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--color-text-body);
}

.text-muted {
  color: var(--color-text-muted);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
  border-bottom: none;
}

.bg-alt {
  background-color: var(--color-bg-alt);
}

/* ============================================
   DARK SECTION SYSTEM
   ============================================ */
.section-dark {
  background-color: var(--dark-bg-primary);
  border-bottom: 1px solid var(--dark-border);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--dark-text-primary);
}

.section-dark h2::after {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.section-dark p {
  color: var(--dark-text-secondary);
}

.section-dark .text-muted {
  color: var(--dark-text-muted);
}

.section-dark-alt {
  background-color: var(--dark-bg-secondary);
  border-bottom: 1px solid var(--dark-border);
}

.section-dark-alt h2,
.section-dark-alt h3,
.section-dark-alt h4 {
  color: var(--dark-text-primary);
}

.section-dark-alt h2::after {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.section-dark-alt p {
  color: var(--dark-text-secondary);
}

.section-dark-alt .text-muted {
  color: var(--dark-text-muted);
}

/* Light section overrides (for offer/testimonial/guarantee) */
.section-light {
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border);
}

.section-light h2,
.section-light h3,
.section-light h4 {
  color: var(--color-text-title);
}

.section-light p {
  color: var(--color-text-body);
}

.section-light h2::after {
  background-color: var(--color-accent);
}

.section-light-alt {
  background-color: #f8fafc;
  border-bottom: 1px solid var(--color-border);
}

.section-light-alt h2,
.section-light-alt h3,
.section-light-alt h4 {
  color: var(--color-text-title);
}

.section-light-alt p {
  color: var(--color-text-body);
}

.section-light-alt h2::after {
  background-color: var(--color-accent);
}

/* Premium Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 30px;
  border: 1px solid rgba(158, 28, 28, 0.15);
  margin-bottom: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 9999px; /* Pill layout */
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  width: 100%;
}

@media (min-width: 640px) {
  .btn {
    width: auto;
  }
}

.btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  animation: pulse-cta-primary 2.2s infinite ease-in-out;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
  animation-play-state: paused;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(52, 211, 153, 0.3);
  animation: pulse-cta-secondary 2.2s infinite ease-in-out;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 211, 153, 0.4);
  animation-play-state: paused;
}

.btn-secondary:active {
  transform: translateY(0);
}

/* Pulse Animations */
@keyframes pulse-cta-primary {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3), 0 0 0 0 rgba(16, 185, 129, 0.5);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.4), 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3), 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes pulse-cta-secondary {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(52, 211, 153, 0.3), 0 0 0 0 rgba(52, 211, 153, 0.5);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 6px 18px rgba(52, 211, 153, 0.4), 0 0 0 10px rgba(52, 211, 153, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(52, 211, 153, 0.3), 0 0 0 0 rgba(52, 211, 153, 0);
  }
}

/* Top Banner Styles */
.top-banner {
  background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 50%, #991b1b 100%);
  color: #ffffff;
  padding: 14px 0;
  box-shadow: 0 2px 10px rgba(153, 27, 27, 0.4);
  font-family: var(--font-title);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-banner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
  font-size: clamp(0.9rem, 3.2vw, 1.15rem);
  font-weight: 600;
}

.banner-logo {
  height: 28px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}


.banner-clock {
  font-weight: 800;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 2px 10px;
  border-radius: var(--border-radius-sm);
  font-family: monospace;
  font-size: 1.05em;
  letter-spacing: 0.02em;
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.15);
}

/* 4. SECTION 1: Hero */
.hero-section {
  padding-top: 60px;
  padding-bottom: 100px;
  background: radial-gradient(ellipse at top, var(--dark-bg-tertiary) 0%, var(--dark-bg-primary) 70%);
  position: relative;
  overflow: hidden;
}

/* Blood splatters styling */
.receive-section, .why-section {
  position: relative;
  overflow: hidden;
}

.blood-splatter-bg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  filter: blur(1px);
}

.blood-splatter-1 {
  top: -100px;
  right: -150px;
  width: 600px;
  transform: rotate(25deg);
}

.blood-splatter-2 {
  bottom: 0;
  left: -200px;
  width: 800px;
  transform: rotate(-15deg);
}

/* Subtle grid pattern overlay */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Crimson glow at bottom */
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(185, 28, 28, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-section h1 {
  color: var(--dark-text-primary);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--dark-text-secondary);
  margin: 20px auto 32px;
  max-width: 680px;
  line-height: 1.5;
}

.hero-logo {
  height: clamp(60px, 12vw, 85px);
  width: auto;
  border-radius: 12px;
  object-fit: contain;
  margin-bottom: 20px;
}

.hero-media {
  width: 100%;
  max-width: 600px;
  margin: 20px auto 36px;
  display: grid;
  place-items: center;
}

.hero-image {
  grid-area: 1 / 1;
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-dark-lg);
  border: 1px solid var(--dark-border-hover);
  display: block;
  margin: 0 auto;
  transition: opacity 1.5s ease-in-out, transform var(--transition-normal);
  opacity: 0;
  pointer-events: none;
}

.hero-image.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.hero-image.active:hover {
  transform: scale(1.015);
}


/* Premium Dossier Placeholder for Images/Video */
.hero-media-placeholder {
  position: relative;
  background-color: var(--dark-bg-card);
  border: 1px solid var(--dark-border-hover);
  border-radius: var(--border-radius-lg);
  padding: 40px 24px;
  box-shadow: var(--shadow-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  overflow: hidden;
}

/* Dossier tab styling */
.hero-media-placeholder::before {
  content: "TOP SECRET";
  position: absolute;
  top: 16px;
  left: -28px;
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  color: #ffffff;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 4px 30px;
  transform: rotate(-45deg);
  box-shadow: 0 2px 8px rgba(185,28,28,0.4);
}

.dossier-clip {
  width: 60px;
  height: 25px;
  background: linear-gradient(to right, #374151, #4b5563, #374151);
  border-radius: var(--border-radius-sm);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 2px solid #1f2937;
  box-shadow: var(--shadow-sm);
}

.media-inner-box {
  border: 2px dashed var(--dark-border-hover);
  border-radius: var(--border-radius-md);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.media-inner-box svg {
  width: 64px;
  height: 64px;
  color: var(--dark-text-muted);
  opacity: 0.6;
}

.media-inner-box h4 {
  font-family: var(--font-title);
  color: var(--dark-text-secondary);
  font-size: 1.1rem;
}

.media-inner-box p {
  font-size: 0.85rem;
  color: var(--dark-text-muted);
  max-width: 250px;
}

/* 5. SECTION 2: What You Will Receive */
.receive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .receive-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.receive-card {
  background-color: var(--dark-bg-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-dark);
}

.receive-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-dark-lg);
  border-color: var(--dark-border-hover);
  background-color: var(--dark-bg-card-hover);
}

.icon-wrapper {
  width: 64px;
  height: 64px;
  background: rgba(185, 28, 28, 0.12);
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 24px;
  transition: transform var(--transition-normal);
  border: 1px solid rgba(185, 28, 28, 0.2);
}

.receive-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.receive-card h3 {
  margin-bottom: 12px;
  color: var(--dark-text-primary);
}

.receive-card p {
  font-size: 0.95rem;
  color: var(--dark-text-muted);
}

/* 6. SECTION 3: Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.why-item {
  display: flex;
  gap: 20px;
  background-color: var(--dark-bg-card);
  padding: 24px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-dark);
  border: 1px solid var(--dark-border);
  border-left: 4px solid #ef4444;
  transition: all var(--transition-normal);
}

.why-item:hover {
  transform: translateY(-2px);
  background-color: var(--dark-bg-card-hover);
  border-color: var(--dark-border-hover);
}

.why-check {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.why-item:hover .why-check {
  transform: scale(1.08) rotate(5deg);
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
}

.why-check svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

.why-content h3 {
  margin-bottom: 8px;
  color: var(--dark-text-primary);
}

.why-content p {
  font-size: 0.95rem;
  color: var(--dark-text-muted);
}

/* 7. SECTION 4: Bonuses */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bonus-card {
  position: relative;
  background-color: var(--dark-bg-card);
  border: 1px dashed rgba(239, 68, 68, 0.3);
  border-radius: var(--border-radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-normal);
  background: linear-gradient(180deg, var(--dark-bg-card) 0%, var(--dark-bg-secondary) 100%);
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-dark-lg);
  border-color: rgba(239, 68, 68, 0.5);
}

.bonus-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #b91c1c, #ef4444);
  color: #ffffff;
  padding: 4px 16px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(185,28,28,0.4);
}

.bonus-val {
  color: #ef4444;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  display: block;
  margin: 16px 0 8px;
  text-transform: uppercase;
}

.bonus-card h3 {
  margin-bottom: 12px;
  color: var(--dark-text-primary);
}

.bonus-card p {
  font-size: 0.9rem;
  color: var(--dark-text-muted);
}

/* 8. SECTION 5: Offer & Timer */
.offer-section {
  background: var(--color-bg-main);
}

/* Elegant Digital Timer */
.timer-container {
  max-width: 500px;
  margin: -20px auto 48px;
  text-align: center;
  background-color: var(--color-bg-main);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.timer-label {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}

.timer-clock {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.timer-box {
  background-color: var(--color-text-title);
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 700;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-md);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
  letter-spacing: 0.02em;
}

.timer-colon {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-title);
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0.3; }
}

.timer-subtext {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 12px;
}

/* Pricing Cards Layout */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-card {
  background-color: var(--color-bg-main);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Highlight Premium Card ($10) */
.pricing-card.premium {
  border: 2px solid var(--color-accent);
  box-shadow: var(--shadow-premium);
  background-color: #ffffff;
}

.popular-ribbon {
  position: absolute;
  top: -14px;
  right: 24px;
  background-color: var(--color-accent);
  color: #ffffff;
  padding: 4px 16px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
}

.plan-name {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.plan-description {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.plan-price-wrapper {
  display: flex;
  align-items: baseline;
  margin-bottom: 32px;
}

.plan-price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-title);
}

.plan-price-amount {
  font-size: 4rem;
  font-weight: 800;
  font-family: var(--font-title);
  line-height: 1;
  color: var(--color-text-title);
}

.plan-price-period {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-left: 8px;
}

.plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  flex-grow: 1;
}

.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.plan-feature-icon {
  flex-shrink: 0;
  color: var(--color-accent);
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.plan-feature-icon.cross {
  color: var(--color-text-muted);
  opacity: 0.5;
}

/* Center single card layout */
.pricing-grid-single {
  max-width: 500px;
  margin: 0 auto;
}

.pricing-card-new {
  background-color: #ffffff;
  border: 3px solid #f5a623;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all var(--transition-normal);
  margin-top: 20px;
}

.pricing-card-new:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.badge-premium-new {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  color: #ffffff;
  padding: 6px 18px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(185, 28, 28, 0.35);
  z-index: 10;
  white-space: nowrap;
}

.plan-title-new {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 8px;
}

.plan-price-section-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.price-anchor-new {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ef4444;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.price-current-new {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: var(--font-title);
  color: #22c55e;
  line-height: 1;
}

.price-period-new {
  font-size: 0.95rem;
  color: #6b7280;
  margin-top: 4px;
  font-weight: 500;
}

.included-bar-new {
  width: 100%;
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #10b981;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  text-align: center;
}

.bonuses-container-new {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.bonus-box-new {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #fffbf2;
  border: 1px solid #fdecd2;
  padding: 16px 24px;
  border-radius: 16px;
  text-align: left;
  transition: transform var(--transition-fast);
  width: 100%;
}

.bonus-box-new:hover {
  transform: translateX(4px);
}

.bonus-icon-box-new {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-icon-box-new svg {
  width: 24px;
  height: 24px;
}

.bonus-text-box-new {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bonus-label-new {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 800;
  color: #f59e0b;
  text-transform: uppercase;
}

.bonus-title-new {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.3;
}

.bonus-val-crossed {
  font-size: 0.85rem;
  color: #ef4444;
  text-decoration: line-through;
  font-weight: 600;
  margin-left: 4px;
}

.free-text-new {
  color: #10b981;
  font-weight: 800;
  margin-left: 4px;
}

.btn-cta-new {
  width: 100%;
  font-size: 1.2rem;
  padding: 16px 32px;
  font-weight: 800;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  background: #22c55e;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
  transition: all 0.2s;
  animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
  0% { transform: scale(1); box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35); }
  50% { transform: scale(1.03); box-shadow: 0 8px 25px rgba(34, 197, 94, 0.6); }
  100% { transform: scale(1); box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35); }
}

.btn-cta-new:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.protected-payment-text {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 12px;
  font-weight: 600;
}

/* Timer section style - Transparent to sit directly on white background */
.timer-section-new {
  max-width: 500px;
  margin: 32px auto 0;
  text-align: center;
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 8px 0;
  box-shadow: none;
}

.timer-headline-new {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  color: #0f172a; /* Dark slate text for white background */
  margin-bottom: 20px;
}

.timer-clock-new {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.timer-block-new {
  background-color: #1e1e28; /* Dark navy box */
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 800;
  width: 76px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.timer-colon-new {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a; /* Dark slate colon */
  animation: blink 1s infinite;
}

/* Payment badges below timer */
.payment-methods-new {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.pay-logo-new {
  height: 28px;
  width: auto;
  opacity: 0.9;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.06));
}

.pay-logo-new:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* 9. SECTION 6: Examples Carousel */
.carousel-outer {
  max-width: 1000px; /* Increased from 800px */
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-dark);
  border: 1px solid var(--dark-border-hover);
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform var(--transition-normal);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
  background-color: var(--dark-bg-card);
  padding: 32px 16px; /* Tighter padding on mobile to maximize image space */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .carousel-slide {
    padding: 48px 32px;
  }
}

.carousel-image {
  width: 100%;
  max-width: 900px; /* Increased from 720px to make the document feel massive */
  height: auto;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-dark-lg);
  border: 1px solid var(--dark-border-hover);
  display: block;
  margin: 0 auto;
  transition: transform var(--transition-normal);
}

.carousel-image:hover {
  transform: scale(1.015);
}


.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--dark-bg-card);
  border: 1px solid var(--dark-border-hover);
  color: var(--dark-text-primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-dark);
  z-index: 10;
  opacity: 0.55; /* Default opacity to blend in */
  transition: all var(--transition-fast);
}

.carousel-nav-btn:hover {
  background: linear-gradient(135deg, #b91c1c, #ef4444);
  color: #ffffff;
  border-color: #ef4444;
  opacity: 1; /* Fully opaque on hover */
}

.carousel-nav-btn.prev {
  left: 16px;
}

.carousel-nav-btn.next {
  right: 16px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--dark-border-hover);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.carousel-dot.active {
  background-color: #ef4444;
}

/* 10. SECTION 7: Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.testimonial-stars {
  color: #fbbf24; /* Amber star */
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--color-text-body);
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar-placeholder {
  width: 44px;
  height: 44px;
  background-color: var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--color-text-title);
  font-size: 0.9rem;
}

.user-info h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.user-info span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  display: block;
}

/* 11. SECTION 8: Guarantee */
.guarantee-wrapper {
  background-color: var(--color-bg-dossier);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
  .guarantee-wrapper {
    grid-template-columns: auto 1fr;
  }
}

.guarantee-badge-art {
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-badge-art svg {
  width: 120px;
  height: 120px;
  color: var(--color-accent);
}

.guarantee-content h3 {
  font-size: 1.5rem;
  color: var(--color-text-title);
  margin-bottom: 12px;
}

.guarantee-content p {
  font-size: 1rem;
  color: var(--color-text-body);
  line-height: 1.5;
}

/* 12. SECTION 9: FAQs Accordion */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-md);
  margin-bottom: 16px;
  background-color: var(--dark-bg-card);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark-text-primary);
  cursor: pointer;
  user-select: none;
  background-color: var(--dark-bg-card);
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--dark-bg-card-hover);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--dark-text-secondary);
  transition: transform var(--transition-normal);
}

.faq-icon svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-normal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 0.95rem;
  color: var(--dark-text-secondary);
  line-height: 1.5;
}

/* Open Accordion State (applied via JS) */
.faq-item.active {
  border-color: var(--dark-border-hover);
  box-shadow: var(--shadow-dark);
}

.faq-item.active .faq-icon svg {
  transform: rotate(45deg);
}

/* 13. SECTION 10: Footer */
.footer {
  background-color: var(--dark-bg-secondary);
  padding: 40px 0;
  border-top: 1px solid var(--dark-border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer-logo {
  height: 44px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  margin-bottom: -10px; /* Reduces space between logo and brand name */
}


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

.footer-brand span {
  color: #ef4444;
}

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

.footer-links a {
  color: var(--dark-text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #ef4444;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--dark-text-muted);
}

/* ============================================
   BLOOD DRIP DIVIDERS
   ============================================ */
.blood-divider {
  position: relative;
  width: 100%;
  height: 0;
  overflow: visible;
  z-index: 5;
  line-height: 0;
  pointer-events: none;
}

.blood-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Variant 1: Dark dripping down — subtle between dark sections */
.blood-divider--dark-subtle {
  margin-top: -1px;
}

/* Variant 2: Dark dripping into white — dramatic transition */
.blood-divider--dark-to-light {
  margin-top: -1px;
  filter: drop-shadow(0 4px 8px rgba(139, 0, 0, 0.3));
}

/* Variant 3: White section dripping blood into dark */
.blood-divider--light-to-dark {
  margin-top: -1px;
  filter: drop-shadow(0 4px 8px rgba(139, 0, 0, 0.25));
}

/* Subtle drip animation on page load */
@keyframes drip-in {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  60% {
    transform: translateY(3%);
    opacity: 1;
  }
  80% {
    transform: translateY(-1%);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.blood-divider svg {
  animation: drip-in 1.2s ease-out both;
}

.blood-divider--dark-to-light svg {
  animation-delay: 0.3s;
}

.blood-divider--light-to-dark svg {
  animation-delay: 0.5s;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 480px) {
  h1 {
    font-size: clamp(1.4rem, 7.5vw, 2.1rem);
  }

  .pricing-card-new {
    padding: 32px 16px;
  }

  .plan-title-new {
    font-size: 1.5rem;
  }

  .price-current-new {
    font-size: 3rem;
  }

  .included-bar-new {
    font-size: 0.75rem;
    padding: 10px;
    margin-bottom: 20px;
  }

  .bonus-box-new {
    padding: 12px 14px;
    gap: 12px;
  }

  .bonus-title-new {
    font-size: 0.85rem;
  }

  .bonus-icon-box-new {
    width: 32px;
    height: 32px;
  }

  .bonus-icon-box-new svg {
    width: 16px;
    height: 16px;
  }

  .btn-cta-new {
    font-size: 1.1rem;
    padding: 14px 28px;
  }

  .badge-premium-new {
    font-size: 0.72rem;
    padding: 4px 14px;
    top: -12px;
  }

  .timer-block-new {
    width: 64px;
    height: 60px;
    font-size: 1.8rem;
  }

  .timer-colon-new {
    font-size: 1.5rem;
  }
}

/* PRICING CARD NEW STYLES */
.pricing-grid-single {
  max-width: 540px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.pricing-card-new {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-bottom: 4px solid #f59e0b;
  border-radius: 16px;
  padding: 24px 14px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  margin-top: 24px;
  width: 100%;
}

@media (min-width: 640px) {
  .pricing-card-new {
    padding: 32px 24px;
  }
}

.plan-title-new {
  color: #111827;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 4px;
  font-family: var(--font-title);
}

.plan-price-section-new {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-anchor-new s {
  color: #ef4444;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: -4px;
  display: block;
}

.price-current-new {
  color: #16a34a;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  margin: 0;
  font-family: var(--font-title);
  letter-spacing: -0.02em;
}

.price-period-new {
  color: #6b7280;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 4px;
}

.bonuses-container-new {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.included-bar-new {
  background: #edfdf2;
  color: #16a34a;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #bbf7d0;
  margin-bottom: 4px;
}

.bonus-box-new {
  display: flex;
  align-items: center;
  background: #fffdf5;
  border: 1px solid #fef08a;
  border-radius: 12px;
  padding: 12px 16px;
  text-align: left;
}

.bonus-box-new.main-product-box {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.bonus-icon-box-new {
  flex-shrink: 0;
  width: auto;
  height: auto;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.bonus-icon-box-new.verify-icon {
  background: transparent;
}

.bonus-icon-box-new svg {
  width: 22px;
  height: 22px;
  color: #f59e0b;
}

.bonus-text-box-new {
  display: flex;
  flex-direction: column;
}

.bonus-label-new {
  color: #f59e0b;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.bonus-title-new {
  color: #1f2937;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

.bonus-val-crossed {
  display: none;
}

.free-text-new {
  display: none;
}

.btn-cta-new {
  background: #16a34a;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 1.15rem;
  font-weight: 800;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 4px 14px 0 rgba(22, 163, 74, 0.3);
  transition: all 0.3s ease;
  font-family: var(--font-title);
  margin-bottom: 12px;
}

.btn-cta-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.5);
  background: #15803d;
}

.protected-payment-text {
  color: #6b7280;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.payments-wrapper-new {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================
   MARQUEE BANNER
   ========================================== */
.marquee-container {
  width: 100%;
  background-color: #d80000;
  color: #fff;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  z-index: 10;
  display: flex;
}

.marquee-content {
  display: inline-block;
  animation: marquee 30s linear infinite;
  font-weight: 700;
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

.marquee-content span {
  margin-right: 40px;
}

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

/* ==========================================
   CAUTION TAPE SEPARATOR
   ========================================== */
.caution-tape-container {
  position: relative;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, #ffffff 50%, var(--dark-bg-secondary) 50%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.caution-tape {
  position: absolute;
  width: 120%;
  left: -10%;
  background: repeating-linear-gradient(
    45deg,
    #facc15,
    #facc15 30px,
    #000000 30px,
    #000000 60px
  );
  color: #000;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 2px;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
}

.caution-tape span {
  background-color: #facc15;
  padding: 0 15px;
  margin: 0 15px;
  border-radius: 4px;
}

.caution-tape-1 {
  transform: rotate(4deg);
  z-index: 1;
}

.caution-tape-2 {
  transform: rotate(-4deg);
  z-index: 2;
}


