/* ==========================================================================
   CSS Variables & Theme Tokens (Slate Blue & Warm Neutral Palette)
   ========================================================================== */
:root {
  --primary-blue: #2B4C6F;        
  --primary-blue-hover: #1E3A5F;  
  --accent-coral: #3c5c80;        
  --accent-red: #D9534F;          /* Subtle Crimson Red for "✕" icons */
  --highlight-gold: #F2CC8F;     
  --bg-main: rgb(247, 235, 241);        
  --bg-card: #FFFFFF;          
  --bg-callout: rgb(243, 209, 226);       
  --pill-bg: #dceaf9;           
  --pill-border: #C8D6E5;      
  --text-main: #222B38;         
  --text-muted: #374153;        
  --shadow-card: 0 10px 30px rgba(43, 76, 111, 0.08);
  --shadow-button: 0 4px 14px rgba(43, 76, 111, 0.3);
  --radius-lg: 16px;
  --radius-pill: 50px;
}

/* ==========================================================================
   Base & Reset Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* ==========================================================================
   Top Banner
   ========================================================================== */
.top-banner {
  background-color: var(--primary-blue);
  color: #FFFFFF;
  text-align: center;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ==========================================================================
   Hero Section Layout
   ========================================================================== */
.hero-section {
  padding: 30px 0 20px 0;
}

/* Big Serif Title (Matches Reference Page) */
.main-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 28px;
}

/* Sub-heading Pill Badge */
.pill-badge-wrapper {
  margin-bottom: 32px;
}

.pill-badge {
  display: inline-block;
  background-color: var(--pill-bg);
  border: 1px solid var(--pill-border);
  color: var(--primary-blue);
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
}
/* ==========================================
   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%;
}
/* Highlighted Callout Box */
.callout-box {
  background-color: var(--bg-callout);
  border-left: 4px solid var(--accent-coral);
  border-radius: 8px;
  padding: 24px 28px;
  text-align: left;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.callout-box p {
  font-size: 1.1rem;
  color: #4A3A35;
  font-weight: 600;
  line-height: 1.5;
}

.callout-box p:first-child {
  margin-bottom: 12px;
}

/* Secondary Text Below Box */
.hero-subtext {
  margin-bottom: 40px;
  padding: 0 10px;
}

.hero-subtext p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.hero-subtext .highlight-line {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.hero-subtext em {
  font-style: italic;
  font-weight: 700;
  color: var(--primary-blue);
}

/* ==========================================================================
   Pricing Card Section
   ========================================================================== */
.pricing-card {
  background-color: var(--bg-card);
  border: 1px solid #E8E3DC;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  max-width: 760px;
  margin: 0 auto;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.old-price {
  font-size: 2rem;
  color: #161616;
  text-decoration: line-through;
  font-weight: 700;
}

.current-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.today-badge {
  background-color: #FDF0EC;
  color: #D96B43;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

/* CTA Button */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: #FFFFFF;
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  background-color: var(--primary-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.4);
}

.btn-block {
  display: block;
  width: 100%;
  padding: 18px 24px;
  font-size: 1.2rem;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 768px) {
  .main-title {
    font-size: 1.5rem;
  }

  .pill-badge {
    font-size: 0.88rem;
    padding: 6px 16px;
  }

  .callout-box {
    padding: 18px 20px;
  }

  .callout-box p {
    font-size: 0.8rem;
  }

  .current-price {
    font-size: 1.1rem;
  }

  .old-price {
    font-size: 0.9rem;
  }

  .btn-block {
    font-size: 1.05rem;
    padding: 14px 20px;
  }
}

/* ==========================================================================
   Section 2: Problem & Pain Points Section
   ========================================================================== */
.problem-section {
  padding: 10px 0 20px 0;
}

.problem-card {
  background-color: var(--bg-callout);
  border: 1px solid rgba(200, 214, 229, 0.5);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-card);
}

.problem-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 8px;
}

.problem-subtitle {
  font-style: italic;
  color: #161616;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 20px;
}

/* Pain Points List & Dashed Dividers */
.pain-points-list {
  margin-bottom: 32px;
}

.pain-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 8px;
  border-bottom: 1px dashed rgba(60, 92, 128, 0.25);
  text-align: left;
}

.pain-item:last-child {
  border-bottom: none;
}

/* Subtle Red accent for the cross icon */
.cross-icon {
  color: var(--accent-red);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pain-text {
  font-size: 1.05rem;
  color: var(--text-main);
  font-weight: 500;
}

/* Inner Callout Box */
.solution-callout {
  background-color: var(--bg-card);
  border-left: 5px solid var(--primary-blue);
  border-radius: 8px;
  padding: 20px 24px;
  text-align: center;
  margin-bottom: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.solution-callout p {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
}

.solution-callout .callout-sub {
  font-size: 1.05rem;
  font-weight: 500;
  color: #2b2a2a;
  margin-top: 6px;
}

/* Dark Navy Pill Button with Price Tag */
.register-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #1c3858; /* Exact dark navy color from image */
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 50px; /* Full pill shape */
  text-decoration: none;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  box-shadow: 0 8px 20px rgba(28, 56, 88, 0.35);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

/* Button Hover State */
.register-pill-btn:hover {
  background-color: #152b45;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(28, 56, 88, 0.45);
}

/* Primary Text */
.register-pill-btn .btn-text {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Price Container Badge */
.register-pill-btn .btn-price-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15); /* Subtle inner pill outline */
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 1.3rem;
}

/* Strikethrough Old Price */
.register-pill-btn .btn-price-tag del {
  color: #fff;
  font-weight: 500;
  font-size: 1.3rem;
}

/* Final Discounted Price */
.register-pill-btn .btn-price-tag strong {
  color: #ffdc33; /* Bright yellow highlight for price */
  font-weight: 700;
}
/* Tablets & Smaller Screens (under 768px) */
@media (max-width: 768px) {
  .register-pill-btn {
    padding: 12px 24px;
    gap: 10px;
  }

  .register-pill-btn .btn-text {
    font-size: 1rem;
  }

  .register-pill-btn .btn-price-tag {
    padding: 3px 10px;
    font-size: 1.1rem;
  }
}

/* Mobile Phones (under 480px) */
@media (max-width: 480px) {
  .register-pill-btn {
    width: 100%;             /* Expands to full width for easy tapping */
    max-width: 320px;        /* Keeps it nicely proportioned */
    justify-content: center;
    padding: 12px 18px;
    gap: 8px;
  }

  .register-pill-btn .btn-text {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }

  .register-pill-btn .btn-price-tag {
    font-size: 1rem;
    padding: 2px 8px;
  }

  .register-pill-btn .btn-price-tag del {
    font-size: 1rem;
  }
}
/* ==========================================================================
   Responsive Adaptation for Section 2
   ========================================================================== */
@media (max-width: 768px) {
  .problem-card {
    padding: 32px 20px;
  }

  .problem-title {
    font-size: 1.8rem;
  }

  .problem-subtitle {
    font-size: 1rem;
  }

  .pain-item {
    padding: 12px 4px;
  }

  .pain-text {
    font-size: 0.95rem;
  }

  .solution-callout p {
    font-size: 1rem;
  }

  .solution-callout .callout-sub {
    font-size: 0.9rem;
  }
}
/* ==========================================================================
   Section 3: Intro Banner Section
   ========================================================================== */
.intro-section {
  padding: 10px 0 20px 0;
}

.intro-card {
  background-color: var(--primary-blue);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.intro-tag {
  display: block;
  color: var(--highlight-gold);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.intro-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 12px;
}

.intro-subtitle {
  color: #E2E8F0;
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 650px;
  margin: 0 auto;
}

/* ==========================================================================
   Responsive Adaptation for Section 3
   ========================================================================== */
@media (max-width: 768px) {
  .intro-card {
    padding: 30px 20px;
  }

  .intro-tag {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .intro-title {
    font-size: 1.75rem;
  }

  .intro-subtitle {
    font-size: 0.95rem;
  }
}
/* ==========================================================================
   Section 4: Blueprint Card Section
   ========================================================================== */
.blueprint-section {
  padding: 10px 0 20px 0;
}

/* Outer White Card Container */
.blueprint-card {
  background-color: var(--bg-card);
  border: 1px solid #EAE6DF;
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

/* Top Pill Badge */
.blueprint-pill {
  display: inline-block;
  background-color: var(--bg-callout);
  color: var(--primary-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

/* Serif Headline */
.blueprint-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 20px;
}

/* Description Text */
.blueprint-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

/* Inner Nested Dark Blue Box */
.inner-offer-card {
  background-color: var(--primary-blue);
  border-radius: 12px;
  padding: 28px 24px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Limited Launch Offer Badge */
.launch-badge {
  display: inline-block;
  background-color: var(--highlight-gold);
  color: #5C410D;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}

/* Pricing Display */
.blueprint-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.blueprint-old-price {
  font-size: 2rem;
  color: #fff;
  text-decoration: line-through;
  font-weight: 500;
}

.blueprint-new-price {
  font-size: 2.6rem;
  font-weight: 800;
  color: #FFFFFF;
}

/* Button Variant for Section 4 */
.btn-outline-gold {
  background-color: var(--highlight-gold);
  color: var(--text-main);
  border: 1px solid var(--highlight-gold);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* ==========================================================================
   Responsive Adaptation for Section 4
   ========================================================================== */
@media (max-width: 768px) {
  .blueprint-card {
    padding: 28px 18px 20px 18px;
  }

  .blueprint-title {
    font-size: 1.65rem;
  }

  .blueprint-description {
    font-size: 0.95rem;
  }

  .inner-offer-card {
    padding: 20px 16px;
  }

  .blueprint-new-price {
    font-size: 1.5rem;
  }

  .blueprint-old-price {
    font-size: 1.25rem;
  }
}
/* ==========================================================================
   Section 5: Wondering Why & The Core Shift
   ========================================================================== */
.wonder-section {
  padding: 10px 0 20px 0;
}

.wonder-card {
  background-color: var(--bg-card);
  border: 1px solid var(--pill-border);
  border-radius: var(--radius-lg);
  padding: 0 0 40px 0;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

/* Header Banner */
.wonder-header {
  background-color: var(--bg-callout);
  padding: 44px 28px 36px 28px;
  text-align: center;
  border-bottom: 1px solid rgba(200, 214, 229, 0.4);
}

.header-icon {
  width: 48px;
  height: 48px;
  background-color: var(--bg-card);
  border: 1px solid var(--pill-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.wonder-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.wonder-subtitle {
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Question List */
.wonder-list {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wonder-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background-color: var(--bg-main);
  border-radius: 12px;
  border: 1px solid rgba(200, 214, 229, 0.6);
  transition: all 0.25s ease;
}

.wonder-item:hover {
  background-color: var(--bg-card);
  border-color: var(--accent-coral);
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}

.arrow-icon {
  width: 32px;
  height: 32px;
  background-color: var(--pill-bg);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 1px solid var(--pill-border);
}

.wonder-text {
  font-size: 1.05rem;
  color: var(--text-main);
}

.wonder-text strong {
  color: var(--primary-blue);
  font-weight: 700;
}

/* Core Shift Section */
.shift-wrapper {
  text-align: center;
  padding: 0 36px;
  margin-bottom: 32px;
}

.shift-pill {
  display: inline-block;
  background-color: var(--pill-bg);
  color: var(--primary-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--pill-border);
  margin-bottom: 16px;
}

.shift-question {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 6px;
}

.shift-answer {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Impact Card */
.impact-card {
  background-color: var(--primary-blue);
  color: #FFFFFF;
  border-radius: 12px;
  padding: 36px 28px;
  margin: 0 36px;
  text-align: center;
  box-shadow: var(--shadow-button);
}

.impact-headline {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.impact-sub {
  font-size: 1.05rem;
  color: var(--pill-bg);
  margin-bottom: 24px;
  line-height: 1.5;
}

.gold-promise-badge {
  display: inline-block;
  border: 1px solid var(--highlight-gold);
  color: var(--highlight-gold);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  background-color: rgba(242, 204, 143, 0.1);
}

/* Responsive Adaptation */
@media (max-width: 768px) {
  .wonder-title {
    font-size: 1.85rem;
  }

  .wonder-list {
    padding: 24px 18px;
  }

  .wonder-item {
    padding: 12px 14px;
    gap: 12px;
  }

  .wonder-text {
    font-size: 0.95rem;
  }

  .shift-wrapper, .impact-card {
    padding-left: 18px;
    padding-right: 18px;
    margin-left: 18px;
    margin-right: 18px;
  }

  .shift-answer {
    font-size: 1.4rem;
  }
  .shift-question {
    font-size: 1rem;
  }

  .impact-headline {
    font-size: 1.35rem;
  }

  .gold-promise-badge {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}
/* ==========================================================================
   Section 6: Inside The Experience (Modules Grid)
   ========================================================================== */
.modules-section {
  padding: 20px 0 40px 0;
}

.modules-header {
  text-align: center;
  margin-bottom: 30px;
}

.modules-tag {
  display: inline-block;
  background-color: var(--pill-bg);
  color: var(--primary-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--pill-border);
  margin-bottom: 14px;
}

.modules-title {
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--text-main);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.3;
}

/* Responsive 2-Column Grid */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Module Card Style */
.module-card {
  background-color: var(--bg-card);
  border: 1px solid var(--pill-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.module-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-blue);
  box-shadow: 0 14px 35px rgba(43, 76, 111, 0.12);
}

.module-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.module-badge {
  background-color: var(--bg-callout);
  color: var(--primary-blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 6px;
}

.module-number-watermark {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(43, 76, 111, 0.08);
  line-height: 1;
  user-select: none;
}

.module-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.module-description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Responsive Adaptations for Section 6
   ========================================================================== */
@media (max-width: 768px) {
  .modules-title {
    font-size: 1.85rem;
  }

  .modules-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .module-card {
    padding: 24px 20px;
  }

  .module-title {
    font-size: 1.25rem;
  }

  .module-description {
    font-size: 0.95rem;
  }
}
/* ==========================================================================
   Section 7: Who Is This For? (Image Card Grid Style)
   ========================================================================== */
.target-image-section {
  padding: 10px 0 20px 0;
  background-color: var(--bg-main); /* Non-white background for the section */
}

.target-img-header {
  text-align: center;
  margin-bottom: 25px;
}

.target-red-badge {
  display: inline-block;
  background-color: rgba(217, 83, 79, 0.12); /* Red tint background */
  color: var(--accent-red);                    /* Red text */
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(217, 83, 79, 0.3);
  margin-bottom: 12px;
}

.target-img-title {
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-main);
}

/* 3-Column Image Cards Grid */
.target-img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* Individual Card Styling matching reference image */
.target-img-card {
  background-color: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.target-img-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-image-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.target-img-card:hover .card-image-wrap img {
  transform: scale(1.05);
}

.card-content {
  padding: 24px 20px;
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.card-content p {
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.5;
  margin: 0;
}

.card-content p strong {
  color: var(--primary-blue);
  font-weight: 700;
}

/* Center 7th featured item across columns on desktop */
.target-img-card-featured {
  grid-column: 2 / 3;
}

/* Red Accent Callout Banner */
.target-red-shift-banner {
  background: linear-gradient(135deg, var(--accent-red) 0%, #B93834 100%);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(217, 83, 79, 0.25);
}

.red-shift-from {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.red-shift-to {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  color: #FFFFFF;
  max-width: 620px;
  margin: 0 auto;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 992px) {
  .target-img-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .target-img-card-featured {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .target-img-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .target-img-card-featured {
    grid-column: span 1;
  }

  .target-img-title {
    font-size: 1.85rem;
  }

  .card-image-wrap {
    height: 180px;
  }

  .card-content {
    padding: 18px 16px;
  }

  .card-content p {
    font-size: 0.95rem;
  }

  .target-red-shift-banner {
    padding: 28px 18px;
  }

  .red-shift-to {
    font-size: 1.25rem;
  }
}
/* ==========================================================================
   Section 8: Imagine Waking Up And Feeling (Transformation Grid)
   ========================================================================== */
.transformation-section {
  padding: 20px 0 20px 0;
  background-color: var(--bg-main);
}

.transformation-card {
  background-color: var(--bg-card);
  border: 1px solid var(--pill-border);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  box-shadow: var(--shadow-card);
}

/* Header Area */
.transformation-header {
  text-align: center;
  margin-bottom: 48px;
}

.transformation-subtitle {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.transformation-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.5px;
}

/* Grid Layout */
.transformation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* Standard Transformation Box */
.transform-box {
  background-color: var(--bg-main);
  border: 1px solid rgba(200, 214, 229, 0.6);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.transform-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(43, 76, 111, 0.08);
}

/* Highlighted Decision Card */
.transform-box-callout {
  background-color: var(--bg-callout);
  border: 1px solid rgba(242, 204, 143, 0.8);
}

/* Top Pill Badge */
.transform-pill {
  background-color: var(--bg-card);
  border: 1px solid var(--pill-border);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  max-width: 100%;
  flex-wrap: wrap;
}

.from-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.arrow-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.to-text {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 0.5px;
}

/* Description Text */
.transform-desc {
  font-size: 1rem;
  color: #282727;
  font-weight: 500;
  line-height: 1.55;
  margin: 0;
}

.transform-desc-callout {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
  margin: 0;
}

/* CTA Button Container */
.transformation-cta-wrap {
  text-align: center;
}

.btn-primary-blue {
  background-color: var(--primary-blue);
  color: #FFFFFF;
  border: none;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 16px 40px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-button);
  display: inline-block;
  text-decoration: none;
}

.btn-primary-blue:hover {
  background-color: var(--primary-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(43, 76, 111, 0.4);
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 992px) {
  .transformation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .transformation-card {
    padding: 36px 20px;
  }

  .transformation-title {
    font-size: 1.75rem;
  }

  .transformation-subtitle {
    font-size: 0.95rem;
  }

  .transformation-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .transform-box {
    padding: 24px 16px;
  }

  .transform-desc {
    font-size: 0.95rem;
  }

  .btn-primary-blue {
    width: 100%;
    padding: 16px 20px;
  }
}
/* ==========================================================================
   Section 9: Meet Your Mentor (Refined Alignment & Fit)
   ========================================================================== */
.mentor-section {
  padding: 20px 0 30px 0;
  background-color: var(--bg-main);
}

/* Outer Container Shell */
.mentor-outer-card {
  background: var(--bg-callout);
  border: 1px solid rgba(217, 83, 79, 0.15);
  border-radius: 24px;
  padding: 52px 40px;
  box-shadow: 0 12px 35px rgba(217, 83, 79, 0.05);
}

/* Main Section Title Header */
.mentor-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: 1.5px;
}

/* Inner White Card Shell */
.mentor-inner-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 44px;
  display: grid;
  grid-template-columns: 290px 1fr; /* Widened slightly to give photo & text breathing room */
  gap: 48px;
  align-items: center; /* Vertically centers image and text nicely */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 1);
}

/* Image Column & Red Frame */
.mentor-image-col {
  display: flex;
  justify-content: center;
}

.mentor-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 290px;
  border-radius: 18px;
  
  background: linear-gradient(135deg, rgb(238, 181, 209) 0%, rgb(247, 235, 241) 100%);
  box-shadow: 0 10px 25px rgba(217, 83, 79, 0.2);
}

.mentor-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 13px;
  display: block;
}

/* Pinned Bottom Role Badge - Fixed Overflow */
.mentor-role-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 16px); /* Keeps badge clean and inside image bounds */
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1A3450 100%);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-align: center;
  padding: 8px 10px;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(43, 76, 111, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  line-height: 1.35;
}

/* Content Area - Clean Left-Aligned Formatting */
.mentor-content-col {
  text-align: left; /* Explicit left alignment matching Image 1 */
}

.mentor-name {
  font-family: "Bodoni Moda", serif;
font-style: italic;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
  text-align: left;
}

.mentor-tagline {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-red);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
  line-height: 1.4;
  text-align: left;
}

.mentor-bio p {
  font-size: 1.02rem;
  color: #000;
  line-height: 1.65;
  margin-bottom: 16px;
  text-align: left; /* Ensures readable left-aligned paragraph flow */
}

.mentor-bio p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 992px) {
  .mentor-inner-card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 24px;
  }

  .mentor-image-wrapper {
    max-width: 270px;
  }

  .mentor-img {
    height: 340px;
  }

  /* Center alignment only on mobile screens for visual balance */
  .mentor-content-col {
    text-align: center;
  }

  .mentor-name, 
  .mentor-tagline, 
  .mentor-bio p {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .mentor-outer-card {
    padding: 28px 16px;
    border-radius: 20px;
  }

  .mentor-inner-card {
    padding: 28px 18px;
  }

  .mentor-section-title {
    font-size: 1.7rem;
    margin-bottom: 24px;
  }

  .mentor-name {
    font-size: 2.2rem;
  }

  .mentor-tagline {
    font-size: 0.95rem;
  }

  .mentor-bio p {
    font-size: 0.95rem;
  }
}
/* ==========================================================================
   Section 10: The Relationship Shift (Theme Aligned)
   ========================================================================== */
.shift-section {
  padding: 20px 0 40px 0;
  background-color: var(--bg-main);
}

/* Dark Theme Container Shell using our Primary Deep Blue */
.shift-card {
  background: linear-gradient(145deg, #102235 0%, var(--primary-blue, #1A3450) 100%);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(16, 34, 53, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 820px;
  margin: 0 auto;
}

/* Kicker Tagline */
.shift-kicker {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #D4AF37; /* Warm Gold */
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Main Section Title */
.shift-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/* Subtitle */
.shift-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
}

/* Bullet List Container */
.shift-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 44px auto;
  max-width: 620px;
}

/* Individual Bullet Item with Dashed Divider */
.shift-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 18px 8px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
  text-align: left;
}

.shift-item:last-child {
  border-bottom: none;
}

/* Star Bullet Icon */
.shift-star {
  color: #D4AF37; /* Warm Gold */
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Bullet Text */
.shift-text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.5;
}

/* CTA Wrapper & Button */
.shift-cta-wrapper {
  margin-top: 12px;
}

.shift-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-red, #D9534F) 0%, #C8433F 100%);
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 42px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(217, 83, 79, 0.35);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.shift-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(217, 83, 79, 0.45);
  background: linear-gradient(135deg, #E25B57 0%, #D9534F 100%);
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 768px) {
  .shift-card {
    padding: 40px 24px;
    border-radius: 20px;
  }

  .shift-title {
    font-size: 2rem;
  }

  .shift-subtitle {
    font-size: 1.15rem;
    margin-bottom: 32px;
  }

  .shift-item {
    padding: 14px 4px;
    gap: 12px;
  }

  .shift-text {
    font-size: 0.95rem;
  }

  .shift-cta-btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
  }
}
/* ==========================================================================
   Section 11: What You'll Leave With (Vector SVG Icons + Styled CTA)
   ========================================================================== */
.leave-with-section {
  padding: 20px 0 30px 0;
  background-color: var(--bg-main);
}

/* Main Outer Shell */
.leave-with-card {
  background: var(--bg-callout);
  border: 1px solid rgba(217, 83, 79, 0.15);
  border-radius: 24px;
  padding: 30px 44px;
  box-shadow: 0 12px 35px rgba(217, 83, 79, 0.05);
}

/* Header */
.leave-with-header {
  text-align: center;
  margin-bottom: 44px;
}

.leave-with-kicker {
  display: inline-block;
  background-color: rgba(221, 55, 49, 0.1);
  color: var(--accent-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(217, 83, 79, 0.25);
  margin-bottom: 12px;
}

.leave-with-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.5px;
}

/* 2-Column Outcome Grid */
.leave-with-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* Outcome Card Box */
.outcome-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(217, 83, 79, 0.12);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.outcome-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 83, 79, 0.35);
  box-shadow: 0 10px 25px rgba(217, 83, 79, 0.1);
}

/* Image Icon Pill Wrapper */
.outcome-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FFE4E8 0%, #FCE3E7 100%);
  border: 1px solid rgba(217, 83, 79, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Vector SVG Icon */
.outcome-svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-red, #D9534F);
}

/* Content Container */
.outcome-content {
  display: flex;
  align-items: center;
  gap: 12px;
}


.outcome-text {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.35;
  margin: 0;
  text-align: left;
}

/* CTA Register Button Styling */
.leave-with-cta-wrap {
  text-align: center;
}

.register-now-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-blue, #102235) 0%, #1A3450 100%);
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 16px 48px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(16, 34, 53, 0.25);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.register-now-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--accent-red, #D9534F) 0%, #C8433F 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 28px rgba(217, 83, 79, 0.35);
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 850px) {
  .leave-with-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .leave-with-card {
    padding: 32px 18px;
    border-radius: 20px;
  }

  .leave-with-title {
    font-size: 1.8rem;
  }

  .outcome-card {
    padding: 14px 16px;
  }

  .outcome-icon-wrap {
    width: 40px;
    height: 40px;
  }

  .outcome-svg {
    width: 20px;
    height: 20px;
  }

  .outcome-text {
    font-size: 0.95rem;
  }

  .register-now-btn {
    width: 100%;
    padding: 16px 20px;
  }
}
/* ==========================================================================
   Section 12: Because Great Relationships Don't Happen By Luck
   ========================================================================== */
.luck-section {
  padding: 20px 0 30px 0;
  background-color: var(--bg-main);
}

/* Card Shell Container */
.luck-card {
  background: #cce2f9;
  border: 1px solid rgba(217, 83, 79, 0.18);
  border-radius: 24px;
  padding: 40px 48px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(217, 83, 79, 0.05);
  max-width: 820px;
  margin: 0 auto;
}

/* Top Decorative Stars */
.luck-stars {
  color: #D4AF37; /* Warm Gold */
  font-size: 1.2rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

/* Main Section Title */
.luck-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Subtitle */
.luck-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--accent-red, #D9534F);
  margin-bottom: 36px;
}

/* Bullet List Container */
.luck-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px auto;
  max-width: 540px;
}

/* Individual Bullet Item */
.luck-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 8px;
  text-align: left;
}

/* Golden Circular Bullet Point */
.luck-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #D4AF37; /* Gold */
  flex-shrink: 0;
}

.luck-text {
  font-size: 1.05rem;
  color: var(--text-main);
  font-weight: 500;
}

.luck-item-featured .luck-text {
  font-weight: 700;
  color: var(--primary-blue, #102235);
}

/* Dashed Divider Line */
.luck-divider {
  border: none;
  border-top: 1px dashed rgba(217, 83, 79, 0.25);
  margin: 32px auto;
  max-width: 540px;
}

/* "Before" Sub-Section Block */
.luck-before-group {
  max-width: 540px;
  margin: 0 auto 40px auto;
  text-align: left;
  padding-left: 8px;
}

.luck-before-item {
  font-size: 1.02rem;
  color: #282727;
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 500;
}

.luck-before-highlight {
  font-weight: 700;
  color: var(--accent-red, #D9534F);
}


/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 768px) {
  .luck-card {
    padding: 40px 24px;
    border-radius: 20px;
  }

  .luck-title {
    font-size: 1.9rem;
  }

  .luck-subtitle {
    font-size: 1.1rem;
    margin-bottom: 28px;
  }

  .luck-item {
    padding: 10px 4px;
  }

  .luck-text,
  .luck-before-item {
    font-size: 0.95rem;
  }

}
/* ==========================================================================
   Section 13: Reserve Your Seat Offer Card (Theme Aligned)
   ========================================================================== */
.offer-section {
  padding: 20px 0 90px 0;
  background-color: var(--bg-main);
}

/* Outer Card Shell with Deep Blue Gradient Theme */
.offer-card {
  background: linear-gradient(145deg, #102235 0%, var(--primary-blue, #1A3450) 100%);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(16, 34, 53, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 800px;
  margin: 0 auto;
}

/* Title Header */
.offer-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 12px;
}

/* Subtitle */
.offer-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #D4AF37; /* Warm Gold Accent */
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}

/* Workshop Pill Badge Container */
.offer-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.offer-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 24px;
  border-radius: 50px;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.offer-hourglass-svg {
  width: 18px;
  height: 18px;
  stroke: #D4AF37; /* Warm Gold */
  flex-shrink: 0;
}

/* Price Offer Outline Badge */
.offer-price-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.offer-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(212, 175, 55, 0.6); /* Gold Border */
  background: rgba(212, 175, 55, 0.05);
  padding: 10px 28px;
  border-radius: 50px;
}

.offer-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.offer-amount {
  color: #FFFFFF;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

/* CTA Button Styling */
.offer-cta-wrap {
  margin-top: 10px;
}

.offer-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-red, #D9534F) 0%, #C8433F 100%);
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 18px 52px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(217, 83, 79, 0.35);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.offer-cta-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #E25B57 0%, #D9534F 100%);
  box-shadow: 0 12px 30px rgba(217, 83, 79, 0.45);
  color: #FFFFFF;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 768px) {
  .offer-card {
    padding: 40px 20px;
    border-radius: 20px;
  }

  .offer-title {
    font-size: 1.85rem;
  }

  .offer-subtitle {
    font-size: 1.15rem;
    margin-bottom: 24px;
  }

  .offer-pill-badge {
    padding: 8px 18px;
    font-size: 0.9rem;
  }

  .offer-price-badge {
    padding: 8px 20px;
    gap: 8px;
  }

  .offer-label {
    font-size: 0.85rem;
  }

  .offer-amount {
    font-size: 1.5rem;
  }

  .offer-cta-btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 1.05rem;
  }
}

/* ==========================================================================
   Footer Section (Compact Styling)
   ========================================================================== */
.site-footer {
  background-color: var(--primary-blue, #102235);
  color: rgba(255, 255, 255, 0.85);
  padding: 36px 0 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

/* Brand Section */
.footer-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: #D4AF37; /* Gold */
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 14px;
}

/* Contact Items Horizontal Row */
.footer-contact-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-sans, sans-serif);
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item:hover {
  color: var(--tarot-gold, #d4af37);
}

.contact-icon {
  width: 22px;
  height: 22px;
  color: var(--tarot-gold, #d4af37);
  flex-shrink: 0;
}
.footer-icon {
  width: 16px;
  height: 16px;
  stroke: #D4AF37;
}

/* Divider Line */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0 auto 20px auto;
  max-width: 720px;
}

/* Compact Inline Disclaimer */
.footer-disclaimer-text {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 auto 20px auto;
  max-width: 720px;
  text-align: center;
}

.footer-disclaimer-text strong {
  color: #FFFFFF;
  font-weight: 700;
}

/* Gold Policy Links */
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #D4AF37; /* Gold */
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.footer-dot {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 600px) {
  .site-footer {
    padding: 28px 0 20px 0;
  }

  .footer-contact-info {
    flex-direction: column;
    gap: 8px;
  }

  .footer-brand-name {
    font-size: 1.6rem;
  }

  .footer-disclaimer-text {
    font-size: 0.78rem;
  }

  .footer-links {
    gap: 8px;
    font-size: 0.8rem;
  }
}

/*continuous button animation*/
.btn-attention {
  animation: continuousAttention 2.5s infinite ease-in-out;
}

@keyframes continuousAttention {
  0%, 100% {
    transform: scale(0.95); /* Normal size */
  }
  50% {
    transform: scale(1.05); /* Grows bigger / comes out toward viewer */
  }
}