/* ── FAQ Page Hero ────────────────────────────────────────── */
.faq-page-hero {
    padding-top: clamp(100px, 16vw, 180px);
    padding-bottom: clamp(44px, 6vw, 80px);
    border-bottom: 1px solid var(--clr-border);
}
.faq-page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--clr-text);
    margin: 16px 0 16px;
    max-width: 740px;
}
.faq-page-hero__sub {
    font-size: clamp(15px, 1.2vw, 17px);
    color: var(--clr-text-light);
    line-height: 1.7;
    max-width: 540px;
}

/* ── FAQ Accordion (used on FAQ page + embedded on About page) ── */

.faq-list {
    display: flex; flex-direction: column; gap: 12px;
    max-width: 780px; margin: 0 auto;
}
.faq-item {
    background: var(--clr-white-card);
    border-radius: var(--radius-md);
    box-shadow: var(--clr-white-shadow);
    overflow: hidden;
}
.faq-item__question {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    background: none; border: none; cursor: pointer; text-align: left;
    padding: 20px 24px; font-size: 15.5px; font-weight: 700; color: var(--clr-light-text);
    font-family: var(--font-heading);
}
.faq-item__icon {
    flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
    background: var(--clr-light-bg); color: var(--clr-accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 400;
    transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); background: var(--clr-accent); color: #0A0A0A; }
.faq-item__answer {
    max-height: 0; overflow: hidden;
    transition: max-height var(--dur-base) var(--ease-out);
}
.faq-item__answer p {
    padding: 0 24px 22px; font-size: 14.5px; line-height: 1.75; color: var(--clr-light-muted);
}
