/* FAQ Section */

.faq__inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
}

.faq__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-3);
}

.faq__title {
    font-size: var(--text-7xl);
    font-weight: 700;
    color: var(--foreground);
}

.faq__subtitle {
    font-size: var(--text-lg);
    font-weight: 400;
    color: var(--text-secondary);
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.faq__item {
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.faq__item--active {
    background-color: var(--primary-light);
    border-color: var(--primary-alpha-20);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq__question-left {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.faq__number {
    font-size: var(--text-body);
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.faq__question-text {
    font-size: var(--text-body);
    font-weight: 600;
    color: var(--foreground);
}

.faq__chevron {
    width: 20px;
    height: 20px;
    color: var(--text-subtle);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq__item--active .faq__chevron {
    color: var(--primary);
    transform: rotate(180deg);
}

.faq__answer {
    margin-top: var(--space-4);
    overflow: hidden;
}

.faq__answer p {
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
}
