@font-face {
      font-family: 'DM Sans Fallback';
      src: local('Arial');
      ascent-override: 95%;
      descent-override: 25%;
      line-gap-override: 0%;
      size-adjust: 100%;
    }

    @font-face {
      font-family: 'Forum Fallback';
      src: local('Georgia');
      ascent-override: 90%;
      descent-override: 20%;
      line-gap-override: 0%;
      size-adjust: 100%;
    }

    img,
    picture,
    video,
    .video-facade {
      max-width: 100%;
      height: auto;
    }

    :root {
      --purple-main: #85529C;
      --purple-dark: #5C2D91;
      --purple-deep: #3A1C71;
      --purple-light: #F4EBF7;
      --yellow-bright: #FFC107;
      --yellow-banner: #FFD500;
      --yellow-light: #FFF8E7;
      --orange-primary: #FF7A00;
      --red-primary: #E53935;
      --text-dark: #222222;
      --text-muted: #555555
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    html,
    body {
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
      color: var(--text-dark);
      background-color: #FFF;
      line-height: 1.5;
      -webkit-text-size-adjust: 100%
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: 'Forum', 'Forum Fallback', serif
    }

    .container {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 clamp(12px, 3vw, 24px)
    }

    .top-header {
      background: linear-gradient(180deg, #85529C 0%, #76418E 100%);
      color: #FFF;
      text-align: center;
      padding: 8px 8px 10px;
    }

    .top-header h1 {
      font-size: clamp(0.85rem, 2.2vw, 1.15rem);
      font-weight: 700;
      line-height: 1.3;
      max-width: 100%;
      margin: 0 auto 10px;
      letter-spacing: .2px
    }

    .top-header h1 .highlight-yellow {
      color: #FFE600
    }

    .top-pill-bar {
      background: linear-gradient(90deg, #FFE853 0%, #FFC107 100%);
      color: #1A1A1A;
      font-weight: 800;
      font-size: clamp(0.8rem, 1.8vw, 1rem);
      padding: 8px 16px;
      border-radius: 50px;
      display: inline-block;
      max-width: 100%;
      box-shadow: 0 4px 15px rgba(0, 0, 0, .15)
    }

    .hero-section {
      padding: clamp(16px, 3vw, 24px) 0 clamp(8px, 1.5vw, 12px);
      background: #FFF;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: clamp(20px, 4vw, 40px);
      align-items: start
    }

    .left-col {
      text-align: left
    }

    .hero-left-title {
      font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
      font-size: clamp(1.2rem, 2.8vw, 1.55rem);
      font-weight: 900;
      color: #85529C;
      text-align: center;
      margin-bottom: 16px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      line-height: 1.3;
    }

    .hero-card-img-wrapper {
      position: relative;
      border-radius: 20px;
      overflow: visible;
      box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
      background: #FFF;
      margin-bottom: 24px;
      aspect-ratio: 1024/682
    }

    .hero-card-img-wrapper img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 20px;
    }

    .price-badge-overlay {
      position: absolute;
      left: -20px;
      bottom: -120px;
      width: clamp(100px, 20vw, 150px);
      z-index: 10;
      transform: rotate(-15deg);
      transition: transform .3s ease;
    }

    .price-badge-overlay:hover {
      transform: rotate(0deg) scale(1.05);
    }

    .expert-profile-wrapper {
      display: flex;
      align-items: center;
      margin: 18px 0 18px clamp(80px, 15vw, 120px);
      text-align: left;
      min-height: 50px;
    }

    @media (max-width: 576px) {
      .price-badge-overlay {
        left: 0 !important;
        bottom: -40px !important;
        width: 95px !important;
      }

      .expert-profile-wrapper {
        margin: 14px 0 !important;
      }
    }

    .expert-text-col {
      flex-grow: 1
    }

    .expert-name {
      font-size: clamp(1.3rem, 3.5vw, 1.9rem);
      font-weight: 800;
      color: #111;
      line-height: 1.1;
      margin: 0
    }

    .expert-role {
      color: #85529C;
      font-weight: 700;
      font-size: clamp(0.95rem, 2vw, 1.15rem);
      margin-top: 4px;
      display: inline-block;
      position: relative;
      padding-bottom: 6px;
    }

    .expert-role::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 100%;
      height: 8px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='8' viewBox='0 0 24 8'%3E%3Cpath fill='none' stroke='%23FFB266' stroke-width='3' stroke-linecap='round' d='M0,4 Q6,1 12,4 T24,4'/%3E%3C/svg%3E") repeat-x;
      background-size: 24px 8px;
      animation: wave-animation 1.5s linear infinite;
    }

    @keyframes wave-animation {
      0% {
        background-position: 0 0;
      }

      100% {
        background-position: -24px 0;
      }
    }

    .limited-spots-alert {
      color: #222;
      font-weight: 600;
      font-size: clamp(0.9rem, 2.2vw, 1.1rem);
      margin: 16px 0;
      text-align: left;
      display: flex;
      align-items: center;
      gap: 8px
    }

    .details-2x2-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px 20px;
      text-align: left;
      margin-top: 20px;
    }

    @media (max-width: 576px) {
      .details-2x2-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 16px;
        margin-bottom: 24px;
      }

      .detail-item {
        padding: 10px 14px !important;
        background: #F8F5FA !important;
        border-radius: 12px !important;
        border: 1px solid #ECE3F2 !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03) !important;
      }

      .detail-text {
        font-size: 0.92rem !important;
      }
    }

    .detail-item {
      display: flex;
      align-items: center;
      gap: 12px;
      background: transparent;
      padding: 6px 0;
      border: none;
    }

    .detail-icon-wrapper {
      width: auto;
      height: 32px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .detail-icon-svg {
      width: 100%;
      height: 100%;
      display: block
    }

    .live-pill-badge {
      background: #FF5E14;
      color: #FFF;
      font-size: .78rem;
      font-weight: 800;
      padding: 3px 8px;
      border-radius: 50px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      box-shadow: 0 4px 10px rgba(255, 94, 20, .25);
      height: 22px;
      justify-content: center;
      flex-shrink: 0;
    }

    .live-dot {
      width: 6px;
      height: 6px;
      background-color: #FFF;
      border-radius: 50%;
      display: inline-block;
      animation: pulse-dot 1.5s infinite
    }

    @keyframes pulse-dot {

      0%,
      100% {
        opacity: .3
      }

      50% {
        opacity: 1
      }
    }

    .detail-text {
      font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
      font-size: clamp(0.85rem, 2vw, 0.98rem);
      font-weight: 500;
      color: #6D4C82;
      line-height: 1.35
    }

    .detail-text strong {
      color: #6D4C82;
      font-weight: 600
    }

    .right-col h2 {
      font-size: clamp(1.2rem, 3vw, 1.45rem);
      font-weight: 900;
      color: #111;
      line-height: 1.3;
      margin-bottom: 6px;
      text-transform: uppercase
    }

    .right-col .womb-sub {
      color: #85529C;
      font-weight: 700;
      font-size: clamp(0.92rem, 2.2vw, 1.05rem);
      margin-bottom: 20px
    }

    .peci-boxes-container {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 20px
    }

    .peci-box {
      display: flex;
      align-items: center;
      gap: 12px;
      border: 3.5px solid #85529C;
      background: #EAE3EF;
      border-radius: 14px 0 14px 0;
      padding: 12px 18px;
      box-shadow: 0 5px 15px rgba(133, 82, 156, 0.12);
    }

    .peci-text {
      font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
      font-size: clamp(0.92rem, 1.8vw, 1.05rem);
      font-weight: 700;
      color: #222;
      line-height: 1.45;
      text-align: left;
    }

    .peci-text .highlight-letter {
      color: #FF7A00;
      font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
      font-weight: 900;
      font-size: 1.4rem;
    }

    .peci-bottom-sub {
      color: #85529C;
      font-weight: 700;
      text-align: center;
      font-size: 1.1rem;
      margin: 20px 0;
      line-height: 1.3;
      padding: 0 10px;
    }

    .orange-quote-box {
      border: 2px solid #FF7A00;
      border-radius: 18px;
      padding: 18px 22px;
      background: #FFF;
      text-align: center;
      font-weight: 600;
      font-size: clamp(0.92rem, 2vw, 1.05rem);
      color: #111;
      line-height: 1.55;
      margin-bottom: 24px;
      box-shadow: none;
    }

    /* GLOBAL BUTTON MOVING & GLAZING ANIMATION */
    .cta-yellow-button,
    .cta-purple-button,
    .btn-buy-red,
    .sticky-btn,
    .youtube-red-btn {
      position: relative !important;
      overflow: hidden !important;
      animation: buttonFloat 2.4s infinite ease-in-out !important;
      will-change: transform;
      transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    }

    /* Glazing Shimmer Sweep from Top-Left to Bottom-Right */
    .cta-yellow-button::before,
    .cta-purple-button::before,
    .btn-buy-red::before,
    .sticky-btn::before,
    .youtube-red-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 70%;
      height: 300%;
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.55) 50%,
        rgba(255, 255, 255, 0) 100%
      );
      transform: translate(-140%, -140%) rotate(45deg);
      animation: cornerGlaze 2.8s infinite ease-in-out;
      pointer-events: none;
      z-index: 2;
    }

    .cta-yellow-button *,
    .cta-purple-button *,
    .btn-buy-red *,
    .sticky-btn *,
    .youtube-red-btn * {
      position: relative;
      z-index: 3;
    }

    /* Continuous Floating Moving Animation */
    @keyframes buttonFloat {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-6px);
      }
    }

    /* Diagonal Glazing Sweep Animation — GPU-composited (transform, not top/left) */
    @keyframes cornerGlaze {
      0% {
        transform: translate(-140%, -140%) rotate(45deg);
      }
      45%, 100% {
        transform: translate(140%, 140%) rotate(45deg);
      }
    }

    .cta-yellow-button {
      display: block;
      width: 100%;
      background: linear-gradient(180deg, #FFD500 0%, #FFA000 100%);
      border: none;
      border-radius: 10px;
      padding: 14px 20px;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      box-shadow: 0 6px 20px rgba(255, 160, 0, .35);
    }

    .cta-yellow-button:hover {
      transform: scale(1.04) translateY(-2px) !important;
      box-shadow: 0 12px 30px rgba(255, 160, 0, 0.65) !important;
    }

    .cta-btn-main {
      display: block;
      color: #000;
      font-weight: 900;
      font-size: clamp(1.1rem, 2.5vw, 1.3rem);
      line-height: 1.2
    }

    .cta-btn-sub {
      display: block;
      color: #222;
      font-weight: 600;
      font-size: .76rem;
      margin-top: 2px
    }

    .cta-purple-button {
      display: block;
      width: 100%;
      background: linear-gradient(180deg, #85529C 0%, #C471F5 100%);
      border: none;
      border-radius: 2px;
      padding: 16px 20px;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      box-shadow: none;
    }

    .cta-purple-button:hover {
      transform: scale(1.04) translateY(-2px) !important;
      box-shadow: 0 10px 25px rgba(133, 82, 156, .45) !important;
    }

    .cta-purple-button .cta-btn-main {
      color: #FFF;
      display: block;
      font-weight: 900;
      font-size: clamp(1.2rem, 3vw, 1.4rem);
      line-height: 1.2
    }

    .cta-purple-button .cta-btn-sub {
      color: rgba(255, 255, 255, 0.9);
      display: block;
      font-weight: 500;
      font-size: .85rem;
      margin-top: 4px;
      letter-spacing: 0.5px;
    }

    /* REVIEWS SECTION CRITICAL FALLBACK STYLES */
    .reviews-yellow-section {
      background: #FFF;
      padding: 10px 0 5px;
      text-align: center;
    }

    .reviews-header-title {
      font-size: clamp(1.5rem, 4vw, 2.2rem);
      font-weight: 900;
      color: #3A1C71;
      margin-bottom: 24px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .reviews-yellow-wrapper {
      background: #FFD700 !important;
      border-radius: 28px !important;
      padding: clamp(24px, 4vw, 40px) clamp(16px, 3vw, 32px) !important;
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 auto !important;
      position: relative !important;
      overflow: hidden !important;
    }

    .reviews-carousel-track {
      position: relative;
      width: 100%;
    }

    .reviews-slide {
      display: none;
      opacity: 0;
      transition: opacity 0.6s ease-in-out;
      width: 100%;
    }

    .reviews-slide.active {
      display: block !important;
      opacity: 1 !important;
    }

    .reviews-cards-grid {
      display: grid !important;
      grid-template-columns: repeat(4, 1fr) !important;
      gap: clamp(12px, 2vw, 24px) !important;
      align-items: stretch !important;
      max-width: 1400px !important;
      margin: 0 auto !important;
    }

    @media (max-width: 992px) {
      .reviews-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
      }
    }

    @media (max-width: 576px) {
      .reviews-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
      }

      .reviews-yellow-wrapper {
        padding: 16px 8px !important;
        border-radius: 16px !important;
      }
    }

    .review-card-item {
      border: 5px solid #7B3E93 !important;
      border-radius: 20px !important;
      overflow: hidden !important;
      background: #FFF !important;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
      transition: transform 0.25s ease, box-shadow 0.25s ease !important;
      display: flex !important;
      flex-direction: column !important;
    }

    .review-card-item img {
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }

    .reviews-dots {
      display: flex !important;
      justify-content: center !important;
      align-items: center !important;
      gap: 10px !important;
      margin-top: 24px !important;
    }

    .reviews-dots .dot {
      width: 12px !important;
      height: 12px !important;
      border-radius: 50% !important;
      background: rgba(123, 62, 147, 0.35) !important;
      cursor: pointer !important;
      transition: all 0.3s ease !important;
    }

    .reviews-dots .dot.active {
      background: #7B3E93 !important;
      width: 32px !important;
      border-radius: 12px !important;
    }



/* DEFERRED NON-CRITICAL STYLES */
.awards-section {
  padding: 0;
  background: #FFF;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: clamp(20px, 4vw, 40px);
  align-items: stretch
}

.award-card {
  background: #FFF;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.award-img-border {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 615/645;
}

.award-img-border img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.award-card h3 {
  color: #85529C;
  font-weight: 800;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.award-card p {
  font-size: .9rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 16px;
  font-weight: 500;
}

.award-card p.highlight-bold {
  font-weight: 700;
  color: #111;
}

.video-card {
  background: #000;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 400px;
}

.video-facade {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: #000;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-facade picture,
.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-facade-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  background: rgba(133, 82, 156, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #FFF;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 5;
  cursor: pointer;
}

.video-facade:hover .video-facade-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(133, 82, 156, 1);
}

.video-facade-play-btn .play-triangle {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #FFF;
  margin-left: 4px;
}

/* STATS & PRESS */
.stats-banner-section {
  background: url('../image/b123.webp') no-repeat center;
  background-size: 100% 100%;
  padding: 0;
  color: #FFF;
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jagged-edge {
  display: none
}

.jagged-edge.top-edge {
  top: -19px
}

.jagged-edge.bottom-edge {
  bottom: -19px
}

.jagged-edge svg {
  width: 100%;
  height: 100%;
  display: block
}

.stats-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(60px, 15vw, 240px);
  text-align: center;
  position: relative;
  z-index: 3;
  padding: clamp(40px, 6vw, 75px) 15px;
  width: 100%;
}

.stat-box {
  flex: 0 1 auto;
  text-align: center;
}

.stat-box .num {
  font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 700;
  color: #F9BF4F;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.stat-box .label {
  font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
  font-size: 9pt;
  font-weight: 400;
  color: #FFFFFF;
  margin-top: 4px;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .stats-flex {
    flex-direction: column;
    gap: 28px;
    padding: 35px 15px;
  }

  .stat-box .num {
    font-size: 2.5rem;
  }

  .stat-box .label {
    font-size: 9pt;
    margin-top: 4px;
  }
}

.press-section {
  padding: 0 0 10px;
  text-align: center;
  background: #FFF
}

.press-section h3 {
  color: #85529C;
  font-weight: 800;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 24px
}

.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px 45px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}

.press-logo-item {
  height: 50px;
  display: flex;
  align-items: center
}

.zee-logo-svg,
.ht-logo-svg,
.dh-logo-svg,
.dna-logo-svg {
  height: 100%;
  width: auto
}

.dna-box {
  background: #5E2578;
  color: #FFF;
  font-weight: 900;
  font-size: 1.6rem;
  padding: 4px 14px;
  border-radius: 4px;
  letter-spacing: .5px
}

.logo-midday-box {
  display: flex;
  align-items: center
}

.midday-box {
  font-weight: 900;
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center
}

.midday-box .mid {
  background: #0288D1;
  color: #FFF;
  padding: 2px 6px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  font-style: italic
}

.midday-box .day {
  background: #D32F2F;
  color: #FFF;
  padding: 2px 6px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  font-style: italic
}

.midday-box .dot {
  color: #333;
  font-size: 1.1rem;
  font-weight: 700
}

.unlock-banner-capsule {
  background: linear-gradient(90deg, #A86FB6 0%, #85529C 100%);
  color: #FFF;
  font-weight: 500;
  font-size: clamp(1.25rem, 3.5vw, 1.7rem);
  padding: 16px 24px;
  border-radius: 12px;
  display: block;
  margin: 0 auto 24px;
  box-shadow: 0 4px 15px rgba(133, 82, 156, .2);
  width: 100%;
  max-width: 1060px;
}

.unlock-banner-capsule .highlight-yellow {
  color: #FFE600;
  font-weight: 700
}

.press-sub-info {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 500;
  color: #222;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
}

.press-sub-info .red-bold {
  color: #E53935;
  font-weight: 800
}

/* INFOGRAPHIC & WHATSAPP */
.tools-infographic-section {
  padding: 10px 0 40px;
  background: #FFF;
  text-align: center
}

.tools-card-container {
  max-width: 820px;
  margin: 0 auto 24px;
  background: #FFF;
  border: 2px solid #85529C;
  border-radius: 12px;
  padding: 10px;
  box-shadow: none;
  aspect-ratio: 1/1
}

.tools-card-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px
}

.whatsapp-section {
  padding: 10px 0 40px;
  background: #FFF;
  text-align: center
}

.whatsapp-card-wrapper {
  max-width: 1060px;
  margin: 0 auto;
  background: transparent;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center
}

.whatsapp-section .thinking-header {
  background: linear-gradient(90deg, #A86FB6 0%, #85529C 100%);
  color: #FFF;
  font-weight: 500;
  font-size: clamp(1.25rem, 3.5vw, 1.7rem);
  padding: 16px 24px;
  border-radius: 12px;
  display: block;
  margin: 0 auto 10px;
  box-shadow: 0 4px 15px rgba(133, 82, 156, .2);
  width: 100%;
  max-width: 1060px;
}

.whatsapp-section .thinking-header .highlight-yellow {
  color: #FFE600;
  font-weight: 700
}

.whatsapp-gift-card {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto 24px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.whatsapp-gift-card img {
  width: 100%;
  height: auto;
  display: block
}

.yellow-top-alert-card {
  background: #FDE047;
  border-radius: 8px;
  padding: 18px 22px;
  max-width: 1060px;
  margin: 0 auto 24px;
  text-align: center;
  border: none;
}

.yellow-top-alert-card p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  line-height: 1.45
}

.yellow-top-alert-card p:last-child {
  margin-bottom: 0;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 600
}

/* PRICING PLANS */
.pricing-section {
  padding: 10px 0 20px;
  background: #FFF
}

.pricing-header-titles {
  text-align: center;
  max-width: 950px;
  margin: 16px auto 24px
}

.pricing-header-titles h2 {
  font-size: clamp(1.4rem, 3vw, 1.7rem);
  font-weight: 700;
  color: #111;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.pricing-header-titles p {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: #000;
  line-height: 1.45;
  letter-spacing: -0.5px;
}

.pricing-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  align-items: stretch;
  background: #FAF8F5;
  padding: 20px;
  border-radius: 8px;
}

.plan-card {
  border-radius: 4px;
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: none;
  transition: none;
  border: none;
}

.plan-silver {
  background-color: #E8E8E8;
}

.plan-gold {
  background-color: #EED7B5;
}

.plan-diamond {
  background-color: #CAE1FC;
}

.popular-badge-pill {
  display: table;
  margin: 0 auto 12px;
  background: #FFF;
  color: #FF9800;
  font-weight: 700;
  font-size: .9rem;
  padding: 6px 16px;
  border-radius: 20px;
  border: none;
  box-shadow: none;
}

.plan-card h3 {
  text-align: center;
  font-size: 1.45rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 2px
}

.plan-price {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 20px
}

.get-access-label {
  color: #FF0000;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: underline;
  text-align: left;
  margin-bottom: 8px
}

.workshop-sub-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #111;
  text-align: left;
  margin-bottom: 16px;
  line-height: 1.2
}

.best-for-label {
  color: #FF0000;
  font-weight: 800;
  font-size: .95rem;
  text-align: left;
  margin-bottom: 4px
}

.best-for-desc {
  color: #3B5BDB;
  font-weight: 500;
  font-size: .85rem;
  text-align: left;
  margin-bottom: 16px;
  line-height: 1.3
}

.bonus-heading {
  color: #FF0000;
  font-weight: 800;
  font-size: 1.1rem;
  text-align: left;
  margin: 16px 0 10px;
  display: flex;
  align-items: center;
  gap: 6px
}

.features-list {
  list-style: none;
  margin-bottom: 16px
}

.features-list li {
  font-size: .88rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4
}

.features-list li::before {
  content: "✓";
  background-color: #111;
  color: #FFF;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: .6rem;
  flex-shrink: 0;
  margin-top: 2px
}

.features-list li.item-video::before {
  content: "📹" !important;
  background: transparent !important;
  color: initial !important;
  font-size: 1rem !important;
  width: auto !important;
  height: auto !important;
  margin-top: -2px !important
}

.how-feels-label {
  color: #FF0000;
  font-weight: 800;
  font-size: .95rem;
  text-align: left;
  margin-bottom: 4px
}

.how-feels-desc {
  color: #3B5BDB;
  font-weight: 500;
  font-size: .85rem;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.3
}

.btn-buy-red {
  display: block;
  width: 80%;
  margin: 0 auto;
  background: #FF0000;
  color: #FFF;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  padding: 12px;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.btn-buy-red:hover {
  background: #E60000;
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.45);
}

/* REVIEWS & TRANSFORM */
.reviews-yellow-section {
  background: #FFF;
  padding: 10px 0 5px;
  text-align: center;
}

.reviews-header-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: #3A1C71;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reviews-yellow-wrapper {
  background: #FFD700;
  border-radius: 28px;
  padding: clamp(24px, 4vw, 40px) clamp(16px, 3vw, 32px);
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.reviews-carousel-track {
  position: relative;
  width: 100%;
}

.reviews-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  width: 100%;
}

.reviews-slide.active {
  display: block;
  opacity: 1;
}

.reviews-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 24px);
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .reviews-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .reviews-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .reviews-yellow-wrapper {
    padding: 16px 8px;
    border-radius: 16px;
  }
}

.review-card-item {
  border: 5px solid #7B3E93;
  border-radius: 20px;
  overflow: hidden;
  background: #FFF;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.review-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(123, 62, 147, 0.25);
}

.review-card-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Pagination Dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.reviews-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(123, 62, 147, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}

.reviews-dots .dot.active {
  background: #7B3E93;
  width: 32px;
  border-radius: 12px;
}

.transform-brain-section {
  background-image: url('../image/b12a5.webp');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 100px 0 160px 0;
  overflow: hidden;
  color: #111;
}

.transform-brain-section .container {
  padding: 0 15px 20px;
}

.transform-section-title {
  text-align: center;
  font-size: clamp(1.3rem, 3.2vw, 1.8rem);
  font-weight: 800;
  color: #111;
  line-height: 1.3;
  max-width: 900px;
  margin: 20px auto 25px;
}

.transform-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .transform-cols {
    grid-template-columns: 360px 1fr;
    gap: 35px;
  }
}

.transform-left-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.transform-left-graphic picture {
  display: block;
  width: 100%;
}

.transform-left-graphic img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.transform-right-points {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

@media (max-width: 576px) {
  .transform-right-points {
    padding: 16px 14px;
    border-radius: 16px;
  }
}

.transform-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1.5px solid rgba(133, 82, 156, 0.15);
}

.transform-point:last-child {
  border-bottom: none;
}

.transform-point .point-checkbox {
  background-color: #FF7A00;
  color: #FFF;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 3px 8px rgba(255, 122, 0, .25)
}

.transform-point p {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  font-weight: 700;
  color: #111;
  line-height: 1.45;
  margin: 0
}

/* WHO CAN BENEFIT & COMPARISON */
.who-benefit-section,
.who-can-benefit-section {
  background-image: url('../image/b12a6.webp');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFF;
  padding: clamp(24px, 3.5vw, 36px) 0 clamp(45px, 6vw, 70px);
  position: relative;
  margin-top: -2px;
}

.who-benefit-title {
  text-align: center;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 18px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .5px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.questions-container {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 15px;
}

.q-item {
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.45);
  padding: 8px 0 10px;
}

.q-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.q-header {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFE600;
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.18rem);
  margin-bottom: 2px;
}

.q-icon {
  width: 22px;
  height: 22px;
  background: #FFFFFF;
  color: #7B3E93;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .85rem;
  flex-shrink: 0;
}

.q-answer {
  font-size: clamp(0.88rem, 1.8vw, 0.95rem);
  color: #FFFFFF;
  padding-left: 34px;
  font-weight: 500;
  line-height: 1.4;
}

.comparison-chart-section {
  background-image: url('../image/b12a7.webp');
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: clamp(170px, 22vw, 240px) 0 clamp(70px, 9vw, 110px);
  color: #111;
  position: relative;
  margin-top: -2px;
}

.comparison-title {
  text-align: center;
  font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-weight: 800;
  color: #000;
  margin-bottom: 28px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}

.chart-box-container {
  max-width: 1060px;
  margin: 0 auto 28px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: none;
  border: none;
  background: transparent;
  width: 100%;
}

.chart-box-container picture,
.chart-box-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.comparison-explanation-text {
  max-width: 1060px;
  margin: 0 auto;
  text-align: left;
  padding: 0 15px
}

.comparison-explanation-text p {
  font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  font-weight: 600;
  color: #111;
  line-height: 1.55;
  margin-bottom: 16px
}

.comparison-explanation-text p.cta-line {
  font-weight: 700;
  color: #000;
  margin-bottom: 0
}

/* 5 DAYS & WHY START EARLY */
.learn-5days-section {
  padding: clamp(30px, 4vw, 45px) 0 clamp(15px, 2vw, 25px);
  background: #FFF;
  text-align: center
}

.learn-5days-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  color: #3A1C71;
  margin-bottom: 40px
}

.days-3col-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 36px
}

.days-2col-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  max-width: 940px;
  margin: 0 auto 30px
}

.day-card {
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center
}

.day-card-purple {
  background: #EDE9F6
}

.day-card-green {
  background: #E8F5E9
}

.day-card-yellow {
  background: #FFF9C4
}

.day-card-blue {
  background: #E0F2F1
}

.day-card-pink {
  background: #FFEBEE
}

.day-img-box {
  width: 100%;
  max-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 22px;
  border: 4px solid;
  background: #FFF;
  padding: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .1);
  aspect-ratio: 545/671
}

.day-card-purple .day-img-box {
  border-color: #85529C
}

.day-card-green .day-img-box {
  border-color: #4CAF50
}

.day-card-yellow .day-img-box {
  border-color: #FFC107
}

.day-card-blue .day-img-box {
  border-color: #00BCD4
}

.day-card-pink .day-img-box {
  border-color: #FF5252
}

.day-img-box picture,
.day-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 12px;
  transform: scale(1);
  transition: transform .3s ease
}

.day-img-box:hover img {
  transform: scale(1.04)
}

.day-badge-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 8px;
  text-align: center
}

.day-subtitle {
  font-size: 1.08rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.38
}

.day-section-block {
  width: 100%;
  margin-top: 18px;
  text-align: left
}

.point-orange-title {
  color: #E65100;
  font-weight: 800;
  font-size: 1.02rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  line-height: 1.35
}

.orange-check-svg {
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
  height: 20px;
}

.day-block-desc {
  font-size: 0.94rem;
  font-weight: 600;
  color: #222;
  line-height: 1.55;
  padding-left: 28px
}

.day-subitems-list {
  list-style: none;
  padding-left: 28px;
  margin: 0
}

.day-subitems-list li {
  font-size: 0.92rem;
  font-weight: 600;
  color: #222;
  line-height: 1.55;
  margin-bottom: 12px
}

.why-early-section {
  padding: clamp(15px, 2vw, 25px) 0 clamp(35px, 5vw, 55px);
  background: #FFFFFF;
  text-align: center
}

.why-early-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 800;
  color: #85529C;
  margin-bottom: 28px;
  letter-spacing: -0.2px;
}

.why-early-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 36px auto 48px;
  max-width: 1140px;
  padding: 0 15px
}

@media (min-width: 900px) {
  .why-early-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.why-early-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.why-early-col .why-pill {
  font-size: 0.78rem;
  font-weight: 900;
  color: #FFF;
  padding: 10px 12px;
  border-radius: 8px;
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
  letter-spacing: 0.2px;
}

.col-green .why-pill {
  background-color: #8CC63F
}

.col-blue .why-pill {
  background-color: #00B4D8
}

.col-pink .why-pill {
  background-color: #EC407A
}

.col-yellow .why-pill {
  background-color: #E6A100
}

.col-orange .why-pill {
  background-color: #FF5722
}

.why-icon-box {
  width: 145px;
  height: 145px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center
}

.why-icon-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: scale(1.22);
  transition: transform .3s ease
}

.why-underline {
  width: 75%;
  height: 5px;
  border-radius: 3px
}

.col-green .why-underline {
  background-color: #8CC63F
}

.col-blue .why-underline {
  background-color: #00B4D8
}

.col-pink .why-underline {
  background-color: #EC407A
}

.col-yellow .why-underline {
  background-color: #E6A100
}

.col-orange .why-underline {
  background-color: #FF5722
}

.nurture-title-big {
  font-size: clamp(1.8rem, 4.5vw, 2.7rem);
  font-weight: 800;
  color: #2E2A4A;
  margin: 48px auto 32px;
  max-width: 1040px;
  line-height: 1.32;
  letter-spacing: -0.4px;
}

.star-graphic-box {
  max-width: 1100px;
  margin: 24px auto 20px;
  padding: 0 10px;
  text-align: center;
}

.star-graphic-box img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ACHIEVEMENTS & GOODBYE GRID */
.achievements-section {
  padding: clamp(32px, 5vw, 60px) 0 clamp(35px, 5.5vw, 65px);
  background: url("../image/bg123010.webp") center top / 100% 100% no-repeat;
  text-align: center;
  color: #FFF;
  margin-bottom: -2px;
  position: relative;
}

.achievements-section h2 {
  font-size: clamp(1.7rem, 4.2vw, 2.4rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 24px;
  font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .2);
}

.achievements-slider-container {
  max-width: 1100px;
  margin: 0 auto 16px;
  background: #FFF;
  border: 3px solid #FFF;
  border-radius: 20px;
  padding: 24px 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.between-sections-btn-box {
  max-width: 420px;
  margin: 0 auto -38px;
  position: relative;
  z-index: 25;
}

.slider-arrow {
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  color: #85529C;
  font-weight: 900;
  cursor: pointer;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease;
  flex-shrink: 0;
}

.slider-arrow:hover {
  transform: scale(1.25);
  color: #6F4285;
}

.slider-cards-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 0;
  scroll-behavior: smooth;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.slider-cards-row::-webkit-scrollbar {
  display: none;
}

.achievement-card {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .achievement-card {
    flex: 0 0 calc(33.333% - 12px);
    max-width: 320px;
  }
}

.achievement-card img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .1);
  transition: transform .3s ease;
  margin: 0 auto;
}

.achievement-card:hover img {
  transform: scale(1.03);
}

.goodbye-section {
  padding: clamp(20px, 3vw, 32px) 0 clamp(45px, 7vw, 80px);
  background: #FFEBC0;
  text-align: center
}

.goodbye-section h2 {
  font-size: clamp(1.7rem, 4.2vw, 2.4rem);
  font-weight: 800;
  color: #000;
  margin-top: 15px;
  margin-bottom: 28px;
  font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
  letter-spacing: -0.4px;
}

.goodbye-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px 18px;
  max-width: 1140px;
  margin: 0 auto 36px
}

@media (min-width: 900px) {
  .goodbye-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.goodbye-box {
  background: #FFF;
  border: 4px solid #85529C;
  border-radius: 16px 0 16px 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 5px 15px rgba(133, 82, 156, .13);
  min-height: 76px;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}

.goodbye-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 20px rgba(133, 82, 156, .17);
}

.goodbye-box .check-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.goodbye-box .check-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.goodbye-box .box-text {
  font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.06rem);
  font-weight: 750;
  color: #6F4285;
  text-align: left;
  line-height: 1.34;
}

.supermom-card-container {
  max-width: 1140px;
  margin: 36px auto 0;
  background: #E8DDF8;
  border: 4px solid #85529C;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(133, 82, 156, .16);
}

.supermom-card-container img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .14);
}

/* GOLDEN ABILITIES & PROOF GRID */
.abilities-section {
  padding: clamp(65px, 9vw, 100px) 0 clamp(50px, 7vw, 85px);
  background: #FFFFFF;
  text-align: center;
  position: relative;
}

.abilities-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(50px, 7.5vw, 133px);
  background: url("../image/bg123012.webp") center top / 100% 100% no-repeat;
  pointer-events: none;
  z-index: 2;
}

.abilities-section h2 {
  font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  font-weight: 800;
  color: #85529C;
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}

.abilities-section p {
  font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 600;
  color: #111;
  margin-bottom: 36px;
  line-height: 1.4;
}

.golden-card-graphic {
  max-width: 700px;
  margin: 0 auto 36px;
  border-radius: 0;
  overflow: visible;
}

.golden-card-graphic img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* VIDEO PROOF SECTION */
.proof-section {
  background: url("../image/bg123013.webp") center center / 100% 100% no-repeat;
  padding: clamp(110px, 14vw, 160px) 0 clamp(40px, 6vw, 60px);
  text-align: center;
  color: #FFF;
  margin-top: -2px;
  margin-bottom: -2px;
}

.proof-section h2 {
  font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
  font-size: clamp(1.2rem, 3.2vw, 2rem);
  font-weight: 900;
  margin-bottom: 24px;
  color: #FFFFFF;
  letter-spacing: .5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7), 0 0 15px rgba(0, 0, 0, 0.5);
  padding: 0 15px;
  word-wrap: break-word;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto 20px;
  padding: 0 10px;
}

@media (max-width:900px) {
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
  }
}

@media (max-width:480px) {
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px
  }
}

.video-proof-box {
  background: #2A2A2A;
  border: 3px solid #FFFFFF;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.35), 0 6px 18px rgba(0, 0, 0, 0.25);
  height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}

@media (max-width: 576px) {
  .video-proof-box {
    height: 175px;
    padding: 6px;
    border-width: 2px;
    border-radius: 12px;
  }
}

.video-proof-box:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.55), 0 10px 25px rgba(0, 0, 0, 0.35);
}

.video-proof-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 5;
}

.video-thumbnail-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.85) 100%), radial-gradient(circle at center, #4A4A4A 0%, #1A1A1A 100%);
  z-index: 1;
}

.proof-top-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  text-align: left;
  max-width: 100%;
  overflow: hidden;
}

.proof-avatar {
  width: 28px;
  height: 28px;
  background: #EC407A;
  color: #FFF;
  font-weight: 900;
  font-size: .8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.proof-name-group {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.proof-name {
  font-size: clamp(0.75rem, 2.5vw, 0.92rem);
  font-weight: 800;
  color: #FFF;
  line-height: 1.1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.proof-subname {
  font-size: clamp(0.6rem, 2vw, 0.72rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.proof-center-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.youtube-red-btn {
  width: 44px;
  height: 30px;
  background: #FF0000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
  cursor: pointer;
  transition: transform .15s ease;
}

@media (min-width: 576px) {
  .youtube-red-btn {
    width: 54px;
    height: 36px;
  }
}

.youtube-red-btn:hover {
  transform: scale(1.1);
}

.play-triangle {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 11px solid #FFFFFF;
  margin-left: 2px;
}

.proof-bottom-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 4px;
}

.link-icon-circle {
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.55);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  backdrop-filter: blur(4px);
  flex-shrink: 0;
}

.yt-pill-btn {
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  font-size: clamp(0.62rem, 1.8vw, 0.76rem);
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.yt-pill-btn svg {
  width: 14px;
  height: 10px;
  fill: #FF0000;
}

.yt-pill-btn svg {
  width: 16px;
  height: 12px;
  fill: #FF0000;
}

.proof-yellow-cta-block {
  display: inline-block;
  background: #FFD500;
  color: #000;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: background .2s ease, transform .15s ease;
  margin: 0 auto;
}

.proof-yellow-cta-block:hover {
  background: #FFC107;
  transform: translateY(-2px);
}

.proof-cta-main {
  display: block;
  font-weight: 900;
  font-size: 1.15rem;
  color: #000;
  line-height: 1.2;
}

.proof-cta-sub {
  display: block;
  font-weight: 700;
  font-size: .75rem;
  color: #000;
  margin-top: 2px;
}

.mentor-new-section {
  padding: 0;
  background: #FFEBC0;
  text-align: center;
  position: relative;
  margin-top: -2px;
}

.mentor-new-title {
  font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  font-weight: 800;
  color: #85529C;
  margin: 0;
  padding: 14px 0 12px;
}

.mentor-new-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 14px;
}

@media (max-width: 760px) {
  .mentor-new-grid {
    grid-template-columns: 1fr;
  }
}

.mentor-img-box-new {
  border: 3px solid #85529C;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(133, 82, 156, .18);
  max-width: 340px;
  margin: 0 auto;
}

.mentor-img-box-new img {
  width: 100%;
  height: auto;
  display: block;
}

.mentor-desc-box-new {
  background: #FFF;
  border: 2.5px solid #85529C;
  border-radius: 16px;
  padding: clamp(18px, 4vw, 28px) clamp(16px, 4vw, 28px);
  text-align: left;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

.mentor-desc-box-new p {
  font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 500;
  color: #111;
  line-height: 1.6;
  margin-bottom: 14px;
}

.mentor-desc-box-new p strong {
  color: #85529C;
  font-weight: 800;
}

.mentor-desc-box-new p:last-child {
  margin-bottom: 0;
}

.plan-new-section {
  padding: clamp(50px, 8vw, 80px) 0 32px;
  background: url("../image/bg123014.webp") center center / 100% 100% no-repeat;
  text-align: center;
  color: #FFF;
  margin-top: -2px;
  margin-bottom: -2px;
}

.plan-new-title {
  font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
  font-size: clamp(1.2rem, 3.5vw, 2rem);
  font-weight: 900;
  margin-bottom: 20px;
  padding: 0 15px;
  color: #FFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  word-wrap: break-word;
}

.plan-new-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px 18px;
}

@media (max-width: 760px) {
  .plan-new-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.plan-new-card {
  background: #FFF;
  border: 2.5px solid #FFF;
  border-radius: 18px;
  padding: 20px 18px 22px;
  color: #333;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plan-new-card picture {
  width: 100%;
  display: block;
}

.plan-new-card img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  border-radius: 12px;
  margin: 0 0 16px 0;
  display: block;
}

.plan-step-title {
  font-size: 1.18rem;
  font-weight: 800;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.plan-step-title .step-lbl {
  color: #FF7A00;
}

.plan-step-title .step-text {
  color: #85529C;
}

.plan-new-card p {
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.55;
  color: #555;
  margin: 0;
}

.closing-new-section {
  padding: 0;
  background: #FFF;
  text-align: center;
}

.closing-new-title {
  font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
  font-weight: 900;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.3;
}

.closing-card-wrapper {
  max-width: 820px;
  margin: 0 auto 28px;
  background: #FFF;
  border-radius: 22px;
  padding: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .10);
}

.closing-card-box {
  background: #85529C;
  border-radius: 16px;
  padding: clamp(22px, 4vw, 36px) clamp(20px, 4vw, 40px);
  color: #FFF;
  text-align: center;
}

.closing-card-box p {
  font-family: 'DM Sans', 'DM Sans Fallback', sans-serif;
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  font-weight: 600;
  line-height: 1.65;
  margin-bottom: 14px;
}

.closing-card-box p:last-child {
  margin-bottom: 0;
}

/* STICKY MOBILE BOTTOM CTA BAR */
.mobile-sticky-bar {
  display: none
}

@media (max-width:768px) {
  .mobile-sticky-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(133, 82, 156, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFF;
    padding: 10px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .25);
    z-index: 9999;
    border-top: 2px solid #FFD500
  }

  .sticky-text-wrapper {
    display: flex;
    flex-direction: column
  }

  .sticky-price {
    font-size: 1.25rem;
    font-weight: 900;
    color: #FFE600;
    line-height: 1
  }

  .sticky-tag {
    font-size: .7rem;
    font-weight: 600;
    opacity: .9
  }

  .sticky-btn {
    background: linear-gradient(180deg, #FFD500 0%, #FFA000 100%);
    color: #000;
    font-weight: 900;
    font-size: .92rem;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    position: relative;
    overflow: hidden;
  }

  body {
    padding-bottom: 95px !important;
  }
}