/* ========================================
   FAQ НА ГЛАВНОЙ — blc-faqnew
   ======================================== */

.blc-faqnew {
    padding: 68px 0 76px;
    background: #f5f4ee;
    position: relative;
    overflow: hidden;
}

.blc-faqnew::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,226,168,0.45) 0%, transparent 68%);
    pointer-events: none;
}

.blc-faqnew::after {
    content: '';
    position: absolute;
    bottom: -110px;
    left: -90px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217,179,106,0.18) 0%, transparent 70%);
    pointer-events: none;
}

/* --- Контейнер --- */
.blc-faqnew .faqnew-inner {
    width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

/* --- Заголовок --- */
/* --- Заголовок --- */
.blc-faqnew .faqnew-title {
    font-family: 'Conv_bebasneue_regular', Arial, sans-serif;
    font-size: 72px;
    font-weight: normal;
    color: #2a2d32;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0 0 14px 0;
    margin: 0;
}

.blc-faqnew .faqnew-subtitle {
    font-family: 'Conv_roboto_regular', Arial, sans-serif;
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
    margin: 0 0 40px 0;
    max-width: 760px;
}

/* --- Список --- */
.blc-faqnew .faqnew-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.blc-faqnew .faqnew-item {
    list-style: none !important;
    background: #ffffff;
    border: 1px solid #e6e2d6;
    border-radius: 12px;
    margin: 0 0 12px 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.blc-faqnew .faqnew-item::before,
.blc-faqnew .faqnew-item::after {
    content: none !important;
}

.blc-faqnew .faqnew-item:last-child {
    margin-bottom: 0;
}

.blc-faqnew .faqnew-item:hover {
    border-color: #d9b36a;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.blc-faqnew .faqnew-item.is-open {
    border-color: #092c53;
    box-shadow: 0 10px 30px rgba(9,44,83,0.12);
}

/* --- Кнопка-вопрос --- */
.blc-faqnew .faqnew-question {
    display: block;
    width: 100%;
    margin: 0;
    padding: 20px 60px 20px 66px;
    background: none;
    border: none;
    border-radius: 12px;
    text-align: left;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
    font-family: 'Conv_roboto_regular', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #2a2d32;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    box-shadow: none;
    transition: color 0.2s ease;
}

.blc-faqnew .faqnew-question:hover {
    color: #092c53;
}

.blc-faqnew .faqnew-question:focus {
    outline: none;
}

.blc-faqnew .faqnew-item.is-open .faqnew-question {
    color: #092c53;
}

/* --- Иконка "?" --- */
.blc-faqnew .faqnew-ico {
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: block;
    background-color: #092c53;
    border-radius: 50%;
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: bold;
    font-style: normal;
    color: #ffffff;
    line-height: 32px;
    text-align: center;
    transition: background-color 0.26s ease, transform 0.26s ease;
}

.blc-faqnew .faqnew-ico::before {
    content: '?';
}

.blc-faqnew .faqnew-item.is-open .faqnew-ico {
    background-color: #d9b36a;
    color: #092c53;
    transform: translateY(-50%) scale(1.06);
}

/* --- Шеврон --- */
.blc-faqnew .faqnew-chevron {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
    width: 24px;
    height: 24px;
    display: block;
    font-size: 20px;
    font-style: normal;
    line-height: 24px;
    text-align: center;
    color: #092c53;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
}

.blc-faqnew .faqnew-chevron::before {
    content: '\25BE';
}

.blc-faqnew .faqnew-item.is-open .faqnew-chevron {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
    color: #d9b36a;
}

/* --- Ответ --- */
.blc-faqnew .faqnew-answer {
    overflow: hidden;
    max-height: 0;
    padding: 0 60px 0 66px;
    box-sizing: border-box;
    -webkit-transition: max-height 0.35s ease, padding 0.35s ease;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.blc-faqnew .faqnew-item.is-open .faqnew-answer {
    max-height: 600px;
    padding-bottom: 22px;
}

.blc-faqnew .faqnew-answer p {
    margin: 0;
    padding: 0;
    font-family: 'Conv_roboto_regular', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
}

/* --- Нижняя плашка --- */
.blc-faqnew .faqnew-outro {
    margin-top: 32px;
    padding: 20px 24px;
    background: #ffffff;
    border-left: 4px solid #d9b36a;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.blc-faqnew .faqnew-outro p {
    margin: 0;
    font-family: 'Conv_roboto_regular', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2a2d32;
}

.blc-faqnew .faqnew-outro a {
    color: #092c53;
    text-decoration: none;
    border-bottom: 1px dashed #092c53;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.blc-faqnew .faqnew-outro a:hover {
    color: #d9b36a;
    border-bottom-color: #d9b36a;
}

/* ========================================
   АДАПТАЦИЯ
   ======================================== */

@media (max-width: 1199px) {
    .blc-faqnew .faqnew-inner {
        width: 100%;
        max-width: 1140px;
    }
}

@media (max-width: 991px) {
    .blc-faqnew {
        padding: 48px 0 54px;
    }
    .blc-faqnew .faqnew-title {
        font-size: 54px;
    }
    .blc-faqnew .faqnew-question {
        font-size: 17px;
        padding: 18px 52px 18px 60px;
    }
    .blc-faqnew .faqnew-answer {
        padding: 0 52px 0 60px;
    }
}

@media (max-width: 767px) {
    .blc-faqnew {
        padding: 36px 0 42px;
    }
    .blc-faqnew .faqnew-inner {
        padding: 0 12px;
    }
    .blc-faqnew .faqnew-title {
        font-size: 40px;
    }
    .blc-faqnew .faqnew-subtitle {
        font-size: 15px;
        margin-bottom: 26px;
    }
    .blc-faqnew .faqnew-question {
        font-size: 16px;
        padding: 15px 44px 15px 52px;
    }
    .blc-faqnew .faqnew-ico {
        left: 14px;
        width: 26px;
        height: 26px;
        font-size: 14px;
        line-height: 26px;
    }
    .blc-faqnew .faqnew-chevron {
        right: 14px;
        font-size: 17px;
    }
    .blc-faqnew .faqnew-answer {
        padding: 0 44px 0 52px;
    }
    .blc-faqnew .faqnew-item.is-open .faqnew-answer {
        max-height: 900px;
        padding-bottom: 18px;
    }
    .blc-faqnew .faqnew-answer p {
        font-size: 15px;
    }
    .blc-faqnew .faqnew-outro {
        padding: 16px 18px;
    }
    .blc-faqnew .faqnew-outro p {
        font-size: 15px;
    }
}

@media (max-width: 479px) {
    .blc-faqnew .faqnew-title {
        font-size: 34px;
    }
    .blc-faqnew .faqnew-question {
        font-size: 15px;
        padding: 14px 38px 14px 46px;
    }
    .blc-faqnew .faqnew-answer {
        padding: 0 38px 0 46px;
    }
}