/* --- FAQ Accordion Premium --- */
.faq-section-premium {
    padding: 0 0 80px 0;
    /* Eliminated top padding completely */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center everything */
}

.section-title-centered {
    text-align: center;
    font-size: 28px;
    /* Slightly reduced */
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    width: 100%;
}

.faq-accordion-wrapper {
    max-width: 800px;
    width: 100%;
    /* Ensure full width up to max */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item-premium {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-premium:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
}

.faq-trigger[aria-expanded="true"] {
    color: var(--brand-primary, #a855f7);
}

.faq-chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-trigger[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

.faq-content {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.01);
}

.faq-answer {
    padding: 20px 24px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

