/* faq.css */
.faq-section {
    padding: 96px 0;
    background: rgba(139,92,246,0.025);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative; z-index: 1;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 56px; }
.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(139,92,246,0.3); }
.faq-item.open  { border-color: rgba(139,92,246,0.35); }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-align: left;
    cursor: pointer;
    gap: 16px;
}
.faq-icon {
    font-size: 18px;
    color: var(--purple-light);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
    padding: 0 28px 24px;
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.7;
}
