.faq-section-header {
    text-align: center;
    margin-bottom: 56px;
    scroll-margin-top: calc(var(--header-h) + 24px);
}

.faq-section-header .section-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 20px;
    background: rgba(123, 156, 255, 0.15);
    border: 1px solid rgba(123, 156, 255, 0.3);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.faq-section-header .section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text);
    margin: 0 0 14px 0;
    line-height: 1.2;
}

.faq-section-header .section-subtitle {
    font-size: 17px;
    color: var(--muted);
    margin: 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: var(--card);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

    .faq-item:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    }

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    transition: background-color 0.2s ease;
}

    .faq-question:hover {
        background-color: rgba(255, 255, 255, 0.05);
    }

    .faq-question span:first-child {
        flex: 1;
        margin-right: 20px;
    }

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(123, 156, 255, 0.2);
    color: var(--accent);
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.faq-question:hover .faq-icon {
    background: var(--accent);
    color: #ffffff;
}

.faq-answer {
    padding: 0 28px 26px 28px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    animation: faqFadeIn 0.3s ease;
}

    .faq-answer p {
        margin: 0 0 14px 0;
    }

        .faq-answer p:last-child {
            margin-bottom: 0;
        }

    .faq-answer .legal-list {
        margin-top: 10px;
        margin-bottom: 14px;
    }

    .faq-answer a {
        color: var(--accent);
        text-decoration: underline;
        text-underline-offset: 2px;
    }

        .faq-answer a:hover {
            color: #9bb5ff;
        }

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 720px) {
    .faq-section-header {
        margin-bottom: 36px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 20px 20px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 16px 16px;
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 16px 18px 16px;
    }

    .faq-item {
        border-radius: 12px;
        margin-bottom: 10px;
    }
}
