/* ==========================================
   GLOBAL & RESET STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #fdeee4;
  color: #1e293b;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ==========================================
   TOP ANNOUNCEMENT BAR
   ========================================== */
.announcement-bar {
  background-color: #0f172a;
  color: #ffffff;
  text-align: center;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #ff3b30;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-header {
  padding: 50px 20px 40px;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: clamp(2.2rem, 4.8vw, 3.2rem);
  font-weight: 800;
  color: #0d0d0d;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  font-weight: 800;
  color: #0d0d0d;
  margin-bottom: 24px;
}

/* Red Accent for "6 Weeks" */
.highlight-red {
  color: #ff3b30;
  font-weight: 800;
}

.hero-description {
  font-size: 1.05rem;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
/* ==========================================
   YOUTUBE VIDEO EMBED
========================================== */
.yt-video-container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto 30px;
}

.yt-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(47, 93, 87, 0.15);
  border: 1px solid rgba(47, 93, 87, 0.1);
  background: #000;
}

.yt-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* ==========================================
   BENEFITS & CHECKLIST BADGES (WITH EMOJIS)
   ========================================== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin: 0 auto 36px;
  text-align: left;
  max-width: 820px;
}

.badge-item {
  background-color: #ffffff;
  border: 1px solid #edf2f7;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 0.98rem;
  color: #2d3748;
  transition: all 0.2s ease;
}

.badge-item:hover {
  border-color: #ff3b30;
  box-shadow: 0 4px 12px rgba(255, 59, 48, 0.1);
}

.emoji-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}

/* ==========================================
   CTA & ACTION BLOCK
   ========================================== */
.action-block {
  margin: 40px 0 20px;
}

.action-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0d0d0d;
  margin-bottom: 20px;
}

/* Matching Coral/Red Pill Button */
.cta-button {
  display: inline-block;
  background-color: #ff3b30;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 16px 48px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 18px rgba(255, 59, 48, 0.35);
  transition: all 0.2s ease;
}

.cta-button:hover {
  background-color: #e03126;
  box-shadow: 0 8px 22px rgba(224, 49, 38, 0.45);
  transform: translateY(-2px);
}

/* ==========================================
   TRUST & SOCIAL PROOF SECTION
   ========================================== */
.trust-section {
  border-top: 1px solid #e2e8f0;
  padding-top: 40px;
  margin-top: 10px;
}

.rating-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.trust-count {
  background-color: #fee2e2;
  color: #991b1b;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 20px;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a;
}

.stars {
  color: #ff3b30;
}

.audience-label {
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 36px;
}

/* ==========================================
   CTA & ACTION BLOCK
   ========================================== */
.action-block {
  margin: 40px 0 20px;
  text-align: center; /* Ensures everything aligns nicely in the center */
}

.action-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0d0d0d;
  margin-bottom: 20px;
}

/* Matching Coral/Red Pill Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #ff3b30;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 18px rgba(255, 59, 48, 0.35);
  transition: all 0.2s ease;
}

.cta-button:hover {
  background-color: #e03126;
  box-shadow: 0 8px 22px rgba(224, 49, 38, 0.45);
  transform: translateY(-2px);
}

/* Price Pill Wrapper inside the Button */
.btn-price-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(0, 0, 0, 0.18); /* Soft dark backdrop for price contrast */
  padding: 4px 14px;
  border-radius: 30px;
}

/* Cut-off Original Price */
.btn-price-cut {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

/* Final Discounted Price */
.btn-price-final {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
}

/* Mobile Alignment Adjustment */
@media (max-width: 480px) {
  .cta-button {
    flex-direction: column;
    gap: 8px;
    padding: 14px 24px;
    width: 100%;
    border-radius: 16px; /* Slightly squarer layout on small screens if stacked */
  }
}
/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 640px) {
  .hero-header {
    padding: 30px 16px 30px;
  }

  .hero-title {
  font-size: clamp(1.7rem, 3.7vw, 2.7rem);
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .cta-button {
    width: 100%;
    padding: 16px 20px;
  }

}
/* ==========================================
   SECTION 2: PROBLEM & PAIN POINTS
   ========================================== */
.problem-section {
  background-color: #f8fafc;
  padding: 30px 20px;
  border-top: 1px solid #e2e8f0;
}

.problem-container {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.problem-subtitle-top {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: #64748b;
  margin-bottom: 12px;
}

.problem-main-heading {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0d0d0d;
  line-height: 1.3;
  margin-bottom: 30px;
}

/* Selective Underline Placement on the Right Word */
.underline-wrapper {
  position: relative;
  display: inline-block;
}

.curved-red-line {
  position: absolute;
  left: -20%; /* Starts slightly to the left of the last word */
  bottom: -10px;
  width: 125%; /* Extends smoothly under the end */
  height: 16px;
  pointer-events: none;
}

.problem-intro {
  font-size: 1.15rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 32px;
}

/* Pain Points 2-Column Grid */
.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  margin-bottom: 45px;
  text-align: left;
}

.pain-card {
  background-color: #ffffff;
  border: 1px solid #fee2e2;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.pain-card:hover {
  transform: translateY(-2px);
  border-color: #dc2626;
}

.cross-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pain-card p {
  font-size: 1.02rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

/* Takeaway Banner Box */
.takeaway-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 12px;
  padding: 30px 24px;
  color: #ffffff;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.2);
}

.takeaway-muted {
  font-size: 1.1rem;
  color: #94a3b8;
  font-weight: 500;
  margin-bottom: 6px;
}

.takeaway-bold {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 800;
  color: #dc2626; /* Darker red */
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .problem-section {
    padding: 20px 16px;
  }
  
  .curved-red-line {
    left: -10%;
    width: 115%;
    bottom: -6px;
  }

  .pain-points-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================
   SECTION 3: IMAGINE IF YOU COULD...
   ========================================== */
.imagine-section {
  background-color: #ffffff;
  padding: 30px 20px;
  border-top: 1px solid #e2e8f0;
}

.imagine-container {
  max-width: 950px;
  margin: 0 auto;
}

.imagine-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

/* Side-by-Side Flex/Grid Layout */
.imagine-content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 45px;
}

.imagine-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.imagine-item {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.imagine-item:hover {
  border-color: #16a34a;
  transform: translateX(4px);
  background-color: #f0fdf4;
}

.green-check {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.imagine-item p {
  font-size: 0.98rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

/* Image Card Styling */
.imagine-image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.imagine-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.image-overlay-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Outcome Banner */
.outcome-banner {
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.outcome-banner p {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 800;
  color: #1e40af;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .imagine-section {
    padding: 20px 16px;
  }

  .imagine-content-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .imagine-img {
    min-height: 280px;
    max-height: 350px;
  }
}
/* ==========================================
   SECTION 4: PROGRAM SHOWCASE & MODULE HIGHLIGHTS
   ========================================== */
.showcase-section {
  background: linear-gradient(180deg, #0f172a 0%, #0b0f19 100%);
  color: #ffffff;
  padding: 40px 20px 0px; 
  position: relative;
  overflow: hidden;
}

.showcase-container {
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: -100px;
}

/* Header Component */
.showcase-header {
  text-align: center;
  margin-bottom: 30px;
}

.welcome-badge {
  display: inline-block;
  background-color: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.showcase-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  background-clip: text; /* Standard property */
  -webkit-background-clip: text; /* Webkit vendor prefix */
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.showcase-subtitle {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  color: #fbbf24;
  font-weight: 700;
  max-width: 750px;
  margin: 0 auto;
}

/* Differentiator Callout Banner */
.differentiator-card {
  background: linear-gradient(90deg, rgba(255, 59, 48, 0.12) 0%, rgba(245, 158, 11, 0.12) 100%);
  border: 1px solid rgba(255, 59, 48, 0.3);
  border-radius: 14px;
  padding: 20px 28px;
  margin-bottom: 30px; 
}

.differentiator-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lightning-icon {
  font-size: 2rem;
  background: rgba(255, 59, 48, 0.2);
  padding: 10px 14px;
  border-radius: 12px;
  flex-shrink: 0;
}

.diff-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.diff-text {
  font-size: 1.05rem;
  color: #94a3b8;
  font-weight: 500;
  margin: 0;
}

/* Main Grid Layout - stretch forces columns to match heights */
.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: stretch; 
}

.column-heading {
  font-size: 1.3rem;
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.column-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 3px;
  background-color: #ff3b30;
  border-radius: 2px;
}

/* Skills Pill Cards Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.skill-pill {
  background-color: #1e293b;
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f1f5f9;
  transition: all 0.2s ease;
}

.skill-pill:hover {
  background-color: #0f172a;
  border-color: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.15);
}

.skill-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* Right Column Visual Card - Kept 85% size as requested */
.showcase-visual-column {
  height: 85%;
  margin-top: 30px;
}

.visual-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #334155;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
  height: 85%;
  display: flex;
  flex-direction: column;
}

.visual-img {
  width: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

/* Glassmorphism Overlay Footer */
.card-glass-footer {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 20px;
  text-align: center;
  flex-shrink: 0;
}

.footer-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fbbf24;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Responsive Adjustments */
@media (max-width: 820px) {
  .showcase-section {
    padding: 30px 16px 20px; /* Clean mobile bottom spacing */
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .differentiator-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .showcase-visual-column {
    margin-top: 10px;
    height: auto;
  }

  .visual-card {
    height: auto;
  }

  .visual-img {
    min-height: 280px;
  }
}
/* ==========================================
   SECTION 5: WHY THIS PROGRAM IS DIFFERENT
   ========================================== */
.different-section {
  background-color: #f8fafc;
  padding: 40px 20px;
  border-top: 1px solid #e2e8f0;
}

.different-container {
  max-width: 950px;
  margin: 0 auto;
}

.different-header {
  text-align: center;
  margin-bottom: 40px;
}

.different-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

/* Split Comparison Card */
.comparison-card {
  display: grid;
  grid-template-columns: 1fr auto 1.2fr;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 30px -10px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  margin-bottom: 30px;
  align-items: stretch;
}

/* Left Side (Old/Flawed approach) */
.comparison-left {
  padding: 40px 32px;
  background-color: #f1f5f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.comparison-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.old-tag span {
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.old-text {
  font-size: 1.15rem;
  color: #334155;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.highlight-text {
  color: #b91c1c;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Middle Divider Badge */
.comparison-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  background-color: #f1f5f9;
}

.arrow-badge {
  background: #0f172a;
  color: #fbbf24;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin: 0 -22px;
}

/* Right Side (Our approach) */
.comparison-right {
  padding: 40px 36px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.new-tag span {
  color: #fbbf24;
  letter-spacing: 1.5px;
}

.new-heading {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.25;
}

.philosophy-quote {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
  border-left: 3px solid #ff3b30;
  padding-left: 14px;
}

.gold-text {
  color: #fbbf24;
  font-size: 1.15rem;
}

/* Bottom Systems Card */
.systems-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.systems-content {
  max-width: 520px;
}

.systems-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 6px;
}

.systems-desc {
  font-size: 1.05rem;
  color: #1e293b;
  line-height: 1.5;
  margin: 0;
}

.systems-desc strong {
  color: #0f172a;
}

/* 4 Pillars Badge Row */
/* ==========================================
   4 PILLARS BADGE ROW - COMPLETE OVERFLOW & LEFT ALIGN FIX
   ========================================== */

.pillars-row {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  margin: 16px 0 !important;
  padding: 0 !important; /* Prevents container blowout */
}

.pillar-item {
  background-color: #eff5fa !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 10px !important;
  padding: 10px 12px !important;
  
  /* Strict Left Alignment Layout */
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: left !important;
  
  gap: 8px !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  
  width: 100% !important;
  box-sizing: border-box !important; /* Forces padding to stay INSIDE column width */
}

.pillar-icon {
  font-size: 1.05rem !important;
  flex-shrink: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
}

/* Forces text span to anchor to the left side */
.pillar-item span:not(.pillar-icon) {
  text-align: left !important;
  margin-right: auto !important; /* Anchors content to the left */
  white-space: nowrap !important;
}

/* Responsive Styles */
@media (max-width: 820px) {
  .different-section {
    padding: 20px 16px;
  }

  .comparison-card {
    grid-template-columns: 1fr;
  }

  .comparison-divider {
    height: 1px;
    background-color: #cbd5e1;
  }

  .arrow-badge {
    margin: -22px 0;
  }

  .systems-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
}
/* ==========================================
   SECTION 6: THE TRANSFORMATION ROADMAP
   ========================================== */
.roadmap-section {
  background-color: #ffffff;
  padding: 40px 20px;
  border-top: 1px solid #e2e8f0;
}

.roadmap-container {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: start;
}

/* Left Column Sticky Wrapper */
.roadmap-left-col {
  position: sticky;
  top: 40px;
}

.roadmap-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.text-red {
  color: #dc2626;
}

/* Growth Chart Graphics */
.growth-chart-wrapper {
  background-color: #fafafa;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.growth-chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Right Column Module List */
.roadmap-right-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.roadmap-subtitle-tag {
  font-size: 0.8rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Soft Pastel Module Card (Matches Reference Screenshot) */
.module-card {
  background-color: #f7f9fa; /* Soft off-white pastel background */
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px 28px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.module-card:hover {
  background-color: #f0f7f9;
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

/* Active Highlight Card Styling */
.module-card.active {
  background-color: #edf7f6; /* Subtle soft mint/blue tint like Think School */
  border: 1.5px solid #0284c7;
  box-shadow: 0 10px 25px -5px rgba(2, 132, 199, 0.1);
}

.module-badge-num {
  font-size: 0.88rem;
  font-weight: 700;
  color: #475569;
  display: block;
  margin-bottom: 6px;
}

.module-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
  line-height: 1.3;
}

.module-tagline {
  font-size: 0.98rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 14px;
}

/* Video & Time Badges */
.module-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.meta-pill {
  background-color: #dbeafe;
  color: #1e40af;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Expandable Bullets Drawer */
.module-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
}

.module-card.active .module-body {
  max-height: 500px;
  opacity: 1;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed #cbd5e1;
}

.module-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.module-bullets li {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  position: relative;
  padding-left: 24px;
}

.module-bullets li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 900;
  font-size: 0.9rem;
}

/* Grid Bullets for Module 10 */
.grid-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
}

/* Responsive Layout */
@media (max-width: 850px) {
  .roadmap-section {
    padding: 20px 16px;
  }
  .roadmap-title{
    text-align: center;
  }
  .roadmap-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .roadmap-left-col {
    position: relative;
    top: 0;
  }

  .grid-bullets {
    grid-template-columns: 1fr;
  }
}
/* ==========================================
   SECTION 7: EVERY LESSON INCLUDES
   ========================================== */
.includes-section {
  background-color: #0f172a;
  padding: 40px 20px;
  border-top: 1px solid #1e293b;
}

.includes-container {
  max-width: 850px;
  margin: 0 auto;
}

.includes-header {
  text-align: center;
  margin-bottom: 40px;
}

.includes-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

/* Screenshot Style Table Card */
.includes-table-card {
  background-color: #1e293b;
  border: 1px solid rgba(251, 191, 36, 0.4); /* Subtle gold frame */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.includes-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid #334155;
  transition: background-color 0.2s ease;
}

.includes-row:last-child {
  border-bottom: none;
}

.includes-row:hover {
  background-color: #26334d;
}

.row-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f8fafc;
  letter-spacing: 0.2px;
}

.row-check {
  background-color: #10b981;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
  flex-shrink: 0;
}

/* Highlighted Bottom Row */
.includes-row.highlight-row {
  background-color: #28374d;
}

.includes-row.highlight-row .row-text {
  color: #fbbf24;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .includes-section {
    padding: 20px 16px;
  }

  .includes-row {
    padding: 14px 18px;
  }

  .row-text {
    font-size: 0.98rem;
  }

  .row-check {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
}
/* ==========================================
   SECTION 8: WEEKLY LIVE COACHING (LIGHT THEME)
   ========================================== */
.live-coaching-section {
  background-color: #f8fafc; 
  padding: 40px 20px;
  border-top: 1px solid #e2e8f0;
}

.live-coaching-container {
  max-width: 1050px;
  margin: 0 auto;
}

/* 2-Column Grid Layout matching Section 4 */
.live-coaching-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: stretch; /* Forces equal height columns */
}

/* Left Column Styling */
.coaching-badge {
  display: inline-block;
  background-color: #fee2e2;
  color: #dc2626;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.coaching-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.15;
}

.coaching-intro {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
}

.coaching-intro strong {
  color: #0f172a;
}

/* Benefits Check List */
.coaching-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.coaching-benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  font-weight: 600;
  color: #1e293b;
}

.benefit-check {
  background-color: #dcfce7;
  color: #16a34a;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Right Column Visual Card Structure */
.coaching-visual-col {
  height: 100%;
}

.coaching-card {
  position: relative;
  height: 100%;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  box-shadow: 0 15px 30px -10px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
}

.coaching-img {
  width: 100%;
  flex: 1; /* Automatically stretches to equal left column height */
  min-height: 0;
  object-fit: cover;
  display: block;
}

/* Dark Accent Footer Badge on Image */
.coaching-card-footer {
  background: #0f172a;
  color: #ffffff;
  padding: 18px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.footer-highlight {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fbbf24;
  letter-spacing: 1px;
}


/* Responsive Adjustments */
@media (max-width: 850px) {
  .live-coaching-section {
    padding: 30px 16px;
  }

  .live-coaching-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .coaching-img {
    min-height: 320px;
  }
}
/* ==========================================
   SECTION 9: THE RESULTS YOU'LL EXPERIENCE
   ========================================== */
.results-section {
  background: linear-gradient(180deg, #0b0f19 0%, #0f172a 100%);
  padding: 30px 20px;
  border-top: 1px solid #1e293b;
  color: #ffffff;
}

.results-container {
  max-width: 1000px;
  margin: 0 auto;
}

.results-header {
  text-align: center;
  margin-bottom: 50px;
}

.results-badge {
  display: inline-block;
  background-color: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.results-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.results-subtitle {
  font-size: 1.15rem;
  color: #ebf0f6;
  font-style: italic;
  font-weight: 500;
}

/* Before & After Matrix Grid */
.results-matrix {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 40px;
}

.matrix-card {
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

/* Before Card */
.before-card {
  background-color: rgba(30, 41, 59, 0.5);
  border: 1px solid #334155;
}

.tag-before {
  color: #ebf0f6;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

/* After Card (Glowing Gold/Green border) */
.after-card {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1.5px solid #fbbf24;
  box-shadow: 0 15px 35px -10px rgba(251, 191, 36, 0.15);
  position: relative;
}

.tag-after {
  color: #fbbf24;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

/* List Formatting */
.results-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.results-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.02rem;
  line-height: 1.45;
}

.before-card .results-list li {
  color: #ebf0f6;
}

.after-card .results-list li {
  color: #f1f5f9;
}

.after-card .results-list strong {
  color: #ffffff;
}

/* Icons */
.list-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.icon-cross {
  background-color: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.icon-check {
  background-color: #16a34a;
  color: #ffffff;
}

/* Bottom Advantage Callout Banner */
.advantage-banner {
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.12) 0%, rgba(22, 163, 74, 0.12) 100%);
  border: 1px solid rgba(251, 191, 36, 0.4);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.advantage-icon {
  font-size: 2.2rem;
  background: rgba(251, 191, 36, 0.2);
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.advantage-text h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 4px;
}

.advantage-text p {
  font-size: 0.98rem;
  color: #cbd5e1;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 820px) {
  .results-section {
    padding: 20px 16px;
  }

  .results-matrix {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .advantage-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}
/* ==========================================
   SECTION 10: WHO IS THIS PROGRAM FOR? (LIGHT BG)
   ========================================== */
.target-audience-section {
  background-color: #f8fafc; /* Light theme background */
  padding: 40px 20px;
  border-top: 1px solid #e2e8f0;
}

.target-audience-container {
  max-width: 1100px;
  margin: 0 auto;
}

.audience-header {
  text-align: center;
  margin-bottom: 50px;
}

.audience-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

/* 3 Boxes Grid Layout */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Screenshot-Style Clean Rounded Card */
.audience-card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.08);
}

.card-img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.audience-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.audience-role {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.audience-text {
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 boxes per row on tablets */
  }
}

@media (max-width: 600px) {
  .target-audience-section {
    padding: 20px 16px;
  }

  .audience-grid {
    grid-template-columns: 1fr; /* 1 box per row on mobile */
  }
}
/* ==========================================
   SECTION 11: PREMIUM BONUSES
   ========================================== */
.bonuses-section {
  background-color: #fdf5f0;
  padding: 30px 20px;
  border-top: 1px solid #f3e5dc;
}

.bonuses-container {
  max-width: 1080px;
  margin: 0 auto;
}

/* Header */
.bonuses-header {
  text-align: center;
  margin-bottom: 45px;
}

.bonuses-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.02em;
}

.worth-price {
  color: #ff3b30; /* Bright red matching screenshot */
  position: relative;
  display: inline-block;
}

.worth-price::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ff3b30;
  border-radius: 2px;
}

/* Flexbox Grid: 3 in Row 1, 2 Centered in Row 2 */
.bonuses-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 45px;
}

.bonus-card {
  width: calc(33.333% - 16px); /* 3 cards per row */
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f0e0d6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 59, 48, 0.08);
}

/* Red Banner Header */
.bonus-top-bar {
  background-color: #ff3b30;
  color: #ffffff;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 10px;
}

/* Body Content Area */
.bonus-card-body {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.bonus-card-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: #000000;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.35;
  
}

.bonus-sub-badge {
  display: inline-block;
  background-color: #ff3b30;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.bonus-description {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.45;
  margin: 0;
  font-weight: 500;
}

/* Pricing Footer Bar */
.bonus-card-footer {
  background-color: #fdf0e7;
  padding: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #f7e3d7;
}

.original-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: #000000;
  text-decoration: line-through;
}

.free-tag {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ff3b30;
}

/* Enroll CTA Button */
.bonuses-cta-wrapper {
  text-align: center;
}

.bonuses-enroll-btn {
  display: inline-block;
  background-color: #ff3b30;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 14px 48px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 59, 48, 0.35);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.bonuses-enroll-btn:hover {
  background-color: #e03126;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 900px) {
  .bonus-card {
    width: calc(50% - 12px); /* 2 per row on tablet */
  }
}

@media (max-width: 600px) {
  .bonuses-section {
    padding: 20px 16px;
  }

  .bonus-card {
    width: 100%; /* 1 per row on mobile */
  }
}
/* ==========================================
   SECTION 12: MEET YOUR MENTOR (SPECIAL LUXURY DARK)
   ========================================== */
.mentor-section {
  background: linear-gradient(180deg, #0f172a 0%, #080d1a 100%);
  padding: 40px 20px;
  border-top: 1px solid #1e293b;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.mentor-container {
  max-width: 1080px;
  margin: 0 auto;
}

.mentor-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

/* Left Column Image Frame */
.mentor-visual-col {
  position: relative;
}

.mentor-card-frame {
  position: relative;
  border-radius: 20px;
  padding: 0px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.4) 0%, rgba(255, 255, 255, 0.05) 100%);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.mentor-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  filter: contrast(1.03) brightness(0.98);
}

/* Right Column Content */
.mentor-badge {
  display: inline-block;
  background-color: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.mentor-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.mentor-name-wrapper {
  margin-bottom: 24px;
}

.mentor-name {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mentor-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fbbf24;
  letter-spacing: 0.5px;
}

.mentor-bio strong {
  color: #ffffff;
}

.mentor-bio {
  font-size: 1rem;
  color: #d6dfec;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Styled Mission Box */
.mentor-mission-box {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-left: 4px solid #fbbf24;
  border-radius: 12px;
  padding: 20px 24px;
  position: relative;
  display: flex;
  gap: 16px;
}

.mission-quote-mark {
  font-size: 3rem;
  line-height: 1;
  color: #fbbf24;
  opacity: 0.6;
  font-family: Georgia, serif;
}

.mission-tag {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fbbf24;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.mission-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: #f8fafc;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .mentor-section {
    padding: 30px 16px;
  }

  .mentor-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mentor-photo {
    height: 380px;
  }

  .floating-exp-badge {
    right: 10px;
    bottom: -15px;
  }
}
/* ==========================================
   SECTION 13: EARN YOUR CERTIFICATE (COMPACT)
   ========================================== */
.certificate-section {
  background-color: #fdf5f0;
  padding: 40px 20px;
  border-top: 1px solid #f1f5f9;
}

.certificate-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Heading & Highlight styling */
.certificate-title {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 12px;
}

.highlight-red {
  color: #ff3b30;
  position: relative;
  display: inline-block;
}

.highlight-red::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #ff3b30;
  border-radius: 50% 50% 0 0;
}

.certificate-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 20px;
  font-weight: 500;
}

/* Bullet Points List */
.certificate-points-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.certificate-points-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
}

.point-icon {
  background-color: #fee2e2;
  color: #ff3b30;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Enroll Button */
.certificate-enroll-btn {
  display: inline-block;
  background-color: #ff3b30;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 12px 36px;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 59, 48, 0.3);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.certificate-enroll-btn:hover {
  background-color: #e03126;
  transform: translateY(-2px);
}

/* Black Picture Frame Mockup */
.black-picture-frame {
  background: #111111;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
  border: 1px solid #222222;
}

.inner-mat {
  background-color: #ffffff;
  padding: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.certificate-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border: 1px solid #e2e8f0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .certificate-section {
    padding: 30px 16px;
  }

  .certificate-title{
    text-align: center;
  }

  .certificate-subtitle{
    text-align: center;
  }

  .certificate-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .certificate-image {
    height: 200px;
  }
}
/* ==========================================
   SECTION 14: FREQUENTLY ASKED QUESTIONS
   ========================================== */
.faq-section {
  background-color: #ffffff;
  padding: 40px 20px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.02em;
  margin-bottom: 45px;
}

/* Accordion Wrapper */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 4px;
  overflow: hidden;
}

/* Gray Box Header Bar matching Screenshot */
.faq-question {
  width: 100%;
  background-color: #f3f3f3;
  border: none;
  outline: none;
  padding: 22px 28px;
  text-align: left;
  font-size: 1.08rem;
  font-weight: 700;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: inherit;
}

.faq-question:hover {
  background-color: #ebebeb;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 500;
  color: #666666;
  line-height: 1;
  margin-left: 16px;
  flex-shrink: 0;
}

/* Collapsible Answer Block */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  background-color: #ffffff;
}

.faq-answer p {
  padding: 20px 28px 10px 28px;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #333333;
  font-weight: 400;
}

/* Active State Styles */
.faq-item.active .faq-question {
  background-color: #f3f3f3;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Expands smoothly */
}

/* Responsive Styling */
@media (max-width: 640px) {
  .faq-section {
    padding: 30px 16px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 0.98rem;
  }

  .faq-answer p {
    padding: 16px 20px 8px 20px;
    font-size: 0.95rem;
  }
}
/* ==========================================
   SECTION 15: THE BEST INVESTMENT YOU'LL EVER MAKE
   ========================================== */
.investment-section {
  background-color: #f8fafc;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #e2e8f0;
}

.investment-container {
  max-width: 800px;
  margin: 0 auto;
}

.investment-badge {
  display: inline-block;
  background-color: rgba(245, 158, 11, 0.15);
  color: #d97706;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.investment-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.investment-highlight {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  color: #dc2626;
  margin-bottom: 30px;
}

.investment-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid #cbd5e1;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.investment-text {
  font-size: 1.15rem;
  color: #475569;
  margin-bottom: 12px;
  font-weight: 500;
}

.investment-bold {
  font-size: 1.25rem;
  color: #0f172a;
  font-weight: 800;
  margin: 0;
}

/* ==========================================
   SECTION 16: FINAL ENROLLMENT HERO CTA
   ========================================== */
.enroll-hero-section {
  background: linear-gradient(180deg, #0b0f19 0%, #0f172a 100%);
  padding: 40px 20px 70px 20px;
  color: #ffffff;
  border-top: 1px solid #1e293b;
}

.enroll-hero-container {
  max-width: 850px;
  margin: 0 auto;
}

/* Main Checkout Card */
.enroll-hero-card {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid #fbbf24;
  border-radius: 24px;
  padding: 45px 35px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  margin-bottom: 50px;
}

.enroll-badge {
  display: inline-block;
  background-color: #ef4444;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.enroll-main-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #d6e2f1;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.program-title {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

/* 4 Core Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 600px;
  margin: 0 auto 32px auto;
  text-align: left !important;
}

.pillar-item {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f8fafc;
}

/* Force Checkmark icon to stay on the far left */
.pillar-check {
  color: #10b981;
  font-weight: 900;
  flex-shrink: 0;
}

.pillar-item span:not(.pillar-check) {
  text-align: left !important;
  flex-grow: 1 !important;
  display: block !important;
}

/* Feature Badges horizontal list */
.features-badge-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.features-badge-list li {
  background-color: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
}

/* Big CTA Button */
.final-enroll-btn {
  display: inline-block;
  background-color: #ff3b30;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 900;
  padding: 18px 48px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 59, 48, 0.4);
  transition: transform 0.2s ease, background-color 0.2s ease;
  margin-bottom: 14px;
}

.final-enroll-btn:hover {
  background-color: #e03126;
  transform: translateY(-2px);
}

.guarantee-note {
  display: block;
  font-size: 0.85rem;
  color: #d6e2f1;
  font-weight: 500;
}

/* Final Tagline Banner */
.final-tagline-box {
  text-align: center;
  padding: 0px;
}

.tagline-primary {
  font-size: clamp(1.8rem, 3.8vw, 2.5rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.tagline-secondary {
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  font-weight: 800;
  color: #fbbf24;
  margin: 0;
  font-style: italic;
}

/* Responsive Styles */
@media (max-width: 640px) {
  .investment-section,
  .enroll-hero-section {
    padding: 30px 16px;
  }

  .enroll-hero-card {
    padding: 30px 18px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .final-enroll-btn {
    width: 100%;
    font-size: 1.15rem;
    padding: 16px 20px;
  }
}
/* ==========================================
   FOOTER SECTION (LANDING PAGE THEME)
   ========================================== */
.landing-footer {
  background-color: #080d1a; /* Darkest theme shade */
  padding: 60px 20px 30px 20px;
  border-top: 1px solid #1e293b;
  color: #94a3b8;
  text-align: center;
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Powered By & Brand */
.footer-brand-wrapper {
  margin-bottom: 24px;
}

.footer-powered-by {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fbbf24; /* Theme gold */
  margin-bottom: 6px;
  text-transform: uppercase;
}

.footer-brand-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin: 0;
}

/* Contact Details */
.contact-item {
  display: inline-flex; /* Changed to inline-flex so it wraps tightly around text/icon */
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-sans, sans-serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 auto 24px auto; /* Centers the block horizontally */
  transition: color 0.3s ease;
}

.contact-item:hover {
  color: var(--tarot-gold, #d4af37);
}

.contact-icon {
  width: 22px;
  height: 22px;
  color: #d4af37;
  flex-shrink: 0;
}

/* Divider */
.footer-divider {
  border: 0;
  height: 1px;
  background-color: #1e293b;
  margin: 0 0 28px 0;
}

/* Disclaimer text */
.footer-disclaimer {
  max-width: 800px;
  margin: 0 auto 24px auto;
}

.footer-disclaimer p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

.footer-disclaimer strong {
  color: #94a3b8;
}

/* Policy Links */
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fbbf24;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.link-separator {
  color: #334155;
  font-size: 0.8rem;
}

/* Copyright */
.footer-copyright p {
  font-size: 0.82rem;
  color: #475569;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .landing-footer {
    padding: 45px 16px 25px 16px;
  }

  .footer-brand-name {
    font-size: 1.4rem;
  }

  .footer-contact-row {
    flex-direction: column;
    gap: 14px;
  }
}

/*continuous button animation*/
.btn-attention {
  animation: continuousAttention 2.5s infinite ease-in-out;
}

@keyframes continuousAttention {
  0%, 100% {
    transform: scale(0.85); /* Normal size */
  }
  50% {
    transform: scale(1); /* Grows bigger / comes out toward viewer */
  }
}

/* ==========================================================================
   PLUG-AND-PLAY CENTERED DUAL BUTTONS
   ========================================================================== */

/* Outer Wrapper - Ensures centering wherever dropped */
.cta-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin: 30px auto;
  padding: 10px 0;
  box-sizing: border-box;
}

/* Common Button Styles */
.cta-btn-wrapper .custom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid #1a2332; 
  background: #ff3b30; 
  color: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(255, 69, 26, 0.25), 0 4px 6px rgba(0, 0, 0, 0.12);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

/* Hover & Active Feedback */
.cta-btn-wrapper .custom-btn:hover {
  transform: translateY(-2px);
  background: #e03126;
  box-shadow: 0 14px 25px rgba(255, 69, 26, 0.35), 0 6px 10px rgba(0, 0, 0, 0.15);
}

.cta-btn-wrapper .custom-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 12px rgba(255, 69, 26, 0.2);
}

/* Phone Icon for "Talk to an Expert" */
.cta-btn-wrapper .btn-icon {
  width: 18px;
  height: 18px;
  fill: #ffffff;
  flex-shrink: 0;
}

/* Framed Play Icon Box for "Watch Course Preview" */
.cta-btn-wrapper .play-icon-box {
  width: 24px;
  height: 22px;
  border: 2px solid #28385e; /* Navy/Purple accent border line around play button */
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.cta-btn-wrapper .play-svg {
  width: 14px;
  height: 14px;
  fill: #28385e; /* Matches framed border color */
  margin-left: 1px;
}

/* Mobile Responsiveness (Stacks neatly on mobile screens) */
@media (max-width: 640px) {
  .cta-btn-wrapper {
    flex-direction: column;
    gap: 14px;
    padding: 0 16px;
  }

  .cta-btn-wrapper .custom-btn {
    width: 100%;
    max-width: 360px;
    padding: 16px 20px;
    font-size: 13px;
  }
}