/* ===========================
   FAQ PAGE
=========================== */

.faq-hero{

    padding:160px 20px 100px;

    text-align:center;

    background:
    radial-gradient(circle at top,#8B5CF620,transparent 45%),
    #09090B;

}

.faq-badge{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(139,92,246,.15);

    color:#8B5CF6;

    font-weight:600;

    margin-bottom:25px;

}

.faq-hero h1{

    font-size:58px;

    font-weight:800;

    margin-bottom:20px;

}

.faq-hero p{

    max-width:700px;

    margin:auto;

    color:#cfcfcf;

}

.faq-section{

    padding:80px 20px;

}

.faq-item{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    margin-bottom:20px;

    overflow:hidden;

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    color:#fff;

    padding:22px 25px;

    font-size:18px;

    font-weight:600;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

}

.faq-question span{

    color:#8B5CF6;

    font-size:28px;

    transition:.3s;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}

.faq-answer p{

    padding:0 25px 25px;

    color:#cfcfcf;

    line-height:1.8;

}

.faq-item.active .faq-question span{

    transform:rotate(45deg);

}

.faq-item.active{

    border-color:#8B5CF6;

}

@media(max-width:768px){

.faq-hero h1{

font-size:36px;

}

}