/* Page-specific styles: faq. Loaded only on this page.
 * Reuses the site's palette/typography: FreightBig Pro titles in brand blue
 * (#889FC1), Hero New body in grey (#818181), square corners, cream accents. */

.faq-page .faq-section {
    padding: 10px 78px 110px;
}

/* --- Heading (same pattern as .section-header on other pages) --------------- */
.faq-page .faq-head {
    max-width: 760px;
    margin: 0 auto 70px;
}
.faq-page .faq-head .subtitle {
    color: #a0b1ce;
    margin-bottom: 22px;
}
.faq-page .faq-head .title {
    font-size: 70px;
    line-height: 80px;
    letter-spacing: 6px;
    color: #889FC1;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.faq-page .faq-intro {
    font-family: "Hero New Light";
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.27px;
    color: #818181;
}

/* --- Accordion ------------------------------------------------------------- */
.faq-page .faq-wrap {
    max-width: 980px;
    margin: 0 auto;
}
.faq-page .faq-group {
    margin-bottom: 56px;
}
.faq-page .faq-group:last-child {
    margin-bottom: 0;
}
.faq-page .faq-group-title {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 2px;
    color: #889FC1;
    text-transform: uppercase;
    padding-bottom: 18px;
    margin-bottom: 6px;
    border-bottom: 1px solid #D3D9E5;
}

.faq-page .faq-item {
    border-bottom: 1px solid #ececec;
}
.faq-page .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 4px;
    background: transparent;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    color: #4a4a4a;
    font-size: 17px;
    line-height: 26px;
    letter-spacing: 0.4px;
    transition: color 0.25s ease;
}
.faq-page .faq-question:hover,
.faq-page .faq-question[aria-expanded="true"] {
    color: #889FC1;
}

/* + / − indicator drawn in CSS (square, matches the no-radius design) */
.faq-page .faq-icon {
    position: relative;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
}
.faq-page .faq-icon::before,
.faq-page .faq-icon::after {
    content: "";
    position: absolute;
    background-color: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-page .faq-icon::before {      /* horizontal bar */
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}
.faq-page .faq-icon::after {       /* vertical bar -> hidden when open */
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}
.faq-page .faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-page .faq-answer-inner {
    padding: 2px 40px 30px 4px;
}
.faq-page .faq-answer-inner p {
    margin: 0;
    font-family: "Hero New Light";
    font-size: 15px;
    line-height: 30px;
    letter-spacing: 0.27px;
    color: #818181;
}

/* --- CTA ------------------------------------------------------------------- */
.faq-page .faq-cta {
    text-align: center;
    max-width: 760px;
    margin: 90px auto 0;
    padding-top: 70px;
    border-top: 1px solid #ececec;
}
.faq-page .faq-cta .subtitle {
    color: #a0b1ce;
    margin-bottom: 18px;
}
.faq-page .faq-cta-title {
    font-size: 44px;
    line-height: 54px;
    letter-spacing: 2px;
    color: #889FC1;
    margin-bottom: 18px;
}
.faq-page .faq-cta-text {
    font-family: "Hero New Light";
    font-size: 16px;
    line-height: 30px;
    color: #818181;
    margin-bottom: 40px;
}
.faq-page .faq-cta-btn {
    background-color: #889FC1;
    border: 1px solid #889FC1;
    color: #FFFFFF;
    transition: background-color 0.25s ease, color 0.25s ease;
}
.faq-page .faq-cta-btn:hover {
    background-color: transparent;
    color: #889FC1;
}

/* --- Responsive ------------------------------------------------------------ */
@media (max-width: 1199px) {
    .faq-page .faq-section {
        padding: 0 40px 90px;
    }
    .faq-page .faq-head .title {
        font-size: 56px;
        line-height: 66px;
    }
}
@media (max-width: 767px) {
    .faq-page .faq-section {
        padding: 210px 25px 70px;
    }
    .faq-page .faq-head {
        margin-bottom: 50px;
    }
    .faq-page .faq-head .title {
        font-size: 44px;
        line-height: 52px;
        letter-spacing: 4px;
    }
    .faq-page .faq-group-title {
        font-size: 22px;
        line-height: 30px;
    }
    .faq-page .faq-question {
        font-size: 15px;
        line-height: 24px;
        padding: 22px 2px;
        gap: 18px;
    }
    .faq-page .faq-answer-inner {
        padding-right: 10px;
    }
    .faq-page .faq-cta {
        margin-top: 60px;
        padding-top: 50px;
    }
    .faq-page .faq-cta-title {
        font-size: 32px;
        line-height: 40px;
    }
    .faq-page .faq-cta .content-btn {
        width: 100%;
        padding: 34px;
    }
}
@media (max-width: 575px) {
    .faq-page .faq-head .title {
        font-size: 38px;
        line-height: 46px;
    }
}
