/*----------------------------------------*/
.vliyanie_container,
.tehnika_help,
.prav_vibor_tehniki,
.pochemu_doverie {
    margin: 0 auto;
    color: #fff;
    text-align: center;
    font-family: Arial, sans-serif;
    width: 90%;
    max-width: 1200px;
}

.vliyanie_container h2 {
    padding-top: 50px;
    max-width: 80%;
    margin: 0 auto;
}

/* общий контейнер */
.fokus_block {
    position: relative;
    display: flex;
    justify-content: flex-end; /* картинка справа */
    margin-top: 130px;
}

/* обертка для изображения */
.fokus_image-wrapper {
    position: relative;
    width: 60%;
    max-width: 650px;
    border-radius: 10px;
}

/* размытая подложка */
.fokus_image-wrapper__blur {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.fokus_image-wrapper__blur img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(30px);
}

/* основное изображение */
.fokus_image-wrapper > img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 10px;
    z-index: 1;
    display: block;
}

/* блок текста поверх изображения */
.fokus_text {
    position: absolute;
    top: -20%;
    left: 0;
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    max-width: 100%;
    text-align: left;
    font-size: clamp(0.9em, 1.5vw, 1.2em);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transform: translate(-60%, -20%);
}

/* контейнер статистики (привязан к image-wrapper) */
.fokus_stats {
    position: absolute;
    top: 75%;
    left: 42%;
    width: 0; /* ширина задаётся блокам индивидуально */
    height: 0;
    z-index: 2; /* над фоном, под текстом */
}

/* отдельный блок статистики */
.fokus_stats__item {
    position: absolute; /* индивидуальная позиция задаётся inline стилем */
    display: inline-flex;
    align-items: center;
    white-space: nowrap; /* текст в одну строку */
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(51, 51, 51, 0.8); /* можно менять индивидуально */
    color: #fff;
    font-size: clamp(0.8em, 1.2vw, 1em);
    z-index: 4; /* над подсветкой */
}

/* подсветка-овал позади блока статистики */
.fokus_stats__highlight {
    position: absolute;
    top: 0;
    left: -15%;
    width: 130%;
    height: 100%;
    border-radius: 50%;
    filter: blur(25px);
    z-index: -1;
    transform: rotate(-10deg); /* можно индивидуально менять */
}

/* иконка внутри блока статистики, если нужна */
.fokus_stats__item svg {
    width: clamp(20px, 2vw, 24px);
    height: clamp(20px, 2vw, 24px);
    fill: #fff;
    margin-right: 10px;
}

.fokus_stats p {
    font-size: 22px
}

.fokus_stats__svg {
    position: absolute; /* привязка к .fokus_image-wrapper */
    width: 100px; /* можно индивидуально менять */
    height: 100px;
    z-index: 2; /* под статистикой или над, как нужно */
    pointer-events: none; /* чтобы svg не мешал клику */
}

.fokus_stats__svg {
    top: -41px;
    left: -296px;
    transform: rotate(343deg);
}

.fokus_stats__item--first {
    top: -75px;
    left: -220px;
    transform: rotate(3deg);
}

.fokus_stats__item--second {
    top: 60%;
    left: -180px;
    transform: rotate(-8deg);
}

.fokus_stats__highlight--first {
    background: rgba(255, 100, 50, 0.3);
    width: 130%;
    filter: blur(25px);
    transform: rotate(-10deg);
}

.fokus_stats__highlight--second {
    background: rgba(50, 150, 255, 0.3);
    width: 130%;
    filter: blur(25px);
    transform: rotate(-8deg);
}

@media (max-width: 768px) {

    .vliyanie_container h2 {
        font-size: 20px

    }

    /* Перестановка блоков сверху вниз */
    .fokus_block {

        display: grid;
        grid-template-areas:
            "text"
            "image"
            "stats";
        grid-template-columns: 1fr;
        row-gap: 20px;
        align-items: start;
        justify-items: start;
        margin-top: 30px;
        margin-bottom: 100px;
    }

    .fokus_stats {
        top: 0;
        left: 0;
    }


    /* Текст сверху */
    .fokus_text {
        position: static;
        grid-area: text;
        transform: none;
        width: 85%;
        max-width: 600px;
        text-align: start;
        z-index: 2;
        padding: 15px 20px; /* красивый отступ */
        font-size: 18px;
        display: flex;
        flex-direction: column;

    }

    .fokus_text strong {
        text-align: center;
    }


    .fokus_image-wrapper {
        grid-area: image;
        position: relative;
        width: 80%;
        max-width: 100%;
        border-radius: 10px;
        justify-self: end; /* прижимает элемент к правому краю */
    }

    /* блюр остаётся фоном */
    .fokus_image-wrapper__blur {
        position: absolute;
        inset: -5px; /* выходит за рамку */
        filter: blur(30px);
        z-index: 0;
    }

    .fokus_image-wrapper img {
        position: relative;
        z-index: 1;
    }


    /* Статистика под фото, вертикально */
    .fokus_stats {
        width: auto;
        height: auto;
        grid-area: stats;

        max-width: 600px;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
        margin-top: 20px;
    }

    /* Каждый блок статистики в потоке */
    .fokus_stats__item {
        position: relative;

        left: 0;
        top: 0;
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        border-radius: 10px;
        background: rgba(51, 51, 51, 0.8);
        font-size: 1em;
    }

    /* Подсветки делаем декоративными полосками */
    .fokus_stats__highlight {
        top: auto;
        left: auto;
        width: 70%;


        display: block;
        margin: 5px 0;
        border-radius: 5px;

    }

    .fokus_stats__highlight--second {
        background: rgba(50, 150, 255, 0.3)
    }

    .fokus_stats__highlight--first {
        background: rgba(255, 100, 50, 0.3);
    }

}


.fokus_stats__svg {
    width: 70px;
    height: 70px;

    /*top: -100%;*/
    /*left: 20px;*/
    transform: rotate(344deg);
}


.tehnika_help {
    margin-top: 50px;
}

.tehnika_help h2 {
    margin-bottom: 20px;
}

.tehnika_help__content_block {
    margin-bottom: 80px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
    align-items: flex-start;
}

.tehnika_help__info,
.tehnika_help__feedback {
    position: relative;
    background: #333;
    max-width: 40%;
    padding: 20px 30px;
    border-radius: 10px;
    font-size: 21px;
    line-height: revert-layer;
    text-align: start;
}

.tehnika_help__info img,
.tehnika_help__info img,
.tehnika_help__info img,
.tehnika_help__feedback img {
    position: absolute;
    max-width: 100px;
}

.tehnika_help__feedback img.fokus_stats__Arrow {
    right: 0;
    bottom: 0;
    position: absolute;
    width: clamp(60px, 10vw, 100px);
    transform: translate(50%, 50%) rotate(358deg);
}

.tehnika_help__info img.fokus_stats__down_strelka {
    top: 104%;
    left: 18%;
    transform: rotate(21deg);
    width: 20%;
}

.tehnika_help__info img.fokus_stats__upp_graf {
    z-index: 1;
}

.tehnika_help__info img.fokus_stats__upp_graf,
.tehnika_help__info img.fokus_stats__upp_graf_blur {
    top: 95%;
    left: 35%;
    transform: rotate(338deg);

    width: 25%;
}

.tehnika_help__info img.fokus_stats__Tick {
    right: 0;
    bottom: 0;
    position: absolute;
    width: clamp(60px, 10vw, 100px);
    transform: translate(50%, 50%) rotate(21deg);

}


.tehnika_help__feedback button.more-info-button {
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(218, 218, 218, 0.4); /* цвет свечения */
    display: block;
    margin: 20px auto;
    font-size: 25px;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    transition: box-shadow 0.3s ease;


}

.tehnika_help__feedback button.more-info-button:hover {
    box-shadow: 0 0 20px rgba(218, 218, 218, 0.8); /* цвет свечения */
}

.tehnika_help__feedback h3,
.tehnika_help__info h3 {
    margin-bottom: 5%;
}

.tehnika_help__info img.fokus_stats__upp_graf_blur {
    filter: blur(10px);
    z-index: 0;
}

@media (max-width: 768px) {

    .fokus_stats__svg {

        top: -100%;
        left: 20px;
        transform: rotate(344deg);
    }

    .tehnika_help__content_block {
        flex-direction: column;
        gap: 100px;
    }

    .tehnika_help__info, .tehnika_help__feedback {
        max-width: 100%;
    }

    .tehnika_help__feedback img.fokus_stats__Arrow {
        top: 90%;
        left: 80%;
        transform: rotate(349deg);
        width: 100px;
    }

    .tehnika_help__info img.fokus_stats__down_strelka {
        top: 100%;
        left: 14%;
        transform: rotate(21deg);
        width: 50px;
    }

    .tehnika_help__info img.fokus_stats__upp_graf,
    .tehnika_help__info img.fokus_stats__upp_graf_blur {
        top: 95%;
        left: 25%;
        transform: rotate(338deg);
        width: 60px;
    }


    .tehnika_help__info img.fokus_stats__Tick {
        top: 90%;
        left: 80%;
        transform: rotate(21deg);
        width: 100px;
    }
}


@media (max-width: 480px) {
    .tehnika_help__info img.fokus_stats__Tick,
    .tehnika_help__feedback img.fokus_stats__Arrow {
        width: 75px;
    }
}


.prav_vibor_tehniki__content {
    display: flex;
    flex-direction: column;
}

.prav_vibor_tehniki > h2 {
    margin-bottom: 30px;
}

.prav_vibor_tehniki_info__down_poter,
.prav_vibor_tehniki_info__litl_rashod,
.prav_vibor_tehniki_info__upp_dohod {
    position: relative;
    display: flex;
    max-width: 80%;
    align-items: center;
}

.prav_vibor_tehniki__content {
    gap: 30px;
    padding: 10px 10% 10% 10%;
}

.prav_vibor_tehniki__content > div {
    background: #333;
    border-radius: 15px;
    padding: 20px 30px;
    box-shadow: 0 0 15px rgba(193, 193, 193, 0.29); /* желтое свечение */
    transition: box-shadow 0.3s ease; /* плавность */
}

.prav_vibor_tehniki__content > div:hover {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

.prav_vibor_tehniki__content > div > img {
    width: clamp(60px, 10vw, 100px);
    height: auto;
}

.prav_vibor_tehniki__content img.prav_vibor_tehniki__upp_graf,
.prav_vibor_tehniki__content img.prav_vibor_tehniki__shesterna_upp,
.prav_vibor_tehniki__content img.prav_vibor_tehniki__upp_strelka {
    position: relative;
    z-index: 1;
}

.prav_vibor_tehniki__content img.prav_vibor_tehniki__upp_graf_blur,
.prav_vibor_tehniki__content img.prav_vibor_tehniki__shesterna_upp_blur,
.prav_vibor_tehniki__content img.prav_vibor_tehniki__upp_strelka_blur {
    position: absolute;
    z-index: 0;
    filter: blur(10px);
}


.prav_vibor_tehniki_info__down_poter {
    margin-left: auto; /* уезжает в конец контейнера */
}

.prav_vibor_tehniki__content p {
    font-size: clamp(14px, 2vw, 20px);
    padding-left: 20px;
}

.prav_vibor_tehniki__content h3 {
    font-size: clamp(18px, 2.5vw, 25px);
}

@media (max-width: 768px) {
    .prav_vibor_tehniki__content > div {
        padding: 10px 15px;
    }

    .prav_vibor_tehniki_info__down_poter,
    .prav_vibor_tehniki_info__litl_rashod,
    .prav_vibor_tehniki_info__upp_dohod {
        max-width: 100%;
        flex-direction: column;
    }
}


.pochemu_doverie h2 {
    padding-bottom: 30px;
}

.pochemu_doverie p {
    font-size: clamp(14px, 2vw, 20px);
}


.pochemu_doverie__info {
    padding: clamp(20px, 5vw, 40px) clamp(10px, 4vw, 20px);
    background: #333;
    border-radius: 15px;
    display: flex;
    align-items: center;

    margin: 0 auto;
}

.pochemu_doverie__info img {
    width: clamp(60px, 10vw, 100px);;
    height: auto;
}

.pochemu_doverie__content {
    padding: 10px 10% 1% 10%;
}

.pochemu_doverie__info {
    position: relative;
    margin-bottom: 70px;
}

.pochemu_doverie__info img {
    right: 0;
    bottom: 0;
    position: absolute;
    width: clamp(60px, 10vw, 100px); /* адаптивный размер */
    transform: translate(25%, 50%); /* сдвигаем вниз-вправо на половину размера */

}

.pochemu_doverie__mtk_log_new_blur {
    filter: blur(20px);
    z-index: 0;
}

@media (max-width: 768px) {
    .pochemu_doverie__info img {
        padding: 0;
    }

    .pochemu_doverie__info {
        max-width: 100%;
        flex-direction: column;
    }
}

.pochemu_doverie__image_container {
    position: relative; /* для абсолютного blur внутри image_wrap */
    display: flex;
    justify-content: center;
    gap: 20px; /* расстояние между картинками */
    flex-wrap: nowrap;
    align-items: baseline;

    max-width: 100%;   /* ограничение ширины контейнера */
}

.pochemu_doverie__image_container img {
    max-width: 100%;   /* чтобы картинка не шире контейнера */
    height: auto;      /* сохраняем пропорции */
    object-fit: contain; /* вписывание в границы */
}








.image_wrap {
    position: relative; /* чтобы blur внутри ориентировался на этот блок */
}

.image_wrap:nth-child(1) {
    top: 15px;
}

.image_wrap:nth-child(2) {
    top: -15px;
}

.image_wrap:nth-child(3) {
    top: 20px;

}




/* Основные картинки поверх */
.image_wrap img.pochemu_doverie__img1,
.image_wrap img.pochemu_doverie__img2,
.image_wrap img.pochemu_doverie__img3 {
    width: 300px;
    height: auto;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    display: block;
}

/* Размытые версии под основной картинкой */
.image_wrap img.pochemu_doverie__img1_blur,
.image_wrap img.pochemu_doverie__img2_blur,
.image_wrap img.pochemu_doverie__img3_blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* полностью внутри image_wrap */
    height: auto;
    z-index: 0;
    filter: blur(10px);
    display: block;
}


@media (max-width: 768px) {
    .pochemu_doverie__image_container {
        flex-direction: column;
        align-items: center;
        max-width: 90%;
    }


    .image_wrap:nth-child(1) {
        top: 0;
    }

    .image_wrap:nth-child(2) {
        align-self: flex-end;
        top: 0;
    }

    .image_wrap:nth-child(3) {
        top: 0;

    }
    .pochemu_doverie__content{
        padding: 0;
    }


}

