
    #mentor-mentor-page{
      --bg:#0a0a0b;
      --bg-soft:#111214;
      --surface:#15171a;
      --surface-2:#f4f0e8;
      --text:#ffffff;
      --muted:#b9bcc3;
      --gold:#c7a35a;
      --gold-light:#ead39d;
      --line:rgba(255,255,255,.11);
      --shadow:0 22px 70px rgba(0,0,0,.25);
      --radius:24px;
      --container:min(1180px, calc(100% - 40px));
    }

    #mentor-mentor-page, #mentor-mentor-page *{box-sizing:border-box}
    #mentor-mentor-page{scroll-behavior:smooth}
    #mentor-mentor-page{
      margin:0;
      color:var(--text);
      background:var(--bg);
      font-family:"DM Sans",sans-serif;
      overflow-x:hidden;
    }
    #mentor-mentor-page img{max-width:100%;display:block}
    #mentor-mentor-page a{text-decoration:none;color:inherit}
    #mentor-mentor-page button,
    #mentor-mentor-page input{font:inherit}
    #mentor-mentor-page .container{width:var(--container);margin-inline:auto}
    #mentor-mentor-page .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:10px;
      text-transform:uppercase;
      letter-spacing:.16em;
      font-size:12px;
      font-weight:700;
      color:var(--gold-light);
    }
    #mentor-mentor-page .eyebrow::before{
      content:"";
      width:28px;
      height:1px;
      background:var(--gold);
    }
    #mentor-mentor-page h1,
    #mentor-mentor-page h2,
    #mentor-mentor-page h3{
        color:white;
      font-family:"Manrope",sans-serif;
      margin:0;
      line-height:1.02;
      letter-spacing:-.045em;
    }
    
    #mentor-expertise h2, #mentor-mentor-page .service-card h3, #mentor-mentor-page .framework-intro h2, #mentor-mentor-page .framework-step h3{
        color:#111;
    }
    
    .testimonial-main blockquote, #mentor-mentor-page .footer h4{
        color:white;
    }
    #mentor-mentor-page h1{font-size:clamp(40px,8vw,104px);max-width:900px;margin-top:20px;}

    #mentor-mentor-page h2{font-size:clamp(38px,5vw,50px)}
    #mentor-mentor-page h3{font-size:clamp(22px,2.6vw,24px)}
    #mentor-mentor-page p{line-height:1.75;color:var(--muted);margin:0}
    #mentor-mentor-page .section{padding:110px 0}
    #mentor-mentor-page .section-head{
      display:flex;
      justify-content:space-between;
      gap:40px;
      align-items:flex-end;
      margin-bottom:52px;
    }
    #mentor-mentor-page .section-head p{max-width:520px}
    #mentor-mentor-page .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      min-height:54px;
      padding:0 24px;
      border-radius:999px;
      font-weight:700;
      transition:.25s ease;
      border:1px solid transparent;
    }
    #mentor-mentor-page .btn-primary{
      background:var(--gold);
      color:#111;
    }
    #mentor-mentor-page .btn-primary:hover{transform:translateY(-2px);background:var(--gold-light)}
    #mentor-mentor-page .btn-secondary{
      border-color:var(--line);
      background:rgba(255,255,255,.04);
      color:#fff;
      backdrop-filter:blur(12px);
    }
    #mentor-mentor-page .btn-secondary:hover{background:rgba(255,255,255,.09)}
    #mentor-mentor-page .header{
      position:fixed;
      inset:0 0 auto 0;
      z-index:1000;
      transition:.25s ease;
    }
    #mentor-mentor-page .header.scrolled{
      background:rgba(10,10,11,.78);
      backdrop-filter:blur(18px);
      border-bottom:1px solid var(--line);
    }
    #mentor-mentor-page .nav{
      width:var(--container);
      margin:auto;
      height:86px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:25px;
    }
    #mentor-mentor-page .logo{
      font-family:"Manrope",sans-serif;
      font-size:24px;
      font-weight:800;
      letter-spacing:-.04em;
    }
    #mentor-mentor-page .logo span{color:var(--gold)}
    #mentor-mentor-page .nav-links{display:flex;gap:30px;color:#ddd;font-size:14px}
    #mentor-mentor-page .nav-links a:hover{color:#fff}
    #mentor-mentor-page .nav-actions{display:flex;align-items:center;gap:12px}
    #mentor-mentor-page .menu-toggle{display:none;background:none;border:0;color:#fff;font-size:28px}

@media (max-width:768px){
    #mentor-mentor-page .nav-actions .btn-primary{
    display:none;
    }
}
    #mentor-mentor-page .hero{
      min-height:100vh;
      display:flex;
      align-items:flex-end;
      position:relative;
      padding:150px 0 70px;
      isolation:isolate;
      overflow:hidden;
    }
    #mentor-mentor-page .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 70% 30%, rgba(199,163,90,.22), transparent 24%),
        linear-gradient(90deg, rgba(5,5,6,.97) 0%, rgba(5,5,6,.82) 44%, rgba(5,5,6,.26) 72%, rgba(5,5,6,.82) 100%);
      z-index:-1;
    }
    #mentor-mentor-page .hero-bg{
      position:absolute;
      inset:0;
      z-index:-2;
      width:100%;
      height:100%;
      object-fit:cover;
      object-position:center top;
      opacity:.86;
      filter:saturate(.8);
    }
    #mentor-mentor-page .hero-content{position:relative;z-index:1}
    #mentor-mentor-page .hero h1 span{
      display:block;
      color:var(--gold-light);
      font-weight:500;
    }
    #mentor-mentor-page .hero-copy{
      max-width:640px;
      margin:28px 0 34px;
      font-size:18px;
    }
    #mentor-mentor-page .hero-actions{display:flex;flex-wrap:wrap;gap:14px}
    #mentor-mentor-page .hero-stats{
      margin-top:76px;
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      max-width:720px;
      border-top:1px solid var(--line);
      padding-top:28px;
    }
    #mentor-mentor-page .hero-stat strong{
      display:block;
      font-family:"Manrope",sans-serif;
      font-size:32px;
      margin-bottom:4px;
    }
    #mentor-mentor-page .hero-stat span{font-size:13px;color:var(--muted)}

    #mentor-mentor-page .trust{
      padding:26px 0;
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
      background:#0d0e10;
      overflow:hidden;
    }
    #mentor-mentor-page .trust-track{
      display:flex;
      width:max-content;
      gap:55px;
      animation:mentorTrustScroll 20s linear infinite;
      color:#878b92;
      font-family:"Manrope",sans-serif;
      text-transform:uppercase;
      letter-spacing:.14em;
      font-size:13px;
      font-weight:700;
    }
    @keyframes mentorTrustScroll{
      to{transform:translateX(-50%)}
    }

    #mentor-mentor-page .about-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:70px;
      align-items:center;
    }
    #mentor-mentor-page .about-image{
      min-height:650px;
      border-radius:32px;
      background:
        linear-gradient(to top,rgba(0,0,0,.7),transparent 50%),
        url("assets/coach-portrait.svg") center/cover;
      position:relative;
      box-shadow:var(--shadow);
    }
    #mentor-mentor-page .quote-card{
      position:absolute;
      left:28px;
      right:28px;
      bottom:28px;
      border:1px solid rgba(255,255,255,.16);
      background:rgba(10,10,11,.66);
      backdrop-filter:blur(16px);
      border-radius:20px;
      padding:24px;
      font-family:"Manrope",sans-serif;
      font-size:20px;
      line-height:1.45;
    }
    #mentor-mentor-page .about-copy h2{margin:18px 0 24px}
    #mentor-mentor-page .about-copy p+p{margin-top:16px}
    #mentor-mentor-page .about-copy .btn{margin-top:28px}

    #mentor-mentor-page .services{background:#f2eee6;color:#111}
    #mentor-mentor-page .services p{color:#5d5e60}
    #mentor-mentor-page .services .eyebrow{color:#806625}
    #mentor-mentor-page .service-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:20px;
    }
    #mentor-mentor-page .service-card{
      min-height:380px;
      padding:30px;
      border-radius:26px;
      background:#fff;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      transition:.3s ease;
      box-shadow:0 18px 45px rgba(40,35,24,.08);
    }
    #mentor-mentor-page .service-card:hover{transform:translateY(-8px)}
    #mentor-mentor-page .service-number{
      width:46px;height:46px;border-radius:50%;
      display:grid;place-items:center;
      border:1px solid #d8d0bf;
      color:#8b6e2c;
      font-weight:700;
    }
    #mentor-mentor-page .service-card h3{margin-bottom:16px}
    #mentor-mentor-page .service-list{
      /*display:flex;*/
      display:none;
      flex-wrap:wrap;
      gap:8px;
      margin-top:22px;
    }
    #mentor-mentor-page .service-list span{
      border:1px solid #ddd6c7;
      padding:8px 12px;
      border-radius:999px;
      font-size:12px;
      color:#63605a;
    }


    #mentor-mentor-page .service-card{overflow:hidden;padding:0;justify-content:flex-start}
    #mentor-mentor-page .service-image{position:relative;height:190px;overflow:hidden;background:#ddd6c7}
    #mentor-mentor-page .service-image img{width:100%;height:100%;object-fit:cover;transition:transform .45s ease}
    #mentor-mentor-page .service-card:hover .service-image img{transform:scale(1.045)}
    #mentor-mentor-page .service-image::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.28),transparent 58%);pointer-events:none}
    #mentor-mentor-page .service-number{position:absolute;top:18px;left:18px;z-index:2;background:rgba(255,255,255,.9);backdrop-filter:blur(8px)}
    #mentor-mentor-page .service-content{padding:28px 30px 30px;display:flex;flex-direction:column;flex:1;justify-content:flex-start}




    /* ===== MANIFESTATION / SHIFT REALITY ===== */
    #mentor-mentor-page .manifest-section{
      background:
        radial-gradient(circle at 85% 18%, rgba(199,163,90,.12), transparent 26%),
        linear-gradient(180deg,#0b0c0e,#111214);
      position:relative;
      overflow:hidden;
    }

    #mentor-mentor-page .manifest-grid{
      display:grid;
      grid-template-columns:.95fr 1.05fr;
      gap:72px;
      align-items:center;
    }

    #mentor-mentor-page .manifest-visual{
      min-height:620px;
      border-radius:32px;
      position:relative;
      overflow:hidden;
      background:
        linear-gradient(to top,rgba(0,0,0,.72),rgba(0,0,0,.06) 62%),
        url("assets/manifestation-portrait.svg") center/cover;
      border:1px solid rgb(181 149 27);
      box-shadow:var(--shadow);
    }

    #mentor-mentor-page .manifest-quote{
      position:absolute;
      left:28px;
      right:28px;
      bottom:28px;
      padding:24px;
      border-radius:20px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(8,8,9,.62);
      backdrop-filter:blur(16px);
      -webkit-backdrop-filter:blur(16px);
    }

    #mentor-mentor-page .manifest-quote strong{
      display:block;
      font-family:"Manrope",sans-serif;
      font-size:clamp(24px,3vw,38px);
      line-height:1.25;
      letter-spacing:-.03em;
      color:#fff;
    }

    #mentor-mentor-page .manifest-copy h2{margin:18px 0 22px}
    #mentor-mentor-page .manifest-copy p+p{margin-top:14px}

    #mentor-mentor-page .manifest-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:26px;
    }

    #mentor-mentor-page .manifest-tags span{
      padding:10px 14px;
      border-radius:999px;
      border:1px solid rgba(234,211,157,.22);
      background:rgba(199,163,90,.07);
      color:var(--gold-light);
      font-size:12px;
      font-weight:600;
    }

    #mentor-mentor-page .reality-framework{
      background:#f2eee6;
      color:#111;
    }

    #mentor-mentor-page .reality-framework p{color:#5d5e60}
    #mentor-mentor-page .reality-framework .eyebrow{color:#806625}

    #mentor-mentor-page .framework-intro{
      max-width:780px;
      margin-bottom:48px;
    }

    #mentor-mentor-page .framework-intro h2{margin:16px 0 18px}

    #mentor-mentor-page .framework-grid{
      display:grid;
      grid-template-columns:repeat(6,1fr);
      gap:12px;
      position:relative;
    }

    #mentor-mentor-page .framework-step{
      min-height:230px;
      border-radius:24px;
      background:#fff;
      padding:24px 18px;
      box-shadow:0 16px 38px rgba(40,35,24,.07);
      position:relative;
      overflow:hidden;
    }

    #mentor-mentor-page .framework-step::before{
      content:"";
      position:absolute;
      top:0;
      left:0;
      right:0;
      height:3px;
      background:linear-gradient(90deg,#9f7e34,#d5b970);
    }

    #mentor-mentor-page .framework-step span{
      display:inline-grid;
      place-items:center;
      width:38px;
      height:38px;
      border-radius:50%;
      background:#f4efe3;
      color:#806625;
      font-weight:800;
      margin-bottom:42px;
    }

    #mentor-mentor-page .framework-step h3{
      font-size:20px;
      letter-spacing:-.02em;
      margin-bottom:10px;
    }

    #mentor-mentor-page .framework-step p{
      font-size:13px;
      line-height:1.6;
    }

    #mentor-mentor-page .affirmation-section{
      background:#0a0a0b;
    }

    #mentor-mentor-page .affirmation-card{
      min-height:430px;
      border-radius:34px;
      border:1px solid var(--line);
      padding:64px;
      position:relative;
      overflow:hidden;
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:center;
      text-align:center;
      background:
        radial-gradient(circle at 50% 20%, rgba(199,163,90,.18), transparent 28%),
        linear-gradient(145deg,#101113,#09090a);
      box-shadow:var(--shadow);
    }

    #mentor-mentor-page .affirmation-card::before,
    #mentor-mentor-page .affirmation-card::after{
      content:"";
      position:absolute;
      border-radius:50%;
      border:1px solid rgba(234,211,157,.12);
      pointer-events:none;
    }

    #mentor-mentor-page .affirmation-card::before{width:380px;height:380px}
    #mentor-mentor-page .affirmation-card::after{width:520px;height:520px}

    #mentor-mentor-page .affirmation-card .eyebrow{position:relative;z-index:1}
    #mentor-mentor-page .affirmation-text{
      position:relative;
      z-index:1;
      max-width:900px;
      margin:22px auto 28px;
      font-family:"Manrope",sans-serif;
      font-size:clamp(30px,5vw,60px);
      line-height:1.18;
      letter-spacing:-.045em;
      color:#fff;
    }

    #mentor-mentor-page .affirmation-card .btn{position:relative;z-index:1}

    #mentor-mentor-page .video-reviews{
      background:#0d0e10;
      position:relative;
      overflow:hidden;
    }

    #mentor-mentor-page .video-reviews::before{
      content:"";
      position:absolute;
      width:420px;
      height:420px;
      border-radius:50%;
      background:rgba(199,163,90,.08);
      filter:blur(35px);
      top:-180px;
      right:-120px;
      pointer-events:none;
    }

    #mentor-mentor-page .video-review-head{
      display:flex;
      justify-content:space-between;
      gap:30px;
      align-items:flex-end;
      margin-bottom:42px;
    }

    #mentor-mentor-page .video-review-head p{max-width:520px}

    #mentor-mentor-page .video-reviews-swiper{
      overflow:visible;
      padding:2px 2px 8px;
    }

    #mentor-mentor-page .video-reviews-swiper .swiper-slide{
      height:auto;
    }

    #mentor-mentor-page .swiper-wrapper{

        height:auto;
    }

    #mentor-mentor-page .video-review-card{
      position:relative;
      width:100%;
      aspect-ratio:9 / 16;
      border-radius:24px;
      overflow:hidden;
      border:1px solid var(--line);
      background:#15171a;
      box-shadow:0 18px 50px rgba(0,0,0,.28);
      cursor:pointer;
      isolation:isolate;
      transform:translateZ(0);
    }

    #mentor-mentor-page .video-review-card video{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      background:#111;
      pointer-events:none;
      transition:transform .35s ease, filter .35s ease;
    }

    #mentor-mentor-page .video-review-card::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(to top,rgba(0,0,0,.16),transparent 42%);
      pointer-events:none;
      z-index:1;
    }

    #mentor-mentor-page .video-review-card:hover video{
      transform:scale(1.035);
      filter:brightness(1.07);
    }

    #mentor-mentor-page .video-review-play{
      position:absolute;
      top:50%;
      left:50%;
      transform:translate(-50%,-50%);
      width:54px;
      height:54px;
      border-radius:50%;
      border:1px solid rgba(255,255,255,.38);
      background:rgba(10,10,11,.52);
      backdrop-filter:blur(12px);
      -webkit-backdrop-filter:blur(12px);
      color:#fff;
      display:grid;
      place-items:center;
      padding:0 0 0 3px;
      font-size:18px;
      line-height:1;
      z-index:3;
      transition:.25s ease;
      cursor:pointer;
    }

    #mentor-mentor-page .video-review-card:hover .video-review-play{
      width:62px;
      height:62px;
      background:var(--gold);
      color:#111;
      border-color:var(--gold);
    }

    #mentor-mentor-page .video-carousel-controls{
      display:flex;
      align-items:center;
      gap:20px;
      margin-top:28px;
    }

    #mentor-mentor-page .video-swiper-scrollbar{
      position:relative !important;
      left:auto !important;
      bottom:auto !important;
      width:auto !important;
      flex:1;
      height:5px !important;
      border-radius:999px;
      background:rgba(255,255,255,.11);
      overflow:hidden;
      cursor:pointer;
    }

    #mentor-mentor-page .video-swiper-scrollbar .swiper-scrollbar-drag{
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--gold),var(--gold-light));
      cursor:grab;
    }

    #mentor-mentor-page .video-swiper-scrollbar .swiper-scrollbar-drag:active{
      cursor:grabbing;
    }

    #mentor-mentor-page .video-arrow-wrap{
      display:flex;
      gap:10px;
      flex:0 0 auto;
    }

    #mentor-mentor-page .video-arrow{
      width:46px;
      height:46px;
      border-radius:50%;
      padding: 0px;
      border:1px solid rgba(255,255,255,.15);
      background:rgba(255,255,255,.04);
      color:#fff;
      display:grid;
      place-items:center;
      cursor:pointer;
      font-size:19px;
      transition:.25s ease;
    }

    #mentor-mentor-page .video-arrow:hover{
      border-color:var(--gold);
      color:var(--gold-light);
      background:rgba(199,163,90,.08);
    }

    #mentor-mentor-page .video-arrow.swiper-button-disabled{
      opacity:.35;
      cursor:not-allowed;
    }

    #mentor-mentor-page .video-modal{
      position:fixed;
      inset:0;
      z-index:3000;
      background:rgba(0,0,0,.19);
      backdrop-filter: blur(15px);
      display:none;
      align-items:center;
      justify-content:center;
      padding:24px;
    }

    #mentor-mentor-page .video-modal.open{display:flex}

    #mentor-mentor-page .video-modal-inner{
      width:min(520px,100%);
      position:relative;
      background:#000;
      border-radius:24px;
      overflow:hidden;
      box-shadow:0 30px 100px rgba(0,0,0,.65);
    }

    #mentor-mentor-page .video-modal-close{
      position:absolute;
      border: 1px solid rgba(255, 255, 255, .18);
      top:12px;
      padding: 0px;
      right:12px;
      z-index:4;
      width:42px;
      height:42px;
      border:0;
      border-radius:50%;
      background:rgba(0,0,0,.64);
      color:#fff;
      font-size:26px;
      line-height:1;
      cursor:pointer;
    }

    #mentor-mentor-page .video-modal video{
      width:100%;
      max-height:84vh;
      aspect-ratio:9/16;
      object-fit:contain;
      display:block;
      background:#000;
    }

    #mentor-mentor-page .program-grid{
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      gap:22px;
    }
    #mentor-mentor-page .program-card{
      min-height:520px;
      border-radius:30px;
      padding:34px;
      position:relative;
      overflow:hidden;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      isolation:isolate;
    }
    #mentor-mentor-page .program-card::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(to top,rgba(5,5,6,.96),rgba(5,5,6,.05));
      z-index:-1;
    }
    #mentor-mentor-page .program-card img{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      z-index:-2;
      transition:.5s ease;
    }
    #mentor-mentor-page .program-card:hover img{transform:scale(1.05)}
    #mentor-mentor-page .program-card small{color:var(--gold-light);text-transform:uppercase;letter-spacing:.14em}
    #mentor-mentor-page .program-card h3{font-size:40px;margin:12px 0}
    #mentor-mentor-page .program-card p{max-width:480px;margin-bottom:22px}

    #mentor-mentor-page .results{
      background:linear-gradient(180deg,#101113,#09090a);
    }
    #mentor-mentor-page .results-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:1px;
      background:var(--line);
      border:1px solid var(--line);
      border-radius:26px;
      overflow:hidden;
    }
    #mentor-mentor-page .result{
      background:#0d0e10;
      padding:38px 24px;
      min-height:190px;
    }
    #mentor-mentor-page .result strong{
      font-family:"Manrope",sans-serif;
      font-size:48px;
      display:block;
      color:var(--gold-light);
      margin-bottom:10px;
    }

    #mentor-mentor-page .testimonial-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:24px;
    }
    #mentor-mentor-page .testimonial-main,
    #mentor-mentor-page .testimonial-side{
      background:var(--surface);
      border:1px solid var(--line);
      border-radius:28px;
      padding:34px;
    }
    #mentor-mentor-page .testimonial-main blockquote{
      margin:0 0 40px;
      font-family:"Manrope",sans-serif;
      font-size:clamp(28px,4vw,48px);
      line-height:1.3;
      letter-spacing:-.035em;
    }
    #mentor-mentor-page .person{display:flex;align-items:center;gap:14px}
    #mentor-mentor-page .avatar{
      width:54px;height:54px;border-radius:50%;
      object-fit:cover;
    }
    #mentor-mentor-page .person strong{display:block}
    #mentor-mentor-page .person span{font-size:13px;color:var(--muted)}
    #mentor-mentor-page .testimonial-side{
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      background:linear-gradient(145deg,#8d6b2f,#c5a25a);
      color:#151515;
    }
    #mentor-mentor-page .testimonial-side p{color:#222}
    #mentor-mentor-page .testimonial-side .metric{
      font-family:"Manrope",sans-serif;
      font-size:64px;
      font-weight:800;
      letter-spacing:-.05em;
    }

    #mentor-mentor-page .cta-box{
      border-radius:34px;
      min-height:430px;
      padding:64px;
      display:flex;
      justify-content:center;
      flex-direction:column;
      align-items:flex-start;
      background:
        linear-gradient(90deg,rgba(7,7,8,.96),rgba(7,7,8,.45)),
        url("assets/program-image-1.svg") center/cover;
      border:1px solid var(--line);
    }
    #mentor-mentor-page .cta-box h2{max-width:760px;margin:16px 0 24px}


    #mentor-mentor-page .closing-section{
      padding:110px 0 110px;
      background:var(--bg);
    }
    #mentor-mentor-page .closing-card{
      min-height:560px;
      border-radius:34px;
      overflow:hidden;
      display:grid;
      grid-template-columns:1.05fr .95fr;
      background:#111214;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    #mentor-mentor-page .closing-copy{
      padding:70px 64px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      position:relative;
      overflow:hidden;
    }
    #mentor-mentor-page .closing-copy::before{
      content:"";
      position:absolute;
      width:420px;
      height:420px;
      border-radius:50%;
      background:rgba(199,163,90,.09);
      filter:blur(35px);
      left:-180px;
      bottom:-180px;
      pointer-events:none;
    }
    #mentor-mentor-page .closing-copy h2{
      max-width:760px;
      margin:18px 0 24px;
    }
    #mentor-mentor-page .closing-copy p{
      max-width:620px;
      font-size:17px;
    }
    #mentor-mentor-page .closing-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin-top:30px;
    }
    #mentor-mentor-page .closing-image{
      min-height:560px;
      position:relative;
      background:
        linear-gradient(to top,rgba(0,0,0,.22),transparent 50%),
        url("assets/program-image-2.svg") center 20%/cover;
    }
    #mentor-mentor-page .closing-image::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(90deg,rgba(17,18,20,.12),transparent 28%);
      pointer-events:none;
    }

    #mentor-mentor-page .social-icons{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:22px;
    }
    #mentor-mentor-page .social-icon{
      width:44px;
      height:44px;
      border-radius:50%;
      display:grid;
      place-items:center;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.035);
      color:#f4f4f4;
      font-size:18px;
      transition:.25s ease;
    }
    #mentor-mentor-page .social-icon:hover{
      transform:translateY(-3px) rotate(6deg);
      border-color:var(--gold);
      background:var(--gold);
      color:#111;
    }
    #mentor-mentor-page .footer-newsletter{
      margin-top:18px;
      display:flex;
      gap:10px;
      max-width:320px;
    }
    #mentor-mentor-page .footer-newsletter input{
      flex:1;
      min-width:0;
      height:44px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.035);
      color:#fff;
      padding:0 16px;
      outline:none;
    }
    #mentor-mentor-page .footer-newsletter input::placeholder{color:#7e8187}
    #mentor-mentor-page .footer-newsletter button{
      width:44px;
      height:44px;
      border-radius:50%;
      border:0;
      padding:0px;
      background:var(--gold);
      color:#111;
      cursor:pointer;
      font-weight:800;
    }

    #mentor-mentor-page .footer{
      border-top:1px solid var(--line);
      padding:65px 0 30px;
      background:#080809;
    }
    #mentor-mentor-page .footer-grid{
      display:grid;
      grid-template-columns:1.4fr repeat(3,1fr);
      gap:50px;
    }
    #mentor-mentor-page .footer h4{margin:0 0 16px;font-family:"Manrope",sans-serif}
    #mentor-mentor-page .footer a,
    #mentor-mentor-page .footer p{color:#a9acb2;font-size:14px}
    #mentor-mentor-page .footer-links{display:grid;gap:10px}
    #mentor-mentor-page .footer-bottom{
      margin-top:50px;
      padding-top:24px;
      border-top:1px solid var(--line);
      display:flex;
      justify-content:space-between;
      gap:20px;
      color:#7e8187;
      font-size:13px;
    }

    #mentor-mentor-page .reveal{
      opacity:0;
      transform:translateY(28px);
      transition:.7s ease;
    }
    #mentor-mentor-page .reveal.visible{
      opacity:1;
      transform:none;
    }

    @media(max-width:900px){
      #mentor-mentor-page .nav-links,
    #mentor-mentor-page .nav-actions .btn-secondary{display:none}
      #mentor-mentor-page .menu-toggle{display:block}
      #mentor-mentor-page .nav-links.open{
        position:absolute;
        display:flex;
        flex-direction:column;
        top:86px;
        left:20px;
        right:20px;
        padding:24px;
        border-radius:18px;
        background:#111214;
        border:1px solid var(--line);
      }
      #mentor-mentor-page .hero{min-height:820px}
      #mentor-mentor-page .hero::before{
        background:linear-gradient(to top,rgba(5,5,6,.98) 0%,rgba(5,5,6,.76) 55%,rgba(5,5,6,.1) 100%);
      }
      #mentor-mentor-page .hero-bg{object-position:65% center}
      #mentor-mentor-page .about-grid,
    #mentor-mentor-page .program-grid,
    #mentor-mentor-page .testimonial-grid,
    #mentor-mentor-page .footer-grid,
    #mentor-mentor-page .closing-card,
    #mentor-mentor-page .manifest-grid{
        grid-template-columns:1fr;
      }
      #mentor-mentor-page .framework-grid{grid-template-columns:repeat(3,1fr)}
      #mentor-mentor-page .manifest-visual{min-height:520px}

      #mentor-mentor-page .closing-image{min-height:480px;order:-1}
      #mentor-mentor-page .closing-copy{padding:54px 40px}
      #mentor-mentor-page .service-grid{grid-template-columns:1fr}
      #mentor-mentor-page .results-grid{grid-template-columns:repeat(2,1fr)}
      #mentor-mentor-page .about-image{min-height:520px}
      #mentor-mentor-page .section-head{align-items:flex-start;flex-direction:column}
    }
    @media(max-width:600px){
      #mentor-mentor-page{--container:min(100% - 24px,1180px)}
      #mentor-mentor-page .section{padding:78px 0}
      #mentor-mentor-page .nav{height:74px}
      #mentor-mentor-page .hero{padding-top:120px;min-height:760px}
      #mentor-mentor-page .hero-copy{font-size:16px}
      #mentor-mentor-page .hero-stats{grid-template-columns:1fr 1fr;gap:22px}
      #mentor-mentor-page .hero-stat:last-child{grid-column:1/-1}
      #mentor-mentor-page .about-image{min-height:440px}
      #mentor-mentor-page .service-card{min-height:0}
      #mentor-mentor-page .service-image{height:220px}
      #mentor-mentor-page .video-carousel-controls{margin-top:22px}
      #mentor-mentor-page .video-arrow{width:42px;height:42px}
      #mentor-mentor-page .program-card{min-height:430px;padding:26px}
      #mentor-mentor-page .program-card h3{font-size:34px}
      #mentor-mentor-page .results-grid{grid-template-columns:1fr}
      #mentor-mentor-page .cta-box{padding:32px 24px;min-height:390px}
      #mentor-mentor-page .closing-section{padding-bottom:78px}
      #mentor-mentor-page .closing-image{min-height:390px}
      #mentor-mentor-page .closing-copy{padding:38px 24px}
      #mentor-mentor-page .footer-newsletter{max-width:100%}
      #mentor-mentor-page .video-review-head{flex-direction:column;align-items:flex-start;margin-bottom:30px}
      #mentor-mentor-page .video-carousel-controls{gap:14px}
      #mentor-mentor-page .video-arrow{width:42px;height:42px}
      #mentor-mentor-page .framework-grid{grid-template-columns:1fr 1fr}
      #mentor-mentor-page .manifest-visual{min-height:440px}
      #mentor-mentor-page .affirmation-card{padding:42px 24px;min-height:390px}
      #mentor-mentor-page .footer-bottom{flex-direction:column}
    }

    #mentor-mentor-page .logo img{
    height: 45px;
}

    /* ===== FINAL VIDEO REVIEW ENHANCEMENTS ===== */
    #mentor-mentor-page .video-carousel-controls{
      display:flex;
      align-items:center;
      gap:18px;
      margin-top:28px;
    }

    #mentor-mentor-page .video-progress-track{
      position:relative;
      flex:1;
      height:5px;
      border-radius:999px;
      background:rgba(255,255,255,.11);
      overflow:hidden;
    }

    #mentor-mentor-page .video-progress-fill{
      position:absolute;
      inset:0 auto 0 0;
      width:0%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--gold),var(--gold-light));
      transition:width .2s ease;
      will-change:width;
    }

    #mentor-mentor-page .video-progress-track::after{
      content:"";
      position:absolute;
      inset:-8px 0;
      cursor:pointer;
    }

    #mentor-mentor-page .video-arrow-wrap{
      display:flex;
      gap:10px;
      flex:0 0 auto;
    }

    #mentor-mentor-page .video-popup-nav{
      position:absolute;
      top:50%;
      padding: 0px;
      transform:translateY(-50%);
      z-index:5;
      width:48px;
      height:48px;
      border-radius:50%;
      border:1px solid rgba(255,255,255,.18);
      background:rgba(0,0,0,.48);
      backdrop-filter:blur(12px);
      -webkit-backdrop-filter:blur(12px);
      color:#fff;
      display:grid;
      place-items:center;
      cursor:pointer;
      font-size:20px;
      transition:.25s ease;
    }

    #mentor-mentor-page .video-popup-nav:hover{
      background:var(--gold);
      color:#111;
      border-color:var(--gold);
    }

    #mentor-mentor-page .video-popup-prev{left:14px}
    #mentor-mentor-page .video-popup-next{right:14px}

    #mentor-mentor-page .video-popup-count{
      position:absolute;
      left:50%;
      bottom:14px;
      transform:translateX(-50%);
      z-index:5;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(0,0,0,.56);
      backdrop-filter:blur(10px);
      -webkit-backdrop-filter:blur(10px);
      color:#fff;
      font-size:12px;
      letter-spacing:.08em;
      white-space:nowrap;
    }

    #mentor-mentor-page .video-modal-inner{
      transition:opacity .18s ease, transform .18s ease;
    }

    #mentor-mentor-page .video-modal-inner.switching{
      opacity:.35;
      transform:scale(.985);
    }

    @media(max-width:600px){
      #mentor-mentor-page .video-popup-nav{
        width:42px;
        height:42px;
      }
      #mentor-mentor-page .video-popup-prev{left:8px}
      #mentor-mentor-page .video-popup-next{right:8px}
      #mentor-mentor-page .video-popup-count{
        bottom:10px;
      }
    }

    /* ===== MOBILE STICKY CTA ===== */
    #mentor-mentor-page .mentor-mobile-sticky-cta{
      display:none;
    }

    @media(max-width:768px){
      #mentor-mentor-page{
        padding-bottom:calc(82px + env(safe-area-inset-bottom, 0px));
      }

      #mentor-mentor-page .mentor-mobile-sticky-cta{
        position:fixed;
        left:0;
        right:0;
        bottom:0;
        z-index:1200;
        display:block;
        padding:10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
        pointer-events:none;
      }

      #mentor-mentor-page .mentor-mobile-sticky-cta__button{
        width:100%;
        min-height:56px;
        padding:0 22px;
        border:1px solid rgba(255,255,255,.14);
        border-radius:999px;
        display:flex;
        align-items:center;
        justify-content:center;
        gap:10px;
        color:#111;
        background:linear-gradient(135deg,var(--gold-light),var(--gold));
        box-shadow:0 12px 36px rgba(0,0,0,.38),0 0 0 1px rgba(199,163,90,.12);
        font-family:"DM Sans",sans-serif;
        font-size:15px;
        font-weight:700;
        letter-spacing:.01em;
        text-decoration:none;
        pointer-events:auto;
        -webkit-tap-highlight-color:transparent;
        transition:transform .2s ease,box-shadow .2s ease;
      }

      #mentor-mentor-page .mentor-mobile-sticky-cta__button:active{
        transform:scale(.98);
        box-shadow:0 7px 22px rgba(0,0,0,.32);
      }

      #mentor-mentor-page .mentor-mobile-sticky-cta__button i{
        font-size:17px;
        line-height:1;
      }
    }

  