/* ===== СЕКЦИЯ FAQ ===== */
.faq-section {
    background: #EFEFEE;
    padding: 60px 0;
}

.faq-container {
    max-width: 1030px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-title {
    color: #3E1A3E;
    font-size: 36px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    text-align: center;
    margin: 0 0 40px 0;
    line-height: 1.2;
}

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

/* ===== ЭЛЕМЕНТ FAQ ===== */
.faq-item {
    border-radius: 12px;
    transition: background 0.3s ease;
    overflow: hidden;
    border: none !important;
    outline: none !important;
}

/* ===== КНОПКА ВОПРОСА ===== */
.faq-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 12px 12px 24px;
    cursor: pointer;
    min-height: 54px;
    gap: 12px;
    user-select: none;
    background: none;
    border: none !important;
    font-family: inherit;
    text-align: left;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    transition: padding 0.3s ease;
    box-shadow: none !important;
    text-decoration: none !important;
}

.faq-item-header:focus,
.faq-item-header:focus-visible,
.faq-item-header:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

.faq-item-header::-moz-focus-inner {
    border: 0;
}

.faq-item-active .faq-item-header {
    padding-bottom: 16px;
}

.faq-item-question {
    color: #715573;
    font-size: 18px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    flex: 1;
}

.faq-item-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    background: #EFEFEE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.faq-item-icon svg {
    width: 18px;
    height: 18px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.faq-item-active .faq-item-icon svg {
    transform: rotate(45deg);
}

/* ===== ТЕЛО ОТВЕТА ===== */
.faq-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: max-height;
}

.faq-item-body-inner {
    padding: 0 24px 32px 24px;
}

.faq-item-answer {
    color: rgba(113, 85, 115, 0.50);
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    line-height: 1.6;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 767px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-container {
        padding: 0 12px;
    }
    
    .faq-title {
        font-size: 22px;
        margin-bottom: 24px;
    }
    
    .faq-item-header {
        padding: 12px 12px 12px 24px;
    }
    
    .faq-item-question {
        font-size: 15px;
    }
    
    .faq-item-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
    }
    
    .faq-item-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .faq-item-answer {
        font-size: 13px;
    }
    
    .faq-item-body-inner {
        padding: 0 24px 24px 24px;
    }
}