/* ═══════════════════════════════════
           FAQ
        ═══════════════════════════════════ */
.faq {
    padding: 120px 0;
    background: var(--surface);
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-header {
    text-align: center;
    margin-bottom: 56px;
}

.faq-header h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 12px;
}

.faq-header p {
    color: var(--ink-light);
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow .25s;
}

.faq-item.open {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 24px;
    background: none;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq-question .icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    color: var(--blue);
    transition: transform .3s, background .2s;
}

.faq-item.open .faq-question .icon {
    transform: rotate(45deg);
    background: var(--blue-pale);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s cubic-bezier(.4, 0, .2, 1);
}

.faq-answer-inner {
    padding: 0 24px 22px;
    font-size: .9rem;
    color: var(--ink-light);
    line-height: 1.7;
}