   /* ===== FAQ ===== */
.faq.style-6 .faq-item {
    background: #fff;
    border: 2px solid #EDE9FE;
    border-radius: 18px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color .3s, box-shadow .3s;
}
.faq.style-6 .faq-item:has(.faq-btn.open) {
    border-color: #6C3FF5;
    box-shadow: 0 8px 24px rgba(108, 63, 245, .10);
}
.faq.style-6 .faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: transparent;
    border: 0;
    padding: 20px 24px;
    text-align: left;
    cursor: pointer;
}
.faq.style-6 .faq-btn .question {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.45;
}
.faq.style-6 .faq-btn.open .question { color: #6C3FF5; }
.faq.style-6 .faq-btn .icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #EDE9FE;
    color: #6C3FF5;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s, background .3s, color .3s;
}
.faq.style-6 .faq-btn.open .icon {
    background: #6C3FF5;
    color: #fff;
    transform: rotate(45deg);
}
.faq.style-6 .faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.faq.style-6 .faq-body.open { max-height: 500px; }
.faq.style-6 .faq-body p {
    margin: 0;
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.75;
    color: #666;
}
@media (max-width: 767px) {
    .faq.style-6 .faq-btn { padding: 16px 18px; }
    .faq.style-6 .faq-btn .question { font-size: 15px; }
    .faq.style-6 .faq-body p { padding: 0 18px 18px; font-size: 14px; }
}