/* =========================================================
   V35.4 FAQ Premium
   ========================================================= */

.v35-faq-pro{
  position:relative;
  overflow:hidden;
}

.v35-faq-pro::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 10%, rgba(0,229,255,.12), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(255,90,95,.10), transparent 34%);
  pointer-events:none;
}

.v35-faq-pro .container{
  position:relative;
  z-index:1;
  max-width:920px;
}

.v35-faq-list{
  display:grid;
  gap:14px;
  margin-top:34px;
}

.v35-faq-item{
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(15,18,32,.96), rgba(8,10,18,.98));
  border:1px solid rgba(255,255,255,.13);
  box-shadow:0 20px 70px rgba(0,0,0,.28);
}

.v35-faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:20px 22px;
  border:0;
  background:transparent;
  color:#fff;
  text-align:left;
  font-size:16px;
  font-weight:800;
  cursor:pointer;
}

.v35-faq-question span:first-child{
  line-height:1.35;
}

.v35-faq-plus{
  flex:0 0 36px;
  width:36px;
  height:36px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.13);
  font-size:22px;
  transition:.22s ease;
}

.v35-faq-item.open .v35-faq-plus{
  transform:rotate(45deg);
  background:linear-gradient(135deg,#00E5FF,#6C63FF);
}

.v35-faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .32s ease;
}

.v35-faq-answer-inner{
  padding:0 22px 22px;
  color:#cbd5e1;
  line-height:1.7;
  font-size:15px;
  text-align:left;
}

.v35-faq-item.open{
  border-color:rgba(0,229,255,.34);
  box-shadow:
    0 24px 80px rgba(0,0,0,.36),
    0 0 32px rgba(0,229,255,.11);
}

@media(max-width:640px){
  .v35-faq-question{
    padding:18px;
    font-size:15px;
  }

  .v35-faq-answer-inner{
    padding:0 18px 18px;
    font-size:14px;
  }
}
