.faq {
    background: #F5F5F5;
    position: relative;
}

.faq__wrapper {
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 4.17vw, 80px);
}

.faq__title {
    font-family: PP Neue Montreal;
    font-weight: 500;
    font-style: Medium;
    font-size: clamp(32px, 2.92vw, 56px);
    leading-trim: NONE;
    line-height: 130%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #353535;
    text-align: center;
    margin-bottom: clamp(32px, 3.33vw, 64px);
}

.faq__list {
    width: 100%;
    max-width: clamp(600px, 44.47vw, 854px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.faq__item {
    border-top: 1px solid var(--gray-20);
    width: 100%;
}

.faq__item:first-child {
    border-top: none;
}
.faq__item:last-child {
    border-bottom: 1px solid var(--gray-20);
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: clamp(16px, 1.25vw, 24px) 0;
    gap: clamp(16px, 1.25vw, 24px);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: background-color 0.2s ease;
}

.faq__question:focus-visible {
    outline: 2px solid var(--gray-100);
    outline-offset: -2px;
}

.faq__question-text {
    font-family: PP Neue Montreal;
    font-weight: 400;
    font-style: Regular;
    font-size: clamp(14px, 1.04vw, 20px);
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: var(--gray-100);
    transition: color 0.3s ease;
}

.faq__item:hover .faq__question-text {
    color: var(--gray-90);
}

.faq__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: clamp(24px, 1.67vw, 32px);
    height: clamp(24px, 1.67vw, 32px);
    color: var(--gray-100);
}

.faq__icon-svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item.active .faq__icon-svg {
    transform: rotate(45deg);
}

.faq__answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq__item.active .faq__answer-wrapper {
    grid-template-rows: 1fr;
}

.faq__answer {
    min-height: 0;
}

.faq__answer-text {
    font-family: PP Neue Montreal, sans-serif;
    font-weight: 400;
    font-size: clamp(12px, 0.94vw, 18px);
    line-height: 1.5;
    color: var(--gray-80);
    margin: 0;
    padding-bottom: clamp(24px, 2.5vw, 48px);
}

@media (max-width: 1024px) {
    .faq__title {
        font-size: clamp(28px, 6.5vw, 36px);
        line-height: 120%;
        margin-bottom: clamp(24px, 4vw, 36px);
        text-align: left;
    }

    .faq__question-text {
        font-size: clamp(14px, 3.5vw, 16px);
    }

    .faq__answer-text {
        font-size: clamp(13px, 3.2vw, 14px);
        padding-bottom: clamp(16px, 3vw, 24px);
    }
}