.faq-cat-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 1.75rem 0 0.5rem;
    padding: 0 0.25rem;
}
.faq-cat-label:first-child { margin-top: 0; }

.faq-item {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
    overflow: hidden;
    background: white;
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
}
.faq-q:hover { background: var(--bg); }

.faq-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--bg);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--muted);
    transition: transform 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
    display: none;
    padding: 0.75rem 1.25rem 1rem;
    font-size: 0.88rem;
    color: var(--text-2);
    line-height: 1.7;
    border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { display: block; }
.faq-a a { color: var(--red); text-decoration: none; font-weight: 600; }
.faq-a a:hover { text-decoration: underline; }

/* JS */
function toggleFaq(btn) {
    btn.closest('.faq-item').classList.toggle('open');
}