/* ── FAQ ── */
.faq-container { max-width: 780px; margin: 0 auto; }

.faq-item {
    border: 1px solid var(--border-primary);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--card-bg);
    transition: border-color 0.3s ease;
}
.faq-item.active { border-color: rgba(0,191,255,0.4); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    min-height: 58px;
}
.faq-question h3 { font-size: 0.95rem; margin: 0; flex: 1; line-height: 1.4; }
.faq-question i  {
    font-size: 0.85rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 600px; }
.faq-answer p {
    padding: 0 22px 20px;
    font-size: 0.92rem;
    line-height: 1.75;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 44px;
}
.faq-cta p { font-size: 1rem; color: var(--light); margin-bottom: 16px; }

@media (min-width: 768px) {
    .faq-question h3 { font-size: 1.02rem; }
}
