/* Ultra-Premium, High-Conversion Variables */
:root {
  --blue-dark: #070B14; /* Midnight anchor */
  --blue: #0E1A34; /* Deep, persuasive navy */
  --blue-soft: #182846; /* Lighter navy for cards */
  --gold: #E5B25D; /* High-contrast converting gold */
  --gold-hover: #D09D46;
  --gold-bg: #FDF9F0; /* Cream background for warmth */
  --white: #FFFFFF;
  --bg-main: #F5F7FA;
  --text-dark: #1F2937;
  --text-light: #4B5563;
  --danger: #EF4444; /* Standard red for crosses */
  --success: #10B981; /* Standard green for checks */
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-main);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* Typography Mastery */
h1, h2, h3, h4, .badge, .pre-headline {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--white);
}

h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--blue-dark);
}

h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 12px; color: var(--blue); }
h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: var(--blue); }
p { margin-bottom: 16px; font-size: 1.1rem; color: var(--text-light); }
.text-center { text-align: center; }
.mt-5 { margin-top: 3rem; }
.btn-margin-top { margin-top: 2.5rem; }

/* Utilities Containers */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

/* Interactive Utilities */
.shadow-hover { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.shadow-hover:hover { transform: translateY(-4px); box-shadow: 0 20px 30px -5px rgba(0, 0, 0, 0.08); }

/* Badges & Pre-headlines */
.pre-headline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(229, 178, 93, 0.15);
  border: 1px solid rgba(229, 178, 93, 0.4);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background-color: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse { 0% { opacity: 0.5; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.2); } 100% { opacity: 0.5; transform: scale(0.8); } }

.badge {
  display: inline-block; padding: 8px 24px; border-radius: 40px;
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;
}
.badge-dark { background-color: var(--blue-soft); color: var(--gold); }
.badge-gold-solid { background-color: var(--gold); color: var(--blue-dark); }

/* Hyper-Converting CTAs */
.btn {
  display: inline-flex; justify-content: center; align-items: center;
  font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 800;
  text-decoration: none; border-radius: 50px; cursor: pointer; border: none;
  text-align: center; line-height: 1.2; text-transform: uppercase; letter-spacing: 0.5px;
  transition: all 0.3s ease; box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.btn-primary {
  background: linear-gradient(180deg, #FAD961 0%, #F76B1C 100%); /* Classic high conversion orange/gold gradient */
  background: var(--gold);
  color: var(--blue-dark);
  padding: 24px 40px;
}
.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(229, 178, 93, 0.4);
}
.btn-secondary { background: var(--gold); color: var(--blue-dark); padding: 22px 36px; }
.btn-large { font-size: 1.3rem; padding: 24px 48px; }
.btn-max { width: 100%; font-size: 1.4rem; padding: 26px 20px; white-space: normal; }

.guarantee-badge { margin-top: 14px; font-size: 0.95rem; color: #cbd5e1; font-weight: 500; font-family: 'Outfit', sans-serif;}

@keyframes pulseStrong { 
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(229, 178, 93, 0.7); } 
  70% { transform: scale(1.02); box-shadow: 0 0 0 25px rgba(229, 178, 93, 0); } 
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(229, 178, 93, 0); } 
}
.pulse-strong { animation: pulseStrong 2.2s infinite; }
.pulse-light { animation: pulseStrong 3s infinite; }

/* Sections Global */
section { padding: 90px 0; }
.section-header p { font-size: 1.15rem; color: var(--text-light); max-width: 650px; margin: 0 auto; }

/* HERO SECTION */
.hero {
  background: radial-gradient(circle at 70% 30%, var(--blue-soft) 0%, var(--blue-dark) 100%);
  color: var(--white); padding: 70px 0 80px 0; position: relative;
}
.hero .subtitle { font-size: clamp(1.1rem, 2vw, 1.25rem); color: #E2E8F0; margin-bottom: 24px; max-width: 650px; }
.hero .subtitle strong { color: var(--gold); font-weight: 700;}
.hero-container { display: flex; align-items: center; gap: 50px; }
.hero-text { flex: 1.1; }
.hero-image { flex: 1; display: flex; justify-content: center; }
.floating-mockup { max-width: 100%; height: auto; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.6)); }

/* Hero Trust Bullets */
.hero-bullets {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: #F8FAFC;
  font-weight: 500;
}
.h-check {
  color: var(--success);
  font-weight: 900;
  font-size: 1.2rem;
}

.hero-cta-box { margin-top: 10px; }
.guarantee-badge { margin-top: 14px; font-size: 0.95rem; color: #cbd5e1; font-weight: 500; font-family: 'Outfit', sans-serif;}
.p-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; margin-top: 4px;}
.p-text strong { display: block; color: var(--blue-dark); font-size: 1.2rem; margin-bottom: 8px; font-family: 'Outfit', sans-serif;}
.transition-text { font-size: 1.2rem; margin-top: 20px; font-style: italic;}

/* SOLUTION SECTION */
.solution-section { background-color: var(--gold-bg); }
.solution-container { display: flex; align-items: center; gap: 60px; }
.solution-image { flex: 1; }
.shadow-img { width: 100%; border-radius: var(--border-radius-lg); box-shadow: 0 40px 60px -15px rgba(0,0,0,0.2); }
.solution-text { flex: 1.2; }
.feature-bullets { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.feature { display: flex; align-items: flex-start; gap: 16px; background: var(--white); padding: 20px; border-radius: var(--border-radius); box-shadow: 0 4px 10px rgba(0,0,0,0.03);}
.f-check { color: var(--success); font-weight: 900; font-size: 1.5rem; line-height: 1; }
.feature p { margin-bottom: 0; font-size: 1.05rem; }
.feature p strong { color: var(--blue); }

/* BENEFITS / TRANSFORMATION SECTION */
.benefits-section { background: var(--white); }
.transformation-grid { margin-top: 40px; }
.t-card { background: var(--bg-main); padding: 30px; border-radius: var(--border-radius); display: flex; align-items: flex-start; gap: 20px; text-align: left; border: 1px solid rgba(0,0,0,0.03);}
.t-icon { font-size: 2.5rem; line-height: 1; }
.t-content h4 { margin-bottom: 8px; font-size: 1.15rem; }
.t-content p { margin-bottom: 0; font-size: 0.95rem; }

/* TESTIMONIALS (SOCIAL PROOF) SECTION */
.testimonials-section { background-color: var(--gold-bg); }
.testimonials-grid { display: grid; gap: 30px; margin-top: 40px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.testimonial-card {
  background: var(--white); padding: 40px 30px; border-radius: var(--border-radius-lg);
  border: 1px solid rgba(0,0,0,0.03); position: relative; text-align: left;
  display: flex; flex-direction: column; box-shadow: 0 10px 30px -5px rgba(0,0,0,0.04);
}
.t-quote {
  font-family: serif; font-size: 5rem; color: var(--gold);
  line-height: 0; position: absolute; top: 45px; left: 20px; opacity: 0.2;
}
.testimonial-card p { font-size: 1.05rem; font-style: italic; color: var(--text-light); margin-bottom: 20px; margin-top: 10px; position: relative; z-index: 1; flex-grow: 1; line-height: 1.6;}
.t-author { font-weight: 800; color: var(--blue-dark); font-size: 1rem; font-family: 'Outfit', sans-serif;}

/* BONUSES SECTION */
.bonuses-section { background-color: var(--white); }
.bonus-card {
  background: var(--bg-main); padding: 40px; border-radius: var(--border-radius-lg);
  border: 2px solid var(--gold); position: relative; display: flex; flex-direction: column;
}
.bonus-header {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--blue-dark); font-family: 'Outfit', sans-serif;
  font-weight: 800; padding: 6px 20px; border-radius: 20px; font-size: 0.95rem; letter-spacing: 1px;
}
.b-icon { font-size: 3.5rem; margin-bottom: 20px; text-align: center; }
.bonus-card h3 { text-align: center; min-height: 60px; }
.bonus-card p { flex-grow: 1; text-align: center; }
.b-value {
  margin-top: 20px; padding-top: 20px; border-top: 1px solid #E5E7EB;
  text-align: center; font-weight: 600; color: var(--blue); font-size: 1.1rem;
}
.b-value span { text-decoration: line-through; color: var(--danger); font-weight: 700; }

/* THE OFFER STACK (Maximum Conversion Architecture) */
.offer-section { background: linear-gradient(to bottom, #E2E8F0 0%, #CBD5E1 100%); padding: 80px 0; }
.offer-box {
  background: var(--white); border-radius: var(--border-radius-lg); overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(7, 11, 20, 0.3); border: 4px solid var(--gold);
}
.offer-timer { background: var(--bg-main); padding: 12px; font-weight: 600; font-size: 0.95rem; color: var(--blue); border-bottom: 1px solid #E5E7EB; }
.bundle-visual-large { padding: 40px 20px; background: linear-gradient(180deg, var(--white) 0%, var(--gold-bg) 100%); text-align: center; }
.bundle-visual-large img { max-width: 550px; width: 100%; display: inline-block; filter: drop-shadow(0 30px 50px rgba(0,0,0,0.15));}

.stack-list { padding: 40px 50px; background: var(--white); }
.wyg-title { text-align: center; font-size: 1.4rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 30px; text-transform: uppercase; letter-spacing: 1px;}
.stack-list ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.stack-list li { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px dashed #CBD5E1; padding-bottom: 12px; font-size: 1.15rem; font-weight: 500;}
.item-val { color: var(--success); font-weight: 700; font-family: 'Outfit', sans-serif;}
.total-line { margin-top: 10px; border-bottom: none !important; font-size: 1.3rem !important; font-weight: 800 !important; color: var(--text-dark); }
.item-val-strike { text-decoration: line-through; color: var(--danger); font-family: 'Outfit', sans-serif;}

.pricing-block { background: var(--blue-dark); padding: 50px; text-align: center; position: relative;}
.price-label { font-size: 1.2rem; color: var(--gold); font-weight: 800; letter-spacing: 2px; margin-bottom: 5px; }
.price-tag { font-size: 6.5rem; font-weight: 900; font-family: 'Outfit', sans-serif; line-height: 0.9; color: var(--white); margin-bottom: 30px;}
.payment-methods { margin-top: 20px; color: #9CA3AF; font-size: 0.95rem; }

/* GUARANTEE SECTION */
.guarantee-section { background: var(--white); padding: 70px 0; }
.guarantee-box { display: flex; align-items: center; gap: 40px; background: var(--gold-bg); padding: 50px; border-radius: var(--border-radius-lg); border: 2px dashed var(--gold); }
.g-icon { font-size: 6rem; line-height: 1; filter: drop-shadow(0 10px 10px rgba(229, 178, 93, 0.4)); }
.g-text h3 { font-size: 1.8rem; margin-bottom: 16px; }
.g-text p { margin-bottom: 0; font-size: 1.1rem; }

/* FAQ */
.faq-section { background-color: var(--bg-main); }
.faq-accordion { display: grid; gap: 16px; margin-top: 40px;}
.faq-item { background: var(--white); padding: 30px; border-radius: var(--border-radius); border: 1px solid #E2E8F0; }

/* CLOSING */
.closing-section { background: var(--blue-dark); color: var(--white); padding: 120px 0; }
.closing-section h2 { color: var(--gold); }
.closing-section p { color: #CBD5E1; font-size: 1.25rem; }

/* FOOTER */
footer { background: #03050A; color: #64748B; padding: 40px 0; font-size: 0.9rem; }
.disclaimer { font-size: 0.75rem; margin-top: 10px; }

/* --- MOBILE OPTIMIZATIONS (100% CONVERSION FOCUSED) --- */
@media (max-width: 768px) {
  section { padding: 60px 0; }
  
  .hero { padding: 50px 0 30px 0; text-align: center; }
  .pre-headline { font-size: 0.85rem; padding: 6px 16px; margin-bottom: 20px;}
  h1 { font-size: 2.2rem; }
  .hero-container, .solution-container { flex-direction: column; gap: 30px; }
  .hero-text { text-align: center; }
  .btn-primary { width: 100%; padding: 24px 20px; font-size: 1.3rem; }
  
  .pain-item { flex-direction: column; text-align: center; padding: 24px; }
  .p-icon { margin: 0 auto 10px auto; }
  
  .grid-2 { gap: 40px; }
  .feature { flex-direction: column; text-align: center; align-items: center; padding: 24px;}
  
  .offer-section { padding: 50px 0; }
  .offer-box { border-width: 3px; border-radius: 16px;}
  .stack-list { padding: 30px 24px; }
  .wyg-title { font-size: 1.2rem; }
  .stack-list li { flex-direction: column; text-align: center; gap: 8px; font-size: 1.1rem; padding: 12px 0;}
  .total-line { margin-top: 16px; }
  
  .pricing-block { padding: 40px 24px; }
  .price-label { font-size: 1rem; }
  .price-tag { font-size: 5rem; margin-bottom: 24px; }
  .btn-max { font-size: 1.25rem; padding: 24px 16px; }
  
  .guarantee-box { flex-direction: column; text-align: center; padding: 30px 20px; gap: 20px;}
  .g-text h3 { font-size: 1.5rem; }
  
  .offer-item { flex-direction: column; text-align: center; padding: 20px; gap: 12px; }
  .value-badge { align-self: center; margin-top: 10px; }

  .testimonials-grid { gap: 20px; }
  .testimonial-card { padding: 30px 24px; text-align: center; }
  .t-quote { top: 30px; left: 50%; transform: translateX(-50%); font-size: 4rem;}
}

/* --- ADDED: OFFER LIST ITEMS STYLING --- */
.offer-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  background: var(--white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.offer-item.main-book {
  background-color: var(--gold-bg);
  border: 2px solid var(--gold);
}

.offer-item.bonus-highlight {
  background-color: var(--bg-main);
  border: 1px solid #E5E7EB;
}

.item-icon-box { 
  font-size: 2.8rem; 
  flex-shrink: 0;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.item-image-box {
  width: 80px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-image-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.15));
}

.item-content { flex: 1; }

.offer-item h4 { margin-bottom: 6px; font-size: 1.25rem; font-weight: 700; color: var(--blue-dark);}
.offer-item p { margin-bottom: 0; font-size: 1.05rem; color: var(--text-light); line-height: 1.5;}

.value-badge {
  background: var(--gold);
  color: var(--blue-dark);
  font-size: 1rem;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(220, 165, 76, 0.3);
  font-family: 'Outfit', sans-serif;
}
