:root {
  --bg-color: #F3EDE4;
  --bg-section3: #EAE3D5; /* Distinct beige tone for Section 3 background */
  --maroon: #9B2242;
  --maroon-dark: #7D1A34;
  --navy: #121C2D;
  --navy-light: #2A364F;
  --card-bg: #FFFFFF;
  --border-color: #E2D7C8;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --yellow-accent: #FFDC33;
  --green-accent: #65A30D;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* FIX: Set body flex direction to column so sections stack top-to-bottom */
body {
  background-color: var(--bg-color);
  color: var(--navy);
  font-family: var(--font-body);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  overflow-x: hidden;
}

/* CONTAINER FOR SECTIONS 1 & 2 */
.page-wrapper {
  width: 100%;
  max-width: 920px;
  padding: 20px 20px 40px;
}

/* Header Badge */
.top-badge-container {
  text-align: center;
  margin-bottom: 20px;
}

.top-badge {
  display: inline-block;
  background: var(--maroon);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 8px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(155, 34, 66, 0.2);
}

/* Typography */
h1.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.8vw, 2.3rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 16px;
}

.c-maroon { color: var(--maroon); }
.c-navy { color: var(--navy); }

.hero-subtitle {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  max-width: 780px;
  margin: 0 auto 18px;
  line-height: 1.4;
}

.hero-description {
  text-align: center;
  font-size: 0.95rem;
  color: var(--navy-light);
  max-width: 740px;
  margin: 0 auto 28px;
  line-height: 1.5;
}
/* ==========================================
   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%;
}

/* Shift Cards */
.shifts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.shift-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 14px 18px;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(226, 215, 200, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.shift-from { color: #64748B; font-style: italic; }
.shift-arrow { color: var(--maroon); font-weight: bold; }
.shift-to { color: var(--navy); font-weight: 700; }

/* Buttons */
.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 28px 0 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(180deg, #A82548 0%, #821B36 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(155, 34, 66, 0.35);
  transition: all 0.25s ease;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(155, 34, 66, 0.45);
  background: linear-gradient(180deg, #B52A4E 0%, #901E3C 100%);
}

/* Price Pill inside Button */
.btn-price-pill {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.btn-price-pill del {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.btn-price-pill strong {
  color: #FFDC33; /* Highlights the active price in gold */
  font-weight: 800;
}

/* Subtext */
.offer-subtext {
  font-size: 0.82rem;
  color: #fe1751;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 8px;
  text-transform: uppercase;
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
  .btn-primary {
    flex-direction: column;
    width: 100%;
    padding: 14px 20px;
    gap: 6px;
  }

  .btn-price-pill {
    font-size: 1.2rem;
  }
}

.divider {
  border: 0;
  height: 1px;
  background: var(--border-color);
  margin: 32px 0;
}

/* Banner Box */
.program-banner {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-color);
  margin-bottom: 28px;
}

.banner-title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-weight: 800;
  color: var(--maroon);
  line-height: 1.3;
  margin-bottom: 8px;
}

.banner-subtitle {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

/* Philosophy Card */
.philosophy-card {
  background: #FAF7F2;
  border-left: 4px solid var(--maroon);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin-bottom: 28px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.philosophy-card p {
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.philosophy-highlight {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--maroon);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 6px 0 !important;
}

.journey-intro {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.skill-card {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(226, 215, 200, 0.5);
}

.check-circle {
  width: 32px;
  height: 32px;
  background-color: var(--maroon);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
  flex-shrink: 0;
}

.skill-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

.closing-box {
  text-align: center;
  background: var(--maroon);
  color: #FFFFFF;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.98rem;
  box-shadow: 0 6px 20px rgba(155, 34, 66, 0.25);
}

/* ===================================================
   SECTION 3: FULL-WIDTH WRAPPER & IMAGE CARDS GRID
====================================================== */
.target-audience-wrapper {
  width: 100%;
  background-color: var(--bg-section3); /* Distinct background color */
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  padding: 30px 20px 0;
  margin-top: 0px;
}

.target-audience-section {
  max-width: 1050px;
  margin: 0 auto;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.2vw, 1.9rem);
  font-weight: 800;
  text-align: center;
  color: var(--maroon);
  letter-spacing: 0.5px;
  margin-bottom: 36px;
}

/* Flexbox Grid to place 4 per row & center last 2 items */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 36px;
}

.feature-card {
  position: relative;
  width: calc(25% - 14px); /* 4 cards per row */
  height: 340px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(155, 34, 66, 0.22);
}

.card-badge {
  align-self: flex-start;
  background: rgba(255, 220, 51, 0.95);
  color: #121C2D;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 6px;
  text-transform: uppercase;
}

.card-overlay {
  background: rgba(125, 26, 52, 0.92);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 14px 14px 10px;
  color: #FFFFFF;
}

.card-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.35;
  margin-bottom: 8px;
}

.card-line {
  width: 24px;
  height: 3px;
  background-color: var(--yellow-accent);
  border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 960px) {
  .feature-card {
    width: calc(50% - 10px); /* 2 per row on tablet */
  }
}

@media (max-width: 580px) {
  .feature-card {
    width: 100%; /* 1 per row on mobile */
    height: 300px;
  }
}

/* SECTION 4: 2-COLUMN ACCORDION SECTION */
.curriculum-wrapper {
  width: 100%;
  background-color: #0F172A; /* Rich slate background */
  color: #F8FAFC;
  padding: 40px 20px;
}

.curriculum-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT SIDE: Sticky Header */
.curriculum-info {
  flex: 1;
  min-width: 300px;
}

.info-sticky {
  position: sticky;
  top: 40px;
}

.badge-pill {
  display: inline-block;
  background: rgba(255, 220, 51, 0.15);
  color: #FFDC33;
  border: 1px solid rgba(255, 220, 51, 0.4);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.curriculum-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 12px;
}

.curriculum-subtitle {
  font-size: 0.95rem;
  color: #94A3B8;
  line-height: 1.5;
  margin-bottom: 24px;
}

.desktop-cta {
  margin-top: 10px;
}

/* RIGHT SIDE: Accordions */
.curriculum-accordions {
  flex: 1.4;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.accordion-item {
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.accordion-item:hover {
  border-color: var(--maroon);
}

.accordion-header {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.acc-title strong {
  color: #FFDC33;
}

.acc-icon {
  font-size: 1.3rem;
  font-weight: bold;
  color: #94A3B8;
}

/* Collapsible Content */
.accordion-content {
  display: none;
  padding: 0 20px 20px;
  border-top: 1px solid #334155;
  background: #152032;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-item.active {
  border-color: var(--maroon);
}

.acc-sub {
  font-weight: 700;
  font-size: 0.88rem;
  color: #E2E8F0;
  margin: 14px 0 10px;
}

.acc-list {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}

.acc-list li {
  font-size: 0.85rem;
  color: #CBD5E1;
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}

.acc-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #65A30D;
  font-weight: bold;
}

.acc-tag {
  display: inline-block;
  background: rgba(155, 34, 66, 0.25);
  border: 1px solid rgba(155, 34, 66, 0.5);
  color: #FFDC33;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.gold-tag {
  background: rgba(255, 220, 51, 0.15);
  border-color: #FFDC33;
}

.acc-transform {
  background: #0F172A;
  border-left: 3px solid var(--maroon);
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.82rem;
  color: #94A3B8;
}

.acc-transform strong {
  color: #FFFFFF;
}

/* Capstone Accordion Highlight */
.capstone-item {
  border: 1px solid var(--maroon);
  background: linear-gradient(135deg, #2D0A14 0%, #1E293B 100%);
}

/* Responsive adjustments */
@media (max-width: 850px) {
  .curriculum-container {
    flex-direction: column;
    gap: 24px;
  }

  .curriculum-title {
    text-align: center;
  }

  .curriculum-subtitle {
    text-align: center;
  }

  .desktop-cta{
    text-align: center;
  }

  .info-sticky {
    position: relative;
    top: 0;
  }
}
/* ==========================================================================
   EXCLUSIVE BONUSES SECTION (RESPONSIVE GRID)
   ========================================================================== */

.bonuses-wrapper {
  width: 100%;
  background: #F3EDE4; /* Page signature light warm background */
  color: #F8FAFC;
  padding: 60px 20px 60px;
  position: relative;
  border-top: 1px solid #1E293B;
}

.bonuses-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.bonuses-header {
  text-align: center;
  margin-bottom: 48px;
}

.bonus-badge-pill {
  display: inline-block;
  background: rgba(155, 34, 66, 0.15);
  color: #fe1751;
  border: 1px solid rgba(155, 34, 66, 0.35);
  font-family: var(--font-heading, sans-serif);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.bonuses-title {
  font-family: var(--font-heading, sans-serif);
  font-size: clamp(1.8rem, 3.8vw, 2.5rem);
  font-weight: 800;
  color: #11192c;
  margin-bottom: 12px;
}

.highlight-gold {
  color: #c29500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bonuses-subtitle {
  font-size: 0.98rem;
  color: #193865;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Unified 3-Column Responsive Grid */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* Bonus Card Base */
.bonus-card {
  background: #162032; /* Page theme dark navy */
  border: 1px solid #28354D;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.bonus-card:hover {
  transform: translateY(-6px);
  border-color: #FFDC33;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

/* Featured Bonus Card (Gold Outline Accent) */
.featured-bonus {
  background: linear-gradient(180deg, #1A263D 0%, #121A2B 100%);
  border: 1px solid rgba(255, 220, 51, 0.6);
  box-shadow: 0 8px 25px rgba(255, 220, 51, 0.1);
}

.bonus-card-header {
  border-bottom: 1px solid #28354D;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.bonus-tag {
  display: inline-block;
  font-family: var(--font-heading, sans-serif);
  font-size: 0.7rem;
  font-weight: 800;
  color: #ff5277;
  background: rgba(155, 34, 66, 0.2);
  border: 1px solid rgba(155, 34, 66, 0.4);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.gold-tag {
  color: #121C2D;
  background: #FFDC33;
  border: none;
}

.bonus-title {
  font-family: var(--font-heading, sans-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.bonus-sub {
  font-size: 0.82rem;
  color: #f0f4f9;
  line-height: 1.4;
}

/* Card Body Content */
.bonus-card-body {
  flex-grow: 1;
  margin-bottom: 20px;
}

.bonus-desc {
  font-size: 0.86rem;
  color: #f0f4f9;
  line-height: 1.5;
  margin: 0;
}

.bonus-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bonus-list li {
  font-size: 0.86rem;
  color: #f0f4f9;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.bonus-list li span {
  color: #65A30D;
  font-weight: bold;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.bonus-list li em {
  font-style: normal;
  color: #94A3B8;
  font-size: 0.8rem;
}

.compact-list li {
  margin-bottom: 6px;
  font-size: 0.82rem;
}

/* Card Footer */
.bonus-card-footer {
  background: rgba(15, 23, 42, 0.6);
  border-top: 1px solid #28354D;
  margin: 0 -24px -24px -24px;
  padding: 12px 24px;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bonus-old-price del {
  color: #dbe4f0;
  font-weight: 700;
  font-size: 0.95rem;
}

.bonus-free-badge {
  background: #fe1751;
  color: #ffffff;
  font-family: var(--font-heading, sans-serif);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.gold-badge {
  background: #FFDC33;
  color: #121C2D;
}

/* Responsive Grid Adjustments */
@media (max-width: 992px) {
  .bonuses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .bonuses-grid {
    grid-template-columns: 1fr;
  }

  .bonus-card-footer {
    margin: 0 -20px -20px -20px;
    padding: 12px 20px;
  }

  .bonus-card {
    padding: 20px;
  }
}
/* ==========================================================================
   WEEKLY LIVE COACHING SECTION
   ========================================================================== */

.live-coaching-wrapper {
  width: 100%;
  background: #F3EDE4; /* Warm Sand background */
  padding: 70px 20px;
  border-top: 1px solid rgba(22, 32, 50, 0.08);
}

.live-coaching-container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

/* --- Left Column Styling --- */
.live-badge-pill {
  display: inline-block;
  background: rgba(254, 23, 81, 0.1);
  color: #fe1751; /* Crimson Accent */
  border: 1px solid rgba(254, 23, 81, 0.3);
  font-family: var(--font-heading, sans-serif);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.live-title {
  font-family: var(--font-heading, sans-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #162032; /* Navy Theme */
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.live-subtitle {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 28px;
}

.live-subtitle strong {
  color: #162032;
  font-weight: 700;
}

/* Bullet Points List */
.live-points-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.live-points-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.live-points-list .check-icon {
  background: rgba(101, 163, 13, 0.15);
  color: #65A30D; /* Green checkmark */
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.live-points-list p {
  font-size: 0.98rem;
  color: #475569;
  margin: 0;
  line-height: 1.4;
}

.live-points-list p strong {
  color: #162032;
  font-weight: 700;
}

/* --- Right Column Styling --- */
.live-coaching-visual {
  display: flex;
  justify-content: center;
}

.live-image-card {
  width: 100%;
  max-width: 440px;
  background: #162032; /* Navy theme card */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(22, 32, 50, 0.15);
  border: 1px solid rgba(255, 220, 51, 0.3); /* Subtle Gold border outline */
  transition: transform 0.3s ease;
}

.live-image-card:hover {
  transform: translateY(-5px);
}

.live-image-container {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.live-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.live-duration-banner {
  background: #162032; /* Dark navy banner */
  padding: 18px 20px;
  text-align: center;
  border-top: 1px solid #28354D;
}

.live-duration-banner span {
  font-family: var(--font-heading, sans-serif);
  color: #FFDC33; /* Gold Highlight */
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .live-coaching-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .live-coaching-visual {
    order: -1; /* Shows image top on tablet if desired, or keep default */
  }
}

@media (max-width: 640px) {
  .live-coaching-wrapper {
    padding: 45px 16px;
  }

  .live-image-container {
    height: 250px;
  }

  .live-points-list p {
    font-size: 0.9rem;
  }
}
/* ==========================================================================
   MEET YOUR MENTOR SECTION (MATCHING YOUR PAGE'S #F3EDE4 / #162032 THEME)
   ========================================================================== */

.mentor-wrapper {
  width: 100%;
  background: #F3EDE4; /* Matching your page's signature warm background */
  padding: 60px 20px;
  position: relative;
  border-top: 1px solid #1E293B;
}

.mentor-container {
  max-width: 1150px;
  margin: 0 auto;
}

/* Dark Card Container */
.mentor-card {
  background: #162032; /* Signature dark card background */
  border: 1px solid #28354D;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 48px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Left Column Image Frame */
.mentor-media {
  flex: 0.9;
  width: 100%;
}

.mentor-img-frame {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #28354D;
  line-height: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.mentor-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Right Column Content */
.mentor-content {
  flex: 1.1;
  color: #F8FAFC;
}

/* Pill Badge */
.mentor-badge-pill {
  display: inline-block;
  background: rgba(155, 34, 66, 0.2);
  color: #fe1751;
  border: 1px solid rgba(155, 34, 66, 0.4);
  font-family: var(--font-heading, sans-serif);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.mentor-sub {
  font-family: var(--font-heading, sans-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.mentor-name {
  font-family: var(--font-heading, sans-serif);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.mentor-role {
  font-family: var(--font-heading, sans-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFDC33; /* Gold accent color matching your page */
  margin-bottom: 20px;
}

.mentor-bio {
  font-size: 0.95rem;
  color: #dee5ed;
  line-height: 1.6;
  margin-bottom: 14px;
}

.mentor-bio strong {
  color: #FFFFFF;
  font-weight: 700;
}

/* Mission Box Accent */
.mentor-mission-box {
  background: rgba(18, 26, 43, 0.7);
  border: 1px solid #FFDC33; /* Gold border accent */
  border-radius: 14px;
  padding: 20px;
  margin-top: 24px;
  box-shadow: 0 6px 20px rgba(255, 220, 51, 0.05);
}

.mission-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.mission-quote-mark {
  color: #FFDC33;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.mission-label {
  font-family: var(--font-heading, sans-serif);
  font-size: 0.78rem;
  font-weight: 800;
  color: #FFDC33;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.mission-text {
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .mentor-card {
    flex-direction: column;
    padding: 30px 24px;
    gap: 32px;
  }

  .mentor-media {
    max-width: 450px;
    margin: 0 auto;
  }

  .mentor-img {
    height: 400px;
  }
}

@media (max-width: 640px) {
  .mentor-wrapper {
    padding: 40px 16px;
  }

  .mentor-card {
    padding: 24px 18px;
  }

  .mentor-img {
    height: 320px;
  }

  .mentor-name {
    font-size: 2.2rem;
  }

  .mentor-role {
    font-size: 1rem;
  }
}
/* ==========================================================================
   GET CERTIFIED SECTION (MATCHING YOUR PAGE'S #F3EDE4 / #162032 THEME)
   ========================================================================== */

.certificate-wrapper {
  width: 100%;
  background: #F3EDE4; /* Matching page warm background */
  padding: 60px 20px;
  position: relative;
  border-top: 1px solid #1E293B;
}

.certificate-container {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Left Column Styling */
.certificate-content {
  flex: 1;
}

.cert-badge-pill {
  display: inline-block;
  background: rgba(155, 34, 66, 0.15);
  color: #9B2242;
  border: 1px solid rgba(155, 34, 66, 0.35);
  font-family: var(--font-heading, sans-serif);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.certificate-title {
  font-family: var(--font-heading, sans-serif);
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: #11192c;
  line-height: 1.15;
  margin-bottom: 12px;
}

.highlight-crimson {
  color: #9B2242;
}

.certificate-subtitle {
  font-size: 0.98rem;
  color: #193865;
  line-height: 1.5;
  margin-bottom: 28px;
}

/* Benefits List */
.certificate-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.certificate-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cert-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(254, 23, 81, 0.12);
  border: 1px solid rgba(254, 23, 81, 0.25);
  border-radius: 50%;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.cert-item-text {
  font-size: 0.95rem;
  color: #11192c;
}

.cert-item-text strong {
  font-weight: 700;
  color: #11192c;
}

/* CTA Wrapper */
.certificate-cta-wrapper {
  margin-top: 10px;
}

/* Right Column Frame Styling */
.certificate-media {
  flex: 1.1;
  width: 100%;
}

.certificate-card-frame {
  background: #162032; /* Matching dark navy card base */
  border: 1px solid #28354D;
  padding: 18px;
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.certificate-card-frame:hover {
  transform: translateY(-5px);
  border-color: #FFDC33; /* Gold outline hover effect */
}

.certificate-inner-border {
  border: 2px solid rgba(255, 220, 51, 0.6); /* Gold inner frame highlight */
  border-radius: 12px;
  overflow: hidden;
  background-color: #0d1522;
  line-height: 0;
}

.certificate-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .certificate-container {
    flex-direction: column;
    gap: 40px;
  }

  .certificate-media {
    max-width: 550px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .certificate-wrapper {
    padding: 40px 16px;
  }

  .certificate-card-frame {
    padding: 12px;
    border-radius: 16px;
  }

  .certificate-img {
    height: 240px;
  }
}
/* ===================================================
   SECTION 6: WHY THE CONFIDENT YOU & OUTCOMES
====================================================== */
.why-wrapper {
  width: 100%;
  background: radial-gradient(circle at top center, #1E0A14 0%, #0B1120 70%);
  color: #F8FAFC;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(155, 34, 66, 0.4);
}

.why-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* TOP HERO BLOCK */
.why-hero-block {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 70px;
}

.why-badge {
  display: inline-block;
  background: rgba(255, 220, 51, 0.15);
  color: #FFDC33;
  border: 1px solid rgba(255, 220, 51, 0.4);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 2px;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* HIGH-IMPACT HEADINGS */
.why-title-main {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.brand-glow {
  color: #FFDC33;
  text-shadow: 0 0 25px rgba(255, 220, 51, 0.4);
}

.why-quote-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 30px;
  border-radius: 16px;
  margin-bottom: 36px;
  backdrop-filter: blur(8px);
}

.why-quote {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-statement {
  font-size: 1rem;
  color: #dee6f2;
  margin: 0;
}

/* TRIAD GRID */
.triad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.triad-card {
  background: rgba(22, 32, 50, 0.8);
  border: 1px solid #28354D;
  border-radius: 16px;
  padding: 28px 20px;
  transition: all 0.3s ease;
}

.triad-card:hover {
  border-color: var(--maroon);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(155, 34, 66, 0.25);
}

.triad-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.triad-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.triad-card p {
  font-size: 0.88rem;
  color: #dee6f2;
  line-height: 1.45;
  margin: 0;
}

/* FRAMEWORK BANNER */
.framework-banner {
  background: linear-gradient(90deg, rgba(155, 34, 66, 0.4) 0%, rgba(22, 32, 50, 0.9) 100%);
  border-left: 5px solid #FFDC33;
  padding: 20px 28px;
  border-radius: 12px;
  font-size: 1.1rem;
  color: #F8FAFC;
  text-align: left;
  line-height: 1.5;
}

.framework-banner strong {
  color: #FFDC33;
}

/* GLOW DIVIDER */
.glow-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--maroon) 50%, transparent 100%);
  margin: 70px 0;
}

/* OUTCOMES SECTION */
.outcomes-header {
  text-align: center;
  margin-bottom: 50px;
}

.outcome-badge {
  display: inline-block;
  background: rgba(155, 34, 66, 0.3);
  color: #FF7B9C;
  border: 1px solid rgba(155, 34, 66, 0.6);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.outcomes-title-main {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.outcomes-sub {
  font-size: 1.05rem;
  color: #dee6f2;
  max-width: 680px;
  margin: 0 auto;
}

/* 4 CARDS PER ROW GRID */
.outcomes-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.transformation-card {
  background: #131B2E;
  border: 1px solid #243248;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.transformation-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 220, 51, 0.5);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.5);
}

/* Image Wrappers */
.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 170px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.transformation-card:hover .card-img {
  transform: scale(1.08);
}

.card-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, #131B2E 100%);
}

.gold-overlay {
  background: linear-gradient(180deg, rgba(155, 34, 66, 0.3) 0%, #1B1222 100%);
}

/* Card Content */
.card-content {
  padding: 18px 20px 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: #FFDC33;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.card-content h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 8px;
}

.card-content p {
  font-size: 0.85rem;
  color: #dee6f2;
  line-height: 1.45;
  margin: 0;
}

/* CAPSTONE HIGHLIGHT CARD (08) */
.highlight-transform {
  background: linear-gradient(180deg, #1B1222 0%, #111726 100%);
  border: 2px solid #FFDC33;
  animation: goldPulse 3s infinite ease-in-out;
}

.highlight-num {
  color: #FFDC33;
}

.highlight-title {
  color: #FFDC33 !important;
  font-size: 1.15rem !important;
}

.highlight-desc {
  color: #F8FAFC !important;
  font-weight: 500;
}

/* Pulse Keyframes */
@keyframes goldPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 220, 51, 0.4); }
  50% { box-shadow: 0 0 22px 6px rgba(255, 220, 51, 0.25); }
  100% { box-shadow: 0 0 0 0 rgba(255, 220, 51, 0.4); }
}

/* RESPONSIVE LAYOUT */
@media (max-width: 1100px) {
  .outcomes-grid-4col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .triad-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .outcomes-grid-4col {
    grid-template-columns: 1fr;
  }
  
  .card-img-wrapper {
    height: 190px;
  }
}
/* ===================================================
   SECTION 7: FINAL CTA SECTION (AESTHETIC LIGHT)
====================================================== */
.final-cta-section {
  width: 100%;
  /* Soft, elegant top-to-bottom light gradient */
  background: linear-gradient(180deg, #cad4eb 0%, #7f9de3 50%, #aecff3 100%);
  color: #0F172A;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(155, 34, 66, 0.15);
}

.final-cta-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Subtle maroon ambient backdrop (No harsh yellow) */
.cta-backdrop-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(155, 34, 66, 0.06) 0%, rgba(248, 250, 252, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

/* Top Pill Badge */
.final-cta-badge {
  display: inline-block;
  background: rgba(155, 34, 66, 0.08);
  color: var(--maroon);
  border: 1px solid rgba(155, 34, 66, 0.2);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 2px;
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* Main Headline */
.final-cta-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #0F172A;
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* Subheadings */
.final-cta-subheadings {
  margin-bottom: 20px;
}

.cta-sub-lead {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  font-weight: 700;
  color: #0f2f5b;
  line-height: 1.3;
  margin-bottom: 6px;
}

.cta-sub-main {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  font-weight: 800;
  color: #0F172A;
  line-height: 1.3;
}

/* Text Highlight */
.brand-highlight {
  color: var(--maroon);
  background: linear-gradient(120deg, rgba(155, 34, 66, 0.12) 0%, rgba(155, 34, 66, 0.03) 100%);
  padding: 2px 10px;
  border-radius: 6px;
}

.final-cta-description {
  font-size: 1.15rem;
  color: #0f2442;
  margin-bottom: 40px;
  font-weight: 500;
}

/* High-Impact Aesthetic Button */
.cta-action-wrapper {
  margin-bottom: 32px;
}

.btn-cta-aesthetic {
  display: inline-block;
  background: linear-gradient(135deg, var(--maroon) 0%, #7A1A33 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  letter-spacing: 0.5px;
  padding: 22px 48px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(155, 34, 66, 0.25);
  transition: all 0.35s ease;
  animation: aestheticPulse 3s infinite ease-in-out;
}

.btn-cta-aesthetic:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(155, 34, 66, 0.38);
  background: linear-gradient(135deg, #A82447 0%, var(--maroon) 100%);
}

/* Trust Bar */
.cta-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #343d4a;
  font-weight: 600;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-dot {
  color: #CBD5E1;
}

/* Soft Glow Animation */
@keyframes aestheticPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(155, 34, 66, 0.3);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(155, 34, 66, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(155, 34, 66, 0);
  }
}

/* RESPONSIVE LAYOUT */
@media (max-width: 640px) {
  .final-cta-section {
    padding: 80px 16px;
  }
  
  .btn-cta-aesthetic {
    width: 100%;
    padding: 20px 20px;
    font-size: 0.95rem;
  }

  .cta-trust-bar {
    flex-direction: column;
    gap: 8px;
  }

  .trust-dot {
    display: none;
  }
}
/* ==========================================================================
   FINAL OFFER SECTION (MATCHING YOUR PAGE'S #F3EDE4 / #162032 THEME)
   ========================================================================== */

.final-offer-wrapper {
  width: 100%;
  background: #F3EDE4; /* Page warm background */
  padding: 60px 20px 80px;
  position: relative;
  border-top: 1px solid #1E293B;
}

.final-offer-container {
  max-width: 950px;
  margin: 0 auto;
}

/* Outer Main Card Frame */
.final-offer-card {
  background: #162032; /* Signature dark card background */
  border: 2px solid #FFDC33; /* Gold outline border matching photo */
  border-radius: 28px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Top Badge & Header Text */
.offer-top-badge {
  margin-bottom: 16px;
}

.limited-tag {
  display: inline-block;
  background: #fe1751; /* Vibrant Crimson/Red Pill */
  color: #ffffff;
  font-family: var(--font-heading, sans-serif);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  padding: 6px 18px;
  border-radius: 50px;
  text-transform: uppercase;
}

.enroll-subtitle {
  font-family: var(--font-heading, sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: #dee6f2;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.offer-main-title {
  font-family: var(--font-heading, sans-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 32px;
}

.offer-main-title span {
  color: #FFFFFF;
}

/* 4 Feature Pills (White Boxes) */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 680px;
  margin: 0 auto 32px;
}

.outcome-pill {
  background: #F8FAFC;
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: left;
  justify-content: left;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.check-icon {
  color: #10B981; /* Fresh green checkmark */
  font-weight: 800;
  font-size: 1.1rem;
}

.outcome-text {
  font-family: var(--font-heading, sans-serif);
  font-size: 0.98rem;
  font-weight: 800;
  color: #0F172A;
}

/* Feature Badges (Pills) */
.feature-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.guarantee-tag-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.feature-tag {
  background: rgba(18, 26, 43, 0.8);
  border: 1px solid rgba(255, 220, 51, 0.6); /* Subtle gold border */
  color: #FFDC33; /* Gold text matching photo */
  font-family: var(--font-heading, sans-serif);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
}

.guarantee-tag {
  border-color: rgba(255, 220, 51, 0.8);
}

/* CTA Button */
.offer-cta-box {
  margin-bottom: 20px;
}

.final-cta-btn {
  display: inline-block;
  background: #fe1751;
  color: #ffffff;
  font-family: var(--font-heading, sans-serif);
  font-size: 1.25rem;
  font-weight: 800;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(254, 23, 81, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.final-cta-btn:hover {
  background: #e01245;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(254, 23, 81, 0.45);
}

/* Subtext */
.trust-subtext {
  font-size: 0.85rem;
  color: #dee6f2;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .final-offer-card {
    padding: 32px 20px;
    border-radius: 20px;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .outcome-pill {
    padding: 12px 16px;
  }

  .feature-tags-wrapper {
    gap: 8px;
  }

  .feature-tag {
    font-size: 0.8rem;
    padding: 6px 14px;
  }

  .final-cta-btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 1.1rem;
  }
}
/* ===================================================
   FOOTER SECTION
====================================================== */
.site-footer {
  width: 100%;
  background-color: #0B1120; /* Dark rich theme background */
  color: #94A3B8;
  padding: 60px 20px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: inherit;
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* POWERED BY Branding */
.footer-brand {
  margin-bottom: 24px;
}

.powered-by {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: #FFDC33; /* Gold brand accent */
  letter-spacing: 3px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: 0.5px;
}

/* 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;
}

/* Thin Divider Line */
.footer-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto 28px;
  width: 100%;
}

/* Disclaimer Block */
.footer-disclaimer {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #94A3B8;
  max-width: 820px;
  margin: 0 auto 28px;
}

.footer-disclaimer strong {
  color: #CBD5E1;
  font-weight: 700;
}

/* Footer Links */
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-link {
  color: #FFDC33; /* Gold clickable links */
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.25s ease, text-decoration 0.25s ease;
}

.footer-link:hover {
  opacity: 0.85;
  text-decoration: underline;
}

.link-separator {
  color: #475569;
  font-size: 0.8rem;
}

/* RESPONSIVE LAYOUT */
@media (max-width: 600px) {
  .site-footer {
    padding: 40px 16px 30px;
  }

  .footer-contact-row {
    flex-direction: column;
    gap: 14px;
  }

  .footer-links {
    gap: 8px;
  }
}

/*continuous button animation*/
.btn-attention {
  animation: continuousAttention 2.5s infinite ease-in-out;
}

@keyframes continuousAttention {
  0%, 100% {
    transform: scale(0.9); /* Normal size */
  }
  50% {
    transform: scale(1); /* Grows bigger / comes out toward viewer */
  }
}