/* =========================
   FAQ PAGE
========================= */

.faq-page{
    padding-top:95px;
    background:#F6F3EE;
    min-height:100vh;
}

/* =========================
   HERO
========================= */

.faq-page .faq-hero{
    padding:25px 0 15px;
}

.faq-page .faq-hero-content{
    max-width:760px;
    margin:0 auto;
    text-align:center;
}

.faq-page .faq-eyebrow{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:7px 14px;

    border-radius:999px;

    background:rgba(47,93,80,.08);

    color:#2F5D50;

    font-size:11px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;

    margin-bottom:14px;
}

.faq-page .faq-hero h1{
    font-size:clamp(32px,4.5vw,52px);
    line-height:.95;
    letter-spacing:-1.5px;
    color:#2F5D50;
    margin-bottom:14px;
    font-weight:900;
}

.faq-page .faq-hero p{
    font-size:15px;
    line-height:1.55;
    color:#5f746b;

    max-width:620px;
    margin:0 auto;
}

/* =========================
   FAQ
========================= */

.faq-page .faq-section{
    padding:18px 0 55px;
}

.faq-page .faq-wrapper{
    max-width:760px;
    margin:0 auto;

    display:flex;
    flex-direction:column;
    gap:12px;
}

.faq-page .faq-item{
    background:#ffffff;

    border:1px solid rgba(47,93,80,.12);
    border-radius:18px;

    overflow:hidden;

    transition:.25s ease;

    box-shadow:
    0 10px 30px rgba(0,0,0,.04);
}

.faq-page .faq-item.active{
    border-color:rgba(47,93,80,.22);

    box-shadow:
    0 18px 40px rgba(0,0,0,.06);
}

.faq-page .faq-question{
    width:100%;

    border:none;
    background:none;

    padding:20px 24px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;

    cursor:pointer;

    text-align:left;
}

.faq-page .faq-question span{
    font-size:17px;
    font-weight:800;
    line-height:1.35;

    color:#2F5D50;
}

.faq-page .faq-question i{
    width:34px;
    height:34px;

    border-radius:50%;

    background:#EAE6DF;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    color:#2F5D50;

    font-size:12px;

    transition:.25s ease;
}

.faq-page .faq-item.active .faq-question i{
    transform:rotate(45deg);

    background:#2F5D50;
    color:#ffffff;
}

.faq-page .faq-answer{
    max-height:0;

    overflow:hidden;

    transition:
    max-height .35s ease,
    padding .35s ease;
}

.faq-page .faq-item.active .faq-answer{
    max-height:300px;

    padding:0 24px 22px;
}

.faq-page .faq-answer p{
    font-size:15px;
    line-height:1.55;

    color:#5f746b;
}

/* =========================
   CTA
========================= */

.faq-page .faq-cta{
    max-width:760px;

    margin:35px auto 0 auto;

    padding:38px 24px;

    border-radius:22px;

    text-align:center;

    color:#ffffff;

    background:linear-gradient(
        135deg,
        #2F5D50 0%,
        #3c7564 100%
    );

    box-shadow:
    0 20px 50px rgba(0,0,0,.12);
}

.faq-page .faq-cta h3{
    font-size:clamp(26px,3.5vw,38px);

    line-height:1;

    letter-spacing:-1px;

    margin-bottom:12px;

    font-weight:900;
}

.faq-page .faq-cta p{
    font-size:15px;
    line-height:1.6;

    color:rgba(255,255,255,.84);

    margin-bottom:20px;
}

.faq-page .faq-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    background:#F6F3EE;
    color:#2F5D50;

    padding:12px 22px;

    border-radius:999px;

    font-size:14px;
    font-weight:800;

    text-decoration:none;

    transition:.25s ease;
}

.faq-page .faq-btn:hover{
    transform:translateY(-3px);

    background:#ffffff;

    color:#2F5D50;
}

/* =========================
   REVEAL
========================= */

.faq-page .reveal{
    opacity:0;
    transform:translateY(30px);

    transition:
    opacity .7s ease,
    transform .7s ease;
}

.faq-page .reveal-visible{
    opacity:1;
    transform:translateY(0);
}

.faq-page .delay-1{
    transition-delay:.15s;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:768px){

    .faq-page{
        padding-top:100px;
    }

    .faq-page .faq-hero{
        padding:20px 0 10px;
    }

    .faq-page .faq-question{
        padding:22px 22px;
        align-items:flex-start;
    }

    .faq-page .faq-question span{
        font-size:17px;
    }

    .faq-page .faq-item.active .faq-answer{
        padding:0 22px 24px;
    }

    .faq-page .faq-answer p{
        font-size:15px;
    }

    .faq-page .faq-question i{
        width:38px;
        height:38px;
        font-size:13px;
    }

    .faq-page .faq-cta{
        padding:42px 22px;
        border-radius:28px;
    }

    .faq-page .faq-cta p{
        font-size:16px;
    }

}