/* ===== MENTOTO FAQ + REVIEW SECTION ===== */
  .MENTOTO-fr-wrap{
    margin:34px 0 0;
    display:grid;
    grid-template-columns:1fr;
    gap:26px;
  }
  .MENTOTO-fr-title{
    text-align:center;
    margin:0 0 18px;
  }
  .MENTOTO-fr-title span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:8px 16px;
    border-radius:999px;
    background:linear-gradient(135deg,rgba(255,209,92,.18),rgba(115,76,7,.26));
    border:1px solid rgba(255,214,106,.38);
    color:#fff0b6;
    font-size:11px;
    font-weight:900;
    letter-spacing:.18em;
    text-transform:uppercase;
    box-shadow:0 10px 24px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.08);
  }
  .MENTOTO-fr-title h2{
    margin:14px 0 0!important;
    padding:0!important;
    color:#fff6d4!important;
    font-size:24px!important;
    line-height:1.3!important;
    text-transform:none!important;
    letter-spacing:-.02em!important;
    text-align:center!important;
  }
  .MENTOTO-fr-title h2::before,
  .MENTOTO-fr-title h2::after{
    content:none!important;
  }

  .MENTOTO-faq-list{
    display:grid;
    gap:12px;
  }
  .MENTOTO-faq-item{
    overflow:hidden;
    border-radius:18px;
    background:linear-gradient(180deg,rgba(24,17,5,.96),rgba(8,6,2,.98));
    border:1px solid rgba(255,214,106,.22);
    box-shadow:0 14px 32px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.06);
  }
  .MENTOTO-faq-question{
    width:100%;
    min-height:58px;
    border:0;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:16px 18px;
    background:transparent;
    color:#fff4c9;
    text-align:left;
    font-size:15px;
    line-height:1.35;
    font-weight:900;
  }
  .MENTOTO-faq-question .q{
    display:flex;
    align-items:flex-start;
    gap:10px;
  }
  .MENTOTO-faq-question .q::before{
    content:'✦';
    color:#ffd15c;
    flex:0 0 auto;
    margin-top:1px;
    text-shadow:0 0 12px rgba(255,209,92,.55);
  }
  .MENTOTO-faq-icon{
    flex:0 0 30px;
    width:30px;
    height:30px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#ffd15c,#b47d09);
    color:#171006;
    font-weight:900;
    transition:transform .22s ease;
  }
  .MENTOTO-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .28s ease;
  }
  .MENTOTO-faq-answer p{
    margin:0;
    padding:0 18px 18px 44px;
    color:rgba(255,244,206,.84);
    font-size:14px;
    line-height:1.75;
    text-align:left;
  }
  .MENTOTO-faq-item.is-open .MENTOTO-faq-answer{
    max-height:220px;
  }
  .MENTOTO-faq-item.is-open .MENTOTO-faq-icon{
    transform:rotate(45deg);
  }

  .MENTOTO-review-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
  }
  .MENTOTO-review-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    padding:18px;
    background:linear-gradient(160deg,rgba(25,18,5,.98),rgba(7,5,2,.98));
    border:1px solid rgba(255,214,106,.22);
    box-shadow:0 16px 34px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.06);
  }
  .MENTOTO-review-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:3px;
    background:linear-gradient(90deg,transparent,#ffd15c,#b47d09,transparent);
  }
  .MENTOTO-review-head{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:12px;
  }
  .MENTOTO-review-avatar{
    width:42px;
    height:42px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#ffd15c,#8a6100);
    color:#171006;
    font-weight:900;
    box-shadow:0 10px 18px rgba(0,0,0,.26);
  }
  .MENTOTO-review-name{
    color:#fff6d4;
    font-size:14px;
    font-weight:900;
    margin:0;
  }
  .MENTOTO-review-stars{
    color:#ffd15c;
    font-size:12px;
    letter-spacing:1px;
    margin-top:2px;
  }
  .MENTOTO-review-text{
    margin:0;
    color:rgba(255,244,206,.84);
    font-size:13.5px;
    line-height:1.72;
  }
  .MENTOTO-review-date{
    margin-top:12px;
    color:rgba(255,214,106,.72);
    font-size:11px;
    font-weight:800;
    letter-spacing:.06em;
    text-transform:uppercase;
  }

  @media(max-width:768px){
    .MENTOTO-review-grid{grid-template-columns:1fr}
    .MENTOTO-fr-title h2{font-size:21px!important}
    .MENTOTO-faq-question{font-size:14px;padding:15px 15px}
    .MENTOTO-faq-answer p{padding:0 15px 16px 38px;font-size:13.5px}
  }
