@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css');

/* ==========================================================================
   1. DESIGN SYSTEM & ROOT VARIABLES
   ========================================================================== */
:root {
  --font-family: 'Pretendard', -apple-system, sans-serif;
  
  /* Color Palette - Stable & Trustworthy White Theme */
  --bg-dark: #F8F9FA;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F1F3F5;
  --border-color: rgba(0, 0, 0, 0.08);
  --border-focus: rgba(30, 80, 246, 0.5);
  
  --color-primary: #1E50F6;    /* Royal Blue (trustworthy, stable) */
  --color-secondary: #0CA678;  /* Mint/Teal (growth, success) */
  --color-gold: #F39C12;       /* Orange-Gold */
  --color-text-main: #212529;  /* Dark charcoal for high readability */
  --color-text-muted: #495057; /* Medium charcoal */
  --color-text-dim: #868E96;   /* Gray text */
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, #1E50F6 0%, #0CA678 100%);
  --grad-text: linear-gradient(135deg, #212529 0%, #1E50F6 50%, #0CA678 100%);
  --grad-gold: linear-gradient(135deg, #f39c12 0%, #d35400 100%);
  --grad-card: linear-gradient(135deg, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.03) 100%);
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

/* ==========================================================================
   2. BASE RESET & GENERAL STYLES
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  font-size: 16px;
}

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

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

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

button {
  font-family: inherit;
}

/* Common Layout Container */
.container {
  width: 100%;
  max-width: 800px; /* Adjusted wider brand layout width */
  margin: 0 auto;
  padding: 0 20px;
}

/* Highlight styles */
em {
  font-style: normal;
  color: var(--color-primary);
  font-weight: 700;
}

strong {
  font-weight: 800;
}

.text-gold {
  color: var(--color-gold) !important;
}

/* ==========================================================================
   3. ANNOUNCEMENT & URGENCY BARS
   ========================================================================== */
.top-announcement {
  background: linear-gradient(90deg, #18181c 0%, #26262f 100%);
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 10px 15px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 100;
}

.announcement-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.announcement-badge {
  background-color: var(--color-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 3px;
}

.announcement-inner a {
  text-decoration: underline;
  color: #ccc;
  margin-left: 5px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.announcement-inner a:hover {
  color: var(--color-gold);
}

/* Urgent Scrolling Bar */
.urgent-bar {
  background: linear-gradient(90deg, #FF3B5C 0%, #C850C0 50%, #FF3B5C 100%);
  background-size: 200% 100%;
  animation: bg-slide 3s linear infinite;
  padding: 12px 20px;
  text-align: center;
  position: relative;
  z-index: 99;
}

@keyframes bg-slide {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.urgent-bar p {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  line-height: 1.5;
}

.urgent-bar span.timer {
  display: inline-block;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  padding: 2px 8px;
  margin-left: 6px;
  font-size: 15px;
  font-weight: 900;
  color: var(--color-gold);
  letter-spacing: 1px;
}

.urgent-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero {
  background: var(--bg-dark);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Radial Glow Background Effect */
.hero::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(200, 80, 192, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 12px;
  color: var(--color-gold);
  font-weight: 700;
}

.hero-eyebrow {
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
  background: rgba(255, 59, 92, 0.1);
  border: 1px solid rgba(255, 59, 92, 0.3);
  padding: 4px 14px;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
  word-break: keep-all;
}

.hero-sub {
  font-size: clamp(16px, 3vw, 21px);
  color: var(--color-text-muted);
  margin-bottom: 35px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  word-break: keep-all;
}

/* E-Book Mockup Styling */
.hero-book-wrap {
  max-width: 320px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

.hero-book-wrap img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(255, 59, 92, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: floating 3.5s ease-in-out infinite;
}

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

.hero-book-label {
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 10;
  background: var(--grad-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 59, 92, 0.4);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.hero-stars {
  color: var(--color-gold);
  font-size: 20px;
  letter-spacing: 3px;
  margin-top: 15px;
}

.hero-review-count {
  font-size: 13px;
  color: var(--color-text-dim);
  margin-top: 5px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.hero-stat-card {
  background: var(--grad-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px 8px;
  text-align: center;
  transition: var(--transition-smooth);
}

.hero-stat-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-stat-num {
  font-size: clamp(20px, 3.5vw, 26px);
  font-weight: 900;
  color: var(--color-gold);
  display: block;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--color-text-dim);
  margin-top: 4px;
  display: block;
}

.hero-checklist {
  list-style: none;
  max-width: 480px;
  margin: 0 auto 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--color-text-muted);
}

.hero-checklist li::before {
  content: '✅';
  flex-shrink: 0;
  margin-top: 2px;
}

.price-row {
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.orig-price {
  font-size: 15px;
  color: var(--color-text-dim);
  text-decoration: line-through;
  margin-right: 10px;
}

.curr-price {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-primary);
}

.curr-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-dim);
}

/* Primary Pulsing CTA Button */
.cta-button {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto 15px;
  background: var(--grad-primary);
  color: #fff !important;
  text-align: center;
  font-size: clamp(16px, 2.5vw, 19px);
  font-weight: 900;
  padding: 18px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(255, 59, 92, 0.4);
  transition: var(--transition-smooth);
  animation: cta-pulse 2s infinite;
  position: relative;
  z-index: 2;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 59, 92, 0.6);
}

@keyframes cta-pulse {
  0% { box-shadow: 0 8px 30px rgba(255, 59, 92, 0.4); }
  50% { box-shadow: 0 8px 45px rgba(255, 59, 92, 0.75), 0 0 0 10px rgba(255, 59, 92, 0.15); }
  100% { box-shadow: 0 8px 30px rgba(255, 59, 92, 0.4); }
}

.hero-trust {
  font-size: 12px;
  color: var(--color-text-dim);
  margin-top: 15px;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   5. DYNAMIC VALUE PROPOSITION BANNER
   ========================================================================== */
.value-banner {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.01);
  padding: 40px 0;
}

.value-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.value-item {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
  min-width: 200px;
}

.value-discount {
  color: var(--color-primary);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.1;
}

.value-original {
  text-decoration: line-through;
  color: var(--color-text-dim);
  font-size: 1.1rem;
}

.value-earlybird {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 5px;
}

.value-installment {
  display: flex;
  align-items: baseline;
  margin-top: 5px;
}

.value-installment .monthly {
  font-size: 1.8rem;
  font-weight: 800;
  margin-right: 6px;
}

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

.value-installment .unit {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-primary);
  margin-left: 2px;
}

.value-notice {
  font-size: 14px;
  color: var(--color-text-dim);
  margin-top: 8px;
}

/* ==========================================================================
   6. PAIN POINT / AGITATION SECTION
   ========================================================================== */
.pain {
  background-color: #0c0c0f;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.pain-tag {
  display: inline-block;
  background: rgba(255, 59, 92, 0.12);
  border: 1px solid rgba(255, 59, 92, 0.4);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 20px;
  word-break: keep-all;
}

.section-title em {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  word-break: keep-all;
}

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 45px;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(255, 59, 92, 0.05);
  border: 1px solid rgba(255, 59, 92, 0.15);
  border-radius: 12px;
  padding: 18px 24px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition-smooth);
  text-align: left;
}

.pain-item:hover {
  border-color: rgba(255, 59, 92, 0.3);
  background: rgba(255, 59, 92, 0.08);
}

.pain-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
}

.divider-icon {
  text-align: center;
  margin: 35px 0;
  position: relative;
}

.divider-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.divider-icon span {
  position: relative;
  background: #0c0c0f;
  padding: 0 18px;
  color: var(--color-gold);
  font-size: 22px;
}

.solution-box {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.04), rgba(200, 80, 192, 0.04));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
}

.solution-box h3 {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 900;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.solution-box p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ==========================================================================
   7. CORE CHAPTERS SECTION
   ========================================================================== */
.chapters {
  background-color: var(--bg-dark);
  padding: 80px 0;
  text-align: center;
}

.chapters-tag {
  display: inline-block;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.chapters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
  margin-top: 40px;
}

.chapter-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.chapter-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: var(--color-primary);
  opacity: 0;
  transition: var(--transition-smooth);
}

.chapter-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 80, 192, 0.3);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.chapter-card:hover::after {
  opacity: 1;
}

.chapter-badge {
  display: inline-block;
  background: rgba(255, 59, 92, 0.15);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.chapter-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.chapter-card h3 {
  font-size: 18px;
  font-weight: 850;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
}

.chapter-card p {
  font-size: 14px;
  color: var(--color-text-dim);
  line-height: 1.6;
}

/* Bonus Box Styling */
.bonus-box {
  background: linear-gradient(135deg, rgba(255, 59, 92, 0.08), rgba(200, 80, 192, 0.08));
  border: 1px solid rgba(255, 59, 92, 0.25);
  border-radius: 16px;
  padding: 30px 24px;
  margin-bottom: 40px;
  text-align: left;
}

.bonus-box h3 {
  font-size: 17px;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bonus-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
  color: var(--color-text-muted);
}

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

.bonus-item span:first-child {
  font-size: 18px;
}

.bonus-free {
  margin-left: auto;
  background: rgba(255, 215, 0, 0.15);
  color: var(--color-gold);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

/* ==========================================================================
   8. COMPARISON SECTION
   ========================================================================== */
.comparison {
  background-color: #0c0c0f;
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.comparison-box {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.comp-col {
  width: 50%;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.comp-col.left {
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-text-dim);
}

.comp-col.right {
  background: linear-gradient(145deg, #ff1f5c 0%, #bd1241 100%);
  color: #fff;
  border-color: rgba(255, 59, 92, 0.3);
  box-shadow: 0 15px 40px rgba(255, 31, 92, 0.25);
  transform: translateY(-5px);
}

.comp-head {
  text-align: center;
  font-size: 21px;
  font-weight: 800;
  padding: 25px 15px 15px;
}

.comp-badges {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-bottom: 15px;
  flex-wrap: wrap;
}

.comp-badge {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}

.comp-badge span {
  color: var(--color-gold);
}

.comp-list {
  list-style: none;
  padding: 0 20px 30px;
}

.comp-list li {
  font-size: 15px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  word-break: keep-all;
  letter-spacing: -0.2px;
}

.comp-col.left .comp-list li strong {
  color: #bbb;
}

.comp-col.right .comp-list li {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

.comp-col.right .comp-list li strong {
  color: #fff;
}

.comp-list li:last-child {
  border-bottom: none;
}

.comp-bottom-copy {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 30px 20px;
  text-align: center;
  border-radius: 16px;
}

.comp-bottom-copy p {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  line-height: 1.6;
}

.comp-bottom-copy p:last-child {
  margin-bottom: 0;
}

.comp-bottom-copy strong {
  color: var(--color-primary);
}

/* ==========================================================================
   9. INTERACTIVE REAL-TIME TESTIMONIALS (REVIEWS)
   ========================================================================== */
.reviews {
  background-color: var(--bg-dark);
  padding: 80px 0;
}

.reviews-header {
  margin-bottom: 40px;
  text-align: center;
}

.reviews-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 35px;
}

.reviews-stat-pill {
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gold);
}

/* Featured review box */
.featured-review {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(200, 80, 192, 0.05));
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 16px;
  padding: 30px 24px;
  margin-bottom: 35px;
  position: relative;
}

.featured-quote-mark {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 60px;
  color: rgba(255, 215, 0, 0.08);
  line-height: 1;
  font-family: serif;
}

.featured-stars {
  color: var(--color-gold);
  font-size: 15px;
  margin-bottom: 12px;
}

.featured-quote {
  font-size: clamp(15px, 2.5vw, 19px);
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 20px;
  word-break: keep-all;
}

.featured-quote strong {
  color: var(--color-gold);
}

.featured-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.featured-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  font-weight: 800;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-content: center;
}

.review-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px 20px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  border-color: rgba(255, 215, 0, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.review-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.review-meta {
  font-size: 11px;
  color: var(--color-text-dim);
  margin-top: 2px;
}

.review-stars-small {
  color: var(--color-gold);
  font-size: 12px;
  margin-bottom: 10px;
}

.review-card-text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.review-card-text.expanded {
  display: block;
  -webkit-line-clamp: unset;
}

.review-expand-btn {
  font-size: 12px;
  color: var(--color-text-dim);
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
  align-self: flex-start;
  font-weight: 600;
}

.review-highlight-badge {
  display: inline-block;
  background: rgba(255, 59, 92, 0.12);
  border: 1px solid rgba(255, 59, 92, 0.25);
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 12px;
  align-self: flex-start;
}

/* ==========================================================================
   10. TIMED URGENCY CARD & FINAL CALL SECTION
   ========================================================================== */
.final-call {
  background-color: #0c0c0f;
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.final-viewers-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--color-gold);
}

.final-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: dot-pulse 1.2s infinite;
}

@keyframes dot-pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.6); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.final-box {
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid rgba(255, 215, 0, 0.25);
  border-radius: 24px;
  padding: 40px 24px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.final-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #FF3B5C, #C850C0, #FFD700);
}

.final-badge {
  display: inline-block;
  background: var(--grad-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.final-plan-name {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 15px;
}

.final-price-note {
  font-size: 13px;
  color: var(--color-text-dim);
  margin-top: 5px;
  margin-bottom: 20px;
}

.final-includes {
  list-style: none;
  text-align: left;
  max-width: 420px;
  margin: 0 auto 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.final-includes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.final-includes li::before {
  content: '✅';
  flex-shrink: 0;
}

.final-installment {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--color-gold);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
}

.final-urgency {
  background: rgba(255, 59, 92, 0.06);
  border: 1px solid rgba(255, 59, 92, 0.25);
  border-radius: 12px;
  padding: 18px 20px;
  max-width: 460px;
  margin: 25px auto 0;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.final-urgency strong {
  color: var(--color-primary);
}

/* ==========================================================================
   11. INTERACTIVE FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq {
  background-color: var(--bg-dark);
  padding: 80px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

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

.faq-item.open {
  border-color: rgba(255, 215, 0, 0.3);
  background: var(--bg-card-hover);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}

.faq-q-text {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  flex: 1;
}

.faq-item.open .faq-q-text {
  color: var(--color-gold);
}

.faq-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

.faq-tag.tag-content { background: rgba(74, 222, 128, 0.15); color: #4ADE80; }
.faq-tag.tag-price { background: rgba(255, 215, 0, 0.15); color: var(--color-gold); }
.faq-tag.tag-refund { background: rgba(255, 107, 157, 0.15); color: #FF6B9D; }
.faq-tag.tag-use { background: rgba(147, 197, 253, 0.15); color: #93C5FD; }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-smooth);
  font-size: 16px;
  color: var(--color-text-dim);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(255, 215, 0, 0.15);
  color: var(--color-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 24px;
}

.faq-answer-inner {
  padding-bottom: 20px;
  padding-top: 15px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.75;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   12. FOOTER SECTION
   ========================================================================== */
.footer {
  background-color: #050506;
  border-top: 1px solid var(--border-color);
  padding: 50px 0;
  text-align: center;
  font-size: 12px;
  color: var(--color-text-dim);
}

.footer-logo {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.footer-info {
  line-height: 1.8;
  margin-bottom: 20px;
  word-break: keep-all;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-links a {
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #fff;
}

.copyright {
  margin-top: 10px;
}

/* ==========================================================================
   13. INTERACTIVE FLOATING & POSITIONED WIDGETS (STICKY BAR, TOAST)
   ========================================================================== */
/* Sticky Bottom Purchase Bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 100%;
  max-width: 640px;
  z-index: 999;
  background: rgba(10, 10, 12, 0.96);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-bottom: none;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-bar.visible {
  transform: translate(-50%, 0);
}

.sticky-left {
  display: flex;
  flex-direction: column;
}

.sticky-orig-price {
  font-size: 11px;
  color: var(--color-text-dim);
  text-decoration: line-through;
}

.sticky-curr-price {
  font-size: 18px;
  font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.sticky-badge {
  font-size: 10px;
  color: var(--color-text-dim);
}

.sticky-btn {
  flex: 1;
  max-width: 260px;
  background: var(--grad-primary);
  color: #fff !important;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 59, 92, 0.4);
  transition: var(--transition-smooth);
  animation: sticky-pulse 2s infinite;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.sticky-btn:hover {
  transform: scale(1.02);
}

@keyframes sticky-pulse {
  0% { box-shadow: 0 4px 15px rgba(255, 59, 92, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(255, 59, 92, 0.7); }
  100% { box-shadow: 0 4px 15px rgba(255, 59, 92, 0.4); }
}

.sticky-right-label {
  font-size: 10px;
  color: var(--color-text-dim);
  text-align: right;
  line-height: 1.4;
  display: none;
}

/* Toast Purchases Notifications */
.toast-notification {
  position: fixed;
  bottom: 80px;
  left: 20px;
  z-index: 1000;
  background: rgba(20, 20, 24, 0.95);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-left: 4px solid var(--color-gold);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 280px;
  max-width: calc(100vw - 40px);
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.toast-notification.show {
  transform: translateX(0);
}

.toast-avatar {
  width: 36px;
  height: 36px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.toast-body {
  flex: 1;
}

.toast-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.toast-message {
  font-size: 11px;
  color: var(--color-text-dim);
  margin-top: 1px;
}

/* ==========================================================================
   14. INTERACTIVE MODAL OVERLAYS (CHECKOUT & EXIT INTENT)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: #0d0d10;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  position: relative;
  overflow: hidden;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.modal-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #FF3B5C, #C850C0, #FFD700);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--color-text-dim);
  font-size: 22px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: #fff;
}

/* Exit intent dialog styles */
.exit-modal h2 {
  font-size: clamp(20px, 3.5vw, 25px);
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.4;
}

.exit-modal p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  word-break: keep-all;
}

.exit-price-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 59, 92, 0.4);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.exit-orig {
  font-size: 14px;
  color: var(--color-text-dim);
  text-decoration: line-through;
}

.exit-curr {
  font-size: 28px;
  font-weight: 900;
  color: var(--color-primary);
}

.exit-btn {
  display: block;
  width: 100%;
  background: var(--grad-primary);
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  padding: 15px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 59, 92, 0.4);
  margin-bottom: 15px;
}

.exit-no-btn {
  font-size: 12px;
  color: var(--color-text-dim);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}

.exit-no-btn:hover {
  color: var(--color-text-muted);
}

/* ==========================================================================
   15. CHECKOUT MODAL FORM STYLING
   ========================================================================== */
.checkout-header {
  margin-bottom: 20px;
  text-align: center;
}

.checkout-header h2 {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
}

.checkout-header p {
  font-size: 12px;
  color: var(--color-text-dim);
  margin-top: 4px;
}

.form-group {
  margin-bottom: 16px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.06);
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.payment-method-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.payment-method-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.payment-method-card.selected {
  border-color: var(--color-primary);
  background: rgba(255, 59, 92, 0.05);
}

.payment-method-card.selected span {
  color: var(--color-primary);
}

.payment-icon {
  font-size: 20px;
}

.payment-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-muted);
}

.payment-method-card.selected .payment-label {
  color: #fff;
}

.checkout-summary {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.summary-row:last-child {
  margin-bottom: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 800;
  color: #fff;
}

.checkout-submit-btn {
  width: 100%;
  background: var(--grad-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 59, 92, 0.4);
  transition: var(--transition-smooth);
}

.checkout-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 59, 92, 0.6);
}

.checkout-submit-btn:disabled {
  background: #333;
  color: #666;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* ==========================================================================
   16. SUCCESS ANIMATION MODAL STYLING
   ========================================================================== */
.success-modal {
  text-align: center;
}

.success-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.1);
  border: 2px solid #4ADE80;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-icon {
  font-size: 36px;
  color: #4ADE80;
  animation: scale-up 0.5s ease-out;
}

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

.success-title {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.success-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 25px;
  word-break: keep-all;
}

.success-action-btn {
  display: block;
  width: 100%;
  background: #4ADE80;
  color: #070708 !important;
  text-align: center;
  font-size: 15px;
  font-weight: 900;
  padding: 15px;
  border-radius: 50px;
  transition: var(--transition-smooth);
}

.success-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(74, 222, 128, 0.4);
}

/* ==========================================================================
   17. MEDIA QUERIES & RESPONSIVENESS
   ========================================================================== */
@media (min-width: 480px) {
  .sticky-right-label {
    display: block;
  }
}

@media (max-width: 768px) {
  /* Core layout elements adjustment */
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 60px 0 40px;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .hero-stat-card {
    padding: 12px 6px;
  }
  
  .value-banner {
    padding: 30px 0;
  }
  
  .value-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .value-installment .price {
    font-size: 2.8rem;
  }
  
  .value-installment .unit {
    font-size: 1.8rem;
  }
  
  /* Comparison structure */
  .comparison-box {
    flex-direction: column;
    gap: 24px;
  }
  
  .comp-col {
    width: 100%;
  }
  
  .comp-head {
    font-size: 19px;
    padding: 20px 15px 10px;
  }
  
  .comp-list {
    padding: 0 15px 25px;
  }
  
  .comp-list li {
    font-size: 14px;
    padding: 12px 0;
  }
  
  .comp-bottom-copy p {
    font-size: 14px;
  }
  
  /* Pain / Agitation */
  .pain {
    padding: 60px 0;
  }
  
  .pain-item {
    padding: 15px 18px;
    font-size: 14px;
  }
  
  /* Chapters */
  .chapters {
    padding: 60px 0;
  }
  
  .chapters-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  /* Reviews */
  .reviews {
    padding: 60px 0;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  /* FAQ */
  .faq {
    padding: 60px 0;
  }
  
  .faq-question {
    padding: 18px 20px;
  }
  
  .faq-q-text {
    font-size: 14px;
  }
  
  .faq-answer-inner {
    font-size: 13px;
  }
  
  /* Footer */
  .footer {
    padding: 40px 0;
  }

  /* Timeline responsive */
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    padding-left: 50px;
  }

  .timeline-day {
    left: 8px;
    width: 28px;
    height: 28px;
    font-size: 8px;
  }

  /* Consulting responsive */
  .consulting-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   18. 7-DAY QUICKSTART TIMELINE
   ========================================================================== */
.quickstart {
  background-color: #0c0c0f;
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.timeline {
  position: relative;
  max-width: 600px;
  margin: 40px auto 0;
  padding-left: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 32px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary), var(--color-gold));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-left: 75px;
  padding-bottom: 30px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-day {
  position: absolute;
  left: 16px;
  top: 2px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(255, 59, 92, 0.4);
  z-index: 2;
  letter-spacing: -0.3px;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 18px 20px;
  transition: var(--transition-smooth);
}

.timeline-content:hover {
  border-color: rgba(200, 80, 192, 0.3);
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(4px);
}

.timeline-content h4 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   19. BUSINESS CONSULTING SECTION
   ========================================================================== */
.consulting {
  background-color: var(--bg-dark);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.consulting-tag {
  display: inline-block;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #4ADE80;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
  text-align: center;
}

.consulting-box {
  margin-top: 40px;
}

.consulting-intro {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.05), rgba(200, 80, 192, 0.05));
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 30px;
  text-align: center;
}

.consulting-intro p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.consulting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.consulting-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 24px 20px;
  transition: var(--transition-smooth);
}

.consulting-card:hover {
  border-color: rgba(74, 222, 128, 0.3);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.04);
}

.consulting-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
}

.consulting-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.consulting-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.consulting-bottom {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.consulting-bottom p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   20. BETA POLICY BOX
   ========================================================================== */
.beta-policy-box {
  background: rgba(255, 215, 0, 0.04);
  border: 1px dashed rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 24px 20px;
  margin: 25px auto 25px;
  max-width: 520px;
}

.beta-policy-box p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.75;
  text-align: left;
}

/* ==========================================================================
   21. NEW RESTRUCTURED SECTIONS STYLES (VALUE PACKS)
   ========================================================================== */

/* Hero Deliverables Grid */
.hero-deliverables-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  margin: 35px 0;
  text-align: left;
}

.hero-deliverables-box h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  border-left: 3px solid var(--color-primary);
  padding-left: 10px;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.deliverables-grid li {
  font-size: 14px;
  color: var(--color-text-muted);
  position: relative;
  padding-left: 18px;
}

.deliverables-grid li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

/* Redefinition Section */
.redefinition {
  background-color: #0c0c0f;
  padding: 85px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.redefinition-box {
  max-width: 580px;
  margin: 0 auto;
  padding: 0 20px;
}

.redefinition-quote {
  font-size: 15px;
  color: var(--color-text-dim);
  margin-bottom: 12px;
}

.redefinition-box p {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  line-height: 1.6;
}

.redefinition-sub {
  font-size: 14px;
  color: var(--color-gold);
  margin-top: 20px;
  font-weight: 700;
}

/* Formula Section */
.formula-section {
  background-color: var(--bg-dark);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.formula-box {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  margin: 40px 0;
  box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.02);
}

.formula-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
}

.formula-token {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
}

.formula-operator {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 400;
}

.formula-result {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  background: var(--grad-primary);
  display: inline-block;
  padding: 10px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(255, 59, 92, 0.2);
}

.formula-desc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.formula-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
}

.formula-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.formula-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Outcomes (Before / After) Grid */
.outcomes-section {
  background-color: #0c0c0f;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.outcome-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
}

.outcome-header {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.outcome-header.before {
  background: rgba(255, 59, 92, 0.1);
  border-bottom: 1px solid rgba(255, 59, 92, 0.2);
  color: #FF3B5C;
}

.outcome-header.after {
  background: rgba(74, 222, 128, 0.1);
  border-bottom: 1px solid rgba(74, 222, 128, 0.2);
  color: #4ADE80;
}

.outcome-list {
  list-style: none;
  padding: 20px;
  margin: 0;
}

.outcome-list li {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.outcome-list li:last-child {
  margin-bottom: 0;
}

.outcome-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 18px;
  line-height: 1;
  top: -1px;
}

/* Case Studies Flow */
.cases-section {
  background-color: var(--bg-dark);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.case-studies {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
}

.case-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  border-left: 3px solid var(--color-primary);
  padding-left: 10px;
}

.case-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 18px 0;
}

.flow-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted);
}

.flow-arrow {
  color: var(--color-gold);
  font-weight: bold;
}

.case-desc {
  font-size: 13px;
  color: var(--color-text-dim);
  line-height: 1.5;
}

/* TOC Table */
.toc-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  text-align: left;
}

.toc-table th, .toc-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--border-color);
  font-size: 13px;
}

.toc-table th {
  font-weight: 800;
  color: #fff;
  background: rgba(255, 255, 255, 0.01);
}

.toc-table td {
  color: var(--color-text-muted);
}

/* Materials List */
.materials-section {
  background-color: #0c0c0f;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.materials-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.material-card-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
}

.material-card-item h4 {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.material-card-item p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Preview Mockups Frame */
.previews-section {
  background-color: var(--bg-dark);
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.preview-mockups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.preview-card-frame {
  background: #141419;
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.frame-top {
  background: #1c1c24;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border-color);
}

.frame-top .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.frame-top .dot.red { background: #FF5F56; }
.frame-top .dot.yellow { background: #FFBD2E; }
.frame-top .dot.green { background: #27C93F; }

.frame-title {
  font-size: 11px;
  color: var(--color-text-dim);
  margin-left: 10px;
}

.frame-body {
  padding: 20px;
}

.preview-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 8px 0;
  font-size: 12px;
}

.preview-row:last-child {
  border-bottom: none;
}

.preview-col-label {
  color: var(--color-text-dim);
}

.preview-col-value {
  color: #fff;
  text-align: right;
}

/* Author Section */
.author-section {
  background-color: #0c0c0f;
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.author-box {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px;
  margin-top: 40px;
}

.author-box p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ==========================================================================
   22. BIZGROW BRAND WEBSITE STYLES
   ========================================================================== */

/* Brand Header Navigation */
.brand-header {
  background-color: rgba(7, 7, 8, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.header-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
}

.brand-logo img {
  height: 38px;
  width: auto;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
  background: none !important;
  display: block;
}

.brand-nav {
  display: flex;
  gap: 15px;
  align-items: center;
}

.brand-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}

.brand-nav a:hover,
.brand-nav a.active {
  color: #fff;
}

.brand-nav a.nav-quiz-btn {
  background: rgba(255, 59, 92, 0.1);
  border: 1px solid rgba(255, 59, 92, 0.3);
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--color-primary);
  font-weight: 700;
}

.brand-nav a.nav-quiz-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Loop Diagram Styling */
.loop-container {
  margin-top: 35px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
}

.loop-tabs {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
  margin-bottom: 20px;
  overflow-x: auto;
  gap: 10px;
}

.loop-tab-btn {
  background: none;
  border: none;
  color: var(--color-text-dim);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.loop-tab-btn.active {
  background: rgba(255, 59, 92, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(255, 59, 92, 0.2);
}

.loop-content-pane {
  display: none;
  animation: fadeIn 0.3s ease;
}

.loop-content-pane.active {
  display: block;
}

.loop-pane-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.loop-pane-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Diagnostic Quiz Styling */
.quiz-card {
  background: #0f0f13;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 30px 24px;
  margin-top: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  text-align: left;
}

.quiz-progress-bar {
  background: rgba(255, 255, 255, 0.05);
  height: 6px;
  border-radius: 3px;
  margin-bottom: 25px;
  overflow: hidden;
}

.quiz-progress-fill {
  background: var(--grad-primary);
  height: 100%;
  width: 20%;
  transition: width 0.3s ease;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.quiz-q-label {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.5;
}

.quiz-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  margin-bottom: 20px;
  transition: border-color 0.2s ease;
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

.quiz-input:focus {
  border-color: var(--color-primary);
  outline: none;
}

.quiz-nav-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.quiz-btn-prev {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--color-text-dim);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s ease;
}

.quiz-btn-prev:hover {
  color: #fff;
  border-color: #fff;
}

.quiz-btn-next {
  background: var(--color-primary);
  border: none;
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s ease;
  flex-grow: 1;
  text-align: center;
}

.quiz-btn-next:hover {
  background: #ff526d;
}

.quiz-result-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  margin-top: 15px;
  text-align: left;
}

.quiz-result-box h4 {
  color: var(--color-gold);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 10px;
}

.quiz-result-recommendation {
  background: rgba(255, 59, 92, 0.05);
  border-left: 3px solid var(--color-primary);
  padding: 12px 14px;
  border-radius: 0 8px 8px 0;
  margin-top: 15px;
  font-size: 13px;
  line-height: 1.6;
}

/* Service Category Card Grid */
.service-cat-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.services-category-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
}

.service-cat-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  font-size: 14px;
  color: var(--color-text-dim);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  position: relative;
  padding-left: 18px;
}

.service-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 18px;
  line-height: 14px;
}

.service-list li:last-child {
  border-bottom: none;
}

/* Principles Grid list */
.principles-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
  text-align: left;
}

.principle-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.principle-num {
  font-size: 16px;
  font-weight: 900;
  color: var(--color-primary);
  background: rgba(255, 59, 92, 0.1);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.principle-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.principle-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Process flow list */
.process-flow {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
  text-align: left;
}

.process-step-item {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.process-badge {
  background: var(--grad-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}

.process-name {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

/* Insights grid archive list */
.insight-categories {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.insight-cat-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--color-text-dim);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.insight-cat-btn.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.insight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 25px;
  text-align: left;
}

.insight-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.insight-card:hover {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.02);
  transform: translateY(-2px);
}

.insight-cat-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--color-primary);
  background: rgba(255, 59, 92, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
}

.insight-card-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.insight-card-snippet {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Insight Modal Reader */
.reader-modal {
  max-width: 600px !important;
}

.reader-body {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 10px;
  font-size: 14px;
  color: var(--color-text-dim);
  line-height: 1.8;
  text-align: left;
}

.reader-body h3 {
  color: #fff;
  font-size: 16px;
  margin-top: 24px;
  margin-bottom: 10px;
  font-weight: 800;
  border-left: 3px solid var(--color-primary);
  padding-left: 8px;
}

.reader-body p {
  margin-bottom: 15px;
}

.reader-body ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.reader-body li {
  margin-bottom: 8px;
}

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

/* ==========================================================================
   23. LIGHT MODE OVERRIDES
   ========================================================================== */

/* Alternating Section Backgrounds for Premium Contrast */
section.hero, 
section.faq,
section.outcomes-section,
section.concept,
section.curriculum {
  background-color: var(--bg-dark) !important;
}

section.pain,
section.services-section,
section.previews-section,
section.author-section,
section.material-section,
section.redefinition {
  background-color: #ffffff !important;
}

/* Card Overrides (Light Gray/White) */
.pain-card, 
.loop-container, 
.services-category-card, 
.principle-card, 
.process-step-item, 
.insight-card, 
.formula-box, 
.formula-card, 
.outcome-card, 
.material-card-item, 
.preview-card-frame, 
.author-box, 
.faq-item,
.beta-policy-box,
.hero-deliverables-box {
  background: var(--bg-card) !important;
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
}

.faq-answer {
  background: var(--bg-dark) !important;
  border-top: 1px solid var(--border-color) !important;
}

/* Value Banner (Center Highlight) */
.value-banner {
  background-color: #ffffff !important;
  border-top: 1px solid var(--border-color) !important;
  border-bottom: 1px solid var(--border-color) !important;
}

.value-original {
  color: var(--color-text-dim) !important;
}

.value-earlybird {
  color: var(--color-primary) !important;
}

/* Header & Sticky Bar */
.brand-header {
  background-color: rgba(255, 255, 255, 0.95) !important;
  border-bottom: 1px solid var(--border-color) !important;
}

.brand-nav a {
  color: var(--color-text-muted) !important;
}

.brand-nav a:hover,
.brand-nav a.active {
  color: var(--color-primary) !important;
}

.sticky-bar {
  background-color: rgba(255, 255, 255, 0.95) !important;
  border-top: 1px solid var(--border-color) !important;
  color: var(--color-text-main) !important;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.03) !important;
}

.sticky-orig-price {
  color: var(--color-text-dim) !important;
}

.sticky-curr-price {
  color: var(--color-primary) !important;
}

.sticky-badge {
  background-color: rgba(30, 80, 246, 0.06) !important;
  color: var(--color-primary) !important;
  border: 1px solid rgba(30, 80, 246, 0.15) !important;
}

.sticky-right-label {
  color: var(--color-text-muted) !important;
}

/* Font Colors Overrides for High Readability */
h1, h2, h3, h4, h5, h6,
.section-title, 
.brand-logo, 
.process-name, 
.principle-title, 
.insight-card-title,
.redefinition-box p,
.faq-q-text,
.form-group label,
.checkout-header h2,
.summary-row span,
.preview-col-value {
  color: var(--color-text-main) !important;
}

p, 
.section-desc, 
.hero-desc, 
.quiz-pane-desc, 
.principle-desc, 
.process-desc, 
.insight-card-snippet, 
.faq-answer-inner,
.preview-col-label,
.checkout-header p,
.final-includes li {
  color: var(--color-text-muted) !important;
}

/* Announcement top bar */
.top-announcement {
  background: #e9ecef !important;
  color: #495057 !important;
  border-bottom: 1px solid var(--border-color) !important;
}

.announcement-badge {
  background: var(--color-primary) !important;
  color: #ffffff !important;
}

/* Text Selection & Inputs */
input.form-control, 
textarea.quiz-input,
.form-control {
  background-color: #ffffff !important;
  color: #212529 !important;
  border: 1px solid #ced4da !important;
}

input.form-control::placeholder, 
textarea.quiz-input::placeholder {
  color: #adb5bd !important;
}

/* Modals Light Mode Styling */
.modal-overlay {
  display: flex !important;
  align-items: flex-start !important;
  overflow-y: auto !important;
  padding: 40px 20px !important;
}

.modal-content {
  background-color: #ffffff !important;
  border: 1px solid var(--border-color) !important;
  color: #212529 !important;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1) !important;
  margin-top: 20px;
}

.modal-close {
  color: #495057 !important;
}

.checkout-summary {
  background: #f8f9fa !important;
  border: 1px solid var(--border-color) !important;
}

.success-modal {
  background-color: #ffffff !important;
}

.success-desc {
  color: #495057 !important;
}

/* Ebook Table of Contents Table Overrides */
.toc-table {
  background: #ffffff !important;
  border: 1px solid var(--border-color) !important;
}

.toc-stage-header {
  background-color: #e9ecef !important;
  color: #212529 !important;
}

.toc-cell-chapter {
  color: #495057 !important;
  border: 1px solid var(--border-color) !important;
}

.toc-cell-tag {
  background-color: rgba(30, 80, 246, 0.08) !important;
  color: var(--color-primary) !important;
  border: 1px solid rgba(30, 80, 246, 0.15) !important;
}

/* Quiz step indicators */
.quiz-progress-bar {
  background: rgba(0, 0, 0, 0.05) !important;
}

.quiz-card {
  background-color: #ffffff !important;
}

.quiz-btn-prev {
  border: 1px solid #ced4da !important;
  color: #495057 !important;
}

.quiz-btn-prev:hover {
  background-color: #f1f3f5 !important;
  color: #212529 !important;
}

.quiz-result-box {
  background: #f8f9fa !important;
  border: 1px solid var(--border-color) !important;
}

.quiz-result-box h4 {
  color: var(--color-text-main) !important;
}

/* Checkout product title text */
#checkout-product-title {
  background: #f8f9fa !important;
  border: 1px solid var(--border-color) !important;
  color: #212529 !important;
}

/* ==========================================================================
   PAIN POINTS MODERN CARDS DESIGN SYSTEM
   ========================================================================== */
.pain-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 35px;
}

@media (max-width: 840px) {
  .pain-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.pain-card {
  background: #ffffff !important;
  border: 1px solid #E5E7EB !important;
  border-radius: 18px !important;
  padding: 30px 24px 26px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden;
}

.pain-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 36px rgba(30, 80, 246, 0.09) !important;
  border-color: rgba(30, 80, 246, 0.3) !important;
}

.pain-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.pain-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.3s ease;
}

.pain-card:hover .pain-icon-wrapper {
  transform: scale(1.08);
}

.red-badge {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.18);
}

.amber-badge {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.18);
}

.blue-badge {
  background: rgba(30, 80, 246, 0.08);
  border: 1px solid rgba(30, 80, 246, 0.18);
}

.pain-number-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.red-tag {
  color: #EF4444;
  background: rgba(239, 68, 68, 0.08);
}

.amber-tag {
  color: #D97706;
  background: rgba(245, 158, 11, 0.08);
}

.blue-tag {
  color: #1E50F6;
  background: rgba(30, 80, 246, 0.08);
}

.pain-card h4 {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  margin: 0 0 10px !important;
  line-height: 1.4 !important;
  letter-spacing: -0.3px !important;
  word-break: keep-all !important;
}

.pain-card p {
  font-size: 14.5px !important;
  color: #4B5563 !important;
  line-height: 1.65 !important;
  margin: 0 !important;
  word-break: keep-all !important;
  font-weight: 400 !important;
}

.pain-card-accent {
  height: 3px;
  width: 36px;
  border-radius: 2px;
  margin-top: 22px;
  transition: width 0.3s ease;
}

.pain-card:hover .pain-card-accent {
  width: 100%;
}

.red-accent {
  background: linear-gradient(90deg, #EF4444, rgba(239, 68, 68, 0.2));
}

.amber-accent {
  background: linear-gradient(90deg, #F59E0B, rgba(245, 158, 11, 0.2));
}

.blue-accent {
  background: linear-gradient(90deg, #1E50F6, rgba(30, 80, 246, 0.2));
}

.redefinition-box {
  background: rgba(30, 80, 246, 0.04) !important;
  border: 1px solid rgba(30, 80, 246, 0.15) !important;
  border-radius: 16px !important;
  padding: 26px 24px !important;
  text-align: center;
  margin-top: 45px;
  box-shadow: 0 4px 15px rgba(30, 80, 246, 0.03) !important;
}

.redefinition-box p {
  font-size: 16.5px !important;
  font-weight: 700 !important;
  color: #1E50F6 !important;
  line-height: 1.65 !important;
  margin: 0 !important;
  word-break: keep-all !important;
}

.redefinition-box strong {
  color: #111827 !important;
  font-weight: 900 !important;
}

/* ==========================================================================
   EBOOK LANDING PAGE NEW BLUEPRINT STYLES
   ========================================================================== */

/* 6-Step Evolution Loop Grid */
.loop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.loop-step-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.loop-step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-color: rgba(30, 80, 246, 0.3);
}

.loop-step-number {
  display: inline-block;
  background: rgba(30, 80, 246, 0.1);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.loop-step-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.loop-step-card p {
  font-size: 13.5px;
  color: #4B5563;
  line-height: 1.55;
}

/* Deliverables Table */
.deliverables-table-wrap {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.deliverables-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.deliverables-table th {
  background: #F1F5F9;
  color: #1E293B;
  font-weight: 800;
  font-size: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.deliverables-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: #334155;
}

.deliverables-table tr:last-child td {
  border-bottom: none;
}

.deliverables-table td:first-child {
  font-weight: 800;
  color: var(--color-primary);
  width: 25%;
  background: rgba(30, 80, 246, 0.02);
}

/* Worksheet Showcase Grid */
.worksheet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin-top: 25px;
}

.worksheet-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  transition: all 0.2s ease;
}

.worksheet-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 80, 246, 0.08);
}

.worksheet-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.worksheet-card h5 {
  font-size: 14px;
  font-weight: 800;
  color: #1F2937;
  margin-bottom: 4px;
}

/* 7-Day Timeline */
.timeline-7day {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
  margin-top: 25px;
}

.timeline-day-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  position: relative;
}

.timeline-day-badge {
  font-size: 11px;
  font-weight: 900;
  color: #FFFFFF;
  background: var(--color-primary);
  padding: 2px 8px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 6px;
}

.timeline-day-card p {
  font-size: 13px;
  font-weight: 700;
  color: #1F2937;
  line-height: 1.4;
}

/* Fit vs Unfit Grid */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.fit-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 24px;
}

.fit-card.fit-yes {
  border-top: 4px solid var(--color-secondary);
}

.fit-card.fit-no {
  border-top: 4px solid #EF4444;
}

.fit-card h3 {
  font-size: 16.5px;
  font-weight: 900;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fit-card.fit-yes h3 { color: var(--color-secondary); }
.fit-card.fit-no h3 { color: #EF4444; }

.fit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fit-list li {
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

/* FAQ Cards */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 25px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 20px;
  text-align: left;
}

.faq-question {
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.faq-question span {
  color: var(--color-primary);
  font-weight: 900;
}

.faq-answer {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.6;
  padding-left: 24px;
}



