/* 
  =========================================
  MASTER LANDING PAGE SYSTEM - COPA 2026
  Clean, High-Contrast, Ultra-Performant CSS
  =========================================
*/

/* 1. CSS VARIABLES & SYSTEM THEME */
:root {
  /* Colors */
  --color-primary-green: #043e21;
  --color-secondary-green: #022c16;
  --color-accent-gold: #ffbe00;
  --color-accent-gold-hover: #e5ab00;
  --color-mint-light: #e1fbf2;
  --color-mint-text: #059669;
  --color-problem-light: #fff5f5;
  --color-problem-text: #dc2626;
  --color-dark-bg: #0f172a;
  --color-dark-card: #1e293b;
  --color-slate-gray: #64748b;
  --color-body-bg: #f8fafc;
  --color-white: #ffffff;
  
  /* Fonts */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Outfit", var(--font-sans);
  
  /* Layout */
  --container-max-width: 1140px;
  --container-sm-max-width: 720px;
  --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 16px rgba(10, 92, 54, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.12);
  --border-radius-pill: 50px;
  --border-radius-card: 16px;
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  background-color: var(--color-body-bg);
  color: var(--color-dark-bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

h1 {
  font-weight: 800;
}

p {
  color: #334155;
  margin-bottom: 1.2rem;
}

/* Containers */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container-sm {
  max-width: var(--container-sm-max-width);
}

.max-w-xl {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.max-w-sm {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* Utility Layout Classes */
.text-center { text-align: center; }
.text-white { color: var(--color-white) !important; }
.text-gray-300 { color: #cbd5e1 !important; }
.text-gray-500 { color: #64748b !important; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.font-outfit { font-family: var(--font-display); }
.color-mint { color: #10b981; }
.text-yellow { color: var(--color-accent-gold) !important; }
.accent-yellow { color: var(--color-accent-gold) !important; }
.mb-10 { margin-bottom: 2.5rem; }
.gap-4 { gap: 1rem; }

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

/* 3. BUTTONS & ACTIONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--border-radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-yellow {
  background-color: var(--color-accent-gold);
  color: var(--color-secondary-green);
}

.btn-yellow:hover {
  background-color: var(--color-accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(255, 190, 0, 0.35);
}

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

.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-dark-bg);
}

.btn-medium {
  padding: 12px 24px;
  font-size: 1rem;
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.15rem;
  max-width: 320px;
}

.btn-giant {
  padding: 18px 48px;
  font-size: 1.3rem;
  max-width: 440px;
}

/* Pulsating Animation for primary actions */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 190, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 190, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 190, 0, 0);
  }
}

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

/* 4. PILLED BADGES */
.badge-pill-container {
  margin-bottom: 1.25rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.825rem;
  border-radius: var(--border-radius-pill);
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
}

.gold-outline-pill {
  background-color: rgba(255, 190, 0, 0.15);
  color: var(--color-accent-gold);
  border: 2px solid var(--color-accent-gold);
}

.gold-outline-pill .badge-icon {
  margin-right: 6px;
  font-weight: 800;
  font-size: 0.95rem;
}

.mint-pill {
  background-color: var(--color-mint-light);
  color: var(--color-mint-text);
  border: 1px solid rgba(5, 150, 105, 0.15);
}

.yellow-pill {
  background-color: #ffd0003b;
  color: var(--color-accent-gold);
  border: 1px solid var(--color-accent-gold);
}

/* 5. SECTIONS AND COMPONENTS */

/* Alert Ribbon Header */
.alert-banner {
  background-color: #071A36;
  min-height: 32px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.alert-text {
  color: #ffffff;
  font-family: var(--font-sans), sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-bottom: 0;
  text-align: center;
}

.alert-highlight {
  color: #FFC107;
}

/* HERO SECTION */
.section-hero {
  background-color: var(--color-primary-green);
  color: var(--color-white);
  position: relative;
  padding-top: 50px;
  padding-bottom: 70px;
  overflow: hidden;
}

.hero-bg-accent {
  display: none;
}

.soccer-field-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.section-hero .container {
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.text-highlight {
  color: var(--color-accent-gold);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: #e2e8f0;
  max-width: 680px;
  margin: 0 auto 40px auto;
  line-height: 1.5;
}

/* Dynamic Image Placeholders & Hero Image */
.img-placeholder {
  background-color: var(--color-white);
  border: 3px dashed #cbd5e1;
  border-radius: var(--border-radius-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-slate-gray);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition-smooth);
  width: 100%;
}

.hero-image-placeholder-container {
  max-width: 780px;
  margin: 0 auto 50px auto;
  position: relative;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-lg);
  border: none;
  display: block;
  transition: var(--transition-smooth);
}

.hero-img:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.placeholder-caption-text {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-top: 25px;
  font-weight: 700;
}

/* Representing book spines in placeholder */
.book-spine-group {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
  width: 100%;
  max-width: 380px;
  height: 220px;
}

.book-cover {
  width: 70px;
  height: 100px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(-180deg);
  font-size: 0.725rem;
  font-weight: 800;
  color: var(--color-white);
  box-shadow: -4px 4px 8px rgba(0,0,0,0.5);
  transition: var(--transition-smooth);
}

.book-cover.item-matematica {
  background-color: #3b82f6;
  height: 180px;
}
.book-cover.item-portugues {
  background-color: #eab308;
  height: 200px;
}
.book-cover.item-artes {
  background-color: #a855f7;
  height: 215px;
}
.book-cover.item-geografia {
  background-color: #10b981;
  height: 190px;
}
.hero-action {
  margin-top: -30px;
  position: relative;
  z-index: 5;
}

.fullscreen-link-box {
  margin-top: 15px;
}

.caption-link {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: #94a3b8;
  font-weight: 700;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 680px;
  margin: 50px auto 40px auto;
}

@media (min-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius-card);
  padding: 15px 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.stat-number {
  font-size: 2rem;
  line-height: 1.1;
  color: var(--color-accent-gold);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 0;
  font-weight: 600;
}

/* Horizontal trust anchors */
.trust-pill-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 30px auto 0 auto;
}

.trust-pill {
  background-color: var(--color-secondary-green);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  border-radius: var(--border-radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
}

.pill-icon {
  margin-right: 8px;
  color: var(--color-accent-gold);
  font-size: 0.9rem;
}


/* PAIN POINTS SECTION */
.section-pain-points {
  background-color: var(--color-white);
  padding: 55px 0;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-top: 10px;
  margin-bottom: 15px;
  color: var(--color-dark-bg);
}

.section-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #475569;
  max-width: 700px;
  margin: 0 auto 35px auto;
}

.problem-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

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

.problem-item {
  background: linear-gradient(135deg, #fff5f5 0%, #fffcfd 100%);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-left: 4px solid #ef4444;
  border-radius: var(--border-radius-card);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.02);
  cursor: pointer;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}

.problem-item:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 68, 68, 0.3);
  border-left-color: #dc2626;
  box-shadow: 0 12px 28px -5px rgba(220, 38, 38, 0.08), 0 8px 12px -6px rgba(220, 38, 38, 0.04);
}

.problem-item.active {
  align-items: flex-start;
  background: linear-gradient(135deg, #fff2f2 0%, #ffffff 100%);
  border-color: rgba(239, 68, 68, 0.25);
  box-shadow: 0 10px 24px -5px rgba(220, 38, 38, 0.06);
}

.problem-icon {
  background-color: rgba(239, 68, 68, 0.08);
  color: #ef4444;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.problem-icon svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.problem-item:hover .problem-icon {
  background-color: rgba(239, 68, 68, 0.15);
  color: #dc2626;
  transform: scale(1.08);
}

.problem-item.active .problem-icon {
  align-self: flex-start;
  background-color: rgba(239, 68, 68, 0.12);
  color: #dc2626;
  transform: scale(1);
}

.problem-item:hover .problem-icon svg {
  transform: rotate(90deg);
}

.problem-content {
  flex: 1;
}

.problem-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 750;
  color: #0f172a;
  margin-bottom: 0;
  letter-spacing: -0.015em;
  line-height: 1.3;
  transition: margin-bottom 0.3s ease;
}

.problem-item.active .problem-title {
  margin-bottom: 6px;
}

.problem-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #475569;
  margin-bottom: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.problem-item.active .problem-text {
  max-height: 150px;
  opacity: 1;
}

.problem-toggle-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  min-width: 24px;
  height: 24px;
  align-self: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.problem-toggle-arrow svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.problem-item:hover .problem-toggle-arrow {
  color: #ef4444;
}

.problem-item.active .problem-toggle-arrow {
  align-self: flex-start;
  color: #ef4444;
}

.problem-item.active .problem-toggle-arrow svg {
  transform: rotate(180deg);
}


/* TRANSITION CTA BOX */
.section-solution-cta {
  background-color: var(--color-secondary-green);
  color: var(--color-white);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10, 92, 54, 0.3) 0%, rgba(6, 64, 36, 0.8) 100%);
  pointer-events: none;
}

.section-solution-cta .container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  max-width: 800px;
  margin: 0 auto 20px auto;
  line-height: 1.3;
}

.cta-subtitle {
  color: #cbd5e1;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px auto;
}


/* SUBJECTS TIMELINE & TABBING */
.section-subjects {
  background-color: var(--color-body-bg);
  padding: 85px 0;
}

/* PREMIUM STREAMING VITRINE FOR SUBJECTS */
.vitrine-container {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Vitrine Cover Selector Bar */
.vitrine-selector-container {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 10px 4px;
}

/* Hide scrollbars but keep touch scrollability */
.vitrine-selector-container::-webkit-scrollbar {
  display: none;
}
.vitrine-selector-container {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.vitrine-selector-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

@media (min-width: 768px) {
  .vitrine-selector-track {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    width: 100%;
    gap: 16px;
  }
}

.vitrine-selector-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  width: 85px;
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
}

@media (min-width: 768px) {
  .vitrine-selector-card {
    width: 100%;
  }
}

.vitrine-cover-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f1f5f9;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.vitrine-card-title {
  font-family: var(--font-sans);
  font-size: 0.775rem;
  font-weight: 750;
  color: #334155;
  margin-top: 8px;
  transition: color 0.3s ease;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

@media (min-width: 768px) {
  .vitrine-card-title {
    font-size: 0.875rem;
  }
}

.vitrine-card-count {
  font-size: 0.65rem;
  font-weight: 600;
  color: #64748b;
  margin-top: 1px;
}

@media (min-width: 768px) {
  .vitrine-card-count {
    font-size: 0.75rem;
  }
}

/* Hover and Active states */
.vitrine-selector-card:hover:not(.active) .vitrine-cover-wrapper {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: #94a3b8;
}

.vitrine-selector-card.active .vitrine-cover-wrapper {
  transform: scale(1.06) translateY(-4px);
  border-color: var(--color-primary-green);
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.25), 0 0 0 2.5px var(--color-primary-green);
}

.vitrine-selector-card.active .vitrine-card-title {
  color: var(--color-primary-green);
}

/* Interactive Display Panel */
.vitrine-display-panel {
  background-color: var(--color-white);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px 16px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.01);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

@media (min-width: 768px) {
  .vitrine-display-panel {
    border-radius: 24px;
    padding: 35px;
  }
}

.vitrine-display-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  align-items: center;
}

@media (min-width: 768px) {
  .vitrine-display-grid {
    grid-template-columns: 220px 1fr;
    gap: 35px;
  }
}

@media (min-width: 992px) {
  .vitrine-display-grid {
    grid-template-columns: 260px 1fr;
    gap: 45px;
  }
}

.vitrine-display-cover {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vitrine-book-3d-wrapper {
  position: relative;
  width: 100%;
  max-width: 180px;
  aspect-ratio: 3 / 4;
  border-radius: 4px 12px 12px 4px;
  box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.12), -4px 4px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
}

@media (min-width: 768px) {
  .vitrine-book-3d-wrapper {
    max-width: 240px;
    box-shadow: 18px 18px 36px rgba(0, 0, 0, 0.15), -6px 6px 12px rgba(0, 0, 0, 0.05);
  }
}

.vitrine-book-3d-wrapper:hover {
  transform: rotateY(-8deg) rotateX(2deg) scale(1.02);
}

.vitrine-display-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px 11px 11px 3px;
  display: block;
}

.vitrine-book-spine {
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.2) 0%, rgba(255,255,255,0.15) 50%, rgba(0,0,0,0.25) 100%);
  border-radius: 3px 0 0 3px;
  pointer-events: none;
}

.vitrine-display-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.vitrine-display-badge-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.vitrine-badge-primary {
  background-color: var(--color-mint-light);
  color: var(--color-mint-text);
  font-size: 0.725rem;
  font-weight: 750;
  padding: 5px 12px;
  border-radius: var(--border-radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.vitrine-badge-secondary {
  background-color: #f1f5f9;
  color: #475569;
  font-size: 0.725rem;
  font-weight: 750;
  padding: 5px 12px;
  border-radius: var(--border-radius-pill);
  letter-spacing: 0.02em;
}

.vitrine-display-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .vitrine-display-title {
    font-size: 1.85rem;
    margin-bottom: 22px;
  }
}

.vitrine-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

@media (min-width: 768px) {
  .vitrine-bullet-list {
    gap: 12px;
  }
}

.vitrine-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.vitrine-bullet-icon {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--color-primary-green);
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

@media (min-width: 768px) {
  .vitrine-bullet-icon {
    min-width: 22px;
    max-width: 22px;
    height: 22px;
    margin-top: 2px;
  }
}

.vitrine-bullet-icon svg {
  width: 10px;
  height: 10px;
}

@media (min-width: 768px) {
  .vitrine-bullet-icon svg {
    width: 11px;
    height: 11px;
  }
}

.vitrine-bullet-text {
  font-size: 0.825rem;
  line-height: 1.4;
  color: #334155;
  font-weight: 600;
}

@media (min-width: 768px) {
  .vitrine-bullet-text {
    font-size: 0.95rem;
    line-height: 1.45;
  }
}


/* PREMIUM BONUSES GRID */
.section-bonuses {
  background-color: var(--color-dark-bg);
  padding: 85px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle background glowing orb */
.section-bonuses::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.section-bonuses .container {
  position: relative;
  z-index: 2;
}

/* PREMIUM BONUSES CAROUSEL */
.bonus-carousel-container {
  position: relative;
  width: 100%;
  max-width: 440px; /* Perfect width for premium looking card content, not stretched or squished */
  margin: 30px auto 10px auto;
  padding: 0 15px;
}

.bonus-carousel-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
  padding: 10px 0; /* padding to allow card hover shadows */
}

.bonus-carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.bonus-carousel-track .premium-bonus-card {
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
  transform: none !important; /* Disable translateY hover transform inside viewport to prevent overflow clip */
}

.bonus-carousel-track .premium-bonus-card:hover {
  background-color: rgba(30, 41, 59, 0.6);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(16, 185, 129, 0.15);
}

.bonus-carousel-track .super-bonus-card:hover {
  border-color: rgba(251, 191, 36, 0.7);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.15), 0 0 20px rgba(251, 191, 36, 0.1);
}

/* Indicators */
.bonus-carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  margin-bottom: 40px;
}

.bonus-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bonus-dot.active {
  width: 24px;
  border-radius: 4px;
  background-color: var(--color-primary-green);
}

/* Minimalist swipe hint with animated arrow */
.bonus-swipe-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.825rem;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 5px;
  letter-spacing: 0.01em;
  opacity: 0.85;
}

.swipe-arrow-animated {
  color: var(--color-primary-green);
  font-size: 0.95rem;
  display: inline-block;
  font-weight: bold;
  animation: swipeArrowAnimation 1.5s infinite ease-in-out;
}

@keyframes swipeArrowAnimation {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.6;
  }
  50% {
    transform: translateX(6px);
    opacity: 1;
  }
}

.premium-bonus-card {
  background-color: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
}

.premium-bonus-card:hover {
  transform: translateY(-6px);
  background-color: rgba(30, 41, 59, 0.6);
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25), 0 0 15px rgba(16, 185, 129, 0.1);
}

/* Real-looking physical booklet cover wrapper */
.bonus-image-wrapper {
  position: relative;
  width: 100%;
  height: 190px;
  background-color: rgba(15, 23, 42, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.bonus-cover-perspective {
  perspective: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.bonus-real-img {
  max-height: 140px;
  max-width: 105px;
  object-fit: cover;
  border-radius: 4px 8px 8px 4px;
  box-shadow: 6px 10px 20px rgba(0, 0, 0, 0.35), -2px 2px 5px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
  transform: rotateY(-6deg) rotateX(2deg);
}

.premium-bonus-card:hover .bonus-real-img {
  transform: rotateY(0deg) rotateX(0deg) scale(1.06);
}

.bonus-free-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--color-primary-green);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--border-radius-pill);
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.bonus-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bonus-tag {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--color-mint-light);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.bonus-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 750;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 1.25;
}

.bonus-card-desc {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #94a3b8;
  margin-bottom: 16px;
}

.bonus-bullets-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bonus-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.775rem;
  color: #cbd5e1;
  font-weight: 550;
  line-height: 1.35;
}

.bonus-bullet-icon {
  color: var(--color-primary-green);
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1;
  margin-top: 1px;
}

.bonus-pricing-row {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bonus-price-original {
  font-family: var(--font-mono);
  font-size: 0.725rem;
  color: #64748b;
  text-decoration: line-through;
}

.bonus-price-free {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 850;
  color: var(--color-mint-light);
}

/* HIGHLIGHTED SUPER BONUS CARD */
.super-bonus-card {
  background-color: rgba(251, 191, 36, 0.03);
  border: 2px solid rgba(251, 191, 36, 0.3);
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.06);
}

.super-bonus-card:hover {
  background-color: rgba(251, 191, 36, 0.05);
  border-color: rgba(251, 191, 36, 0.6);
  box-shadow: 0 15px 35px rgba(251, 191, 36, 0.12), 0 0 20px rgba(251, 191, 36, 0.08);
}

.super-bonus-card .bonus-image-wrapper {
  background-color: rgba(251, 191, 36, 0.05);
}

.super-bonus-card .bonus-free-tag {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: #1e1b4b;
  box-shadow: 0 4px 10px rgba(251, 191, 36, 0.4);
}

.super-bonus-card .bonus-tag {
  color: #fbbf24;
}

.super-bonus-card .bonus-bullet-icon {
  color: #fbbf24;
}

.super-bonus-card .bonus-price-free {
  color: #fbbf24;
  font-size: 0.95rem;
}

/* TOTAL VALUE SUMMARY BLOCK (High Converting Area at the End) */
.bonus-summary-box {
  margin-top: 55px;
  background-color: rgba(15, 23, 42, 0.65);
  border: 2px dashed rgba(16, 185, 129, 0.35);
  border-radius: 24px;
  padding: 24px 16px;
  box-shadow: 0 15px 40px -10px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .bonus-summary-box {
    padding: 40px;
  }
}

.summary-badge-row {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.summary-badge {
  background-color: var(--color-primary-green);
  color: var(--color-white);
  font-size: 0.725rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--border-radius-pill);
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.summary-box-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .summary-box-title {
    font-size: 1.5rem;
  }
}

.summary-checklist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 850px) {
  .summary-checklist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-icon {
  font-size: 1rem;
  min-width: 20px;
}

.summary-text-wrap {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.summary-text-wrap strong {
  color: var(--color-white);
  font-size: 0.825rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .summary-text-wrap strong {
    font-size: 0.95rem;
  }
}

.summary-text-wrap span {
  color: #64748b;
  font-size: 0.725rem;
  margin-top: 1px;
}

@media (min-width: 768px) {
  .summary-text-wrap span {
    font-size: 0.775rem;
  }
}

.summary-val-crossed {
  font-family: var(--font-mono);
  font-size: 0.725rem;
  color: #64748b;
  text-decoration: line-through;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .summary-val-crossed {
    font-size: 0.8rem;
  }
}

.highlight-item {
  background-color: rgba(251, 191, 36, 0.04);
  padding: 8px 12px;
  border-radius: 12px;
  border-bottom: none !important;
}

.summary-total-item {
  background-color: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 12px 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.summary-total-val {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.summary-total-val .crossed {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #64748b;
  text-decoration: line-through;
}

.summary-total-val .highlight-price {
  font-size: 1rem;
  font-weight: 900;
  color: var(--color-mint-light);
}

@media (min-width: 768px) {
  .summary-total-val .highlight-price {
    font-size: 1.15rem;
  }
}

.summary-footer-note {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #94a3b8;
}

@media (min-width: 768px) {
  .summary-footer-note {
    font-size: 0.9rem;
  }
}



/* SOCIAL PROOF / REVIEWS */
.section-social-proof {
  background-color: var(--color-white);
  padding: 85px 0;
}

.reviews-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.review-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 5px solid #cbd5e1;
  border-radius: var(--border-radius-card);
  padding: 25px;
  transition: var(--transition-smooth);
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.border-mint {
  border-left: 5px solid var(--color-mint-text) !important;
}

.star-rating {
  font-size: 1.1rem;
  color: var(--color-accent-gold);
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.95rem;
  font-style: italic;
  color: #334155;
  margin-bottom: 20px;
  line-height: 1.5;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--color-mint-light);
  color: var(--color-mint-text);
  font-weight: 700;
  font-size: 1.1rem;
  border: 1px solid rgba(5, 150, 105, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.bg-crimson { background-color: #ff2a5f !important; }
.bg-blue { background-color: #3b82f6 !important; }

.author-name {
  font-family: var(--font-sans);
  font-size: 0.925rem;
  font-weight: 700;
  color: #1e293b;
}

.author-sub {
  font-size: 0.75rem;
  margin-bottom: 0;
}


/* ACTIVITY PREVIEWS (OLHA SÓ POR DENTRE) */
.section-previews {
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 85px 0;
}

.line-highlight-heading {
  margin-bottom: 10px;
}

.line-under {
  background: linear-gradient(120deg, var(--color-accent-gold) 0%, var(--color-accent-gold) 100%);
  background-repeat: no-repeat;
  background-size: 100% 30%;
  background-position: 0 88%;
}

.previews-title-highlight {
  color: var(--color-dark-bg);
  position: relative;
  display: inline-block;
  z-index: 1;
}

.previews-title-highlight::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: 2px;
  height: 40%;
  background-color: var(--color-accent-gold);
  z-index: -1;
  opacity: 0.95;
  border-radius: 4px;
}

/* PREMIUM ACTIVITY SHOWCASE */
.showcase-carousel-outer {
  position: relative;
  width: 100%;
  max-width: 460px; /* beautiful premium centered narrow width */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.showcase-carousel-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 24px;
  padding: 10px 0;
}

.showcase-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.preview-card-simple {
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: var(--color-white);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preview-simple-img {
  width: 100%;
  height: 540px;
  object-fit: contain;
  border-radius: 16px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 480px) {
  .preview-simple-img {
    height: 440px; /* optimized high-impact height for mobile viewport */
  }
}

.preview-card-simple:hover .preview-simple-img {
  transform: scale(1.02);
}

/* Indicators */
.showcase-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  min-height: 8px;
}

.showcase-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(148, 163, 184, 0.3);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-dot.active {
  width: 24px;
  border-radius: 4px;
  background-color: var(--color-primary-green);
}

/* Total activities note */
.showcase-total-activities-note {
  font-size: 0.95rem;
  color: #475569;
  margin-top: 25px;
  margin-bottom: 15px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  opacity: 0.95;
}

/* Trust block below preview */
.preview-trust-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 16px;
  border-radius: 20px;
}

@media (max-width: 480px) {
  .preview-trust-block {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(16, 185, 129, 0.12);
  color: var(--color-primary-green);
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}

.trust-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
}

/* PREMIUM LIGHTBOX OVERLAY */
.showcase-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.showcase-lightbox.active {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-lightbox.active .lightbox-overlay {
  opacity: 1;
}

.lightbox-content-wrapper {
  position: relative;
  z-index: 10000;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: scale(0.92);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-lightbox.active .lightbox-content-wrapper {
  opacity: 1;
  transform: scale(1);
}

.lightbox-image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  background-color: var(--color-white);
  padding: 10px;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  padding: 8px;
  transition: transform 0.3s ease;
}

.lightbox-close:hover {
  transform: scale(1.15) rotate(90deg);
  color: var(--color-accent-gold);
}

.lightbox-image-caption {
  margin-top: 15px;
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}


/* PRICING PLANS COMPACT TABLE */
.section-pricing {
  background-color: var(--color-primary-green);
  color: var(--color-white);
  padding: 85px 0;
  position: relative;
  overflow: hidden;
}

.pricing-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10, 92, 54, 0.4) 0%, rgba(6, 64, 36, 1) 100%);
  pointer-events: none;
}

.section-pricing .container {
  position: relative;
  z-index: 2;
}

.pricing-premium-wrapper {
  max-width: 530px;
  margin: 30px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 15px;
  position: relative;
}

/* PREMIUM CARD (MAIN PLAN) */
.premium-card {
  background-color: var(--color-white);
  color: var(--color-dark-bg);
  border: 4px solid var(--color-accent-gold);
  border-radius: 28px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4), 0 0 40px rgba(234, 179, 8, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
}

.premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.45), 0 0 50px rgba(234, 179, 8, 0.25);
}

.premium-badge {
  background-color: #fef08a;
  color: #854d0e;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 12px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(234, 179, 8, 0.2);
}

.premium-title {
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: 0.03em;
  color: var(--color-primary-green);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.premium-savings-badge {
  background-color: #fee2e2;
  color: #dc2626;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 12px;
  text-transform: uppercase;
  box-shadow: 0 1px 4px rgba(220, 38, 38, 0.1);
}

.premium-price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.premium-original-price {
  font-size: 0.775rem;
  color: #94a3b8;
  text-decoration: line-through;
  margin-bottom: 2px;
  font-weight: 500;
}

.premium-price {
  display: inline-flex;
  align-items: flex-start;
  font-weight: 900;
  line-height: 1;
  color: #0f172a;
}

.premium-price .currency {
  font-size: 1.1rem;
  margin-top: 5px;
  margin-right: 3px;
}

.premium-price .value {
  font-size: 3rem;
  letter-spacing: -1.2px;
}

.premium-price .cents {
  font-size: 1.1rem;
  margin-top: 5px;
}

/* PREMIUM CLEAN FEATURES */
.premium-clean-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  width: 100%;
}

.clean-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  text-align: left;
  transition: all 0.25s ease;
  width: 100%;
}

.clean-feature-item:hover {
  background-color: #f1f5f9;
  border-color: #e2e8f0;
  transform: scale(1.01) translateY(-1px);
}

.premium-check-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #10b981;
  color: white;
  font-size: 0.75rem;
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
}

.feature-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.feature-highlight {
  font-size: 0.875rem;
  font-weight: 750;
  color: #0f172a;
}

.feature-subtext {
  font-size: 0.775rem;
  color: #64748b;
  margin-top: 1px;
}

/* CTA BUTTON */
.btn-premium-cta {
  width: 100%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: var(--color-white);
  border: none;
  border-radius: 16px;
  padding: 16px 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.btn-premium-cta:hover {
  transform: scale(1.02);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 12px 25px rgba(16, 185, 129, 0.4);
}

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

/* CONNECTING UPGRADE CLEAN TEXT */
.upgrade-clean-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fef08a;
  text-align: center;
  margin: 24px auto;
  max-width: 90%;
  line-height: 1.4;
}

/* DISCREET BASIC PLAN CARD */
.basic-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.basic-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}

.basic-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  color: #94a3b8;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.basic-price-box {
  display: flex;
  align-items: flex-start;
  font-weight: 900;
  line-height: 1;
  color: #f1f5f9;
  margin-bottom: 12px;
}

.basic-currency {
  font-size: 0.9rem;
  margin-top: 4px;
  margin-right: 2px;
}

.basic-value {
  font-size: 2.25rem;
}

.basic-cents {
  font-size: 0.9rem;
  margin-top: 4px;
}

.basic-clean-features {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.basic-clean-feature-item {
  font-size: 0.825rem;
  font-weight: 600;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.basic-check-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background-color: rgba(16, 185, 129, 0.15);
  color: #10b981;
  font-size: 0.7rem;
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
}

.basic-cross-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background-color: rgba(239, 68, 68, 0.15);
  color: #f87171;
  font-size: 0.7rem;
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
}

.cross-feature {
  color: #f87171;
  opacity: 0.85;
}

.btn-basic-cta {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  padding: 10px 16px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.775rem;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-basic-cta:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.25);
}


/* GUARANTEE TRUST BLOCK */
.section-guarantee {
  background-color: var(--color-white);
  border-bottom: 1px solid #e2e8f0;
  padding: 70px 0;
}

.guarantee-circle-badge {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 4px solid var(--color-accent-gold);
  background-color: var(--color-primary-green);
  color: var(--color-white);
  flex-direction: column;
  margin: 0 auto 25px auto;
  box-shadow: var(--shadow-sm);
  animation: float 4s ease-in-out infinite;
}

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

.guarantee-circle-badge .g-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-accent-gold);
}

.guarantee-circle-badge .g-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-top: -2px;
}


/* FREQUENT ACCORDIONS - FAQ */
.section-faq {
  background-color: #ffffff;
  padding: 45px 0;
}

.faq-accordion-group {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: #d1d5db;
  box-shadow: none;
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.faq-question-lead {
  font-family: var(--font-sans);
  font-size: 0.925rem;
  font-weight: 600;
  color: #1f2937;
}

.faq-chevron {
  font-size: 0.7rem;
  color: #9ca3af;
  transition: transform 0.2s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: #ffffff;
  border-top: 1px solid #f3f4f6;
}

.faq-answer-text {
  padding: 12px 18px 18px 18px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 0;
}


/* FOOTER FINAL URGENCY CALL */
.section-footer-cta {
  background-color: var(--color-secondary-green);
  color: var(--color-white);
  padding: 80px 0;
  overflow: hidden;
}

.footer-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  color: var(--color-accent-gold);
  margin-bottom: 20px;
}

.footer-cta-text {
  color: #cbd5e1;
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 35px auto;
}

.footer-security-seals {
  margin-top: 35px;
}

.seal {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: var(--border-radius-pill);
}


/* FINAL COMPACT FOOTER */
.main-footer {
  background-color: rgba(15, 23, 42, 1);
  color: #94a3b8;
  padding: 40px 0 110px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-bottom: 8px;
}

.disclaimer-text {
  font-size: 0.7rem;
  color: #64748b;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}


/* 6. PERSISTENT FLOATING BOTTOM CONVERSION BAR */
.floating-persistent-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #071A36;
  box-shadow: 0 -8px 24px rgba(7, 26, 54, 0.12), 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 14px 24px;
  z-index: 999;
  
  /* Scroll-reveal behavior */
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-persistent-bar.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto;
  gap: 16px;
}

.floating-left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  line-height: 1.2;
}

.floating-left-content .float-price {
  font-family: var(--font-display), var(--font-sans), sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.floating-left-content .float-sub {
  font-size: 0.725rem;
  color: #94a3b8;
  font-weight: 500;
  margin-top: 2px;
}

.float-divider {
  width: 1px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.15);
  align-self: center;
}

.btn-floating-cta {
  background-color: #FFC107;
  color: #071A36;
  font-family: var(--font-sans), sans-serif;
  font-weight: 750;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  padding: 0 24px;
  height: 48px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.1s ease;
  flex-grow: 1;
  max-width: 280px;
  text-transform: uppercase;
}

.btn-floating-cta:hover {
  background-color: #ffca2c;
}

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

/* Response Breakpoints Adjustments */
@media (max-width: 480px) {
  .sidebar-pill {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  .floating-persistent-bar {
    padding: 12px 16px !important;
  }
  .floating-cta-container {
    gap: 12px !important;
  }
  .floating-left-content .float-price {
    font-size: 1.2rem !important;
  }
  .floating-left-content .float-sub {
    font-size: 0.65rem !important;
  }
  .float-divider {
    height: 24px !important;
  }
  .btn-floating-cta {
    height: 46px !important;
    font-size: 0.8rem !important;
    padding: 0 16px !important;
    max-width: 190px !important;
  }
}

/* =========================================
   ADDITIONAL INTERACTION STYLES
   ========================================= */

/* FAQ Accordion Active States */
.faq-item.active {
  border-color: #cbd5e1;
  box-shadow: none;
}

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

/* Tab details animation */
@keyframes fadeInSubject {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-subject {
  animation: fadeInSubject 0.35s ease forwards;
}

/* Lightbox/Zoom Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(5px);
}

.lightbox-container {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.lightbox-modal.active .lightbox-container {
  transform: scale(1);
  opacity: 1;
}

.lightbox-close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-smooth);
}

.lightbox-close-btn:hover {
  color: var(--color-accent-gold);
  transform: scale(1.1);
}

.lightbox-image {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-lg);
}

.lightbox-caption {
  color: var(--color-white);
  margin-top: 15px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
}

/* =========================================
   CHECKOUT SIMULATOR STYLES
   ========================================= */
.checkout-container {
  position: relative;
  width: 90%;
  max-width: 480px;
  z-index: 1001;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.lightbox-modal.active .checkout-container {
  transform: scale(1);
  opacity: 1;
}

.checkout-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  z-index: 10;
  transition: var(--transition-smooth);
}

.checkout-close-btn:hover {
  color: #475569;
}

.checkout-card {
  background-color: var(--color-white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  color: var(--color-dark-bg);
}

.checkout-header {
  background-color: var(--color-primary-green);
  color: var(--color-white);
  padding: 30px 20px;
  text-align: center;
}

.checkout-logo {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 8px;
}

.checkout-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.checkout-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.checkout-body {
  padding: 25px;
}

.checkout-product-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f1f5f9;
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 20px;
  font-weight: 700;
}

.product-name {
  color: var(--color-secondary-green);
  font-size: 0.95rem;
}

.product-price {
  color: #0f172a;
  font-size: 1.15rem;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.825rem;
  font-weight: 700;
  color: #475569;
  text-align: left;
}

.form-input {
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.95rem;
  outline: none;
  background-color: var(--color-white);
  color: #0f172a;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--color-primary-green);
  box-shadow: 0 0 0 3px rgba(10, 92, 54, 0.15);
}

.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 5px 0;
}

.payment-method {
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

.payment-method.active {
  border-color: var(--color-primary-green);
  background-color: rgba(10, 92, 54, 0.03);
}

.payment-icon {
  font-size: 1.35rem;
}

.payment-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
}

.pix-instructions {
  background-color: #fafbfc;
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  font-size: 0.8rem;
  color: #475569;
}

.simulated-qr {
  width: 140px;
  height: 140px;
  background-color: #e2e8f0;
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-sm);
  margin: 10px auto;
  font-size: 0.65rem;
  font-weight: 800;
  color: #475569;
  border-radius: 8px;
}

.card-inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row .half {
  width: 50%;
}

.checkout-submit-btn {
  margin-top: 10px;
  width: 100%;
}

.checkout-success-body {
  text-align: center;
  padding: 35px 25px;
}

.success-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 15px;
  animation: popSuccess 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popSuccess {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.success-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-secondary-green);
  margin-bottom: 10px;
}

.success-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* =========================================
   MOBILE OPTIMIZATION & RE-DESIGN (max-width: 767px)
   ========================================= */
@media (max-width: 767px) {
  /* Headings & Typography - prevents awkward wraps and keeps phrases together */
  h1, .hero-title {
    font-size: 1.75rem !important;
    line-height: 1.2 !important;
    margin-bottom: 14px !important;
    letter-spacing: -0.02em !important;
  }
  
  h2, .section-title {
    font-size: 1.4rem !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
    letter-spacing: -0.01em !important;
  }
  
  h2.section-title br {
    display: none !important;
  }
  
  .hero-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.45 !important;
    margin-bottom: 20px !important;
    padding: 0 8px;
  }
  
  .section-description {
    font-size: 0.85rem !important;
    line-height: 1.45 !important;
    margin-bottom: 15px !important;
  }

  /* Buttons Resizing (Sleek, Proportional, Easy to Tap) */
  .btn-giant {
    padding: 12px 24px !important;
    font-size: 0.95rem !important;
    max-width: 100% !important;
    border-radius: 50px !important;
  }

  .btn-large {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
    max-width: 100% !important;
    border-radius: 50px !important;
  }

  .btn-medium {
    padding: 10px 18px !important;
    font-size: 0.85rem !important;
    border-radius: 50px !important;
  }
  
  /* Horizontal Scroll Navigation for Materials Sidebar Indicators (hiding scrollbars) */
  .materials-sidebar-indicators {
    padding-bottom: 8px !important;
    margin-bottom: 15px !important;
    gap: 6px !important;
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important;  /* IE 10+ */
  }
  
  .materials-sidebar-indicators::-webkit-scrollbar {
    display: none !important; /* Safari and Chrome */
  }
  
  .sidebar-pill {
    padding: 8px 12px !important;
    font-size: 0.75rem !important;
    border-radius: 50px !important;
    gap: 6px !important;
  }
  
  .sidebar-pill .icon {
    font-size: 0.9rem !important;
  }
  
  /* Prevent awkward breaks for key terms */
  .accent-yellow {
    display: inline-block;
    white-space: nowrap;
  }
  
  /* Highlight headings */
  .line-under {
    background-size: 100% 15% !important;
    background-position: 0 92% !important;
  }
  
  /* Hero Image and Action Container */
  .hero-image-placeholder-container {
    margin-bottom: 25px !important;
  }
  
  .hero-action {
    margin-top: -15px !important;
    padding: 0 8px !important;
  }
  
  .caption-link {
    font-size: 0.65rem !important;
    margin-top: 6px !important;
  }

  /* Pricing Cards Optimization (more padding room and sleek heights) */
  .price-box {
    padding: 20px 14px !important;
    border-radius: 16px !important;
  }
  
  .price-featured-ribbon {
    font-size: 0.65rem !important;
    padding: 3px 10px !important;
    top: -10px !important;
  }
  
  .price-title {
    font-size: 1.1rem !important;
    margin-bottom: 10px !important;
  }
  
  .price-accent-info {
    margin-bottom: 12px !important;
    padding: 10px !important;
  }
  
  .original-price {
    font-size: 0.7rem !important;
  }
  
  .final-price-wrapper {
    font-size: 1.6rem !important;
  }
  
  .price-value {
    font-size: 1.85rem !important;
  }
  
  .cents {
    font-size: 1.1rem !important;
  }
  
  .price-features-list {
    gap: 6px !important;
    margin-bottom: 16px !important;
    font-size: 0.8rem !important;
  }
  
  .price-features-list li {
    padding-left: 18px !important;
  }
  
  .price-features-list li .icon {
    font-size: 0.8rem !important;
    top: 2px !important;
  }


  
  /* Section Padding Reduction on Mobile */
  .section-hero {
    padding-top: 25px !important;
    padding-bottom: 45px !important;
  }
  .section-pain-points {
    padding: 35px 0 !important;
  }
  .section-solution-cta {
    padding: 30px 0 !important;
  }
  .section-subjects {
    padding: 35px 0 !important;
  }
  .section-bonuses {
    padding: 35px 0 !important;
  }
  .section-social-proof {
    padding: 35px 0 !important;
  }
  .section-previews {
    padding: 35px 0 !important;
  }
  .section-pricing {
    padding: 35px 0 !important;
  }
  .section-faq {
    padding: 35px 0 !important;
  }
  footer {
    padding: 30px 0 90px 0 !important;
  }

  /* Stats Cards Grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    margin: 20px auto 25px auto !important;
  }
  
  .stat-card {
    padding: 10px 6px !important;
    border-radius: 10px !important;
  }
  
  .stat-number {
    font-size: 1.25rem !important;
  }
  
  .stat-label {
    font-size: 0.65rem !important;
  }

  /* Compact Trust Pills Row on Mobile */
  .trust-pill-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    max-width: 100% !important;
    margin: 15px auto 0 auto !important;
  }

  .trust-pill {
    padding: 6px 10px !important;
    font-size: 0.725rem !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    border-radius: 50px !important;
  }

  .pill-icon {
    margin-right: 4px !important;
    font-size: 0.8rem !important;
  }

  /* Compact Pain Points Section on Mobile */
  .section-pain-points {
    padding: 35px 0 !important;
  }

  .section-pain-points .section-title {
    font-size: 1.45rem !important;
    margin-bottom: 10px !important;
    line-height: 1.3 !important;
    padding: 0 5px !important;
  }

  .section-pain-points .section-description {
    font-size: 0.875rem !important;
    margin-bottom: 20px !important;
    line-height: 1.45 !important;
    color: #475569 !important;
    padding: 0 5px !important;
  }

  .problem-list {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .problem-item {
    padding: 16px !important;
    gap: 14px !important;
    border-radius: 12px !important;
    border-left: 3px solid #ef4444 !important;
    background: linear-gradient(135deg, #fff5f5 0%, #fffcfd 100%) !important;
    display: flex !important;
    align-items: center !important;
  }

  .problem-item.active {
    align-items: flex-start !important;
  }

  .problem-icon {
    min-width: 32px !important;
    max-width: 32px !important;
    height: 32px !important;
    font-size: 0.7rem !important;
    background-color: rgba(239, 68, 68, 0.08) !important;
    align-self: center !important;
  }

  .problem-item.active .problem-icon {
    align-self: flex-start !important;
  }

  .problem-icon svg {
    width: 12px !important;
    height: 12px !important;
  }

  .problem-title {
    font-size: 1rem !important;
    margin-bottom: 0 !important;
    font-weight: 750 !important;
    color: #0f172a !important;
    transition: margin-bottom 0.3s ease !important;
  }

  .problem-item.active .problem-title {
    margin-bottom: 4px !important;
  }

  .problem-text {
    font-size: 0.825rem !important;
    line-height: 1.45 !important;
    color: #475569 !important;
  }

  .problem-toggle-arrow {
    min-width: 20px !important;
    height: 20px !important;
    align-self: center !important;
  }

  .problem-item.active .problem-toggle-arrow {
    align-self: flex-start !important;
  }

  .problem-toggle-arrow svg {
    width: 14px !important;
    height: 14px !important;
  }

  /* Note: Old subjects showcase overrides removed in favor of premium vitrine */

  /* Gaps reduction in Grids */
  .bonuses-grid, .activity-previews-grid, .reviews-stack {
    gap: 12px !important;
    margin-top: 20px !important;
  }

  /* Bonus Section */
  .bonus-card {
    min-height: auto !important;
    padding: 14px !important;
  }
  
  .bonus-title {
    font-size: 0.95rem !important;
    margin-bottom: 4px !important;
  }
  
  .bonus-text {
    font-size: 0.775rem !important;
    margin-bottom: 10px !important;
  }
  
  .bonus-footer {
    margin-top: 8px !important;
    padding-top: 8px !important;
  }
  
  .bonus-val-label {
    font-size: 0.55rem !important;
  }
  
  .bonus-val-strike {
    font-size: 0.65rem !important;
  }
  
  .bonus-val-free {
    font-size: 0.8rem !important;
  }

  /* Previews Section */
  .activity-sheet {
    padding: 8px !important;
  }
  
  .sheet-image-container {
    height: auto !important;
    aspect-ratio: 280 / 395 !important;
  }
  
  .sheet-preview-img {
    height: 100% !important;
    width: 100% !important;
    object-fit: contain !important;
  }

  /* Highlight headings */
  .line-under {
    background: none !important;
    border-bottom: 3px solid var(--color-accent-gold) !important;
    padding-bottom: 1px !important;
    display: inline-block !important;
  }

  /* Guarantee section */
  .section-guarantee {
    padding: 30px 0 !important;
  }
  
  .guarantee-badge-gold {
    font-size: 2rem !important;
    margin-bottom: 12px !important;
  }
  
  .guarantee-text {
    font-size: 0.8rem !important;
    line-height: 1.45 !important;
  }

  /* Reviews / Testimonials styling */
  .review-card {
    padding: 14px !important;
    border-radius: 12px !important;
  }
  
  .review-text {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
  }
  
  .author-avatar {
    width: 36px !important;
    height: 36px !important;
  }
  
  .author-name {
    font-size: 0.8rem !important;
  }
  
  .author-sub {
    font-size: 0.65rem !important;
  }

  /* FAQS */
  .faq-trigger {
    padding: 12px 14px !important;
  }
  
  .faq-question-lead {
    font-size: 0.85rem !important;
  }
  
  .faq-chevron {
    font-size: 0.65rem !important;
  }
  
  .faq-content {
    padding: 0 !important;
  }
  
  .faq-answer-text {
    padding: 10px 14px 14px 14px !important;
    font-size: 0.8rem !important;
    line-height: 1.5 !important;
  }
  
  /* Checkout Modal */
  .checkout-header {
    padding: 18px 12px !important;
  }
  
  .checkout-title {
    font-size: 1.15rem !important;
  }
  
  .checkout-body {
    padding: 12px !important;
  }
  
  .checkout-product-info {
    padding: 8px 10px !important;
    margin-bottom: 12px !important;
  }
  
  .product-name {
    font-size: 0.8rem !important;
  }
  
  .product-price {
    font-size: 0.9rem !important;
  }
  
  .form-input {
    padding: 8px 10px !important;
    font-size: 0.8rem !important;
  }
  
  .payment-method {
    padding: 6px !important;
  }
  
  .payment-icon {
    font-size: 1rem !important;
  }
  
  .payment-label {
    font-size: 0.65rem !important;
  }
}

/* =========================================
   DISCOUNT UPGRADE MODAL STYLES
   ========================================= */
.discount-upgrade-container {
  position: relative;
  background-color: #071A36;
  border: 2px solid var(--color-accent-gold);
  border-radius: 16px;
  padding: 32px 24px;
  max-width: 460px;
  width: 90%;
  z-index: 1002;
  color: var(--color-white);
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.lightbox-modal.active .discount-upgrade-container {
  transform: scale(1);
  opacity: 1;
}

.discount-badge {
  background-color: rgba(255, 190, 0, 0.1);
  color: var(--color-accent-gold);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 190, 0, 0.2);
}

.discount-title {
  font-family: var(--font-display), sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.25;
}

.highlight-yellow {
  color: #FFC107;
}

.discount-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  line-height: 1.4;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.discount-price-box {
  background-color: rgba(255, 193, 7, 0.05);
  border: 1px dashed rgba(255, 193, 7, 0.4);
  border-radius: 10px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.discount-price-box .old-price {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: line-through;
}

.discount-price-box .arrow {
  color: #FFC107;
  font-weight: 700;
  font-size: 1.1rem;
}

.discount-price-box .new-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFC107;
}

.discount-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
}

.discount-accept-btn {
  width: 100%;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 20px;
  background-color: #FFC107;
  color: #071A36;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 18px rgba(255, 193, 7, 0.3);
  letter-spacing: 0.02em;
}

.discount-accept-btn:hover {
  background-color: #e5ac00;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 193, 7, 0.45);
}

.discount-decline-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s ease;
  padding: 4px 12px;
}

.discount-decline-btn:hover {
  color: var(--color-white);
}

.discount-close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.discount-close-btn:hover {
  color: #FFC107;
}

.discount-secure-footer {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 20px;
  letter-spacing: 0.02em;
}

@media (max-width: 576px) {
  .discount-upgrade-container {
    padding: 24px 16px;
    width: 92%;
  }
  
  .discount-title {
    font-size: 1.4rem;
  }
  
  .discount-price-box .new-price {
    font-size: 1.35rem;
  }
  
  .discount-accept-btn {
    font-size: 0.85rem;
    padding: 12px 14px;
  }
}



