/* ==========================================================================
   Kids Learning Mega Bundle - High-Converting Sales Landing Page
   Aesthetic: Clean Modern Lifestyle, Sky Blue & Warm Cream, Pink CTA Accents
   ========================================================================== */

:root {
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --bg-cream: #FCFBF7;
  --bg-white: #FFFFFF;
  --bg-sky: #F0F7FF;
  --bg-sky-light: #F8FAFC;
  --bg-sky-subtle: #E6F2FF;
  
  --primary-blue: #0284C7;
  --primary-blue-dark: #0369A1;
  
  --cta-pink: #E11D48;
  --cta-pink-hover: #BE123C;
  --cta-pink-gradient: linear-gradient(135deg, #E11D48 0%, #BE123C 100%);
  --cta-shadow: 0 8px 20px -2px rgba(225, 29, 72, 0.35);
  
  --yellow-bg: #FEF3C7;
  --yellow-text: #B45309;
  --yellow-border: #FCD34D;
  --yellow-badge: #F59E0B;
  
  --text-dark: #0F172A;
  --text-muted: #475569;
  --text-light: #64748B;
  
  --card-border: #E2E8F0;
  --card-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.05);
  --card-shadow-hover: 0 12px 24px -4px rgba(15, 23, 42, 0.1);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-btn: 10px;
  --radius-badge: 6px;
  
  --max-w: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

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

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

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

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

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.announcement-bar {
  background: #0F172A;
  color: #FFFFFF;
  text-align: center;
  padding: 9px 16px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.announcement-bar .badge {
  background: var(--cta-pink);
  color: #fff;
  padding: 3px 10px;
  border-radius: var(--radius-badge);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.announcement-bonus {
  color: #FDE047;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   Site Brand Navigation Header (Logo Only)
   ========================================================================== */
.site-brand-nav {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 990;
}

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

.site-brand-identity {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-brand-identity:hover {
  opacity: 0.9;
  transform: scale(1.01);
}

.brand-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  border: 1.5px solid #1E293B;
  background: #000000;
  padding: 2px;
  flex-shrink: 0;
}

.brand-text-stack {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: #0F172A;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.brand-sub {
  font-size: 0.66rem;
  font-weight: 800;
  color: #6366F1;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  background: radial-gradient(circle at 50% 20%, #F0F7FF 0%, var(--bg-cream) 70%);
  padding: 32px 0 44px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-screen-hook {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FEE2E2;
  border: none;
  color: #DC2626;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 6px 12px;
  border-radius: var(--radius-badge);
  width: fit-content;
  letter-spacing: 0.2px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
}

.hero-title .highlight {
  color: var(--primary-blue);
  background: linear-gradient(120deg, rgba(2, 132, 199, 0.1) 0%, rgba(2, 132, 199, 0.2) 100%);
  padding: 0 6px;
  border-radius: 6px;
}

.hero-subheadline {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #1E293B;
}

.hero-parent-note {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #475569;
  background: #F8FAFC;
  border-left: 3.5px solid #0284C7;
  padding: 10px 16px;
  border-radius: 0 10px 10px 0;
  margin: 2px 0 4px;
}

.hero-check-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0 6px;
  background: #F8FAFC;
  border-left: 3.5px solid #0284C7;
  padding: 12px 16px;
  border-radius: 0 12px 12px 0;
}

.hero-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #334155;
}

.hero-benefit-item .b-icon {
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-benefit-item strong {
  color: #0F172A;
}

.hero-price-lock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2px;
}

.hero-old-price del {
  color: #94A3B8;
  font-size: 1.15rem;
  font-weight: 600;
}

.hero-sale-price {
  font-family: var(--font-heading);
  color: #16A34A;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-discount-pill {
  background: #DCFCE7;
  color: #15803D;
  border: 1px solid #86EFAC;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags .tag {
  background: #EFF6FF;
  color: #1E40AF;
  border: 1px solid #BFDBFE;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-supporting {
  font-size: 1.12rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-cta-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.btn-primary-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--cta-pink-gradient);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-btn);
  box-shadow: var(--cta-shadow);
  transition: all 0.25s ease;
  text-align: center;
}

.btn-primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -4px rgba(225, 29, 72, 0.5);
  background: linear-gradient(135deg, #F43F5E 0%, #BE123C 100%);
}

.hero-btn-strong {
  font-size: 1.14rem;
  line-height: 1.35;
  padding: 15px 24px;
}

.btn-subtext {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual img {
  width: 100%;
  max-width: 600px;
  filter: drop-shadow(0 20px 30px rgba(15, 23, 42, 0.15));
  transition: transform 0.4s ease;
}

.hero-visual:hover img {
  transform: scale(1.02);
}

/* Trust Bar */
.trust-bar {
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  padding: 18px 0;
  margin-top: 36px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #334155;
}

.trust-item span.icon {
  font-size: 1.3rem;
}

/* ==========================================================================
   Section Common Styles
   ========================================================================== */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 52px;
}

.section-tag {
  display: inline-block;
  background: var(--yellow-bg);
  color: var(--yellow-text);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 5px 12px;
  border-radius: var(--radius-badge);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 14px;
  text-wrap: balance;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   Section 2: Problem + Solution
   ========================================================================== */
.problem-solution-section {
  background: #FFFFFF;
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.problem-cards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-card {
  background: var(--bg-cream);
  border: 1px solid var(--card-border);
  border-left: 5px solid var(--primary-blue);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease;
}

.problem-card:hover {
  transform: translateX(4px);
}

.problem-card .question {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.problem-card .question span.q-icon {
  background: #FEE2E2;
  color: #DC2626;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.85rem;
}

.problem-card .solution {
  font-size: 1rem;
  color: #334155;
  padding-left: 38px;
  line-height: 1.5;
}

.problem-card .solution strong {
  color: #0369A1;
}

.solution-visual-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 16px 36px -10px rgba(15, 23, 42, 0.1);
}

.solution-visual-card img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.solution-badge-overlay {
  position: static;
  background: #FFFFFF;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #F1F5F9;
}

.solution-badge-overlay .badge-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}

.solution-badge-overlay .badge-text h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 2px;
}

.solution-badge-overlay .badge-text p {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #475569;
  margin: 0;
}

/* ==========================================================================
   Section 3: Show What They Get (13 Products)
   ========================================================================== */
.products-section {
  background: var(--bg-sky);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
}

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

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.product-card.featured-card {
  border: 2px solid var(--primary-blue);
  background: #FFFFFF;
}

.product-card.premium-bonus {
  border: 2px solid #F59E0B;
  background: linear-gradient(180deg, #FFFDF5 0%, #FFFFFF 100%);
}

.product-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.product-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-badge);
  text-transform: uppercase;
}

.badge-core { background: #E0F2FE; color: #0369A1; }
.badge-reading { background: #FCE7F3; color: #BE185D; }
.badge-math { background: #FEF3C7; color: #B45309; }
.badge-science { background: #CCFBF1; color: #0F766E; }
.badge-motor { background: #F3E8FF; color: #7E22CE; }
.badge-gk { background: #FEF3C7; color: #92400E; }
.badge-hindi { background: #FFE4E6; color: #9F1239; }

.product-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: #94A3B8;
}

.product-card-top {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  margin-bottom: 20px;
  align-items: center;
}

.product-mockup-wrapper {
  position: relative;
}

.product-mockup-wrapper img {
  width: 100%;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.15));
  transition: transform 0.25s ease;
}

.product-mockup-wrapper:hover img {
  transform: scale(1.05);
}

.product-info h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.25;
  margin-bottom: 4px;
}

.product-info .subtitle {
  font-size: 0.88rem;
  color: var(--primary-blue-dark);
  font-weight: 600;
}

.product-features-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.product-features-list li {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
  padding: 3px 8px;
  border-radius: 4px;
}

.product-note {
  font-size: 0.78rem;
  color: #94A3B8;
  font-style: italic;
  margin-top: -10px;
  margin-bottom: 15px;
}

.worksheet-previews-heading {
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.worksheet-previews-heading .zoom-hint {
  font-size: 0.72rem;
  color: var(--primary-blue);
  text-transform: none;
  font-weight: 600;
}

.worksheet-samples-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.sample-thumbnail {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  cursor: pointer;
  background: #F1F5F9;
  aspect-ratio: 1 / 1.414;
}

.sample-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.sample-thumbnail:hover img {
  transform: scale(1.08);
}

.sample-thumbnail .overlay-zoom {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  color: #fff;
  font-size: 1.1rem;
}

.sample-thumbnail:hover .overlay-zoom {
  opacity: 1;
}

/* ==========================================================================
   Shortened Best Samples Showcase & 13-Book Compact Shelf
   ========================================================================== */
.best-samples-banner {
  text-align: center;
  margin-bottom: 24px;
}

.best-samples-banner span {
  display: inline-block;
  background: #EFF6FF;
  color: #1D4ED8;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-badge);
  border: 1px solid #BFDBFE;
}

.products-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}

.books-shelf-section {
  margin-top: 48px;
  padding: 36px 24px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
}

.books-shelf-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
}

.books-shelf-header .shelf-tag {
  display: inline-block;
  background: #FEF3C7;
  color: #92400E;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-badge);
  border: 1px solid #FCD34D;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.books-shelf-header .shelf-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: #0F172A;
  margin-bottom: 8px;
}

.books-shelf-header .shelf-desc {
  font-size: 0.92rem;
  color: #64748B;
  line-height: 1.45;
}

.books-compact-shelf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.compact-book-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 14px 12px;
  min-height: 336px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.compact-book-card:hover {
  transform: translateY(-3px);
  border-color: #CBD5E1;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.compact-book-card.card-spotlight {
  border: 1.5px solid #F59E0B;
  background: linear-gradient(180deg, #FFFDF7 0%, #FFFFFF 100%);
}

.compact-book-img {
  width: 100%;
  height: 132px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  border: 1px solid #EEF2F7;
  border-radius: 12px;
}

.compact-book-img img {
  max-height: 118px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 9px rgba(0, 0, 0, 0.12));
}

.compact-book-tag {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 5px;
  background: #F1F5F9;
  color: #475569;
  margin-bottom: 8px;
  line-height: 1.1;
}

.compact-book-tag.tag-spotlight {
  background: #FEF3C7;
  color: #92400E;
}

.compact-book-card h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: #0F172A;
  min-height: 42px;
  margin-bottom: 6px;
  line-height: 1.22;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compact-book-card p {
  font-size: 0.74rem;
  color: #64748B;
  line-height: 1.35;
  min-height: 42px;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-compact-preview {
  margin-top: auto;
  min-height: 34px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0284C7;
  background: #F0F9FF;
  border: 1px solid #BAE6FD;
  border-radius: 8px;
  padding: 7px 10px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  width: 100%;
  aspect-ratio: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.btn-compact-preview:hover {
  background: #0284C7;
  border-color: #0284C7;
  color: #FFFFFF;
}

.toggle-books-wrap {
  text-align: center;
  margin-top: 28px;
}

.btn-toggle-all-books {
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  color: #0F172A;
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.btn-toggle-all-books:hover {
  border-color: #0284C7;
  color: #0284C7;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.12);
}

.toggle-subtext {
  font-size: 0.82rem;
  color: #64748B;
  margin-top: 8px;
}

.all-books-collapsible {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 2px dashed #CBD5E1;
}

.expanded-heading {
  text-align: center;
  margin-bottom: 24px;
}

.expanded-heading h4 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #0F172A;
  margin-bottom: 4px;
}

.expanded-heading p {
  font-size: 0.88rem;
  color: #64748B;
}

/* ==========================================================================
   Section 4: Benefits Section
   ========================================================================== */
.benefits-section {
  background: #FFFFFF;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  background: var(--bg-cream);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow);
  border-color: #BFDBFE;
}

.benefit-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #E0F2FE;
  color: #0284C7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ==========================================================================
   Section 5: “How It Works” Section
   ========================================================================== */
.how-it-works-section {
  background: linear-gradient(180deg, #F0F7FF 0%, var(--bg-cream) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  margin-bottom: 48px;
}

.step-card {
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
  position: relative;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.09);
}

.step-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #F1F5F9;
}

.step-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.step-card:hover .step-image-wrap img {
  transform: scale(1.04);
}

.step-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #0284C7;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  z-index: 2;
}

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

.step-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 8px;
}

.step-card-body p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.step-options-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.step-options-pills span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: #334155;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 6px;
}

.how-cta-center {
  text-align: center;
}

/* ==========================================================================
   Section 6: Value Stack
   ========================================================================== */
.value-stack-section {
  background: #FFFFFF;
}

.value-stack-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}

.stack-list-card {
  background: var(--bg-cream);
  border: 2px solid #CBD5E1;
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--card-shadow);
}

.stack-list-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 20px;
  border-bottom: 2px dashed #CBD5E1;
  padding-bottom: 14px;
}

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

.stack-items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: #334155;
}

.stack-items li .check {
  color: #16A34A;
  margin-right: 8px;
}

.stack-items li .val {
  color: #94A3B8;
  text-decoration: line-through;
  font-size: 0.9rem;
}

.stack-total-row {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 2px solid #CBD5E1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stack-total-row .total-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0F172A;
}

.stack-total-row .total-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: #DC2626;
  text-decoration: line-through;
}

.value-stack-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.value-stack-visual img {
  width: 100%;
  max-width: 580px;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
}

.bundle-highlight-badge {
  background: var(--yellow-bg);
  border: 1px solid var(--yellow-border);
  color: var(--yellow-text);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  text-align: center;
}

/* ==========================================================================
   Section 7: Bonuses
   ========================================================================== */
.bonuses-section {
  background: linear-gradient(180deg, #FEFCE8 0%, #FFFDF5 100%);
  border-top: 1px solid #FEF08A;
  border-bottom: 1px solid #FEF08A;
}

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

.bonus-card {
  background: #FFFFFF;
  border: 1px solid #FDE047;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 10px 20px rgba(234, 179, 8, 0.08);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.25s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
}

.bonus-tag {
  background: #EF4444;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-badge);
  margin: 0 auto 12px;
  text-transform: uppercase;
}

.bonus-card img {
  width: 100%;
  max-width: 170px;
  margin: 0 auto 16px;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.bonus-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 6px;
}

.bonus-card p {
  font-size: 0.88rem;
  color: #475569;
}


/* ==========================================================================
   Conversion CTA Strips
   ========================================================================== */
.conversion-cta-strip {
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
  border-top: 1px solid #DBEAFE;
  border-bottom: 1px solid #DBEAFE;
  padding: 20px 0;
}

.conversion-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #FFFFFF;
  border: 1px solid #DBEAFE;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.conversion-cta-highlight {
  border-color: #FCA5A5;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF7ED 100%);
}

.conversion-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.conversion-cta-copy strong {
  font-family: var(--font-heading);
  color: #0F172A;
  font-size: 1.15rem;
  line-height: 1.25;
}

.conversion-cta-copy span {
  color: #475569;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-cta-compact {
  min-width: 280px;
  width: auto;
  padding: 14px 22px;
  font-size: 1rem;
  line-height: 1.25;
  flex-shrink: 0;
}

.faq-cta-panel {
  margin-top: 30px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F9FF 100%);
  border: 1px solid #BAE6FD;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.faq-cta-kicker {
  display: inline-flex;
  color: #BE123C;
  background: #FFE4E6;
  border-radius: 6px;
  padding: 4px 10px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}

.faq-cta-panel h3 {
  font-family: var(--font-heading);
  color: #0F172A;
  font-size: 1.55rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.faq-cta-panel p {
  color: #475569;
  font-weight: 600;
  max-width: 720px;
  margin: 0 auto 18px;
}

@media (max-width: 768px) {
  .conversion-cta-strip {
    padding: 14px 0;
  }

  .conversion-cta-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 16px;
  }

  .conversion-cta-copy strong {
    font-size: 1.05rem;
  }

  .conversion-cta-copy span {
    font-size: 0.9rem;
  }

  .btn-cta-compact,
  .faq-cta-panel .btn-primary-cta {
    width: 100%;
    min-width: 0;
  }

  .faq-cta-panel {
    padding: 18px 14px;
  }

  .faq-cta-panel h3 {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   Section 8: Price Reveal & Offer Box
   ========================================================================== */
.pricing-section {
  background: var(--bg-cream);
}

.pricing-box {
  max-width: 780px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 3px solid var(--primary-blue);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: 0 25px 60px -15px rgba(2, 132, 199, 0.25);
  text-align: center;
  position: relative;
}

.pricing-ribbon {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cta-pink);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 6px 18px;
  border-radius: var(--radius-badge);
  box-shadow: 0 4px 10px rgba(225, 29, 72, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-header h2 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.3;
  margin-bottom: 12px;
}

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

.price-display-wrap {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.price-strike {
  font-size: 1.3rem;
  color: #94A3B8;
  text-decoration: line-through;
  font-weight: 600;
}

.price-current {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-current .label {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0F172A;
}

.price-current .amount {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 900;
  color: #0284C7;
  line-height: 1;
}

.price-current .tag {
  font-size: 1.2rem;
  font-weight: 700;
  color: #16A34A;
}

.pricing-pill-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.pricing-pill-features span {
  background: #F1F5F9;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-badge);
}

.pricing-box .btn-primary-cta {
  width: 100%;
  max-width: 520px;
  font-size: 1.35rem;
  padding: 20px 40px;
  margin: 0 auto;
}

.pricing-pdf-notice {
  background: #FEF3C7;
  border: 1.5px solid #FCD34D;
  color: #92400E;
  font-size: 0.9rem;
  line-height: 1.4;
  padding: 11px 20px;
  border-radius: 8px;
  margin: 18px auto 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 520px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(180, 83, 9, 0.08);
}

.pdf-notice-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.pricing-trust-logos-wrap {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed #CBD5E1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pricing-logos-title {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 800;
  color: #64748B;
  letter-spacing: 0.3px;
}

.pricing-payment-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.pricing-logo-badge {
  height: 26px;
  width: auto;
  display: inline-block;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  vertical-align: middle;
}

.pricing-logo-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(15, 23, 42, 0.1);
}

/* ==========================================================================
   Section 9: Guarantee & Purchase Clarity
   ========================================================================== */
.guarantee-section {
  background: #FFFFFF;
}

.clarity-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-cream);
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-xl);
  padding: 40px;
}

.clarity-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.clarity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.clarity-item {
  display: flex;
  gap: 12px;
}

.clarity-item .icon {
  font-size: 1.4rem;
  color: var(--primary-blue);
  line-height: 1;
}

.clarity-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 4px;
}

.clarity-item p {
  font-size: 0.9rem;
  color: #475569;
}

/* ==========================================================================
   Section 10: Final CTA
   ========================================================================== */
.final-cta-section {
  background: radial-gradient(circle at 50% 50%, #EFF6FF 0%, #DBEAFE 100%);
  text-align: center;
  padding: 90px 0;
}

.final-cta-content {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.final-cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  color: #0F172A;
  line-height: 1.2;
}

.final-cta-content p.sub {
  font-size: 1.2rem;
  color: #334155;
  max-width: 650px;
}

.final-visual-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: center;
  max-width: 800px;
  margin: 10px 0 20px;
}

.final-visual-split img {
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  background: #FFFFFF;
}

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

.faq-item {
  background: var(--bg-cream);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  padding: 22px 24px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #0F172A;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .icon-chevron {
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-question .icon-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}

/* ==========================================================================
   Footer & Disclaimers
   ========================================================================== */
footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 48px 0 32px;
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
  text-align: center;
}

.footer-brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: contain;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: #000000;
  padding: 3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.footer-brand-motto {
  font-size: 0.72rem;
  font-weight: 800;
  color: #818CF8;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.footer-disclaimers {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.footer-disclaimers p.legal {
  color: #64748B;
}

.footer-copy {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #1E293B;
  text-align: center;
  color: #64748B;
}

/* ==========================================================================
   Interactive Lightbox Modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 20px;
}

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

.modal-content {
  position: relative;
  max-width: 680px;
  width: 100%;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.95);
  transition: transform 0.25s ease;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

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

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(15, 23, 42, 0.7);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 10;
  transition: background 0.2s;
}

.modal-close-btn:hover {
  background: rgba(15, 23, 42, 0.95);
}

.modal-img-container {
  overflow-y: auto;
  padding: 16px;
  background: #F8FAFC;
  display: flex;
  justify-content: center;
}

.modal-img-container img {
  max-height: 75vh;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.modal-footer {
  padding: 12px 20px;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  font-weight: 700;
  color: #1E293B;
  font-size: 0.95rem;
  text-align: center;
}

/* ==========================================================================
   Sticky Mobile Bottom Bar
   ========================================================================== */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.1);
  padding: 12px 20px;
  display: none;
  z-index: 999;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.sticky-mobile-price {
  display: flex;
  flex-direction: column;
}

.sticky-mobile-price .st-amt {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: #0284C7;
  line-height: 1;
}

.sticky-mobile-price .st-sub {
  font-size: 0.75rem;
  color: #64748B;
}

.sticky-mobile-btn {
  background: var(--cta-pink-gradient);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  box-shadow: var(--cta-shadow);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-tags {
    justify-content: center;
  }
  
  .problem-solution-grid {
    grid-template-columns: 1fr;
  }
  
  .value-stack-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .books-compact-shelf {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .products-grid,
  .products-featured-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .bonuses-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  
  .clarity-grid {
    grid-template-columns: 1fr;
  }
  
  .final-visual-split {
    grid-template-columns: 1fr;
  }

  .wa-chats-container {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
    gap: 20px;
  }
  
  .sticky-mobile-bar {
    display: flex;
    transform: translateY(0);
    padding: 8px 14px calc(8px + env(safe-area-inset-bottom));
    gap: 12px;
    align-items: center;
    box-sizing: border-box;
    min-height: 54px;
    max-height: 64px;
  }

  .sticky-mobile-price {
    min-width: auto;
    flex-shrink: 0;
  }

  .sticky-mobile-price .st-amt {
    font-size: 1.35rem;
    line-height: 1;
  }

  .sticky-mobile-price .st-sub {
    font-size: 0.68rem;
    white-space: nowrap;
    line-height: 1.1;
  }

  .sticky-mobile-btn {
    flex: 1;
    text-align: center;
    padding: 10px 14px;
    font-size: 0.92rem;
    font-weight: 800;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    border-radius: 9999px;
  }
  
  body {
    padding-bottom: 68px;
  }
  
  .pricing-box {
    padding: 36px 20px;
  }
}

@media (max-width: 480px) {
  .bonuses-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .trust-item {
    justify-content: flex-start;
  }
}

/* ==========================================================================
   Policy & Legal Pages Styling
   ========================================================================== */
.policy-header {
  background: #0F172A;
  color: #FFFFFF;
  padding: 32px 0;
}

.policy-nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.policy-nav-logo {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.policy-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: #000000;
  padding: 2px;
  flex-shrink: 0;
}

.policy-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #38BDF8;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.policy-back-link:hover {
  color: #7DD3FC;
}

.policy-container {
  max-width: 860px;
  margin: 60px auto 80px;
  padding: 0 24px;
}

.policy-card {
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--card-shadow);
}

.policy-card h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 8px;
}

.policy-card .updated-date {
  font-size: 0.88rem;
  color: #64748B;
  margin-bottom: 32px;
  display: block;
  border-bottom: 1px solid #E2E8F0;
  padding-bottom: 16px;
}

.policy-section {
  margin-bottom: 32px;
}

.policy-section h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 12px;
}

.policy-section p, .policy-section ul {
  font-size: 1rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 14px;
}

.policy-section ul {
  padding-left: 24px;
}

.policy-highlight-box {
  background: #FEF3C7;
  border-left: 4px solid #F59E0B;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  margin: 24px 0;
}

.policy-highlight-box h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #92400E;
  margin-bottom: 6px;
}

.policy-highlight-box p {
  color: #78350F;
  margin-bottom: 0;
}

/* ==========================================================================
   Thank You & Order Success Page Styling
   ========================================================================== */
.thankyou-body {
  background: #F8FAFC;
}

.thankyou-container {
  padding: 40px 0 70px;
}

.thankyou-card {
  max-width: 820px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 48px 36px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.thankyou-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.thankyou-icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
  animation: pulseScale 2s infinite ease-in-out;
}

@keyframes pulseScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.thankyou-pill {
  background: #DCFCE7;
  color: #15803D;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid #86EFAC;
}

.thankyou-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: #0F172A;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.thankyou-subtitle {
  font-size: 1.05rem;
  color: #475569;
  max-width: 620px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.thankyou-summary-box {
  background: #F8FAFC;
  border: 1.5px dashed #CBD5E1;
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 32px;
  text-align: left;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: #0F172A;
  padding-bottom: 14px;
  border-bottom: 1px solid #E2E8F0;
  margin-bottom: 16px;
}

.summary-status-badge {
  background: #10B981;
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
}

.summary-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.summary-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.summary-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1E293B;
}

.thankyou-download-action {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border: 2px solid #93C5FD;
  border-radius: 20px;
  padding: 32px 24px;
  margin-bottom: 32px;
  text-align: center;
}

.thankyou-download-action h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #1E3A8A;
  margin-bottom: 8px;
}

.thankyou-download-action p {
  font-size: 0.95rem;
  color: #3B82F6;
  margin-bottom: 20px;
  font-weight: 600;
}

.thankyou-main-download-btn {
  font-size: 1.25rem !important;
  padding: 18px 36px !important;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4) !important;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.download-tip-note {
  display: block;
  font-size: 0.82rem;
  color: #475569;
  font-weight: 600;
  margin-top: 14px;
}

.thankyou-breakdown-box {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 28px;
  text-align: left;
}

.thankyou-breakdown-box h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 16px;
  text-align: center;
}

.thankyou-breakdown-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
}

.breakdown-col h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0284C7;
  margin-bottom: 10px;
  border-bottom: 1px solid #E2E8F0;
  padding-bottom: 6px;
}

.breakdown-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.breakdown-col li {
  font-size: 0.86rem;
  color: #334155;
  line-height: 1.4;
  font-weight: 500;
}

.thankyou-steps-box {
  margin-bottom: 28px;
  text-align: left;
}

.thankyou-steps-box h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 16px;
  text-align: center;
}

.steps-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
}

.step-card .step-num {
  width: 32px;
  height: 32px;
  background: #0284C7;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 0.9rem;
}

.step-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 6px;
}

.step-card p {
  font-size: 0.8rem;
  color: #64748B;
  line-height: 1.45;
  margin-bottom: 0;
}

.thankyou-support-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FEF9C3;
  border: 1px solid #FDE047;
  border-radius: 16px;
  padding: 18px 20px;
  text-align: left;
  margin-bottom: 28px;
}

.thankyou-support-card .support-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.thankyou-support-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #854D0E;
  margin-bottom: 4px;
}

.thankyou-support-card p {
  font-size: 0.85rem;
  color: #713F12;
  margin-bottom: 3px;
  line-height: 1.4;
}

.thankyou-back-wrap {
  margin-top: 10px;
}

.btn-back-home {
  color: #0284C7;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.15s ease;
}

.btn-back-home:hover {
  color: #0369A1;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .thankyou-card {
    padding: 32px 18px;
  }
  .thankyou-title {
    font-size: 1.65rem;
  }
  .thankyou-subtitle {
    font-size: 0.92rem;
  }
  .summary-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .thankyou-breakdown-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .steps-cards-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .thankyou-main-download-btn {
    font-size: 1.05rem !important;
    padding: 15px 20px !important;
    width: 100%;
  }
  .thankyou-support-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Urgency Countdown Timers & Enhanced Free Bonus Highlights
   ========================================================================== */

/* 1. Urgency Timer Banner (Below Trust Bar) */
.urgency-timer-banner {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #FFFFFF;
  border-top: 2px solid #F59E0B;
  border-bottom: 2px solid #F59E0B;
  padding: 16px 20px;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.2);
}

.timer-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.timer-banner-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.timer-clean-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.timer-banner-text h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #F8FAFC;
  line-height: 1.2;
}

.timer-banner-text p {
  font-size: 0.85rem;
  color: #94A3B8;
}

.digital-timer-display {
  display: flex;
  align-items: center;
  gap: 8px;
}

.timer-unit-box {
  background: #020617;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 6px 10px;
  min-width: 58px;
  text-align: center;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.timer-unit-digits {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: #FBBF24; /* Golden yellow */
  line-height: 1;
}

.timer-unit-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 2px;
}

.timer-separator {
  font-size: 1.4rem;
  font-weight: 800;
  color: #64748B;
  padding-bottom: 12px;
}

/* 2. Pricing Box Timer */
.pricing-timer-box {
  background: #FFFBEB;
  border: 2px dashed #F59E0B;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pricing-timer-box .timer-label-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.98rem;
  color: #92400E;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* 3. Enhanced Free Bonuses Highlighting */
.free-bonus-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #DC2626;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: var(--radius-badge);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
  margin-top: 6px;
}

.bonus-card-enhanced {
  background: #FFFFFF;
  border: 1px solid #E2E8F0 !important;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05) !important;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: all 0.25s ease;
  overflow: hidden;
}

.bonus-card-enhanced:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1) !important;
  border-color: #CBD5E1 !important;
}

.bonus-free-banner {
  background: #16A34A;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: var(--radius-badge);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0 auto 12px;
}

.bonus-worth-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 0.88rem;
}

.bonus-worth-badge .strike {
  color: #94A3B8;
  text-decoration: line-through;
}

.bonus-worth-badge .free {
  background: #DCFCE7;
  color: #15803D;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 800;
}

.bonuses-hero-callout {
  background: linear-gradient(135deg, #FEF2F2 0%, #FFFBEB 100%);
  border: 2px solid #FCA5A5;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.bonuses-hero-callout-text h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #991B1B;
}

.bonuses-hero-callout-text p {
  font-size: 0.95rem;
  color: #7F1D1D;
}

/* ==========================================================================
   Hero 2-Book Continuous Moving Showcase Slider with Highlights
   ========================================================================== */
.hero-slider-wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.slider-side-badge-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 4px;
}

.slider-sheets-badge {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: #92400E;
  background: #FEF3C7;
  border: 1px solid #FCD34D;
  padding: 5px 13px;
  border-radius: var(--radius-badge);
  box-shadow: 0 2px 6px rgba(180, 83, 9, 0.08);
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.slider-sheets-badge strong {
  color: #B45309;
  font-weight: 800;
}

.badge-gold {
  background: #FEF3C7;
  color: #B45309;
  border: 1px solid #FCD34D;
}

.badge-red {
  background: #FEE2E2;
  color: #DC2626;
  border: 1px solid #FECDD3;
}

.badge-blue {
  background: #EFF6FF;
  color: #1E40AF;
  border: 1px solid #BFDBFE;
}

.hero-slider-frame {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  position: relative;
  padding: 20px 16px 14px;
}

.hero-slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide-pair {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.pair-highlight-tag {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: var(--radius-badge);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tag-orange { background: #EA580C; }
.tag-pink   { background: #DB2777; }
.tag-teal   { background: #0D9488; }
.tag-purple { background: #7C3AED; }
.tag-amber  { background: #D97706; }
.tag-rose   { background: #E11D48; }
.tag-gold   { background: #D97706; }
.tag-vs     { background: #4F46E5; }

/* Slide 0: Visual Problem vs Solution (Screen Life vs Screen-Free Joy) */
.slide-vs-container {
  width: 100%;
}

.vs-cards-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  margin: 4px 0 8px;
  width: 100%;
  min-height: 265px;
  position: relative;
}

.vs-column {
  flex: 1;
  border-radius: 14px;
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vs-column:hover {
  transform: translateY(-2px);
}

.vs-bad {
  background: #FFF8F8;
  border: 1px solid #FECDD3;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.05);
}

.vs-good {
  background: #F8FDF9;
  border: 1px solid #BBF7D0;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.05);
}

.vs-header-pill {
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 3px 8px;
  border-radius: var(--radius-badge);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.vs-bad .vs-header-pill {
  background: #E11D48;
  color: #FFFFFF;
}

.vs-good .vs-header-pill {
  background: #16A34A;
  color: #FFFFFF;
}

.vs-image-wrap {
  width: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  aspect-ratio: 4 / 3;
  background: #E2E8F0;
}

.vs-real-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.vs-column:hover .vs-real-photo {
  transform: scale(1.05);
}

.vs-photo-badge {
  position: absolute;
  bottom: 6px;
  left: 6px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
}

.badge-danger {
  background: rgba(225, 29, 72, 0.92);
  color: #FFFFFF;
}

.badge-success {
  background: rgba(22, 163, 74, 0.92);
  color: #FFFFFF;
}

.vs-visual-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.vs-bad .vs-visual-title {
  color: #9F1239;
}

.vs-good .vs-visual-title {
  color: #166534;
}

.vs-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.76rem;
  line-height: 1.35;
}

.vs-points li {
  position: relative;
  padding-left: 14px;
}

.vs-bad .vs-points li {
  color: #881337;
}

.vs-bad .vs-points li::before {
  content: "✖";
  position: absolute;
  left: 0;
  color: #E11D48;
  font-weight: 800;
  font-size: 0.72rem;
}

.vs-good .vs-points li {
  color: #14532D;
}

.vs-good .vs-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #16A34A;
  font-weight: 800;
  font-size: 0.72rem;
}

.vs-center-pill {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0F172A;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.8rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 2px solid #FFFFFF;
  z-index: 3;
}

.pair-books-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 4px 0 8px;
  width: 100%;
}

.slider-book-item {
  flex: 1;
  max-width: 195px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  position: relative;
}

.slider-book-item img {
  width: 100%;
  max-height: 255px;
  object-fit: contain;
  filter: drop-shadow(0 15px 22px rgba(15, 23, 42, 0.2));
  transition: transform 0.3s ease;
}

.book-tilt-left img {
  transform: rotate(-3deg);
}

.book-tilt-right img {
  transform: rotate(3deg);
}

.slider-book-item:hover img {
  transform: scale(1.06) rotate(0deg);
}

.book-name-pill {
  background: #0F172A;
  color: #F8FAFC;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: var(--radius-badge);
  margin-top: 8px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.pair-caption {
  font-size: 0.85rem;
  color: #475569;
  padding: 0 12px;
  line-height: 1.45;
}

.pair-caption strong {
  color: #0F172A;
}

.slider-arrow {
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  border: 1px solid #E2E8F0;
  color: #0F172A;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slider-arrow:hover {
  background: #0284C7;
  color: #FFFFFF;
  border-color: #0284C7;
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow.prev { left: 8px; }
.slider-arrow.next { right: 8px; }

.slider-progress-track {
  width: 100%;
  height: 4px;
  background: #E2E8F0;
  border-radius: 3px;
  margin-top: 14px;
  overflow: hidden;
}

.slider-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--cta-pink-gradient);
  border-radius: 3px;
}

.slider-dots-container {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CBD5E1;
  cursor: pointer;
  transition: all 0.25s ease;
}

.slider-dot.active {
  width: 24px;
  border-radius: 8px;
  background: #0284C7;
}

.slider-footer-note {
  font-size: 0.74rem;
  color: #64748B;
  text-align: center;
  font-weight: 600;
}

/* ==========================================================================
   Parent Reviews & Verified Purchases Section
   ========================================================================== */
.reviews-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 50%, #FFFFFF 100%);
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.reviews-stats-bar {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 24px 32px;
  max-width: 960px;
  margin: 0 auto 48px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
  flex-wrap: wrap;
  gap: 20px;
}

.stat-metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.stat-score {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: #0F172A;
  line-height: 1;
}

.stat-stars {
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.stat-badge-tick {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: #16A34A;
}

.stat-label {
  font-size: 0.88rem;
  color: #64748B;
  font-weight: 600;
}

.stat-metric-divider {
  width: 1px;
  height: 48px;
  background: #E2E8F0;
}

/* Verified WhatsApp Parent Chats */
.wa-chats-section {
  max-width: 1160px;
  margin: 0 auto 36px;
}

.wa-section-header {
  text-align: center;
  margin-bottom: 24px;
}

.wa-green-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}

.wa-section-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
}

.wa-chats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wa-chat-card {
  background-color: #ECE5DD;
  background-image: radial-gradient(#D6CCC2 1.2px, transparent 1.2px);
  background-size: 14px 14px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #D1D5DB;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-chat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -6px rgba(0, 0, 0, 0.12);
}

.wa-chat-header {
  background: #008069;
  color: #FFFFFF;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wa-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.wa-back-btn {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  opacity: 0.95;
  margin-right: -2px;
}

.wa-avatar-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.wa-header-user {
  min-width: 0;
}

.wa-header-user h5 {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-header-user span {
  font-size: 0.68rem;
  color: #D1FAE5;
  display: block;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
  opacity: 0.9;
  flex-shrink: 0;
}

.wa-action-icon {
  display: flex;
  align-items: center;
}

.wa-chat-body {
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.wa-date-pill {
  align-self: center;
  background: rgba(255, 255, 255, 0.92);
  color: #54656F;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 8px;
  box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12);
  margin: 0 auto 4px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.wa-bubble {
  max-width: 90%;
  padding: 7px 10px 5px;
  border-radius: 8px;
  font-size: 0.81rem;
  line-height: 1.42;
  position: relative;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
}

.wa-bubble-received {
  background: #FFFFFF;
  align-self: flex-start;
  border-top-left-radius: 0;
  color: #111B21;
}

.wa-bubble-sent {
  background: #D9FDD3;
  align-self: flex-end;
  border-top-right-radius: 0;
  color: #111B21;
}

.wa-media-bubble {
  padding: 4px 4px 5px !important;
}

.wa-img-wrap {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 5px;
}

.wa-attached-img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

.wa-caption-text {
  padding: 2px 6px 0;
  font-size: 0.81rem;
  line-height: 1.4;
  color: #111B21;
}

.wa-bubble-time {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: 0.62rem;
  color: #667781;
  margin-top: 3px;
  padding-right: 2px;
}

.wa-blue-ticks {
  color: #53BDEB;
  font-weight: 900;
}

.wa-chat-footer {
  padding: 8px 10px 10px;
  background: #F0F2F5;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #E2E8F0;
}

.wa-input-pill {
  flex: 1;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #8696A0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.wa-emoji-icon, .wa-attach-icon, .wa-camera-icon {
  font-size: 0.85rem;
  opacity: 0.85;
}

.wa-input-placeholder {
  flex: 1;
  font-size: 0.76rem;
  color: #8696A0;
}

.wa-mic-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #008069;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

/* Payment Trust Bar */
.payment-trust-bar {
  max-width: 1160px;
  margin: 0 auto 36px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.pt-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: #475569;
  letter-spacing: 0.3px;
}

.pt-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.payment-logo-badge {
  height: 28px;
  width: auto;
  display: inline-block;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  vertical-align: middle;
}

.payment-logo-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(15, 23, 42, 0.1);
}

.pt-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: #1E293B;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.pt-badge svg {
  color: #16A34A;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.review-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  border-color: #CBD5E1;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FFFFFF;
}

.avatar-purple { background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%); }
.avatar-teal   { background: linear-gradient(135deg, #0D9488 0%, #0F766E 100%); }
.avatar-amber  { background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%); }
.avatar-blue   { background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%); }
.avatar-pink   { background: linear-gradient(135deg, #EC4899 0%, #BE185D 100%); }
.avatar-emerald{ background: linear-gradient(135deg, #10B981 0%, #059669 100%); }

.reviewer-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviewer-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.reviewer-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #0F172A;
}

.verified-buyer-badge {
  background: #DCFCE7;
  color: #15803D;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.reviewer-sub {
  font-size: 0.8rem;
  color: #64748B;
}

.review-star-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.star-rating {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-time {
  font-size: 0.75rem;
  color: #94A3B8;
  font-weight: 500;
}

.review-body {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.review-child-tag {
  background: #F1F5F9;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.78rem;
  color: #475569;
}

.review-child-tag strong {
  color: #0284C7;
}

/* WhatsApp Support Touchpoint */
.whatsapp-support-card {
  margin-top: 36px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 16px;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.wa-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wa-icon-bubble {
  background: #22C55E;
  color: #FFFFFF;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.wa-text h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #14532D;
  margin-bottom: 4px;
}

.wa-text p {
  font-size: 0.86rem;
  color: #166534;
  margin: 0;
}

.btn-wa-support {
  background: #16A34A;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-wa-support:hover {
  background: #15803D;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

/* ==========================================================================
   Random Recent Purchase Notification Toast Widget
   ========================================================================== */
.purchase-toast {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 990;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  box-shadow: 0 16px 36px -4px rgba(15, 23, 42, 0.18), 0 4px 12px rgba(15, 23, 42, 0.06);
  padding: 12px 36px 12px 14px;
  max-width: 360px;
  width: calc(100% - 48px);
  transform: translateY(140%) scale(0.92);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
}

.purchase-toast.show {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.toast-close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: #94A3B8;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s ease;
}

.toast-close-btn:hover {
  color: #0F172A;
}

.purchase-toast-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast-thumb-wrap {
  position: relative;
  width: 44px;
  height: 54px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.toast-live-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 9px;
  height: 9px;
  background-color: #22C55E;
  border: 1.5px solid #FFFFFF;
  border-radius: 50%;
}

.toast-text-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.25;
}

.toast-buyer-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.toast-buyer-row strong {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: #0F172A;
  font-weight: 800;
}

.toast-location {
  font-size: 0.76rem;
  color: #64748B;
}

.toast-verified-tag {
  background: #DCFCE7;
  color: #15803D;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.toast-product-name {
  font-size: 0.76rem;
  color: #334155;
}

.toast-product-name strong {
  color: #0284C7;
}

.toast-time-ago {
  font-size: 0.68rem;
  color: #94A3B8;
  font-weight: 600;
}

/* ==========================================================================
   Mobile Responsiveness Polish
   ========================================================================== */
@media (max-width: 768px) {
  .reviews-section {
    padding: 52px 0;
  }

  .reviews-stats-bar {
    padding: 18px 16px;
    gap: 16px;
    border-radius: 16px;
  }

  .stat-metric-divider {
    display: none;
  }

  .stat-metric-item {
    width: 100%;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .wa-chats-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .payment-trust-bar {
    flex-direction: column;
    text-align: center;
  }

  .pt-badges {
    justify-content: center;
  }

  .review-card {
    padding: 18px;
    border-radius: 16px;
  }

  /* Move purchase toast to top on mobile so it NEVER covers the CTA buttons */
  .purchase-toast {
    top: 52px;
    bottom: auto;
    left: 12px;
    right: 12px;
    width: auto;
    max-width: calc(100% - 24px);
    padding: 10px 32px 10px 12px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.22);
    transform: translateY(-140%) scale(0.95);
  }

  .purchase-toast.show {
    transform: translateY(0) scale(1);
  }

  .toast-thumb-wrap {
    width: 38px;
    height: 46px;
  }

  .toast-buyer-row strong {
    font-size: 0.78rem;
  }

  .toast-product-name {
    font-size: 0.72rem;
  }

  /* Hero Section High-Converting Mobile Layout */
  .hero-section {
    padding: 24px 0 36px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .hero-content {
    display: contents; /* Direct grid/flex child positioning */
  }

  .hero-screen-hook {
    order: 1;
    margin: 0 auto;
    font-size: 0.8rem;
    padding: 5px 12px;
  }

  .hero-title {
    order: 2;
    font-size: clamp(1.75rem, 6.5vw, 2.3rem);
    line-height: 1.2;
    margin: 0 auto;
    max-width: 95%;
  }

  .hero-subheadline {
    order: 3;
    font-size: 1.05rem;
    line-height: 1.4;
    color: #334155;
    margin: 0 auto;
    max-width: 92%;
  }

  .hero-parent-note {
    order: 4;
    font-size: 0.88rem;
    line-height: 1.5;
    padding: 8px 12px;
    margin: 0 auto;
    max-width: 94%;
    text-align: left;
    border-radius: 8px;
    border-left: 3px solid #0284C7;
  }

  /* Mobile: show purchase CTA before the visual so parents can act in the first fold. */
  .hero-cta-box {
    order: 5;
    width: 100%;
    max-width: 420px;
    margin: 4px auto 0;
  }

  /* Prime visual still follows immediately after the first CTA. */
  .hero-visual {
    order: 6;
    width: 100%;
    max-width: 440px;
    margin: 4px auto 10px;
  }

  .free-bonus-hero-tag {
    order: 7;
    margin: 0 auto;
    font-size: 0.76rem;
    padding: 6px 14px;
    max-width: 95%;
  }

  .hero-tags {
    order: 8;
    justify-content: center;
    gap: 6px;
    margin: 0 auto;
  }

  .hero-tags .tag {
    font-size: 0.75rem;
    padding: 3px 8px;
  }

  .hero-supporting {
    order: 9;
    font-size: 0.95rem;
    line-height: 1.45;
    margin: 0 auto;
    max-width: 92%;
  }

  .btn-primary-cta {
    width: 100%;
    font-size: 1.18rem;
    padding: 16px 24px;
  }

  /* Center Timers on Mobile */
  .urgency-timer-banner {
    padding: 18px 14px;
  }

  .timer-banner-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .timer-banner-left {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .timer-banner-text {
    text-align: center;
  }

  .timer-banner-text h3 {
    font-size: 1.05rem;
    text-align: center;
  }

  .timer-banner-text p {
    font-size: 0.8rem;
    text-align: center;
  }

  .digital-timer-display {
    justify-content: center;
    margin: 0 auto;
  }

  .pricing-timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 12px;
  }

  .pricing-timer-box .timer-label-text {
    justify-content: center;
    text-align: center;
    margin-bottom: 8px;
    font-size: 0.95rem;
  }

  /* Bonuses (Gift Cards) Single Column on Mobile */
  .bonuses-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 440px;
    margin: 0 auto;
  }

  .bonus-card {
    padding: 24px 20px;
  }

  .bonus-card img {
    max-width: 250px;
    margin: 0 auto 16px;
  }

  /* Site Brand Nav Responsive */
  .site-brand-nav {
    padding: 8px 0;
  }
  .brand-logo-img {
    width: 40px;
    height: 40px;
  }
  .brand-title {
    font-size: 1.25rem;
  }
  .brand-sub {
    font-size: 0.62rem;
    letter-spacing: 0.6px;
  }
}

@media (max-width: 640px) {
  .books-shelf-section {
    padding: 22px 12px;
    border-radius: 16px;
    margin-top: 32px;
  }
  .books-shelf-header .shelf-title {
    font-size: 1.25rem;
  }
  .books-shelf-header .shelf-desc {
    font-size: 0.86rem;
  }
  .books-compact-shelf {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .compact-book-card {
    min-height: 260px;
    padding: 10px 8px;
    border-radius: 12px;
  }
  .compact-book-img {
    height: 96px;
    margin-bottom: 8px;
    border-radius: 10px;
  }
  .compact-book-img img {
    max-height: 86px;
  }
  .compact-book-card h4 {
    font-size: 0.8rem;
    min-height: 38px;
  }
  .compact-book-card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 32px;
    font-size: 0.68rem;
  }
  .compact-book-tag {
    font-size: 0.6rem;
    padding: 3px 5px;
    min-height: 20px;
  }
  .btn-compact-preview {
    min-height: 32px;
    font-size: 0.68rem;
    padding: 6px 6px;
  }
  .whatsapp-support-card {
    padding: 18px 14px;
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  .wa-left {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .pricing-pdf-notice {
    font-size: 0.82rem;
    padding: 9px 12px;
  }
  .btn-toggle-all-books {
    font-size: 0.88rem;
    padding: 11px 18px;
  }
  .slider-sheets-badge {
    font-size: 0.76rem;
    padding: 4px 10px;
    gap: 5px;
  }
  .hero-slider-frame {
    padding: 12px 8px 14px;
    border-radius: 16px;
  }
  .slider-arrow {
    display: none !important;
  }
  .slider-footer-note {
    display: none !important;
  }
  .vs-cards-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin: 6px 0 8px !important;
    min-height: auto !important;
  }
  .vs-center-pill {
    display: none !important;
  }
  .vs-column.vs-bad {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 7px 12px !important;
    border-radius: 10px !important;
    background: #FEF2F2 !important;
    border: 1px solid #FECACA !important;
    gap: 8px !important;
    margin: 0 !important;
    width: 100% !important;
  }
  .vs-column.vs-bad .vs-header-pill,
  .vs-column.vs-bad .vs-image-wrap,
  .vs-column.vs-bad .vs-points {
    display: none !important;
  }
  .vs-column.vs-bad .vs-visual-title {
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    color: #DC2626 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    line-height: 1.3 !important;
    text-align: left !important;
  }
  .vs-column.vs-bad .vs-visual-title::before {
    content: "❌ Pehle:" !important;
    font-weight: 800 !important;
    background: #FEE2E2 !important;
    color: #B91C1C !important;
    padding: 1px 6px !important;
    border-radius: 4px !important;
    font-size: 0.72rem !important;
    flex-shrink: 0 !important;
  }
  .vs-column.vs-good {
    display: flex !important;
    flex-direction: column !important;
    padding: 12px 12px 14px !important;
    border-radius: 14px !important;
    background: #FFFFFF !important;
    border: 1.5px solid #86EFAC !important;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.08) !important;
    text-align: left !important;
    margin: 0 !important;
    width: 100% !important;
  }
  .vs-column.vs-good .vs-header-pill {
    font-size: 0.74rem !important;
    font-weight: 800 !important;
    padding: 3px 9px !important;
    margin-bottom: 8px !important;
    background: #DCFCE7 !important;
    color: #15803D !important;
    border: 1px solid #86EFAC !important;
    border-radius: 6px !important;
    display: inline-block !important;
    align-self: flex-start !important;
  }
  .vs-column.vs-good .vs-image-wrap {
    width: 100% !important;
    height: 185px !important;
    max-height: 200px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    margin-bottom: 8px !important;
    position: relative !important;
  }
  .vs-column.vs-good .vs-image-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
  .vs-column.vs-good .vs-photo-badge {
    font-size: 0.72rem !important;
    padding: 3px 8px !important;
    bottom: 6px !important;
    left: 6px !important;
    border-radius: 6px !important;
  }
  .vs-column.vs-good .vs-visual-title {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: #111827 !important;
    margin-bottom: 6px !important;
    line-height: 1.3 !important;
  }
  .vs-column.vs-good .vs-points {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    font-size: 0.85rem !important;
    line-height: 1.42 !important;
    color: #374151 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .vs-column.vs-good .vs-points li {
    padding-left: 14px !important;
  }
  .pair-highlight-tag {
    font-size: 0.74rem;
    padding: 4px 12px;
  }
  .pair-caption {
    font-size: 0.82rem;
    line-height: 1.4;
    padding: 8px 10px;
    margin-top: 8px;
    border-radius: 8px;
  }
  .slider-dots-container {
    margin-top: 10px;
    gap: 8px;
  }
  .slider-dot {
    width: 10px;
    height: 10px;
  }
  .slider-dot.active {
    width: 26px;
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .announcement-bar {
    padding: 7px 10px;
    font-size: 0.78rem;
    gap: 6px 10px;
    line-height: 1.35;
  }

  .announcement-bar .badge {
    font-size: 0.7rem;
    padding: 2px 7px;
  }

  .announcement-bonus {
    font-size: 0.78rem;
  }

  .slider-sheets-badge {
    font-size: 0.72rem;
    padding: 3px 9px;
  }

  .hero-section {
    padding: 18px 0 28px;
  }

  .hero-headline {
    font-size: 1.7rem;
    line-height: 1.25;
  }

  .hero-subheadline {
    font-size: 0.95rem;
  }

  .hero-slider-frame {
    padding: 10px 6px 8px;
  }

  .pricing-box {
    padding: 22px 14px;
    border-radius: 18px;
  }

  .btn-primary-cta {
    font-size: 1.05rem;
    padding: 15px 18px;
  }
}


