/* ==========================================
   FAQ SECTION
   ========================================== */

.faq-section {
    max-width: 1344px;
    margin: 0 auto;
    padding-inline: 48px;
}

.faq-section h2 {
    font-weight: 800;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: var(--dark-text);
    text-align: center;
    margin: 0 auto 48px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 892px;
    margin: 0 auto;
}

.faq-item {
    background: var(--grey-bg);
    border-radius: 24px;
    overflow: hidden;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding: 32px;
    cursor: pointer;
    user-select: none;
}

.faq-q {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-text);
    letter-spacing: -0.03em;
    flex: 1;
    line-height: 100%;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s;
    display: block;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.55s ease;
}

.faq-item.open .faq-body {
    max-height: 300px;
}

.faq-body-inner {
    padding: 0 32px 32px;
    font-size: 18px;
    font-weight: 500;
    color: var(--grey-60);
    line-height: 1.55;
    letter-spacing: -0.36px;
}

@media (max-width: 1344px) {
    .faq-section {
        padding-inline: 12px;
    }

    .faq-section h2 {
        font-size: 52px;
    }

    .faq-list {
        max-width: none;
    }

    .faq-header {
        gap: 12px;
        border-radius: 24px;
    }

    .faq-item.open .faq-body {
        max-height: 720px;
    }

    .faq-body-inner {
        padding-bottom: 20px;
    }
}

@media (max-width: 650px) {
    .faq-section {
        padding-inline: 8px;
    }

    .faq-section h2 {
        font-size: 32px;
    }

    .faq-header {
        border-radius: 16px;
        padding: 24px 20px;
    }

    .faq-q {
        font-size: 16px;
    }

    .faq-body-inner {
        padding: 0 20px 20px;
        font-size: 14px;
        letter-spacing: -0.03em;
    }
}
