:root {
  --bg-oatmeal: #F7F3ED;
  --bg-card: #FFFFFF;
  --bg-blush: #F9EAE1; 
  --bg-eucalyptus: #E8EFE6;
  --text-forest: #3B4D3F; 
  --text-muted: #586B5C;
  --accent-eucalyptus: #A8BBA2;
  --accent-gold: #D4AF37;
  --border-sage: #DDD5C8;
  --border-blush: #F2D3C4;
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-oatmeal);
  color: var(--text-forest);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Container expanded to reduce empty horizontal space */
.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BANNER
   ========================================================================== */
.top-banner {
  background-color: var(--text-forest);
  color: var(--bg-oatmeal);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--accent-gold);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 24px 0 20px 0;
  text-align: center;
}

.main-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  line-height: 1.25;
  color: var(--text-forest);
  font-weight: 700;
  margin-bottom: 12px;
}

.sub-title {
  display: inline-block;
  background-color: var(--bg-eucalyptus);
  color: var(--text-forest);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--accent-eucalyptus);
  margin-bottom: 16px;
}

.pain-question {
  font-size: 1.15rem;
  font-weight: 600;
  color: #722F37;
  background: rgba(114, 47, 55, 0.05);
  padding: 14px 18px;
  border-left: 4px solid #722F37;
  border-radius: 6px;
  margin-bottom: 16px;
  text-align: left;
}

.truth-statement {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.truth-statement strong {
  color: var(--text-forest);
}

/* Price & CTA Block */
.cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sage);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(59, 77, 63, 0.06);
  margin-bottom: 24px;
}

.price-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.price-original {
  text-decoration: line-through;
  color: #000;
  font-size: 1.4rem;
  font-weight: 700;
}

.price-discount {
  color: var(--text-forest);
  font-size: 1.85rem;
  font-weight: 800;
}

.price-badge {
  background-color: var(--bg-blush);
  color: #8B4A3E;
  border: 1px solid var(--border-blush);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}
/* ==========================================
   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%;
}

/* Your original button CSS (Unchanged) */
.btn-primary {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--text-forest) 0%, #29382C 100%);
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 10px;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 4px 14px rgba(59, 77, 63, 0.25);
  transition: transform 0.15s ease;
  cursor: pointer;

  /* Added for inline flex alignment of text + prices */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-primary:active {
  transform: scale(0.98);
}

/* Inner Price Pill & Typography */
.btn-price-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
}

/* Strike-through original price */
.btn-price-cut {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #FFFFFF; /* Light clear gray for visibility on dark bg */
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  opacity: 0.85;
}

/* Final discounted price */
.btn-price-final {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-gold); /* Gold color matching your theme border */
}

/* Mobile responsive layout */
@media (max-width: 480px) {
  .btn-primary {
    flex-direction: column;
    gap: 8px;
    padding: 14px 18px;
  }
}
/* ==========================================================================
   PROBLEMS / STUCK SECTION (Styled with Soft Blush Card Background)
   ========================================================================== */
.stuck-section {
  background: var(--bg-blush);
  border-radius: 14px;
  border: 1px solid var(--border-blush);
  padding: 14px 20px;
  margin-bottom: 20px;
  margin-top: -20px;
}

.section-header {
  text-align: center;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: var(--text-forest);
  font-weight: 700;
  margin-bottom: 6px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

.problem-list {
  list-style: none;
  margin-bottom: 18px;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-blush);
  font-size: 1.05rem;
  color: var(--text-forest);
}

.problem-item:last-child {
  border-bottom: none;
}

.problem-icon {
  color: #C67B5C;
  font-size: 1.2rem;
  line-height: 1;
}

.conclusion-box {
  background-color: #FFFFFF;
  border-left: 4px solid var(--text-forest);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-forest);
  text-align: center;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

/* ==========================================================================
   INTRODUCING BANNER
   ========================================================================== */
.intro-banner {
  background: var(--text-forest);
  color: var(--bg-oatmeal);
  border-radius: 14px;
  padding: 22px 20px;
  text-align: center;
  border: 1px solid var(--accent-gold);
}

.intro-tag {
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.intro-heading {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 8px;
}

.intro-subtext {
  font-size: 1rem;
  color: var(--accent-eucalyptus);
  font-weight: 500;
}

/* Desktop Responsiveness */
@media (min-width: 650px) {
  .main-title { font-size: 2.8rem; }
  .section-title { font-size: 1.8rem; }
  .hero-section { padding: 32px 0 24px 0; }
  .intro-heading { font-size: 1.65rem; }
}
@media (max-width: 649px) {
  .pain-question {
    font-size: 0.8rem;      /* Adjust to your desired mobile text size */
    padding: 10px 14px;     /* Optional: reduces box padding on small screens */
    margin-bottom: 12px;
  }
}
/* ==========================================================================
   THE EMOTIONAL MASTERY BLUEPRINT SECTION
   ========================================================================== */
.blueprint-section {
  background: var(--bg-card);
  border: 1px solid var(--border-sage);
  border-radius: 14px;
  padding: 24px 20px;
  margin-top: 20px;
  margin-bottom: 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(59, 77, 63, 0.04);
}

.blueprint-header {
  margin-bottom: 14px;
}

.blueprint-tag {
  display: inline-block;
  background-color: var(--bg-blush);
  color: #8B4A3E;
  border: 1px solid var(--border-blush);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.blueprint-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  line-height: 1.3;
  color: var(--text-forest);
  font-weight: 700;
}

.blueprint-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto 20px auto;
}

/* Offer Card */
.offer-card {
  background: var(--bg-eucalyptus);
  border: 1px solid var(--accent-eucalyptus);
  border-radius: 12px;
  padding: 20px 16px;
  max-width: 500px;
  margin: 0 auto;
}

.offer-badge {
  display: inline-block;
  background-color: var(--accent-gold);
  color: #2F2404;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.offer-price-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.offer-original {
  text-decoration: line-through;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
}

.offer-discount {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 800;
}

/* Desktop Adjustment */
@media (min-width: 650px) {
  .blueprint-title {
    font-size: 1.85rem;
  }
  .blueprint-section {
    padding: 32px 28px;
  }
}
/* ==========================================================================
   WONDER / REAL REASON SECTION (SCREENSHOT-STYLE LAYOUT)
   ========================================================================== */
.wonder-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sage);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(59, 77, 63, 0.05);
}

.wonder-header {
  padding: 24px 20px 16px 20px;
  text-align: center;
  background-color: var(--bg-blush);
  border-bottom: 1px solid var(--border-sage);
}

.wonder-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  color: var(--text-forest);
  font-weight: 700;
  margin-bottom: 4px;
}

.wonder-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Image styling matching reference card */
.wonder-image-container {
  width: 100%;
  max-height: 380px;
  overflow: hidden;
  background-color: var(--text-forest);
}

.wonder-img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
}

/* Content below image */
.wonder-content {
  padding: 24px 20px;
}

.wonder-list {
  list-style: none;
  margin-bottom: 24px;
}

.wonder-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border-sage);
  font-size: 1.05rem;
  color: var(--text-forest);
}

.wonder-item:last-child {
  border-bottom: none;
}

.wonder-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--bg-blush);
  color: #8B4A3E;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: bold;
  flex-shrink: 0;
}

/* Insight Callout Box */
.insight-box {
  background: var(--bg-blush);
  border: 1px solid var(--border-blush);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
  margin-bottom: 20px;
}

.insight-label {
  display: inline-block;
  color: #8B4A3E;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.insight-question {
  font-size: 1.1rem;
  color: var(--text-forest);
  line-height: 1.45;
}

.insight-question strong {
  color: #722F37; /* Highlighted pain point tone */
}

/* Bottom Healing Truth Card */
.healing-truth-card {
  background: linear-gradient(135deg, var(--text-forest) 0%, #29382C 100%);
  color: #FFFFFF;
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  border: 1px solid var(--accent-gold);
}

.truth-heading {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.3;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.truth-subtext {
  font-size: 1rem;
  color: var(--accent-eucalyptus);
  margin-bottom: 14px;
}

.truth-footer-badge {
  display: inline-block;
  background-color: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
}

/* Desktop Responsiveness */
@media (min-width: 650px) {
  .wonder-title { font-size: 1.9rem; }
  .truth-heading { font-size: 1.55rem; }
  .wonder-content { padding: 30px 28px; }
}
/* ==========================================================================
   INSIDE THIS EXPERIENCE SECTION (IMAGE GRID CARDS)
   ========================================================================== */
.guided-experience-section {
  padding: 24px 0;
  margin-bottom: 24px;
}

.guided-header {
  text-align: center;
  margin-bottom: 24px;
}

.guided-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--text-forest);
  font-weight: 700;
  line-height: 1.3;
  margin-top: -40px;
}

/* Responsive Grid System */
.guided-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Individual Card Styling */
.guided-card {
  background: var(--bg-card);
  border: 1px solid var(--border-sage);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(59, 77, 63, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.guided-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(59, 77, 63, 0.1);
}

/* Top Image Wrap with Overlay */
.card-image-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--text-forest);
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.guided-card:hover .card-img {
  transform: scale(1.04);
}

/* Top Gold Badge Badge (Matching Masterclass pill in screenshot) */
.card-top-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: var(--accent-gold);
  color: #2F2404;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Dark Green Bottom Overlay Bar for Title (Directly inspired by reference screenshot) */
.card-overlay-title {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(59, 77, 63, 0.88); /* Lighter forest green opacity */
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  border-left: 3px solid var(--accent-gold);
}

/* Description Body */
.card-body {
  padding: 16px 18px;
  background-color: #FFFFFF;
}

.card-body p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Tablet & Desktop Grid Adjustments */
@media (min-width: 600px) {
  .guided-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 850px) {
  .guided-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .guided-title {
    font-size: 2.1rem;
  }
}
/* ==========================================
   WHO IS THIS FOR SECTION (3-COLUMN LAYOUT)
   ========================================== */

.who-is-this-for-section {
  background-color: var(--bg-blush);
  border: 1px solid var(--border-blush);
  border-radius: 18px;
  padding: 10px 40px;
  margin-bottom: 25px;
  box-shadow: 0 4px 16px rgba(139, 74, 62, 0.05);
  margin-top: -20px;
}

.who-header {
  text-align: center;
  margin-bottom: 40px;
}

.who-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-forest);
  margin-bottom: 8px;
}

.who-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: #666666;
  margin-bottom: -20px;
}

/* 3-Column Grid for Desktop */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.who-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.who-image-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.who-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.who-card:hover .who-img {
  transform: scale(1.05);
}

.who-card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.who-card-body p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #2b2b2b;
  line-height: 1.5;
  margin: 0;
}

/* Responsive view for tablet & mobile */
@media (max-width: 992px) {
  .who-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 600px) {
  .who-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}
/* ==========================================================================
   TRANSFORMATION / IMAGINE SECTION (Pill Card Layout Matching Theme)
   ========================================================================== */

.transformation-section {
  background-color: var(--bg-card);
  border: 1px solid var(--border-sage);
  border-radius: 18px;
  padding: 20px 24px;
  margin-bottom: 45px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(59, 77, 63, 0.04);
}

.trans-header {
  margin-bottom: 32px;
}

.trans-pretitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 8px;
}

.trans-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-forest);
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* 3-Column Layout Matching Reference Screenshot */
.trans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.trans-card {
  background-color: var(--bg-eucalyptus); /* Soft botanical tint */
  border: 1px solid var(--border-sage);
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trans-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(59, 77, 63, 0.08);
}

.trans-card-highlight {
  background-color: var(--bg-blush);
  border-color: var(--border-blush);
}

/* White Pill Badge at Top of Card */
.trans-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-sage);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.pill-from {
  font-size: 0.85rem;
  color: #888888;
  text-decoration: line-through;
  font-weight: 500;
}

.pill-arrow {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pill-to {
  font-size: 0.85rem;
  color: var(--text-forest);
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* Card Body Text */
.trans-desc {
  font-size: 0.98rem;
  color: var(--text-forest);
  line-height: 1.5;
  margin: 0;
}

.trans-desc strong {
  font-size: 1.05rem;
  color: var(--text-forest);
}

/* Bottom Centered CTA Button */
.trans-cta-wrap {
  max-width: 320px;
  margin: 0 auto;
}

.trans-btn {
  letter-spacing: 1px;
}

/* Responsive Grid */
@media (max-width: 850px) {
  .trans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .trans-grid {
    grid-template-columns: 1fr;
  }
  
  .trans-title {
    font-size: 1.5rem;
  }
}
/* ==========================================================================
   MEET YOUR MENTOR SECTION (Landing Page Background Integration)
   ========================================================================== */

.mentor-section {
  background-color: var(--bg-eucalyptus);
  border: 1px solid var(--accent-eucalyptus);
  border-radius: 18px;
  padding: 40px 24px;
  margin-bottom: 25px;
  box-shadow: 0 6px 20px rgba(59, 77, 63, 0.05);
}

.mentor-header {
  text-align: center;
  margin-bottom: 30px;
}

.mentor-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-forest);
  letter-spacing: 1px;
  margin-top: -20px;
}

/* Main Card Uses Soft Eucalyptus/Sage Theme BG Instead of White */
.mentor-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  background-color: var(--bg-eucalyptus); /* Matching landing page tint */
  border: 1px solid var(--accent-eucalyptus);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(59, 77, 63, 0.04);
}

/* Dual Photo Gallery Container */
.mentor-gallery-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin-bottom: 12px;
  background: transparent;
  border-radius: 12px; /* Removes any plain white background behind photos */
}

/* 2-Column Grid for Images */
.mentor-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.mentor-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--accent-gold);
  display: block;
  box-shadow: 0 6px 18px rgba(59, 77, 63, 0.12);
}

.mentor-badge-gold {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-gold);
  color: #2F2404;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mentor-info {
  text-align: center;
  max-width: 580px;
}

.mentor-name {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  color: var(--text-forest);
  font-weight: 700;
  margin-bottom: 12px;
}

.mentor-lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-forest);
  line-height: 1.5;
  margin-bottom: 14px;
}

.mentor-bio-body p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.mentor-bio-body p:last-child {
  margin-bottom: 0;
}

/* Responsive Mobile Tweaks */
@media (max-width: 520px) {
  .mentor-images-grid {
    grid-template-columns: 1fr;
  }
  
  .mentor-img {
    height: 240px;
  }

  .mentor-badge-gold {
    font-size: 0.65rem;
    padding: 5px 10px;
  }
}

/* ==========================================================================
   PERMISSION / THIS IS MORE THAN A WORKSHOP (Dark Forest Theme)
   ========================================================================== */

.permission-section {
  background: linear-gradient(135deg, var(--text-forest) 0%, #253327 100%);
  color: #FFFFFF;
  border-radius: 18px;
  padding: 25px 24px;
  margin-bottom: 25px;
  border: 1px solid var(--accent-gold);
  box-shadow: 0 10px 30px rgba(59, 77, 63, 0.2);
}

.permission-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.permission-tag {
  color: var(--accent-gold);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-bottom: 8px;
}

.permission-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 4px;
}

.permission-subtitle {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--accent-eucalyptus);
  margin-bottom: 28px;
}

.permission-list {
  list-style: none;
  text-align: left;
  margin: 0 auto 32px auto;
  max-width: 580px;
}

.permission-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  font-size: 1.05rem;
  color: #F7F3ED;
  line-height: 1.45;
}

.permission-item:last-child {
  border-bottom: none;
}

.permission-check {
  color: var(--accent-gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.permission-cta-wrap {
  max-width: 360px;
  margin: 0 auto;
}

.permission-btn {
  background: var(--accent-gold);
  color: #2F2404;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.permission-btn:hover {
  background: #E5BE3B;
}


/* Responsive Layouts */
@media (max-width: 768px) {
  .mentor-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .mentor-image-wrap {
    width: 200px;
  }

  .mentor-img {
    height: 250px;
  }

  .mentor-title,
  .permission-title {
    font-size: 1.6rem;
  }
}
/* ==========================================================================
   WHAT YOU'LL LEAVE WITH SECTION (Oatmeal Card + Dual Grid Layout)
   ========================================================================== */

.takeaways-section {
  background-color: var(--bg-card);
  border: 1px solid var(--border-sage);
  border-radius: 18px;
  padding: 20px 24px;
  margin-bottom: 25px;
  box-shadow: 0 4px 16px rgba(59, 77, 63, 0.04);
}

.takeaways-header {
  text-align: center;
  margin-bottom: 30px;
}

.takeaways-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-forest);
  letter-spacing: 1px;
}

/* 2-Column Responsive Grid */
.takeaways-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.takeaway-card {
  background-color: var(--bg-eucalyptus); 
  border: 1px solid var(--accent-eucalyptus); 
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.takeaway-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 77, 63, 0.08);
}

.takeaway-card-full {
  grid-column: 1 / -1; 
  background-color: var(--bg-blush);
  border-color: var(--border-blush);
  justify-content: center;
}

.takeaway-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #FFFFFF; 
  color: var(--text-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-sage);
}

.takeaway-card-full .takeaway-icon {
  background-color: #FFFFFF;
  color: #8B4A3E;
  border-color: var(--border-blush);
}

.takeaway-text {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-forest);
  line-height: 1.4;
  margin: 0;
}

.takeaway-card-full .takeaway-text {
  color: #2F2404;
}

.testimonials-section {
  background-color: #f9f7f2;
  padding: 60px 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-heading {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--text-forest);
  letter-spacing: 1px;
  margin: 0 0 40px 0;
  font-family: "Bodoni Moda", serif;
  font-style: italic;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.video-card {
  background-color: #ffffff;
  border: 1px solid #e3e8e2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(30, 51, 40, 0.06);
  display: flex;
}

.video-card video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 40px 16px;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
/* ==========================================================================
   HEALING PHILOSOPHY SECTION (Poetic Sanctuary Card Layout)
   ========================================================================== */

.philosophy-section {
  padding: 10px 0 20px 0;
  margin-bottom: 5px;
  margin-top: -10px;
}

.philosophy-card {
  background-color: var(--bg-eucalyptus);
  border: 1px solid var(--accent-eucalyptus);
  border-radius: 20px;
  padding: 15px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(59, 77, 63, 0.06);
}

.philosophy-divider {
  color: var(--accent-gold);
  font-size: 0.85rem;
  letter-spacing: 6px;
  margin-bottom: 10px;
}

.philosophy-title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-forest);
  line-height: 1.35;
  max-width: 650px;
  margin: 0 auto 12px auto;
}

.philosophy-lead {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: #8B4A3E;
  margin-bottom: 28px;
}

.philosophy-stanzas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 35px auto;
  text-align: left;
}

.stanza-item {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: var(--text-forest);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.stanza-bullet {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.stanza-item-strong {
  font-weight: 700;
  color: var(--text-forest);
  padding-top: 6px;
  border-top: 1px dashed var(--border-sage);
}

.philosophy-footer-cta {
  max-width: 340px;
  margin: 0 auto;
}

.philosophy-btn {
  letter-spacing: 0.8px;
}

/* Responsive Grid Adjustments */
@media (max-width: 768px) {
  .takeaways-grid {
    grid-template-columns: 1fr;
  }
  
  .takeaway-card-full {
    justify-content: flex-start;
  }

  .philosophy-title {
    font-size: 1.55rem;
  }

  .philosophy-card {
    padding: 30px 20px;
  }
}
/* ==========================================================================
   FINAL OFFER SECTION (Botanical Theme Gradient Card)
   ========================================================================== */

.final-offer-section {
  padding: 0px 0 40px 0;
  
}

.offer-card {
  background: linear-gradient(135deg, #537059 0%, var(--text-forest) 100%);
  border: 1px solid var(--accent-eucalyptus);
  border-radius: 20px;
  padding: 25px 28px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(59, 77, 63, 0.2);
  max-width: 680px;
  margin: 0 auto;
}

.offer-headline {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin-bottom: 8px;
}

.offer-subheadline {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 28px;
}

.offer-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.offer-feature {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: #F7F3ED;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 22px;
  border-radius: 50px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Styled Price Badge */
.price-container {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--accent-gold);
  padding: 10px 26px;
  border-radius: 50px;
}

.price-label {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-value {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.5px;
}

/* CTA Area & Glowing Button */
.offer-cta-wrap {
  max-width: 360px;
  margin: 0 auto;
}

.offer-btn {
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 12px;
  background: var(--accent-gold);
  color: #2F2404;
  border: none;
  display: block;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.offer-btn:hover {
  background-color: #E5BE3B;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}


/* ==========================================================================
   FOOTER SECTION (Dark Forest Theme with Gold Accents)
   ========================================================================== */

.site-footer {
  background-color: var(--text-forest);
  color: #FFFFFF;
  padding: 45px 20px 30px 20px;
  text-align: center;
  margin-top: 20px;
}

.footer-container {
  max-width: 720px;
  margin: 0 auto;
}

.footer-powered {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
}

/* 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-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 20px auto;
  width: 100%;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-disclaimer strong {
  color: #FFFFFF;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--accent-gold);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.link-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .offer-card {
    padding: 35px 20px;
  }

  .offer-headline {
    font-size: 1.6rem;
  }

  .footer-contact {
    flex-direction: column;
    gap: 12px;
  }
}


/*continuous button animation*/
.btn-attention {
  animation: continuousAttention 2.5s infinite ease-in-out;
}

@keyframes continuousAttention {
  0%, 100% {
    transform: scale(0.8); /* Normal size */
  }
  50% {
    transform: scale(0.9); /* Grows bigger / comes out toward viewer */
  }
}