/* ==========================================================================
   CÓDIGO DIVINO - Modern Landing Page Stylesheet
   Luxury Sacred Aesthetic, High Conversion UX, Mobile Responsive
   ========================================================================== */

/* --- Fonts & CSS Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;0,900;1,400;1,600&display=swap');

:root {
  /* Brand Sacred & Luxury Colors - Unified Single Gold for Symbols & Eyebrows */
  --gold-primary: #D4AF37;
  --gold-light: #F6E27A;
  --gold-dark: #A67C1E;
  --gold-gradient: linear-gradient(135deg, #FDE68A 0%, #D4AF37 50%, #B48624 100%);
  --gold-glow: rgba(212, 175, 55, 0.35);

  /* Deep Sacred Brown & Earth */
  --brown-deep: #543919;
  --brown-medium: #704F26;
  --brown-light: #9B7647;

  /* Parchment / Light Sacred Palette */
  --parchment-cream: #FAF6ED;
  --parchment-sand: #F2E8D5;
  --parchment-warm: #EADBC4;
  --parchment-border: #DFCEB4;

  /* Dark Luxury Theme */
  --dark-hero: #0D0C10;
  --dark-surface: #15141D;
  --dark-card: #1D1B26;
  --dark-border: rgba(212, 175, 55, 0.25);

  /* High-Conversion Accent */
  --cta-green: #10B981;
  --cta-green-hover: #059669;
  --cta-green-pulse: rgba(16, 185, 129, 0.45);
  --danger-red: #EF4444;

  /* Neutral Text Colors */
  --text-dark: #1F2937;
  --text-muted: #4B5563;
  --text-light: #F9FAFB;
  --text-light-muted: #D1D5DB;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;

  /* Shadows & Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.16);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.25);
  --shadow-glow: 0 0 50px rgba(212, 175, 55, 0.25);
}

/* --- Reset & Base Styles --- */
*, *::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-sans);
  color: var(--text-dark);
  background-color: var(--parchment-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ==========================================================================
   UNIFIED MONOCHROME SACRED SYMBOLS & ICONS
   Eliminating AI appearance with single-color (#D4AF37) precision
   ========================================================================== */
.icon-gold {
  color: var(--gold-primary);
  stroke: var(--gold-primary);
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

svg.icon-gold path,
svg.icon-gold polygon,
svg.icon-gold polyline,
svg.icon-gold circle,
svg.icon-gold line,
svg.icon-gold rect {
  stroke: var(--gold-primary);
}

/* Unified Eyebrow Badges Across Whole Site */
.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary) !important;
  background: rgba(212, 175, 55, 0.08) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* ==========================================================================
   SCROLL-DRIVEN REVEAL ANIMATIONS (Appearing on scroll down, disappearing on scroll up)
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sequential delay for grid items */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.12s; }
.stagger-3 { transition-delay: 0.19s; }
.stagger-4 { transition-delay: 0.26s; }
.stagger-5 { transition-delay: 0.33s; }

/* Global Layout Utilities */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-spacing {
  padding-top: 85px;
  padding-bottom: 85px;
}

@media (max-width: 768px) {
  .section-spacing {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.text-center { text-align: center; }
.text-gold { color: var(--gold-primary); }
.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Section Header Shared */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- High-Converting Call to Action Buttons --- */
.btn-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  padding: 18px 42px;
  border-radius: var(--radius-pill);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px var(--cta-green-pulse), 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(30deg);
  animation: shine-loop 4s infinite ease-in-out;
}

@keyframes shine-loop {
  0% { left: -60%; }
  35% { left: 140%; }
  100% { left: 140%; }
}

.btn-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 32px rgba(16, 185, 129, 0.6);
  background: linear-gradient(180deg, #34D399 0%, #059669 100%);
}

.btn-cta:active {
  transform: translateY(0) scale(0.99);
}

.btn-cta-subtext {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
  text-transform: none;
  letter-spacing: normal;
  margin-top: 3px;
  display: block;
}

.pulse-animation {
  animation: pulse-glow 2.2s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.65); }
  70% { box-shadow: 0 0 0 16px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* --- Top Urgency Announcement Bar --- */
.top-bar {
  background: #111827;
  color: #F9FAFB;
  padding: 10px 16px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.top-bar-timer {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  padding: 2px 10px;
  border-radius: 4px;
  font-family: monospace;
  font-weight: 700;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   1. HERO SECTION (MOCKUP FIRST ABOVE HERO)
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: var(--dark-hero);
  background-image: linear-gradient(180deg, rgba(13, 12, 16, 0.90) 0%, rgba(13, 12, 16, 0.97) 100%), url('teste-wp-dWxO7M149zSxqZ4n.webp');
  background-size: cover;
  background-position: center top;
  color: var(--text-light);
  padding: 45px 0 85px 0;
  overflow: hidden;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.hero-container-stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.hero-eyebrow-wrap {
  margin-bottom: 25px;
}

/* Mockup in FIRST Place at Top of Hero */
.hero-mockup-top-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  width: 100%;
}

.hero-mockup-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 68%);
  z-index: 1;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-mockup-img-top {
  position: relative;
  z-index: 2;
  max-width: 720px;
  width: 100%;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.85));
  animation: float-mockup 6s ease-in-out infinite;
}

@keyframes float-mockup {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-top: 15px;
  backdrop-filter: blur(4px);
}

.hero-rating-badge .rating-stars {
  color: var(--gold-primary);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.hero-rating-badge .rating-text {
  font-size: 0.88rem;
  color: #E5E7EB;
  font-weight: 500;
}

.hero-text-stacked {
  max-width: 860px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--text-light-muted);
  line-height: 1.65;
  margin-bottom: 30px;
  font-weight: 400;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 35px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: #E5E7EB;
  backdrop-filter: blur(4px);
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-guarantee-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

/* ==========================================================================
   2. INTRO SECTION ("¿Qué es Código Divino?")
   ========================================================================== */
.intro-section {
  background-color: var(--parchment-cream);
  background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 0);
  background-size: 24px 24px;
  border-bottom: 1px solid var(--parchment-border);
}

.intro-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .intro-card-grid {
    grid-template-columns: 1fr;
  }
}

.intro-main-box {
  background: #FFFFFF;
  border: 1px solid var(--parchment-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.intro-main-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--gold-gradient);
}

.intro-quote {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--brown-deep);
  font-weight: 500;
  margin-bottom: 25px;
}

.intro-checklist-box {
  background: linear-gradient(145deg, #FFFFFF 0%, var(--parchment-sand) 100%);
  border: 1px solid var(--parchment-border);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-md);
}

.checklist-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.5;
}

/* ==========================================================================
   3. BOOKS & STUDY MODULES SHOWCASE (5 VOLUMES)
   ========================================================================== */
.modules-section {
  background: #FFFFFF;
  border-bottom: 1px solid var(--parchment-border);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.module-card {
  background: var(--parchment-cream);
  border: 1px solid var(--parchment-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.module-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-primary);
}

.module-card-media {
  background: linear-gradient(180deg, var(--parchment-sand) 0%, #FFFFFF 100%);
  padding: 30px 20px 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.module-card-media::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 80%;
  height: 12px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, transparent 70%);
}

.module-card-img {
  max-height: 270px;
  width: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s ease;
}

.module-card:hover .module-card-img {
  transform: scale(1.05) rotate(-1deg);
}

.module-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.module-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(112, 79, 38, 0.1);
  color: var(--brown-deep);
  margin-bottom: 12px;
}

.module-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 10px;
  line-height: 1.3;
}

.module-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.module-card.theme-gold {
  border-color: rgba(212, 175, 55, 0.4);
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF6ED 100%);
}

.module-card.theme-dark {
  background: var(--brown-deep);
  color: #FFFFFF;
  border-color: var(--brown-medium);
}

.module-card.theme-dark .module-card-media {
  background: linear-gradient(180deg, #3D2912 0%, var(--brown-deep) 100%);
}

.module-card.theme-dark .module-tag {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold-light);
}

.module-card.theme-dark .module-title {
  color: #FFFFFF;
}

.module-card.theme-dark .module-desc {
  color: #E5E7EB;
}

/* ==========================================================================
   4. TRANSFORMATION PILLARS ("Ventajas de usar Código Divino")
   ========================================================================== */
.pillars-section {
  background-color: var(--parchment-sand);
  background-image: url('pergament-papier-hintergrund-textur-16442127221im-YZ9jqabgOjt55JG5.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom: 1px solid var(--parchment-border);
}

.pillars-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 238, 224, 0.92);
}

.pillars-content {
  position: relative;
  z-index: 2;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.pillar-card {
  background: #FFFFFF;
  border: 1px solid var(--parchment-border);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-primary);
}

.pillar-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 10px;
}

.pillar-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   5. TARGET AUDIENCE ("¿Quién puede usarlo?")
   ========================================================================== */
.audience-section {
  background: #FFFFFF;
  border-bottom: 1px solid var(--parchment-border);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.audience-card {
  background: var(--parchment-cream);
  border: 1px solid var(--parchment-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-primary);
}

.audience-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.audience-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.audience-card:hover .audience-img {
  transform: scale(1.08);
}

.audience-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

.audience-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.audience-role {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 8px;
}

.audience-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   6. EXCLUSIVE BONUSES (5 BONUSES)
   ========================================================================== */
.bonuses-section {
  background-color: var(--parchment-cream);
  position: relative;
  border-bottom: 1px solid var(--parchment-border);
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.bonus-card {
  background: #FFFFFF;
  border: 1px solid var(--parchment-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-primary);
}

.bonus-pill-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--cta-green);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
  z-index: 10;
  letter-spacing: 0.5px;
}

.bonus-media {
  background: linear-gradient(180deg, var(--parchment-sand) 0%, #FFFFFF 100%);
  padding: 30px 20px 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bonus-img {
  max-height: 240px;
  width: auto;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s ease;
}

.bonus-card:hover .bonus-img {
  transform: scale(1.05);
}

.bonus-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bonus-number {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brown-medium);
  letter-spacing: 1px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bonus-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 10px;
  line-height: 1.35;
}

.bonus-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.bonus-pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed var(--parchment-border);
}

.bonus-old-price {
  font-size: 1rem;
  color: var(--danger-red);
  text-decoration: line-through;
  font-weight: 600;
}

.bonus-new-price {
  font-size: 1.2rem;
  color: var(--cta-green);
  font-weight: 800;
}

/* Bonuses Total Valuation Box */
.bonus-total-banner {
  margin-top: 50px;
  background: linear-gradient(135deg, #171520 0%, #242032 100%);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: var(--shadow-glow);
}

.bonus-total-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.bonus-total-sub {
  font-size: 1.1rem;
  color: var(--text-light-muted);
  max-width: 680px;
  margin: 0 auto 25px auto;
}

/* ==========================================================================
   7. EMPATHY & PROBLEM STATEMENT SECTION
   ========================================================================== */
.empathy-section {
  background: linear-gradient(180deg, var(--parchment-sand) 0%, var(--parchment-warm) 100%);
  border-bottom: 1px solid var(--parchment-border);
}

.empathy-card {
  background: #FFFFFF;
  border: 1px solid var(--parchment-border);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.empathy-icon-wrap {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.empathy-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 20px;
  line-height: 1.25;
}

.empathy-text {
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.8;
}

/* ==========================================================================
   8. SOCIAL PROOF & TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  background: #FFFFFF;
  border-bottom: 1px solid var(--parchment-border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: var(--parchment-cream);
  border: 1px solid var(--parchment-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-style: italic;
  flex-grow: 1;
}

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

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--brown-medium) 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brown-deep);
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   9. MAIN OFFER & PRICING TABLE (HIGH CONVERSION)
   ========================================================================== */
.pricing-section {
  background-color: #0B0A0F;
  background-image: linear-gradient(180deg, #0F0E13 0%, #15131C 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.pricing-box {
  background: #171520;
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), var(--shadow-glow);
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pricing-box {
    padding: 35px 20px;
  }
}

.pricing-ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #1A1824;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 26px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
  white-space: nowrap;
}

.pricing-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: center;
}

.pricing-lead {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light-muted);
  margin-bottom: 30px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 35px;
}

@media (max-width: 860px) {
  .pricing-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.pricing-mockup-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-mockup-img {
  max-height: 380px;
  width: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.8));
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #F3F4F6;
  text-align: left;
}

.pricing-feature-item.bonus-item {
  color: var(--gold-light);
  font-weight: 600;
}

/* Pricing Numbers Container */
.price-display-wrap {
  text-align: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.25);
  margin-bottom: 30px;
}

.price-was {
  font-size: 1.2rem;
  color: #9CA3AF;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-now {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
  margin-bottom: 6px;
}

.price-currency-note {
  font-size: 0.95rem;
  color: #D1D5DB;
  font-weight: 500;
}

.pricing-secure-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: #9CA3AF;
}

.pricing-secure-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   10. GUARANTEE SECTION
   ========================================================================== */
.guarantee-section {
  background: #FFFFFF;
  border-bottom: 1px solid var(--parchment-border);
}

.guarantee-card {
  background: var(--parchment-cream);
  border: 2px solid var(--parchment-border);
  border-radius: var(--radius-xl);
  padding: 45px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-md);
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .guarantee-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 20px;
  }
}

.guarantee-seal-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.guarantee-seal-img {
  max-width: 190px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
}

.guarantee-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 14px;
}

.guarantee-desc {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.7;
}

/* ==========================================================================
   11. FAQ ACCORDION SECTION
   ========================================================================== */
.faq-section {
  background: var(--parchment-cream);
  border-bottom: 1px solid var(--parchment-border);
}

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

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--parchment-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--gold-primary);
}

.faq-item.active {
  border-color: var(--gold-primary);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}

.faq-question-btn {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown-deep);
  transition: color 0.2s ease;
}

.faq-question-btn:hover {
  color: var(--gold-dark);
}

.faq-icon-arrow {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.35s ease;
  stroke: var(--gold-primary);
  stroke-width: 2.5;
  fill: none;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 24px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 24px 22px 24px;
  transition: max-height 0.4s ease-in-out, padding 0.3s ease;
}

/* ==========================================================================
   12. FOOTER & COMPLIANCE
   ========================================================================== */
.site-footer {
  background: #0E0D12;
  color: #9CA3AF;
  padding: 50px 0 90px 0;
  font-size: 0.85rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: #6B7280;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   STICKY MOBILE CTA BAR
   ========================================================================== */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(212, 175, 55, 0.4);
  z-index: 999;
  transform: translateY(120%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
}

.sticky-cta-info {
  display: flex;
  flex-direction: column;
}

.sticky-cta-label {
  font-size: 0.72rem;
  color: #D1D5DB;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sticky-cta-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-light);
}

.sticky-cta-btn {
  background: linear-gradient(180deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  white-space: nowrap;
}

@media (min-width: 769px) {
  .sticky-mobile-cta {
    display: none !important;
  }
}
