/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary-color: #721c24;
  --primary-dark: #4d1016;
  --primary-light: #a9323d;
  --primary-bg: #faf3f3;
  --accent-gold: #c59b27;
  --accent-gold-light: #e0b84c;
  --accent-gold-dark: #9c7816;
  --accent-green: #198754;
  --accent-green-light: #d1e7dd;
  
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --text-light: #f3f4f6;
  --bg-white: #ffffff;
  --bg-light: #faf7f5;
  --bg-cream: #fffdfb;
  
  --border-color: #e5e7eb;
  --border-wine: rgba(114, 28, 36, 0.15);
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container-max-width: 1140px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-dark);
}

p {
  margin-bottom: 1rem;
}

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

ul {
  list-style: none;
}

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

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

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

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

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

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  position: relative;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--accent-gold);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
  max-width: 450px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(114, 28, 36, 0.4);
}

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

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--bg-white);
}

.btn-gold:hover {
  background-color: var(--accent-gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(197, 155, 39, 0.4);
}

.btn-white {
  background-color: var(--bg-white);
  color: var(--primary-color);
}

.btn-white:hover {
  background-color: var(--bg-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}

/* Pulse animation for CTAs */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(114, 28, 36, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(114, 28, 36, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(114, 28, 36, 0);
  }
}

.btn-pulse {
  animation: pulse 2s infinite;
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2.5rem;
  text-align: center;
}

.cta-subtext {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-banner {
  background-color: var(--primary-color);
  color: var(--bg-white);
  text-align: center;
  padding: 0.6rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 100;
}

/* ==========================================================================
   HERO / HEADER SECTION
   ========================================================================== */
.hero {
  background: radial-gradient(circle at top, var(--primary-bg) 0%, var(--bg-white) 100%);
  padding: 4rem 0 5rem;
  text-align: center;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 900;
  max-width: 950px;
  margin: 0 auto 1.5rem;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.hero-title span.burgundy {
  color: var(--primary-color);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 2.5rem;
  font-weight: 500;
  line-height: 1.6;
}

.hero-benefits-wrapper {
  max-width: 900px;
  margin: 2rem auto;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.hero-benefits li i {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.hero-disclaimer {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 600px;
  line-height: 1.4;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}


/* ==========================================================================
   MOCKUP SLIDER (TABLET SIMULATOR)
   ========================================================================== */
.slider-container {
  position: relative;
  max-width: 380px;
  margin: 0 auto 3rem;
  background-color: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  border: 1px solid var(--border-color);
}

.slider-wrapper {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  aspect-ratio: 1 / 1.414; /* E-book layout standard ratio */
  background-color: #ffffff;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  background-color: #ffffff;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  color: var(--primary-color);
  z-index: 10;
}

.slider-arrow:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
  box-shadow: var(--shadow-lg);
}

.slider-arrow.prev {
  left: -20px;
}

.slider-arrow.next {
  right: -20px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  background-color: var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-dot.active {
  background-color: var(--primary-color);
  width: 24px;
  border-radius: 5px;
}

/* ==========================================================================
   STRATEGY SECTION ("O Poder Está na Estratégia")
   ========================================================================== */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.strategy-card {
  background-color: var(--bg-white);
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition-smooth);
}

.strategy-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border-wine);
}

.strategy-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-color);
  transition: var(--transition-smooth);
}

.strategy-card:hover .strategy-icon {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.strategy-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.strategy-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ==========================================================================
   WHAT YOU WILL APPLY SECTION ("O Que Você Vai Aplicar")
   ========================================================================== */
.apply-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.apply-card {
  background-color: var(--bg-white);
  padding: 1.75rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.apply-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-wine);
  box-shadow: var(--shadow-md);
  background-color: var(--bg-cream);
}

.apply-card svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

.apply-card span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
}

/* ==========================================================================
   WHAT YOU WILL RECEIVE SECTION ("O Que Você Vai Receber?")
   ========================================================================== */
.receive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.receive-card {
  background-color: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.receive-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary-color);
}

.receive-card.bonus::before {
  background-color: var(--accent-gold);
}

.receive-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.receive-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.receive-card.bonus .receive-icon {
  background-color: #fdf5e6;
  color: var(--accent-gold);
}

.receive-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.35;
}

.receive-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.pricing-info {
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
  margin-top: auto;
}

.val-badge {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.val-badge.crossed {
  text-decoration: line-through;
}

.free-badge {
  display: inline-block;
  background-color: var(--accent-green-light);
  color: var(--accent-green);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   WHO IS THIS PACK FOR SECTION ("Este PACK é para você:")
   ========================================================================== */
.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.target-card {
  background-color: var(--bg-white);
  padding: 2.25rem 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

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

.target-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
}

.target-card p {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.45;
}

/* ==========================================================================
   TESTIMONIALS SECTION ("Depoimentos de Quem Já Usa o PACK")
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

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

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  color: var(--accent-gold);
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-text::before {
  content: '“';
  font-family: var(--font-heading);
  font-size: 3rem;
  color: rgba(114, 28, 36, 0.1);
  position: absolute;
  top: -1.5rem;
  left: -0.75rem;
  line-height: 1;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.testimonial-author span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* ==========================================================================
   PRICING / CHECKOUT BLOCK ("GARANTA SEU ACESSO")
   ========================================================================== */
.checkout-card {
  background-color: var(--bg-white);
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--primary-color);
  max-width: 680px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.checkout-header {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 1.5rem;
  text-align: center;
}

.checkout-header h3 {
  color: var(--bg-white);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.checkout-header p {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.checkout-body {
  padding: 3rem 2rem 2.5rem;
}

.checkout-mockup {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.checkout-mockup img {
  max-height: 280px;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

.checkout-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.checkout-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.checkout-feature-item svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.checkout-feature-item svg.check {
  color: var(--accent-green);
}

.checkout-feature-item svg.bonus {
  color: var(--accent-gold);
}

.checkout-feature-item .val {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: line-through;
  margin-left: auto;
}

.checkout-pricing {
  text-align: center;
  margin-bottom: 2rem;
}

.price-original {
  font-size: 1.125rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.price-label {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.price-box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.price-currency {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-green);
  margin-top: 0.5rem;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: var(--accent-green);
  line-height: 1;
  letter-spacing: -2px;
}

.price-period {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   GUARANTEE BOX
   ========================================================================== */
.guarantee-box {
  max-width: 680px;
  margin: 3rem auto 0;
  background-color: var(--accent-green-light);
  border: 1px solid rgba(25, 135, 84, 0.2);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.guarantee-icon {
  width: 60px;
  height: 60px;
  background-color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.guarantee-content h3 {
  color: var(--accent-green);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.guarantee-content p {
  margin-bottom: 0;
  color: #1a4f32;
  font-size: 0.95rem;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-accordion {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--border-wine);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-icon-wrap {
  width: 30px;
  height: 30px;
  background-color: var(--primary-bg);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon-wrap {
  transform: rotate(180deg);
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.5rem;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ==========================================================================
   FOOTER CALL TO ACTION & FOOTER
   ========================================================================== */
.footer-cta {
  background-color: var(--primary-dark);
  color: var(--bg-white);
  text-align: center;
  padding: 5rem 0;
}

.footer-cta h2 {
  color: var(--bg-white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.footer-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.footer-cta .btn-white {
  font-weight: 900;
}

.site-footer {
  background-color: #111827;
  color: #9ca3af;
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer p {
  margin-bottom: 0.5rem;
}

.site-footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.site-footer-links a:hover {
  color: var(--bg-white);
}

/* ==========================================================================
   NEW COMPONENTS & PROBLEM SECTION
   ========================================================================== */
.problem-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.problem-intro-text {
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.problem-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.problem-item {
  background-color: var(--bg-white);
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.problem-item:hover {
  transform: translateY(-2px);
  border-color: var(--border-wine);
  box-shadow: var(--shadow-md);
}

.problem-item i {
  color: var(--primary-color);
}

.problem-item span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.problem-footer-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-top: 2rem;
}

.bonus-notice {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  .hero {
    padding: 3.5rem 0;
    text-align: center;
  }
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-benefits {
    align-items: center;
  }
  .hero-disclaimer {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-container {
    align-items: center !important;
  }
  .cta-subtext {
    justify-content: center !important;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  .section {
    padding: 3rem 0;
  }
  .hero-title {
    font-size: 1.85rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .slider-container {
    max-width: 290px; /* Resize slider on mobile */
    padding: 0.35rem;
    border-radius: 12px;
  }
  .slider-wrapper {
    border-radius: 8px;
  }
  .slider-arrow {
    display: flex; /* Keep arrows visible */
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
  .slider-arrow.prev {
    left: -15px;
  }
  .slider-arrow.next {
    right: -15px;
  }
  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .checkout-body {
    padding: 2rem 1.5rem;
  }
  .price-value {
    font-size: 4rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }
  .section-header h2 {
    font-size: 1.75rem;
  }
  .btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  .price-value {
    font-size: 3.5rem;
  }
}

/* ==========================================================================
   STATIC PREVIEW PAGES GRID (SECTION 6)
   ========================================================================== */
.preview-pages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
}

.preview-page-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  aspect-ratio: 1 / 1.414; /* A4 page ratio */
  transition: var(--transition-smooth);
}

.preview-page-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-wine);
}

.preview-page-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   PRICING GRID & CARDS
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 960px;
  margin: 3rem auto 0;
  padding: 0 1.5rem;
  align-items: stretch;
}

.checkout-card.premium.featured {
  border: 3px solid var(--accent-gold);
  transform: scale(1.02);
  z-index: 2;
}

@media (max-width: 768px) {
  .checkout-card.premium.featured {
    transform: scale(1);
  }
}

.featured-badge {
  background-color: var(--accent-gold);
  color: var(--bg-white);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  padding: 0.4rem 0;
  letter-spacing: 1px;
}

.checkout-feature-item .no-check {
  color: #9ca3af;
  font-size: 1.1rem;
}

/* ==========================================================================
   UPSELL MODAL POPUP
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--bg-white);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  max-width: 480px;
  width: 90%;
  padding: 2.5rem 1.75rem 2rem;
  position: relative;
  transform: scale(0.85);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
  border: 3px solid var(--accent-gold);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

.modal-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--primary-color);
  color: var(--bg-white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 10px rgba(114, 28, 36, 0.2);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.modal-comparison {
  background-color: var(--primary-bg);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  text-align: left;
  border: 1px dashed rgba(114, 28, 36, 0.2);
}

.comparison-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.comparison-row:last-child {
  margin-bottom: 0;
}

.comparison-row i {
  color: var(--accent-gold);
  font-size: 1rem;
}

.modal-pricing {
  margin-bottom: 1.75rem;
}

.modal-price-original {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 0.2rem;
}

.modal-price-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
}

.modal-price-currency {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
}

.modal-price-value {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
  letter-spacing: -1.5px;
}

.modal-price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.25rem;
}

.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  width: 100%;
}

.modal-btn-upgrade {
  width: 100%;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(197, 155, 39, 0.25);
  transition: var(--transition-smooth);
}

.modal-btn-upgrade:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(197, 155, 39, 0.35);
}

.modal-btn-decline {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-weight: 500;
  line-height: 1.4;
  margin-top: 0.25rem;
}

.modal-btn-decline:hover {
  color: var(--primary-color);
}

.modal-footer {
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

/* ==========================================================================
   MOBILE MODAL OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 480px) {
  .modal-content {
    padding: 2rem 1.25rem 1.5rem;
    border-width: 2px;
  }

  .modal-title {
    font-size: 1.35rem;
  }

  .modal-desc {
    font-size: 0.85rem;
  }

  .comparison-row {
    font-size: 0.82rem;
  }

  .modal-price-value {
    font-size: 3rem;
  }

  .modal-btn-upgrade {
    font-size: 0.9rem;
    padding: 0.95rem;
  }

  .modal-btn-decline {
    font-size: 0.8rem;
  }
}

