/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
    max-width: 700px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.faq-question {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--midnight);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
    line-height: 1.4;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    background: var(--primary-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    line-height: 1;
    color: var(--primary);
    transition: transform 0.25s, background 0.2s, color 0.2s;
    font-weight: 300;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary);
    color: white;
}

.faq-answer {
    font-size: 15px;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-top: 12px;
}