/* ── FAQ Hero ───────────────────────────────────────────── */
section.faq-hero {
    background: linear-gradient(135deg, #591F8E, #7B2FBD);
    color: white;
    padding: 5rem 2rem 4rem;
    border: none;
}

.faq-hero-inner {
    max-width: 860px;
    margin: 0 auto;
}

section.faq-hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.5rem;
    color: white;
}

section.faq-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    line-height: 1.75;
    max-width: 680px;
    margin: 0;
    color: white;
}

/* ── FAQ Body ───────────────────────────────────────────── */
section.faq-body {
    padding: 4rem 2rem;
    background: white;
    border: none;
}

.faq-body-inner {
    max-width: 860px;
    margin: 0 auto;
}

.faq-section {
    margin-bottom: 3.5rem;
}

.faq-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #591F8E;
    margin: 0 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #F2E8FF;
    text-align: left;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ── Accordion items ────────────────────────────────────── */
details.faq-item {
    background: #F9F4FF;
    border: 1px solid rgba(89, 31, 142, 0.12);
    border-left: 3px solid #591F8E;
    border-radius: 0.75rem;
    overflow: hidden;
}

details.faq-item summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
}

details.faq-item summary::-webkit-details-marker {
    display: none;
}

details.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: #591F8E;
    flex-shrink: 0;
    line-height: 1;
}

details.faq-item[open] > summary::after {
    content: '−';
}

details.faq-item[open] > summary {
    border-bottom: 1px solid rgba(89, 31, 142, 0.1);
}

.faq-answer {
    padding: 1.25rem 1.5rem;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ── FAQ CTA ────────────────────────────────────────────── */
section.faq-cta {
    background: #F2E8FF;
    padding: 4rem 2rem;
    text-align: center;
    border: none;
}

.faq-cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

section.faq-cta h2 {
    color: #591F8E;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1rem;
    text-align: center;
}

section.faq-cta p {
    color: #64748b;
    font-size: 1.05rem;
    margin: 0 0 2rem;
}

.faq-cta-btn {
    display: inline-block;
    background: #591F8E;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.faq-cta-btn:hover {
    background: #7B2FBD;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    section.faq-hero h1 {
        font-size: 2rem;
    }
}
