/* ===== FAQ Section ===== */
.faq-section {
    margin-top: 3rem;
    border-top: 1px solid var(--color-border, #e2e8f0);
    padding-top: 2.5rem;
}

.faq-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    font-family: inherit;
    border-left: 3px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.faq-question:hover,
.faq-item--open .faq-question {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.04) 0%, rgba(236, 72, 153, 0.04) 100%);
    border-left-color: #9333ea;
    color: #7c3aed;
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1;
    color: #9333ea;
    background: rgba(147, 51, 234, 0.08);
    border-radius: 50%;
    transition: transform 0.25s ease, background 0.2s ease;
}

.faq-item--open .faq-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-left: 3px solid #9333ea;
}

.faq-answer p {
    margin: 0;
    padding: 18px 20px;
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.75;
}

.faq-more {
    margin-top: 24px;
    text-align: center;
}

.faq-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 24px;
    border: 1px solid #9333ea;
    color: #9333ea;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    font-family: inherit;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.faq-more-btn:hover {
    background: linear-gradient(135deg, #9333ea 0%, #ec4899 50%, #f97316 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.35);
    text-decoration: none;
}
