/* =============================================================
   SECTION — FAQ Accordion
   ============================================================= */

.faq-premium-section {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(225, 169, 115, 0.2);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}
.faq-item.active {
    border-color: var(--brand-bronze);
    background: rgba(225, 169, 115, 0.05);
}

.sparkle-faq-btn {
    width: 100%;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    text-align: right;
    font-size: 1.05rem;
    font-family: inherit;
    transition: 0.3s;
}
.sparkle-faq-btn:hover { color: var(--brand-bronze); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 20px;
    color: #bbb;
    line-height: 1.7;
    font-size: 0.95rem;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    background: rgba(225, 169, 115, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--brand-bronze);
    flex-shrink: 0;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--brand-bronze);
    color: #fff;
}
