/* --- FAQ --- */
.faq { background: transparent; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    position: relative;
    z-index: 2;
    background: white; border-radius: 1.25rem;
    border: 2px solid transparent;
    outline: 1px solid var(--border);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.faq-item:hover { border-color: #1f2937; outline-color: transparent; }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem; font-size: 1.0625rem; font-weight: 600; text-align: left;
    color: var(--text-primary); cursor: pointer; background: none; border: none;
    font-family: inherit;
}

.faq-icon { flex-shrink: 0; color: #1f2937; transition: transform 0.2s; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 1.5rem 1.5rem; color: var(--text-secondary); line-height: 1.7; }
