/* ==========================================================================
   SSC CGL PREPARATION SYSTEM - LUXURY EDITORIAL DESIGN SYSTEM
   Palette: Warm Cream (#FAF8F4), Obsidian Ink (#1B1325), Terracotta (#D9381E), Saffron (#F5A623), Teal (#0B6E4F)
   Typography: 'Fraunces' (Serif) + 'Manrope' (Sans-Serif)
   Full Cross-Device Responsive: Mobile Phones (360px - 480px), Tablets & Laptops (1024px+)
   ========================================================================== */

:root {
  --ink: #1B1325;
  --ink-soft: rgba(27, 19, 37, 0.72);
  --ink-muted: rgba(27, 19, 37, 0.52);
  --paper: #FAF8F4;
  --paper-2: #F2ECE0;
  --paper-3: #EAE1D0;
  --card: #FFFFFF;
  
  --coral: #D9381E;
  --coral-hover: #B82C15;
  --coral-soft: rgba(217, 56, 30, 0.08);
  --coral-border: rgba(217, 56, 30, 0.25);

  --saffron: #F5A623;
  --saffron-dark: #C97F0E;
  --saffron-soft: rgba(245, 166, 35, 0.12);

  --teal: #0B6E4F;
  --teal-light: #10B981;
  --teal-soft: rgba(11, 110, 79, 0.09);

  --line: rgba(27, 19, 37, 0.12);
  --line-heavy: rgba(27, 19, 37, 0.22);
  --max: 1140px;

  --shadow-sm: 0 2px 8px rgba(27, 19, 37, 0.05);
  --shadow-md: 0 8px 24px -4px rgba(27, 19, 37, 0.08);
  --shadow-lg: 0 20px 45px -12px rgba(27, 19, 37, 0.14);
  --shadow-featured: 0 24px 50px -10px rgba(217, 56, 30, 0.22);
  --shadow-dark: 0 24px 50px -10px rgba(0, 0, 0, 0.4);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--paper);
  color: var(--ink);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Dual language toggle rule */
[data-lang="hi"] .lang-en,
[data-lang="en"] .lang-hi {
  display: none !important;
}

h1, h2, h3, h4, .serif {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
}

p {
  margin: 0;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* ================= HEADER / TOPBAR ================= */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.headbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
}

.brand-dot {
  width: 10px;
  height: 10px;
  background: var(--coral);
  border-radius: 50%;
  display: inline-block;
  flex: none;
}

.lang-toggle {
  display: inline-flex;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--paper);
}

.lang-toggle button {
  border: none;
  background: transparent;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  transition: all 0.2s ease;
  min-height: 36px;
  display: flex;
  align-items: center;
}

.lang-toggle button.active {
  background: var(--ink);
  color: #FFFFFF;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  font-family: 'Manrope', sans-serif;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid var(--ink);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 46px;
}

.btn-primary {
  background: var(--coral);
  border-color: var(--coral);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(217, 56, 30, 0.28);
}

.btn-primary:hover {
  background: var(--coral-hover);
  border-color: var(--coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 56, 30, 0.35);
}

.btn-saffron {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.3);
}

.btn-saffron:hover {
  background: #E5981A;
  border-color: #E5981A;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-heavy);
}

.btn-ghost:hover {
  background: var(--paper-2);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn-pulse {
  animation: pulse-border 2.5s infinite;
}

@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217, 56, 30, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(217, 56, 30, 0); }
}

/* ================= HERO SECTION ================= */
.hero {
  padding: 56px 0 0;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 50% 10%, rgba(245, 166, 35, 0.08) 0%, transparent 60%);
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 48px;
}

.pain-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--coral);
  background: var(--coral-soft);
  border: 1px solid var(--coral-border);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  color: var(--coral);
  font-style: italic;
}

.hero-sub {
  margin: 20px auto 0;
  font-size: 18px;
  max-width: 58ch;
  color: var(--ink-soft);
  line-height: 1.6;
}

.hero-ctas {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-meta {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--ink-muted);
}

/* ================= 3 BUNDLE COVERS SHOWCASE (TOP OF SITE) ================= */
.bundle-covers-hero {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ================= 3-PLAN HERO GRID (ALL 3 TIERS VISIBLE AT TOP) ================= */
.hero-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
  text-align: left;
}

.hero-plan-card {
  background: #FFFFFF;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}

.hero-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.hero-plan-card.featured-smart {
  border-color: #F5A623;
  background: #FFFCF7;
}

.hero-plan-card.hero-tier-ultimate {
  border: 2px solid #F5A623;
  background: #1B1325;
  color: #FFFFFF;
  box-shadow: 0 16px 36px -8px rgba(217, 56, 30, 0.4);
}

.hero-plan-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.hero-plan-card.hero-tier-ultimate .hero-plan-badge-top {
  background: var(--coral);
}

.hero-plan-header {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.hero-plan-card.hero-tier-ultimate .hero-plan-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-plan-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}

.hero-plan-card.hero-tier-ultimate .hero-plan-title {
  color: #FFFFFF;
}

.hero-plan-price {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  margin-top: 4px;
}

.hero-plan-card.hero-tier-ultimate .hero-plan-price {
  color: #FDE68A;
}

.hero-plan-sub {
  font-size: 12px;
  color: var(--ink-muted);
}

.hero-plan-card.hero-tier-ultimate .hero-plan-sub {
  color: rgba(255, 255, 255, 0.65);
}

.hero-plan-bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hero-plan-bullets li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 600;
  color: #1A1323;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.45;
}

.hero-plan-card.hero-tier-ultimate .hero-plan-bullets li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-plan-bullets li::before {
  content: "✓";
  color: #065F46;
  background: #D1FAE5;
  border: 1px solid #6EE7B7;
  font-weight: 900;
  font-size: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-top: 2px;
}

.hero-plan-bullets li.no {
  color: var(--ink-muted);
  opacity: 0.65;
}

.hero-plan-bullets li.no::before {
  content: "✕";
  color: #9CA3AF;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  font-weight: 800;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-top: 2px;
}

.hero-plan-card.hero-tier-ultimate .hero-plan-bullets li {
  color: #F9FAFB;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-plan-card.hero-tier-ultimate .hero-plan-bullets li strong,
.hero-plan-card.hero-tier-ultimate .hero-plan-bullets li b {
  color: #FFFFFF;
}

.hero-plan-card.hero-tier-ultimate .hero-plan-bullets li::before {
  color: #064E3B;
  background: #34D399;
  border: 1px solid #A7F3D0;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
}

/* ================= TIER INCLUSION HIGHLIGHT BADGES ================= */
.plan-included-highlight {
  background: #ECFDF5 !important;
  border: 1.5px solid #10B981 !important;
  border-radius: var(--radius-sm);
  padding: 10px 14px !important;
  margin: 6px 0 10px 0 !important;
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.18);
}

.plan-included-highlight span {
  color: #065F46 !important;
  font-weight: 800 !important;
  font-size: 13.5px !important;
  line-height: 1.4 !important;
}

.plan-included-highlight::before {
  content: "⭐" !important;
  background: transparent !important;
  border: none !important;
  font-size: 15px !important;
  margin-top: 0 !important;
  box-shadow: none !important;
}

.plan-included-highlight.ultimate-included-highlight {
  background: rgba(245, 166, 35, 0.2) !important;
  border: 1.5px solid #F5A623 !important;
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.28);
}

.plan-included-highlight.ultimate-included-highlight span {
  color: #FDE68A !important;
  font-weight: 800 !important;
  font-size: 13.5px !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.plan-included-highlight.ultimate-included-highlight::before {
  content: "🔥" !important;
  background: transparent !important;
  border: none !important;
  font-size: 15px !important;
  box-shadow: none !important;
}

/* ================= PDF DEMO SLIDESHOW ================= */
.pdf-demo-section {
  padding: 60px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pdf-slideshow-container {
  max-width: 980px;
  margin: 32px auto 0;
  background: #FAF6EE;
  border: 2px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.pdf-tabs-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 14px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
}

.pdf-tab-btn {
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pdf-tab-btn:hover {
  border-color: var(--coral);
  color: var(--ink);
  transform: translateY(-1px);
}

.pdf-tab-btn.active {
  background: var(--ink);
  color: #FFFFFF;
  border-color: var(--ink);
  box-shadow: 0 4px 12px rgba(27, 19, 37, 0.2);
}

.pdf-slides-viewport {
  position: relative;
  min-height: 480px;
}

.pdf-slide {
  display: none;
  width: 100%;
  animation: fadeInSlide 0.3s ease;
}

.pdf-slide.active {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
}

@keyframes fadeInSlide {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide-img-frame {
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: 0 16px 36px -10px rgba(0,0,0,0.18);
  position: relative;
  overflow: hidden;
  max-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-img-frame img {
  max-width: 100%;
  max-height: 450px;
  height: auto;
  border-radius: 4px;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.slide-img-frame:hover img {
  transform: scale(1.02);
}

.slide-info-panel {
  text-align: left;
}

.slide-book-tag {
  display: inline-block;
  background: var(--saffron-light);
  color: var(--saffron-dark);
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.slide-title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 10px;
}

.slide-desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 18px;
}

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

.slide-highlights li {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.slide-highlights li::before {
  content: "⚡";
  font-size: 14px;
}

.slideshow-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.slide-nav-btn {
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  color: var(--ink);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slide-nav-btn:hover {
  background: var(--ink);
  color: #FFFFFF;
  border-color: var(--ink);
}

.slide-dots {
  display: flex;
  gap: 8px;
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: all 0.2s ease;
}

.slide-dot.active {
  background: var(--coral);
  width: 24px;
  border-radius: 6px;
}

@media (max-width: 800px) {
  .pdf-slideshow-container {
    padding: 16px 12px;
    margin: 20px auto 0;
    border-radius: var(--radius-lg);
  }
  .pdf-tabs-nav {
    gap: 6px;
    padding-bottom: 8px;
    margin-bottom: 14px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .pdf-tabs-nav::-webkit-scrollbar {
    display: none;
  }
  .pdf-tab-btn {
    padding: 6px 13px;
    font-size: 12px;
  }
  .pdf-slides-viewport {
    min-height: auto;
  }
  .pdf-slide.active {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .slide-img-frame {
    padding: 4px;
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    width: 100%;
    max-height: 480px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
  }
  .slide-img-frame img {
    width: 100%;
    height: auto;
    max-height: 470px;
    object-fit: contain;
    border-radius: 2px;
    display: block;
  }
  .slide-info-panel {
    padding: 0 4px;
  }
  .slide-book-tag {
    font-size: 10.5px;
    padding: 3px 10px;
    margin-bottom: 6px;
  }
  .slide-title {
    font-size: 19px;
    line-height: 1.25;
    margin-bottom: 6px;
  }
  .slide-desc {
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 12px;
  }
  .slide-highlights {
    gap: 5px;
    margin-bottom: 14px;
  }
  .slide-highlights li {
    font-size: 12.5px;
    line-height: 1.4;
  }
  .slideshow-controls {
    margin-top: 14px;
    padding-top: 10px;
  }
}

/* ==========================================================================
   WHO IT IS FOR VS WHO IT IS NOT FOR (QUALIFICATION SECTION)
   ========================================================================== */
.qualification-section {
  padding: 64px 0;
  background: #FAF6EE;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.qual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 980px;
  margin: 36px auto 0;
}

.qual-card {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.qual-card.qual-for {
  background: #FFFFFF;
  border: 2px solid #10B981;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
}

.qual-card.qual-not-for {
  background: #FFFFFF;
  border: 2px solid #EF4444;
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.1);
}

.qual-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}

.qual-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
}

.qual-for .qual-icon {
  background: #D1FAE5;
  color: #065F46;
  border: 1.5px solid #6EE7B7;
}

.qual-not-for .qual-icon {
  background: #FEE2E2;
  color: #991B1B;
  border: 1.5px solid #FCA5A5;
}

.qual-card-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.qual-for .qual-card-title {
  color: #065F46;
}

.qual-not-for .qual-card-title {
  color: #991B1B;
}

.qual-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.qual-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}

.qual-list-icon {
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 800;
}

.qual-for .qual-list-icon {
  color: #059669;
}

.qual-not-for .qual-list-icon {
  color: #DC2626;
}

/* ==========================================================================
   WHAT HAPPENS AFTER PURCHASE (POST-PURCHASE STEPS)
   ========================================================================== */
.post-purchase-section {
  padding: 64px 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
}

.steps-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 36px auto 0;
}

.step-card {
  background: #FAF6EE;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.step-number-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--saffron-dark));
  color: #FFFFFF;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(217, 56, 30, 0.25);
}

.step-title {
  font-family: 'Fraunces', serif;
  font-size: 16.5px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}

.step-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .qual-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .steps-timeline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .hero-plans-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 540px) {
  .steps-timeline-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.cover-photo-card {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: all 0.25s ease;
}

.cover-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cover-photo-card.hero-tier {
  border-color: var(--saffron-dark);
  background: #FFFDF9;
  box-shadow: 0 12px 30px -6px rgba(245, 166, 35, 0.22);
}

.cover-badge-tag {
  position: absolute;
  top: -10px;
  background: var(--ink);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cover-photo-card.hero-tier .cover-badge-tag {
  background: var(--coral);
}

.cover-img-slot {
  width: 100%;
  min-height: 200px;
  background: repeating-linear-gradient(135deg, rgba(27,19,37,0.03) 0 10px, transparent 10px 20px), var(--paper-2);
  border: 2px dashed rgba(27, 19, 37, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
  margin-top: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
}

.cover-img-slot img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  border-radius: 4px;
}

.cover-title {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 4px;
}

.cover-sub {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ================= PAIN STRIP ================= */
.pain-strip {
  background: var(--ink);
  padding: 28px 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.pain-grid .p {
  color: #FFFFFF;
  text-align: center;
  padding: 8px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14.5px;
  font-weight: 500;
}

.pain-grid .p:first-child {
  border-left: none;
}

.pain-grid .p b {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  color: var(--saffron);
  margin-bottom: 4px;
  font-weight: 600;
}

/* ================= GENERAL SECTIONS ================= */
section {
  padding: 72px 0;
}

.section-alt {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 680px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: 32px;
  line-height: 1.22;
}

.section-head p {
  margin-top: 12px;
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.section-head.center {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ================= PROBLEM / FIX GRID ================= */
.problem-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.problem-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.problem-card:hover {
  transform: translateY(-3px);
}

.problem-q {
  font-weight: 600;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--coral);
  display: flex;
  align-items: center;
  gap: 8px;
}

.problem-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.problem-card.fix {
  background: var(--ink);
  border-color: var(--ink);
}

.problem-card.fix .problem-q {
  color: var(--saffron);
}

.problem-card.fix p {
  color: rgba(255, 255, 255, 0.85);
}

/* ================= 7-STAGE FLOW ================= */
.flow {
  display: flex;
  gap: 0;
  margin-top: 12px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.flow-step {
  flex: 1;
  min-width: 130px;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 22px 14px;
  text-align: center;
  position: relative;
  transition: background 0.2s;
}

.flow-step + .flow-step {
  border-left: none;
}

.flow-step:hover {
  background: #FFFAF0;
}

.flow-step .num {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--coral);
  background: var(--coral-soft);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.flow-step b {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 700;
  color: var(--ink);
}

.flow-step span {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.flow-step:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -11px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: var(--ink);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 2;
}

/* ================= HANDWRITTEN NOTES PHOTO SLOTS ================= */
.photo-slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.photo-slot-card {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}

.photo-slot-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.photo-img-box {
  width: 100%;
  min-height: 240px;
  background: repeating-linear-gradient(135deg, rgba(27,19,37,0.03) 0 10px, transparent 10px 20px), var(--paper-2);
  border: 2px dashed rgba(27, 19, 37, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
  text-align: center;
}

.photo-img-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.photo-caption {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notes-caption {
  text-align: center;
  font-size: 15.5px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ================= BILINGUAL SECTION ================= */
.bi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.bi-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.bi-card:hover {
  transform: translateY(-3px);
}

.bi-card .flag {
  font-size: 32px;
  margin-bottom: 12px;
}

.bi-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.bi-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.bi-feature-list {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.bi-feature-list li {
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.bi-feature-list li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 800;
}

/* ================= EXCEL TRACKER SECTION ================= */
.excel-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.checklist {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  align-items: flex-start;
  color: var(--ink);
}

.checklist li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 800;
  flex: none;
}

.pill {
  display: inline-block;
  margin-top: 20px;
  font-size: 12.5px;
  font-weight: 800;
  color: #FFFFFF;
  background: var(--teal);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.excel-photo-box {
  width: 100%;
  min-height: 320px;
  background: repeating-linear-gradient(135deg, rgba(27,19,37,0.03) 0 10px, transparent 10px 20px), var(--paper-2);
  border: 2px dashed rgba(11, 110, 79, 0.35);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.excel-photo-box img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 6px;
}

/* ================= PRACTICE & MOCKS ================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.feature-block .big {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  color: var(--coral);
  line-height: 1;
  font-weight: 700;
}

.feature-block .big-label {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-top: 8px;
  font-weight: 600;
}

.mini-flow {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
}

.mini-flow span {
  background: var(--paper-2);
  padding: 6px 10px;
  border-radius: 6px;
}

/* ================= REVISION RESOURCES ================= */
.revision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.rev-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.rev-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
}

.rev-card b {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--ink);
}

.rev-card span {
  font-size: 13px;
  color: var(--coral);
  font-weight: 700;
}

/* ================= VALUE FRAME BEFORE PRICING ================= */
.value-frame {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: var(--shadow-dark);
}

.value-frame h2 {
  color: #FFFFFF;
  font-size: 28px;
  max-width: 650px;
  margin: 0 auto;
}

.value-compare {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.value-compare .vc {
  text-align: center;
}

.value-compare .vc b {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 30px;
  color: var(--saffron);
  font-weight: 700;
}

.value-compare .vc span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

/* ================= PRICING SECTION ================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.plan.featured {
  border-color: var(--coral);
  box-shadow: var(--shadow-featured);
  transform: translateY(-6px);
}

.plan.featured:hover {
  transform: translateY(-10px);
}

.plan.dark-ultimate {
  border-color: var(--ink);
  background: var(--ink);
  color: #FFFFFF;
  box-shadow: var(--shadow-dark);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--coral);
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.plan-name {
  font-size: 13.5px;
  letter-spacing: .04em;
  color: var(--ink-soft);
  font-weight: 800;
  text-transform: uppercase;
}

.plan.dark-ultimate .plan-name {
  color: rgba(255, 255, 255, 0.7);
}

.plan-price {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  margin-top: 6px;
  font-weight: 700;
  line-height: 1;
}

.plan.dark-ultimate .plan-price {
  color: #FFFFFF;
}

.plan-price .per {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
}

.plan-tag {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 6px;
}

.plan.dark-ultimate .plan-tag {
  color: rgba(255, 255, 255, 0.75);
}

.plan-job {
  margin-top: 14px;
  font-weight: 800;
  font-size: 12.5px;
  color: var(--teal);
  letter-spacing: 0.5px;
}

.plan.dark-ultimate .plan-job {
  color: var(--saffron);
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 11px;
  flex: 1;
}

/* ================= PLAN FEATURE LISTS & HIGHLIGHTS ================= */
.plan li {
  font-size: 14.5px;
  font-weight: 600; /* Rich punchy weight */
  color: #1A1323;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}

.plan li b,
.plan li strong {
  font-weight: 800;
  color: #0F0A15;
}

/* Feature Highlight Badges (Handwritten notes, Excel, MCQs) */
.badge-feature {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 7px;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: -0.01em;
  line-height: 1.35;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Handwritten Notes Highlight (Warm Amber / Terracotta) */
.badge-feature.badge-notes {
  background: linear-gradient(135deg, rgba(217, 56, 30, 0.12), rgba(245, 166, 35, 0.22));
  color: #B91C1C;
  border: 1px solid rgba(217, 56, 30, 0.35);
  box-shadow: 0 2px 8px rgba(217, 56, 30, 0.12);
}

/* Excel Tracker & Dashboard Highlight (Emerald Tech) */
.badge-feature.badge-excel {
  background: linear-gradient(135deg, rgba(11, 110, 79, 0.14), rgba(16, 185, 129, 0.22));
  color: #065F46;
  border: 1px solid rgba(11, 110, 79, 0.4);
  box-shadow: 0 2px 8px rgba(11, 110, 79, 0.12);
}

/* Plan Checkmarks (Tactile Circular Badges) */
.plan li::before {
  content: "✓";
  color: #065F46;
  background: #D1FAE5;
  border: 1.5px solid #6EE7B7;
  font-weight: 900;
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-top: 1px;
}

/* Ultimate Kit (Hero Dark Card) High Impact Styling */
.plan.dark-ultimate li {
  color: #F9FAFB; /* Pure high-contrast white */
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.plan.dark-ultimate li b,
.plan.dark-ultimate li strong {
  color: #FFFFFF;
  font-weight: 800;
}

.plan.dark-ultimate li::before {
  color: #064E3B;
  background: #34D399;
  border: 1.5px solid #A7F3D0;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.6);
}

.plan.dark-ultimate .badge-feature.badge-ultimate {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.3), rgba(217, 56, 30, 0.35));
  color: #FEF08A;
  border: 1.5px solid rgba(245, 166, 35, 0.6);
  box-shadow: 0 0 14px rgba(245, 166, 35, 0.3);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

/* Excluded items */
.plan li.no {
  color: rgba(27, 19, 37, 0.35);
  font-weight: 500;
}

.plan li.no::before {
  content: "✕";
  color: #9CA3AF;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  font-size: 10px;
}

.plan.dark-ultimate li.no {
  color: rgba(255, 255, 255, 0.35);
}

.plan.dark-ultimate li.no::before {
  content: "–";
  color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.plan .btn {
  margin-top: 24px;
  text-align: center;
  width: 100%;
}

/* ================= COMPARISON TABLE ================= */
.table-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 12px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

table.compare {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 14.5px;
  font-weight: 600;
  background: var(--card);
}

table.compare th,
table.compare td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

table.compare td:first-child,
table.compare th:first-child {
  text-align: left;
  color: #140E1B;
}

table.compare td b {
  font-weight: 800;
  color: #0A0512;
}

table.compare thead th {
  font-family: 'Fraunces', serif;
  font-size: 15.5px;
  background: var(--paper-3);
  font-weight: 800;
  color: var(--ink);
}

table.compare .yes {
  color: #047857;
  font-weight: 900;
  font-size: 17px;
}

table.compare .no {
  color: rgba(27, 19, 37, 0.28);
  font-size: 16px;
}

/* ================= TRUST SECTION ================= */
.trust-flow {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.trust-flow .flow-step {
  background: var(--paper-2);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 36px;
}

.trust-grid dl {
  margin: 0;
  display: grid;
  gap: 16px;
}

.trust-grid dt {
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
}

.trust-grid dd {
  margin: 2px 0 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ================= FAQ SECTION ================= */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  font-family: 'Fraunces', serif;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--coral);
  font-weight: 600;
  flex: none;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ================= FINAL CTA & FOOTER ================= */
.final-cta {
  background: var(--ink);
  color: #FFFFFF;
  text-align: center;
  padding: 64px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
}

.final-cta h2 {
  color: #FFFFFF;
  font-size: 32px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 14px;
  font-size: 16px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .btn-primary {
  margin-top: 26px;
}

footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-muted);
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ================= COMPREHENSIVE RESPONSIVE STYLES ================= */

/* Tablets & Small Laptops (Max 960px) */
@media (max-width: 960px) {
  .hero h1 { font-size: 34px; }
  .bundle-covers-hero { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid .p:nth-child(3) { border-left: none; }
  .problem-list { grid-template-columns: 1fr; }
  .photo-slot-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .bi-grid { grid-template-columns: 1fr; }
  .excel-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .revision-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .plan.featured { transform: none; }
  .trust-grid { grid-template-columns: 1fr; }
  
  .flow { flex-direction: column; }
  .flow-step + .flow-step { border-left: 1px solid var(--line); border-top: none; }
  .flow-step:not(:last-child)::after {
    content: "⌄";
    right: 50%;
    top: auto;
    bottom: -11px;
    transform: translateX(50%);
  }

  .trust-flow { flex-direction: column; }
  .trust-flow .flow-step + .flow-step { border-left: 1px solid var(--line); }
}

/* Mobile Phones (Max 600px) */
@media (max-width: 600px) {
  body { font-size: 15px; }
  .wrap { padding: 0 16px; }

  header { padding: 2px 0; }
  .headbar { padding: 8px 16px; gap: 8px; }
  .brand { font-size: 16.5px; }
  .headbar .btn-ghost { padding: 6px 12px; font-size: 12px; }
  .lang-toggle button { padding: 4px 10px; font-size: 12px; }

  .hero { padding: 36px 0 0; }
  .hero-inner { padding-bottom: 32px; }
  .hero h1 { font-size: 27px; line-height: 1.22; }
  .hero-sub { font-size: 15.5px; margin-top: 14px; }
  .pain-tag { font-size: 12px; padding: 5px 12px; margin-bottom: 16px; }
  
  .hero-ctas { flex-direction: column; gap: 10px; }
  .hero-ctas .btn { width: 100%; font-size: 15px; }

  .bundle-covers-hero { margin-top: 32px; gap: 16px; }
  .cover-img-slot { min-height: 180px; }

  .pain-grid { grid-template-columns: 1fr; }
  .pain-grid .p { border-left: none; border-bottom: 1px solid rgba(255, 255, 255, 0.12); padding: 12px 8px; }
  .pain-grid .p:last-child { border-bottom: none; }

  section { padding: 50px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: 25px; }
  .section-head p { font-size: 15px; margin-top: 8px; }

  .problem-card { padding: 20px 16px; }
  .problem-q { font-size: 16.5px; }

  .photo-slot-card { padding: 12px; }
  .photo-img-box { min-height: 200px; padding: 10px; }

  .bi-card { padding: 22px 18px; }
  .bi-card h3 { font-size: 19px; }

  .excel-photo-box { min-height: 240px; padding: 14px; }

  .feature-block { padding: 22px 18px; }
  .feature-block .big { font-size: 34px; }

  .rev-card { padding: 18px 16px; }

  .value-frame { padding: 32px 18px; }
  .value-frame h2 { font-size: 22px; }
  .value-compare { gap: 20px; flex-direction: column; }
  .value-compare .vc b { font-size: 26px; }

  .plan { padding: 28px 18px; }
  .plan-price { font-size: 34px; }

  .final-cta { padding: 44px 18px; }
  .final-cta h2 { font-size: 25px; }
  .final-cta p { font-size: 14.5px; }
  .final-cta .btn { width: 100%; }

  footer .wrap { flex-direction: column; text-align: center; gap: 8px; }
}

/* ==========================================================================
   MOBILE STICKY BOTTOM ACTION BAR (HIGH-CONVERSION MOBILE CTA)
   ========================================================================== */
.mobile-sticky-bar {
  display: none; /* Hidden on desktop screens */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(27, 19, 37, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.35);
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom, 10px));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.msb-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.msb-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.msb-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--saffron);
}

.msb-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 6px var(--saffron);
}

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

.msb-price {
  font-family: 'Fraunces', serif;
  font-size: 16.5px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  white-space: nowrap;
}

.msb-discount {
  font-size: 11px;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.15);
  padding: 1px 6px;
  border-radius: 4px;
}

.msb-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.msb-action {
  flex-shrink: 0;
}

.msb-btn {
  padding: 10px 18px !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 16px rgba(217, 56, 30, 0.4) !important;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: block;
    animation: slideUpSticky 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  body {
    padding-bottom: 84px; /* Ensure content above footer is not obscured */
  }
}

@keyframes slideUpSticky {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ==========================================================================
   CONVERSION COMPONENTS (5-8% CRO ARCHITECTURE)
   ========================================================================== */

/* 1. Job Function Badges (LEARN / LEARN + PLAN + TRACK / 7-STAGE COMPLETE) */
.job-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 10px;
}

.job-badge.job-learn {
  background: #DCFCE7;
  color: #166534;
  border: 1.5px solid #86EFAC;
}

.job-badge.job-smart {
  background: #FEF3C7;
  color: #92400E;
  border: 1.5px solid #FCD34D;
}

.job-badge.job-ultimate {
  background: linear-gradient(135deg, #FDE68A, #F59E0B);
  color: #1A1323;
  border: 1.5px solid #F59E0B;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

/* 2. Bilingual Mega Callout (🇮🇳 Hindi = 🇬🇧 English in Every Single Plan) */
.bilingual-mega-callout {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.12), rgba(217, 56, 30, 0.08));
  border: 2px solid rgba(245, 166, 35, 0.45);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  max-width: 760px;
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.1);
}

.bilingual-mega-callout .flags {
  font-size: 26px;
  flex: none;
}

.bilingual-mega-callout-text {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.45;
}

.bilingual-mega-callout-text strong {
  font-weight: 800;
  color: #B91C1C;
}

/* 3. Hero Offer Box (Fast Path to Conversion) */
.hero-offer-box {
  background: #FFFFFF;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 36px;
  text-align: left;
  box-shadow: var(--shadow-featured);
  position: relative;
  overflow: hidden;
}

.hero-offer-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--coral), var(--saffron), var(--teal-light));
}

.hob-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.hob-tag {
  display: inline-block;
  background: #1B1325;
  color: #FDE68A;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.hob-price-box {
  text-align: right;
}

.hob-price {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.hob-price-sub {
  font-size: 12.5px;
  color: var(--ink-muted);
  margin-top: 4px;
}

.hob-bullets {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.hob-bullets li {
  font-size: 14.5px;
  font-weight: 600;
  color: #1A1323;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.45;
}

.hob-bullets li::before {
  content: "✓";
  color: #065F46;
  background: #D1FAE5;
  border: 1.5px solid #6EE7B7;
  font-weight: 900;
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-top: 2px;
}

.hob-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hob-sub-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-soft);
}

.hob-sub-link:hover {
  color: var(--coral);
  text-decoration: underline;
}

/* 4. Quick Value Snapshot Strip */
.snapshot-strip {
  background: #1B1325;
  color: #FFFFFF;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  text-align: center;
}

.snapshot-tile {
  padding: 12px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.snapshot-tile:last-child {
  border-right: none;
}

.snapshot-num {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--saffron);
  line-height: 1.1;
  display: block;
}

.snapshot-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 6px;
  line-height: 1.35;
}

/* 5. The 4 Fatal Student Mistakes Grid */
.mistakes-section {
  padding: 80px 0;
  background: var(--paper-2);
}

.mistakes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.mistake-card {
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.mistake-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  color: #B91C1C;
}

.mistake-body {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  background: rgba(217, 56, 30, 0.04);
  padding: 12px 14px;
  border-left: 3px solid #EF4444;
  border-radius: 4px;
}

.fix-body {
  font-size: 14.5px;
  color: #064E3B;
  line-height: 1.6;
  background: rgba(16, 185, 129, 0.08);
  padding: 12px 14px;
  border-left: 3px solid #10B981;
  border-radius: 4px;
  font-weight: 600;
}

.fix-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 14px;
  color: #065F46;
  margin-bottom: 4px;
}

/* 6. ₹100 No-Brainer Upgrade Callout */
.upgrade-contrast-card {
  background: linear-gradient(135deg, #1B1325, #2D1F3D);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  margin: 32px 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid rgba(245, 166, 35, 0.4);
}

.ucc-text h3 {
  color: #FDE68A;
  font-size: 20px;
  margin-bottom: 6px;
}

.ucc-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 65ch;
}

.ucc-badge {
  background: var(--coral);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 13.5px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  flex: none;
  white-space: nowrap;
}

/* Responsive adjustments for conversion components */
@media (max-width: 900px) {
  .snapshot-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
  }
  .snapshot-tile:nth-child(3) {
    border-right: none;
  }
  .hob-bullets {
    grid-template-columns: 1fr;
  }
  .mistakes-grid {
    grid-template-columns: 1fr;
  }
  .upgrade-contrast-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .snapshot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .snapshot-tile {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 14px;
  }
  .hero-offer-box {
    padding: 22px 18px;
  }
  .hob-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .hob-price-box {
    text-align: left;
    margin-top: 10px;
  }
}

