/* =============================
    HOMEPAGE STYLES
============================== */
/* =============================
    HERO SECTION
============================== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  visibility: visible;
}
.hero-content {
  z-index: 2;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* =============================
    DREAM STALL SECTION
============================== */
.stall-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 1.5rem;
  padding-bottom: 30px;
}
.stall-video iframe {
  max-width: 100%;
  width: 500px;
  height: 315px;
  border-radius: 10px;
}
.stall-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 500px;
  font-size: 1.1rem;
}
.founder-video {
  margin-top: 40px;
}
.poll-option {
  background-color: #fff;
  color: #000;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s;
  width: 100%;
  text-align: left;
}
.poll-option:hover {
  background-color: #e0e0e0;
}
.poll-result {
  margin-top: 0.75rem;
  background-color: #f9f9f9;
  color: #333;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.poll-result .cta-button {
  margin-top: 0.75rem;
  padding: 10px 18px;
  background-color: gold;
  color: black;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
}

/* =============================
    GUIDES SECTION
============================== */
/* Hide on mobile by default */
.guide_section_mobile {
  display: none;
}
.guides-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 20px;
  text-align: center;
  transition: background-color 0.5s ease;
  max-height: 90vh;
  height: 90vh;
}
.guides-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
}
.guide-image-container {
  flex: 1;
  width: 100%;
  height: 300px;
  max-width: 500px;
  overflow: hidden;
  position: relative;
  margin: 0 auto 1rem;
}
.guide-bios {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.guide-bio {
  width: 100%;
  background: rgba(255,255,255,0.1);
  padding: 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.guide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  display: block;
}
.guide-progress {
  height: 5px;
  background-color: white;
  width: 0%;
  transition: width 0.1s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* =============================
    PLAN SECTION
============================== */
.plan-section {
  position: relative;
  background-color: #fff;
  color: #000;
  overflow: hidden;
  z-index: 1;
  text-align: center;
}
.plan-section .background-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../Resources/Black_Transparent_DR_Logo.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 80%;
  height: 80%;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}
\\
.plan-section h2,
.plan-section .stepper,
.plan-section .plan-footer {
  position: relative;
  z-index: 2;
}
.stepper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 40px auto;
}
.stepper .step {
  background-color: white;
  color: #000;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stepper .step:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
.plan-footer {
  background-color: #f5f5f5;
  color: #000;
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.plan-footer ul {
  list-style: none;
  padding: 0;
  margin: 1rem auto;
  text-align: center;
}
.plan-footer li {
  margin-bottom: 0.75rem;
}

/* =============================
    OFFER PASS SECTION
============================== */
.offer-pass {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #222;
  color: white;
  padding: 40px 20px;
  text-align: left;
  overflow: hidden;
}
.offer-background-logo {
  position: absolute;
  background-image: url("../Resources/White_Transparent_DR_Logo.png");
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(15%);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 60% 80%;
  width: 80%;
  height: 80%;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}
.offer-background-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  display: block;
}
.cta-wrapper {
  text-align: center;
  margin-top: 2rem;
}
.cta-wrapper .cta-button {
  display: inline-block;
}
.cta-wrapper .micro-copy {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 0.5rem;
}
.offer-pass .content {
  max-width: 500px;
  margin: 20px;
}

/* =============================
    LEGACY TEST SECTION
============================== */
.legacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  justify-items: center;
  margin-top: 2rem;
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
}
.legacy-item {
  position: relative;
  width: 200px;
  height: 300px;
  background-color: #111;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}
.legacy-item img {
  max-width: 230px;
  max-height: 230px;
  transition: transform 0.3s;
  border-radius: inherit;
}
.legacy-item:hover {
  transform: scale(1.05);
  background-color: #111;
}
.legacy-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.92);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.95rem;
  line-height: 1.4;
  border-radius: inherit;
}
.legacy-info h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 1px solid white;
  padding-bottom: 0.3rem;
  width: 100%;
}
.legacy-item:hover .legacy-info {
  opacity: 1;
}
.audio-icon {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  margin-left: 8px;
  color: inherit;
  transition: transform 0.2s ease;
}
.audio-icon:hover {
  transform: scale(1.2);
}

/* =============================
    FEATURE HIGHLIGHTS
============================== */
.feature-highlights {
  background-color: #111;
  padding: 100px 20px;
  text-align: center;
}
.feature {
  background-color: #f8f8f8;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 1rem;
  font-weight: 500;
}
.feature:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.feature img {
  width: 100%;
  border-radius: 8px;
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* =============================
    BENEFITS SECTION
============================== */
.toggle-buttons {
  margin-top: 40px;
  margin-bottom: 30px;
}
.benefit-toggle, .toggle-buttons button {
  margin: 0 10px;
  padding: 10px 20px;
  border: 2px solid #ccc;
  background: white;
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.benefit-toggle.active, .toggle-buttons button.active {
  background-color: #000;
  color: #fff;
  border-color: #000;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.benefit {
  background-color: #222;
  padding: 1rem;
  border-radius: 8px;
}
.benefits-heading strong {
  font-weight: 700;
}
.underline-word {
  text-decoration: underline;
}

/* =============================
    PRICING SECTION
============================== */
.pricing-section {
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 100px 20px;
}
.pricing-card {
  background-color: #f8f8f8;
  color: #000;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 10px;
}
.pricing-card h2 {
  font-size: 2rem;
  color: gold;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.pricing-card ul li {
  margin-bottom: 10px;
}

/* =============================
    TESTIMONIAL CAROUSEL
============================== */
.carousel-section {
  padding: 40px 20px;
  margin: 0;
  position: relative;
  transition: background-color 0.6s ease;
  background-color: #111;
}
.carousel-container {
  position: relative;
  max-width: 80vw;
  margin: 0 auto;
  overflow: hidden;
  min-height: 220px;
  border-radius: 12px;
}
.carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease;
}
  .testimonial-box {
  flex: 0 0 100%;         /* Keeps each slide at full width */
  box-sizing: border-box;
  padding: 0;             /* No padding here */
  display: flex;
  justify-content: center; /* Center inner content */
  align-items: center;
  background-color: transparent;
}
.testimonial-inner {
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  max-width: 50vw;              /* Now this controls the width */
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
}
.carousel-nav.left { left: 10px; }
.carousel-nav.right { right: 10px; }
.carousel-progress {
  height: 5px;
  background-color: white;
  width: 40%;
  transition: width 0.1s ease;
  margin: 1rem auto 0 auto;
  border-radius: 3px;
}

/* =============================
    FAQ SECTION
============================== */
.failure-band {
  padding: 40px 20px;
  background-color: #1a1a1a;
  color: gold;
  text-align: center;
  padding: 2rem 1rem;
}
.faq {
  background-color: #ffffff;
  padding: 40px 20px;
  max-width: 100%;
  color: #000;
}
.faq-item {
  margin-bottom: 1.5rem;
  border-radius: 8px;
  background-color: #f2f2f2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}
.faq h3 {
  margin: 0;
  padding: 1rem;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  transition: background-color 0.3s;
}
.faq h3:hover {
  background-color: #eaeaea;
}
.faq-content {
  padding: 1rem;
  display: none;
  animation: fadeSlide 0.3s ease forwards;
  color: #333;
}
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================
    FINAL CTA
============================== */
.final-cta {
  padding: 40px 20px;
  background-size: cover;
  background-position: center;
  text-align: center;
}

/* =============================
    UTILITY CLASSES
============================== */
.week-wins ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  text-align: left;
}
.week-wins li {
  margin-bottom: 10px;
}

/* =============================
    MOBILE RESPONSIVE ADJUSTMENTS 
============================= */
@media (max-width: 768px) {

/* =============================
    HERO SECTION - MOBILE
============================= */
  .hero {
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1506748686214-e9df14d4d9d0');
    background-size: 200%;
    background-position: center;
  }
  .hero-content h1 {
    font-size: 1.75rem;
    color: rgb(54 42 35);
    margin-top: 6rem;
    margin-bottom: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
    margin-top: 3.5rem;
  }
  .video-container,
  .video-container video {
    display: none !important;
  }
  .hero .cta-button{
    margin-top: 5rem;
    max-width: 70vw;
  }
  .hero .micro-copy{
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }
  .micro-copy{
    width: 60vw;
    margin: 0 auto;
    text-align: center;
    color: #ccc;
  }

/* =============================
  WHY DREAMS STALL SECTION - MOBILE
============================= */
  .section{
    padding: 20px 10px !important; 
  }
  .stall-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
    align-items: center;
  }
  .stall-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two per row */
    gap: 1rem;
    justify-items: center;
    font-size: 0.65rem;
  }
  .poll-option {
    position: relative;
    min-height: 100px;
    box-sizing: border-box;
    overflow: hidden;
    font-size: 0.6rem;
    padding: 0.9rem;
    width: 100;
    max-width: 180px;
    z-index: 1;
  }
  .stall-video {
    text-align: center;
  }
  .stall-video iframe {
    width: 100%;
    height: 200px;
  }
  .poll-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.65rem;
    padding: 0.5rem 0.75rem;
    margin-top: 0.5rem;
    box-sizing: border-box;
    max-width: 100%;
  }
  .poll-result .cta-button {
    font-size: 0.55rem;
    padding: 6px 12px;
    border-radius: 4px;
    margin-top: 0.5rem;
    width: 100%;
  }

/* =============================
  GUIDES SECTION — MOBILE
============================= */
  .guides-dynamic {
    display: none; /* hide desktop guide section */
  }
  .guide_section_mobile {
    display: block;
    padding: 2rem 0;
  } 
  .guides-section {
    padding: 60px 20px;
    max-height: none;
    height: auto;
  }
  .guides-content {
    flex-direction: column;
    gap: 2rem;
  }
  #guide-image-container {
    width: 100%;
    height: auto;
    max-height: 300px;
  }
  #guide-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  #guide-bios {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0;
    gap: 1.5rem;
  }
  .guide-bio {
    min-width: 80%;
    max-width: 80%;
    scroll-snap-align: center;
    flex-shrink: 0;
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: left;
  }
  .guide-card {
    position: relative;
    width: 80vw;
    height: 400px;
    flex-shrink: 0;
    scroll-snap-align: center;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background-color: #000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  .guide-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease;
  }
  .guide-bio-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.92);
    color: white;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }
  .guide-card.show-bio .guide-photo {
    opacity: 0;
  }
  .guide-card.show-bio .guide-bio-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-guide-carousel {
    display: flex;
    overflow-x: scroll;              /* ensures scrollable */
    scrollbar-width: auto;          /* Firefox */
    -ms-overflow-style: auto;       /* IE 10+ */
    gap: 1.5rem;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-guide-carousel::-webkit-scrollbar {
    height: 8px;
  }
  .mobile-guide-carousel::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
  }
  .mobile-guide-carousel::-webkit-scrollbar-track {
    background: transparent;
  }
  .guide-card {
    scroll-snap-align: center;
  }
  .mobile-guide-carousel {
    padding-left: 7vw; /* Adjust as needed */
    padding-right: 7vw;
  }

  /* =============================
    STEPS SECTION — MOBILE
  ============================= */
  .steps-section-mobile {
    position: relative;
    background-color: white;
    color: black;
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;
  }
  .steps-section-mobile .background-logo {
    position: fixed;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }
  .steps-section-mobile .background-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
  }
  .section-heading {
    font-size: 2rem;
    margin: 0.5rem 0.25rem;
    position: relative;
    z-index: 1;
  }
  .mobile-steps-wrapper {
    padding-top: 10px; /* Shrink top padding */
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .step-row {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 1rem;
    flex-wrap: nowrap;
  }
  .step-row.center {
    justify-content: center;
    margin-top: -0.5rem; /* reduce spacing between rows slightly */
  }
  .step-box {
    width: 42vw;
    max-width: 42vw;
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: white;
    color: #111;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 0.85rem;
    font-weight: 500;
    box-sizing: border-box;
    border-color: black;
    z-index: 1  ;
  }
  .step-row.center .step-box {
    width: 90vw; /* Make the bottom one span wider */
  }
  .step-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
  }
  .step-card {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  .step-card:active {
    transform: scale(0.97);
  }
  .mobile-week-box {
    margin-top: 3rem;
    background: rgba(244, 244, 244, 0.8); 
    color: #111;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    line-height: 1.4;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    z-index: 1;
  }
  .week-preview h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .week-preview ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1rem;
  }
  .week-preview li {
    margin-bottom: 0.75rem;
  }
  .week-preview .cta-button {
    margin-top: 1rem;
    max-width: 70vw;
    z-index: 1;
  }
  .micro-copy-steps {
    font-size: 0.9rem;
    color: #555;
    text-align: center;
    margin-top: 0.75rem;
  }

  /* =============================
    OFFER PASS — MOBILE
  ============================= */
  .offer-pass-mobile {
    position: relative;
    background-color: #ffffff;
    color: #111;
    padding: 60px 20px 40px;
    text-align: center;
    overflow: hidden;
  }
  .offer-background-logo-mobile {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }
  .offer-background-logo-mobile img {
     width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
  }
  .offer-content-mobile {
    position: relative;
    z-index: 1;
  }
  .offer-benefits-mobile {
    list-style-type: none;
    padding: 0;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .offer-benefits-mobile li {
    margin-bottom: 1rem;
  }
  .offer-pass-mobile .cta-wrapper {
    margin-top: 1.5rem;
  }
  .offer-pass-mobile .cta-button {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }

  /* =============================
    LEGACY TEST — MOBILE
  ============================= */
  .legacy-test-subtext {
    padding: 0 1rem;
    text-align: center;
  }
  .legacy-test-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-items: center;
    margin-top: 2rem;
  }
  .legacy-card {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #1a1a1a;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
    cursor: pointer;
  }
  .legacy-card.show-info {
    height: 240px; /* Expanded height on click */
  }
  .legacy-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease;
  }
  .legacy-info-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    color: white;
    padding: 1rem 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .legacy-info-overlay h3 {
    margin: 0 0 0.3rem 0; /* Reduce bottom margin */
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem; /* Slight gap between text and speaker icon */
  }
  .legacy-info-overlay p {
    margin: 0.3rem 0 0 0; /* Reduce top margin */
    font-size: 0.85rem;
    line-height: 1.3;
  }
  .legacy-card.show-info .legacy-img {
    opacity: 0;
  }
  .legacy-card.show-info .legacy-info-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .audio-icon {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    color: white;
    margin-top: 0.5rem;
  }
  .legacy-cta-wrapper {
    text-align: center;
    margin-top: 2rem;
  }
  .legacy-cta-wrapper .cta-button {
    margin: 0 auto;
    z-index: 1;
    max-width: 70vw;
  }
  .legacy-cta-wrapper .micro-copy {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #ccc;
  }

  /* =============================
    FEATURE SECTION — MOBILE
  ============================= */
  .feature-section-mobile {
    background: white;
    color: #111;
    padding: 40px 20px;
    text-align: center;
  }
  #feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  #feature-title .underline {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
  }
  .feature-toggle-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    z-index: 1;
  }
  .toggle-btn {
    padding: 0.5rem 1rem;
    background: #f2f2f2;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
    z-index: 1;
  }
  .toggle-btn.active {
    background: #333;
    color: white;
    font-weight: bold;
  }
  .feature-carousel-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .feature-carousel {
    display: none;
    flex-wrap: nowrap;
    gap: 1rem;
    padding: 0 1rem;
  }
  .feature-carousel.active {
    display: flex;
  }
  .feature-slide {
    flex: 0 0 85%;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .feature-card {
    background: #fff;
    color: #111;
    padding: 1rem;
    border: 2px solid #ccc;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 60px;
    max-height: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: relative;
  }
  .feature-card.active {
    background: #111;
    color: #fff;
    border-color: #111;
    max-height: 180px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .feature-card-description {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.4;
    padding: 0 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .feature-card.active .feature-card-description {
    opacity: 1;
  }

  /* =============================
    BENEFITS SECTION — MOBILE
  ============================= */
  .benefits-section-mobile {
    padding: 40px 20px;
  }
  .benefits-grid-mobile {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .benefits-grid-mobile .benefit {
    background-color: #222;
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
  }
  .benefits-heading strong {
    font-weight: 700;
  }

  /* =============================
    PRICING SECTION — MOBILE
  ============================= */
  .pricing-heading {
    font-size: 1.8rem;
    margin-bottom: 0rem;
    text-align: center;
  }
  .highlight-price {
    color: gold;
    display: inline-block;
  }
  .pricing-section-mobile {
    background-color: #f9f9f9;
    text-align: center;
  }
  .pricing-card-mobile {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    max-width: 90vw;
    margin: 0 auto;
  }
  .pricing-dark-box {
    background-color: #111;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    display: inline-block;
    margin: 0 auto 1rem auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  .pricing-heading {
    font-size: 1.8rem;
    color: white; /* Make sure the text stands out */
    margin: 0;
    text-align: center;
  }
  .pricing-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #333;
  }
  .pricing-list li {
    margin-bottom: 0.75rem;
  }
  .cta-button.secondary {
    display: block;
    max-width: 70vw;
    width: 100%;
    font-size: 1rem;
    margin: 1rem auto 0 auto;
    text-align: center;
  }

  /* =============================
    TESTIMONIALS — MOBILE STYLE
  ============================= */
  .testimonial-section-mobile {
    background-color: white;
    padding: 40px 20px;
    text-align: center;
  }
  .testimonial-section-mobile h2 {
    color: black;
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  /* Main carousel wrapper */
  .mobile-testimonial-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0 10px 1rem 10px;
    box-sizing: border-box;
  }
  /* Single testimonial box */
  .testimonial-card {
    flex: 0 0 75vw;
    max-width: 75vw;
    min-width: 75vw;
    scroll-snap-align: center;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    color: white;
    font-size: 1.05rem;
    font-weight: bold; /* makes text more legible */
    line-height: 1.6;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
  }
  /* Optional scrollbar customization */
  .mobile-testimonial-carousel::-webkit-scrollbar {
    height: 6px;
  }
  .mobile-testimonial-carousel::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
  }

  /* =============================
    FAILURE BAND — MOBILE STYLE
  ============================= */
  .failure-band-mobile {
    background-color: #111;
    color: white;
    padding: 40px 20px;
    text-align: center;
  }
  .failure-band-mobile .failure-band-content {
    max-width: 90vw;
    margin: 0 auto;
  }
  .failure-band-mobile h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }
  .failure-band-mobile .highlight-red {
    color: #e74c3c; /* red accent for 'Doesn’t Mean' */
    font-weight: bold;
  }
  .failure-band-mobile p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #ccc;
  }
  .failure-band-mobile .cta-button.primary {
    width: 70vw;
    max-width: 300px;
    font-size: 1rem;
    font-weight: 600;
  }

  /* =============================
    FAQ SECTION — MOBILE STYLE
  ============================= */
  .faq-section-mobile {
    padding: 40px 20px;
    background-color: #f4f4f4;
    color: #111;
    text-align: left;
  }
  .faq-section-mobile .section-heading {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #ccc;
  }
  .faq-question {
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    text-align: left;
    padding: 1rem 0;
    cursor: pointer;
    position: relative;
  }
  .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.2rem;
    transition: transform 0.3s;
  }
  .faq-question.active::after {
    content: '–';
    transform: rotate(180deg);
  }
  .faq-answer {
    display: none;
    padding: 0 0 1rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
  }

  /* =============================
    FINAL CTA — MOBILE STYLE
  ============================= */
  .final-cta-mobile {
    background-color: #111;
    color: white;
    padding: 50px 20px;
    text-align: center;
  }
  .final-cta-mobile .cta-inner {
    max-width: 500px;
    margin: 0 auto;
  }
  .final-cta-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: gold;
  }
  .final-cta-subtext {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #eee;
  }
  .final-cta-mobile .cta-button.primary {
    width: 100%;
    max-width: 70vw;
    margin: 0 auto;
  }
  .final-cta-mobile .micro-copy {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #bbb;
  }
}