/*
    Дополнительные стили страницы ОПР.
    Основная часть оформления наследуется из:
    1) ../css/style.css
    2) item.css/sout.css

    Здесь оставлены только отличия страницы ОПР.
*/
.opr_sector h2 {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #eef7f1;
    margin-bottom: 14px;
}

.opr_sector p {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 17px;
    color: #eef7f1;
    line-height: 1.5;
    background: none;
}

.splide_icone span {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);

}

.steps {
    background: var(--white) !important;
}

.opr-hero {
    background:
        url("../../image/opr-hero.webp") center / cover no-repeat,
        var(--green-950);
}

.opr-about__image {
    min-height: 560px;
    border-radius: var(--radius-lg);
    background: url(../../image/опр.webp) center / cover no-repeat, var(--gray-200);
    box-shadow: var(--shadow);
}

.opr-contact {
    background:
        url("../../image/opr-contact.webp") center / cover no-repeat,
        var(--green-950);
}

.opr-advantages-strip {
    background: var(--white);
}

.opr-advantages-grid {
    grid-template-columns: repeat(3, 1fr);
}

.choice-grid--four,
.opr-region-grid {
    grid-template-columns: repeat(4, 1fr);
}

.opr-methods-result {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.opr-methods-result div {
    min-height: 72px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    background: var(--white);
    font-weight: 600;
}

.opr-methods-result span {
    color: var(--green-500);
    font-size: 18px;
    font-weight: 900;
}

.opr-benefits {
    background: var(--green-950);
}

@media (max-width: 1100px) {
    .opr-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .choice-grid--four,
    .opr-region-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .opr-methods-result {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .opr-advantages-grid,
    .choice-grid--four,
    .opr-region-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   Методы оценки рисков
========================= */

.opr-methods {
    background: var(--cream);
}

.opr-methods .section-heading {
    margin-bottom: 48px;
}

.opr-methods .class-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.opr-methods .class-card {
    min-height: 260px;
    padding: 30px;

    display: flex;
    flex-direction: column;

    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 4px solid var(--green-500);
    border-radius: var(--radius-md);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.opr-methods .class-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(77, 167, 54, 0.35);
}

.opr-methods .class-card span {
    width: 52px;
    height: 52px;
    margin-bottom: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--green-700);
    color: var(--white);

    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.opr-methods .class-card h3 {
    margin-bottom: 12px;

    color: var(--green-950);
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.opr-methods .class-card p {
    margin: 0;

    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.65;
}

.opr-methods .class-card--one,
.opr-methods .class-card--two,
.opr-methods .class-card--three,
.opr-methods .class-card--four {
    border-top-color: var(--green-500);
}

.opr-methods .class-card--one span,
.opr-methods .class-card--two span,
.opr-methods .class-card--three span,
.opr-methods .class-card--four span {
    background: var(--green-700);
}

/* Нижний результат */

.opr-methods-result {
    margin-top: 28px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.opr-methods-result div {
    min-height: 78px;
    padding: 18px 22px;

    display: flex;
    align-items: center;
    gap: 14px;

    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.opr-methods-result div:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(8, 47, 42, 0.08);
}

.opr-methods-result span {
    flex: 0 0 auto;

    color: var(--green-500);

    font-size: 20px;
    font-weight: 900;
}

@media (max-width: 1100px) {
    .opr-methods .class-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {

    .opr-methods .class-grid,
    .opr-methods-result {
        grid-template-columns: 1fr;
    }

    .opr-methods .class-card {
        min-height: auto;
    }

    .contact h2 {
        font-size: 26px !important;
    }

    h1 {
        font-size: 26px !important;
        ;
    }

    .icon_opr {
        display: none;
    }
}


.opr-importance {
    background: var(--gray-100);
}

.opr-importance__accordion {
    max-width: 920px;
    margin-inline: auto;
}

.opr-importance__accordion details {
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.opr-importance__accordion details:hover {
    box-shadow: 0 10px 30px rgba(8, 47, 42, 0.06);
}

.opr-importance__accordion details[open] {
    border-color: rgba(77, 167, 54, 0.35);
    box-shadow: 0 12px 35px rgba(8, 47, 42, 0.07);
}

.opr-importance__accordion details[open] summary {
    color: var(--green-800);
}

.feature {
    height: 440px;
}

/* =========================================
   FIX: горизонтальный скролл ОПР
========================================= */

.opr-methods .featuresSwiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.opr-methods .swiper-wrapper {
    min-width: 0;
}

.opr-methods .swiper-slide {
    min-width: 0;
    height: auto;
}

/* =========================================
   FIX: форма ОПР
========================================= */

.contact__grid {
    min-width: 0;
}

.contact__copy,
.contact-form {
    min-width: 0;
}

.contact-form label {
    min-width: 0;
}

.contact-form input,
.contact-form textarea {
    min-width: 0;
    max-width: 100%;
}

.contact-form .checkbox-container {
    min-width: 0;
    max-width: 100%;
}

.contact-form .checkbox-container label {
    min-width: 0;
    overflow-wrap: anywhere;
}


@media (max-width: 600px) {

    .contact__grid {
        width: 100%;
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-form {
        width: 100%;
        max-width: 100%;
        grid-template-columns: minmax(0, 1fr);
        padding: 25px 18px;
    }

    .contact__copy {
        width: 100%;
        max-width: 100%;
    }
}

.color_opr {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #f8f9fa !important;
    margin-bottom: 14px;
}

.color_opr_text {
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 17px;
    color: #f8f9fa !important;
    line-height: 1.5;
    background: none !important;
}

.color_none {
    background: none !important;
    color: #f8f9fa !important;
}

.opr-methods .featuresSwiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding-bottom: 50px;
}

.opr-methods .featuresSwiper .swiper-wrapper {
    align-items: stretch;
}

.opr-methods .featuresSwiper .swiper-slide {
    height: auto;

    display: flex;
    justify-content: center;
}

.opr-methods .featuresSwiper .feature {
    width: 100%;
    margin: 0;

    display: flex;
    flex-direction: column;
}