/* ===================== FAQ page (faq.php) ===================== */
.faqHead { padding: 120px 0 40px; text-align: center; }
.faqHead__h1 {
    margin: 0 auto;
    max-width: 820px;
    color: #fff;
    font-family: "Prosto One", sans-serif;
    font-weight: 400;
    font-size: 46px;
    line-height: 1.15;
}
.faqHead__subtitle {
    margin: 18px auto 0;
    max-width: 640px;
    color: rgba(255,255,255,.6);
    font-size: 18px;
    line-height: 1.55;
}
.faqSection { padding: 20px 0 80px; }
.faqSection__container { max-width: 900px; }
.faqSection .middle-content { margin-top: 28px; color: rgba(255,255,255,.72); line-height: 1.7; }

.faqCta { padding: 0 0 110px; }
.faqCta__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
    padding: 36px 44px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(221,36,11,.16), rgba(255,255,255,.03));
    border: 1px solid rgba(221,36,11,.4);
}
.faqCta__text {
    color: #fff;
    font-family: "Prosto One", sans-serif;
    font-size: 26px;
    line-height: 1.25;
}

@media (max-width: 1023px) {
    .faqHead { padding: 90px 0 30px; }
    .faqHead__h1 { font-size: 33px; }
}
@media (max-width: 767px) {
    .faqHead { padding: 74px 0 24px; }
    .faqHead__h1 { font-size: 27px; }
    .faqHead__subtitle { font-size: 16px; }
    .faqCta { padding: 0 0 64px; }
    .faqCta__box { padding: 26px 22px; }
    .faqCta__text { font-size: 20px; }
}

/* ===================== FAQ accordion (pl_faq slot) ===================== */
.plfaq { max-width: 900px; margin: 0 auto; }
.plfaq__item {
    margin: 0 0 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.03);
    overflow: hidden;
    transition: border-color .25s ease, background .25s ease;
}
.plfaq__item:hover { border-color: rgba(221,36,11,.5); }
.plfaq__item.is-open { border-color: #DD240B; background: rgba(221,36,11,.06); }

.plfaq__q {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    margin: 0;
    padding: 22px 26px;
    background: none;
    border: 0;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: #fff;
}
.plfaq__qtext { flex: 1; font-size: 19px; font-weight: 600; line-height: 1.35; }

.plfaq__icon {
    position: relative;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(221,36,11,.15);
    transition: background .25s ease;
}
.plfaq__item.is-open .plfaq__icon { background: #DD240B; }
.plfaq__icon::before,
.plfaq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: #DD240B;
    transform: translate(-50%, -50%);
    transition: transform .25s ease, opacity .25s ease, background .25s ease;
}
.plfaq__item.is-open .plfaq__icon::before,
.plfaq__item.is-open .plfaq__icon::after { background: #fff; }
.plfaq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.plfaq__item.is-open .plfaq__icon::after { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }

.plfaq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.plfaq__item.is-open .plfaq__a { max-height: 1500px; }
.plfaq__ainner {
    padding: 2px 26px 24px;
    color: rgba(255,255,255,.72);
    font-size: 16px;
    line-height: 1.7;
}
.plfaq__ainner a { color: #DD240B; }
.plfaq__ainner p:first-child { margin-top: 0; }
.plfaq__ainner p:last-child { margin-bottom: 0; }

@media (max-width: 767px) {
    .plfaq__q { padding: 18px; gap: 12px; }
    .plfaq__qtext { font-size: 17px; }
    .plfaq__icon { width: 30px; height: 30px; }
    .plfaq__ainner { padding: 2px 18px 20px; }
}
