/* =================== БАЗА =================== */
:root {
    --c-dark: #0d263f;
    --c-red: #e72f44;
    --c-red-2: #cc0730;
    --c-blue: #13305b;
    --c-blue-2: #11325b;
    --c-bg: #f1f1f1;
    --c-text: #143056;
    --max: 1050px;

    --radius-xl: 36px;
    --radius-lg: 32px;
    --radius-md: 16px;
    --shadow-1: 0 4px 18px rgba(37, 56, 103, .11);
    --shadow-2: 0 8px 24px rgba(0, 0, 0, .12);
}

.chio-hero h2 {
    font-size: 2.04rem;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--c-text);
    line-height: 1.13;
    letter-spacing: .02em;
}
img {
    max-width: 100%;
    height: auto;
    display: block
}

.main {
    max-width: 1200px;
    margin: 0 auto
}

section {
    width: 100%
}

/* Брейкпоинты: 1200, 1024, 900(планшет), 760(моб), 430 */
@media (max-width: 1200px) {
    :root {
        --max: 1024px
    }
}

@media (max-width: 1024px) {
    :root {
        --max: 960px
    }
}

@media (max-width: 900px) {
    :root {
        --max: 860px
    }
}

@media (max-width: 760px) {
    :root {
        --max: 92vw
    }
}

/* =================== HERO =================== */
.chio-hero {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto
}

.chio-hero__main {
    background: linear-gradient(120deg, #04213a 80%, #0e3563 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-1);
    position: relative;
    overflow: hidden;
    min-height: 493px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.chio-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: var(--radius-lg);
    overflow: hidden
}

.chio-hero__bg img {
    position: absolute;
    right: 0;
    height: 100%;
    min-height: 320px;
    width: auto;
    object-fit: contain;
    filter: brightness(.93) saturate(1.05)
}

.chio-hero__content {
    position: relative;
    z-index: 2;
    padding: 46px 0 38px 48px;
    max-width: 52%;
    min-width: 489px
}

.chio-hero__content h1 {
    font-family: 'Cera Pro', Arial, sans-serif;
    font-weight: 700;
    font-size: 2.1rem;
    color: #fff;
    line-height: 120%;
    margin: 0 0 26px;
    letter-spacing: .01em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .09);
    text-transform: uppercase
}

.chio-hero__desc {
    font-family: 'Cera Pro', Arial, sans-serif;
    color: #dbe2ef;
    font-size: 1.08rem;
    line-height: 1
}

.chio-hero__stats {
    display: flex;
    gap: 18px;
    margin-top: 24px
}

.chio-stat {
    flex: 1 1 0;
    border-radius: var(--radius-md);
    min-height: 110px;
    color: #fff;
    background: var(--c-blue-2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    padding: 18px 16px 18px 22px;
    box-shadow: 0 1px 7px rgba(35, 56, 94, .07)
}

.chio-stat--red {
    background: var(--c-red);
    background-image: url("/images/reklama/bg2-1.png");
    background-position: right top;
    background-repeat: no-repeat;
    background-size: auto 90%;
}

.chio-stat--blue1 {
    background: var(--c-blue-2);
    background-image: url("/images/reklama/bg2-2.png");
    background-position: right top;
    background-repeat: no-repeat;
    background-size: auto 90%
}

.chio-stat--blue2 {
    background: var(--c-blue-2);
    background-image: url("/images/reklama/bg2-3.png");
    background-position: right top;
    background-repeat: no-repeat;
    background-size: auto 90%
}

.chio-stat__num {
    font-family: 'Cera Pro', Arial, sans-serif;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 22px
}

.chio-stat__desc {
    font-size: 14px;
    opacity: .95;
    font-family: 'Montserrat', Arial, sans-serif
}

/* HERO — адаптив */
@media (max-width: 900px) {
    .chio-hero {
        max-width: 98vw
    }

    .chio-hero__main {
        min-height: 325px
    }

    .chio-hero__bg img {
        height: 96%;
        min-height: 100px
    }

    .chio-hero__content {
        padding: 18px 16px 18px 22px;
        max-width: 64%;
        min-width: 190px
    }

    .chio-hero__content h1 {
        font-size: 1.23rem
    }

    .chio-hero__desc {
        font-size: .98rem
    }

    .chio-stat__num {
        font-size: 1.6rem;
        margin-top: 12px
    }
}

@media (max-width: 650px) {
    .chio-hero__main {
        min-height: 250px
    }

    .chio-hero__bg img {
        height: 76%
    }

    .chio-hero__content {
        max-width: 90%
    }

    .chio-hero__content h1 {
        font-size: 1rem;
        margin-bottom: 10px
    }

    .chio-hero__desc {
        font-size: .88rem
    }

    .chio-hero__stats {
        flex-direction: column
    }

    .chio-stat {
        min-height: 75px;
        padding-top: 10px
    }

    .chio-stat__num {
        font-size: 28px;
        margin-bottom: 6px
    }

    .chio-stat__desc {
        font-size: .88rem
    }
}

/* =================== WHY =================== */
.chio-why {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 120px 0 30px;
    gap: 15px;
    max-width: var(--max);
    margin: 0 auto
}

.chio-why__left {
    width: 50%
}

.chio-why__left h2 {
    font-size: 2.04rem;
    font-weight: 700;
    margin-bottom: 23px;
    color: var(--c-text);
    line-height: 1.13;
    letter-spacing: .02em
}

.chio-why__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 21px
}

.chio-why__list li {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    border-radius: 12px
}

.chio-why__icon {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background: linear-gradient(119.48deg, #011D38 19.62%, #03315F 54.93%, #00498C 87.53%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.chio-why__icon img {
    width: 26px;
    height: 26px
}

.chio-why__title {
    font-size: 1.09rem;
    color: var(--c-text);
    font-weight: 700;
    margin-bottom: 5px
}

.chio-why__desc {
    font-size: .98rem;
    color: #46586f;
    font-weight: 400
}

.chio-why__right {
    width: 50%;
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url("/images/reklama/bg-why.svg") right bottom / contain no-repeat;
}

/* адаптив WHY */
@media (max-width: 1150px) {
    .chio-why {
        position: relative
    }

    .chio-why__right {
        position: absolute;
        right: 0;
        bottom: 30px;
        width: 100%;
        background-size: 450px auto
    }
}

@media (max-width: 840px) {
    .chio-why {
        flex-direction: column
    }

    .chio-why__left, .chio-why__right {
        width: 100%
    }

    .chio-why__right {
        min-height: 350px;
        position: relative;
        background-size: auto 100%
    }
}

@media (max-width: 600px) {
    .chio-why__right {
        min-height: 300px;
        background-size: 100% auto
    }
}

/* =================== FAIL ADS =================== */
.chio-failads {
    max-width: var(--max);
    margin: 0 auto;
    padding: 70px 0 0
}

.chio-failads h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 18px;
    line-height: 1.15
}

.chio-failads__accent {
    color: var(--c-red)
}

.chio-failads__grid {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.chio-failads__row {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-bottom: 7px
}

.chio-failads__imgwrap {
    position: relative;
    height: 140px;
    min-width: 49%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 9px rgba(44, 66, 110, .11)
}

.chio-failads__imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.chio-failads__imgtitle {
    position: absolute;
    left: 28px;
    bottom: 38%;
    color: #fff;
    font-size: 1.28rem;
    font-weight: 400;
    font-family: 'Cera Pro', sans-serif
}

.chio-failads__ul .red {
    color: #ff2a2a;
    font-weight: 600
}

.chio-failads__ul li {
    margin-bottom: 10px
}

@media (max-width: 840px) {
    .chio-failads__row {
        flex-direction: column;
        align-items: stretch;
        gap: 10px
    }

    .chio-failads__row:nth-child(2n) {
        flex-direction: column-reverse
    }

    .chio-failads__imgwrap {
        flex: 0;
        max-width: 100%;
        max-height: 200px
    }
}

/* =================== MONITOR CARD =================== */
.chio-monitor-wrap {
    width: 100%;
    max-width: var(--max);
    margin: 100px auto 30px
}

.chio-monitor-card {
    position: relative;
    display: flex;
    border-radius: 28px;
    background: #f6f8f9
}

.chio-monitor-left {
    border-radius: 28px 0 0 0;
    flex: 1 1 53%;
    min-width: 300px;
    min-height: 215px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px 0 0 48px;
    z-index: 2
}

.chio-monitor-title {
    font-size: 2rem;
    font-weight: 700;
    color: #193154;
    line-height: 1.13
}

.chio-monitor-title span {
    color: var(--c-red)
}

.chio-monitor-img {
    min-width: 310px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #f6f8f9;
    border-radius: 0 28px 28px 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end
}

.chio-monitor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.chio-monitor-badges {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -40px;
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 0;
    z-index: 5
}

.chio-badge {
    flex: 1 1 0;
    max-width: 250px;
    margin: 10px;
    font-size: 1.02rem;
    font-weight: 500;
    padding: 18px 14px 14px 18px;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 16px;
    background: #fff;
    color: #153c61;
    border: none
}

.chio-badge--red {
    background: var(--c-red);
    color: #fff
}

.chio-badge--blue {
    background: var(--c-blue);
    color: #fff
}

.chio-badge__icon {
    position: absolute;
    right: 14px;
    bottom: 8px;
    width: 50px;
    height: 50px;
    opacity: .13
}

.chio-badge__icon--geo {
    background: url("/images/reklama/ico-5-1.svg") no-repeat bottom right/50px
}

.chio-badge__icon--target {
    background: url("/images/reklama/ico-5-2.svg") no-repeat bottom right/50px
}

.chio-badge__icon--user {
    background: url("/images/reklama/ico-5-3.svg") no-repeat bottom right/50px
}

@media (max-width: 900px) {
    .chio-monitor-left {
        padding-left: 22px;
        min-width: 180px
    }

    .chio-monitor-title {
        font-size: 1.56rem
    }
}

@media (max-width: 600px) {
    .chio-monitor-card {
        flex-wrap: wrap
    }

    .chio-badge {
        max-width: 100%
    }

    .chio-badge br {
        display: none
    }

    .chio-monitor-left {
        max-width: 45%;
        padding: 23px 0 0 15px;
        min-height: 0
    }

    .chio-monitor-img {
        border-radius: 0 0 0 0;
        max-width: 100%
    }

    .chio-monitor-img img {
        min-height: 118px;
        width: 120%; /* вместо 100% */
        height: auto;
        object-fit: none;

    }

    .chio-monitor-badges {
        position: relative;
        flex-direction: column;
        bottom: 0;
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

@media (max-width: 440px) {
    .chio-monitor-left {
        min-width: 160px;
        max-width: 100%;
    }

    .chio-monitor-title {
        font-size: 1.25rem;
        width: 100%;
    }
}

/* =================== DARK SECTION + RESULTS =================== */
.chio-dark-bg {



    background-image: url(/images/blank1.svg);
    background-position: center 76px;
    background-size: cover;
    background-repeat: no-repeat;

}

.results {
    margin-top: 100px;
    background: var(--c-dark);
    color: #fff;
    padding: 46px 0 40px
}

.results h2 {
    font-size: 1.57rem;
    font-weight: 700;
    margin-bottom: 50px
}

.results__examples {
    display: flex;
    gap: 26px;
    margin-bottom: 30px;
    position: relative
}

.results__case {
    flex: 1 1 0;
    background: #22345c;
    border-radius: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    position: relative;
    min-height: 226px;
    overflow: hidden
}

.results__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center
}

.results__caption {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    text-align: center
}

.results__org {
    margin-left: 30px;
    text-align: left;
    color: #fff;
    font-family: 'Cera Pro', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    margin-top: 15px;
}

.results__stats {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 12px 30px;
    border-radius: 16px 0 16px 0;
    background: #fff;
    color: var(--c-dark);
    font-size: .97em
}

.results__stats span {
    font-weight: 700;
    font-size: 36px
}

.results__stats-first {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.results__stats-second {
    display: flex;
    gap: 10px
}

.results__promise {
    margin-top: 12px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 28px;
    border-radius: 13px;
    padding: 22px 0 18px
}

.results__promise-title {
    margin: 30px 0;
    font-family: 'Cera Pro', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 100%
}

.results__promise ul {
    font-size: .99em;
    color: #fff
}

.results__promise ul li {
    display: flex;
    align-items: center;
    margin: 0 0 20px
}

.results__promise ul li span {
    font-weight: 700;
    font-size: 25px
}

.results__promise ul li img {
    margin-right: 17px
}

.results__left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.results__left img {
    width: 100%
}

.results__right {
    display: flex;
    flex-direction: column;
    width: 50%
}

.results__button {
    background: linear-gradient(0deg, #E40429 0%, #CC0730 100%);
    width: 100%;
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 13px 31px;
    font-size: 1.08em;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 9px rgba(0, 0, 0, .08);
    text-decoration: none;
    text-align: center;
    display: inline-block
}

.button--big {
    padding: 15px 38px;
    font-size: 1.11em
}

@media (max-width: 840px) {
    .results__left {
        display: none
    }
    .results__button{
        padding: 13px 0;
    }
    .results__right {
        width: 100%
    }
}

/* =================== LEAD (как в макете) =================== */
.lead {
    padding: 50px 0;
    background: var(--c-dark)
}

.lead__inner {
    max-width: var(--max);
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2);
    background: var(--c-bg); /* правая светлая часть */
}

/* левая часть */
.lead__left {
    --lead-zoom: 160%; /* масштаб фоновой картинки (зум) */
    position: relative;
    width: 50%;
    min-height: 420px;
    background: var(--lead-bg, none) 50% 50% / var(--lead-zoom) no-repeat;
}

.lead__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6)
}

.lead__copy {
    position: absolute;
    left: 48px;
    top: 56px;
    right: 48px;
    color: #fff;
    z-index: 2;
    max-width: 520px
}

.lead__copy h2 {
    margin: 0 0 18px;
    font-family: 'Cera Pro', Arial, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    line-height: 1.06;
    font-size: 44px
}

.lead__copy p {
    margin: 0;
    color: #e6e6e6;
    font-size: 16px;
    line-height: 1.5;
    max-width: 420px
}

/* правая часть */
.lead__right {
    position: absolute;
    inset: 0 0 0 50%;
    display: flex;
    align-items: center;
    z-index: 1
}

.lead__form {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 36px 56px
}

.lead__field {
    margin-bottom: 14px;
    position: relative
}

.lead__field input {
    display: block;
    width: 100%;
    height: 50px;
    border: 1px solid #e3e6ea;
    background: #fff;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 16px;
    outline: none;
    transition: border-color .15s
}

.lead__field input:focus {
    border-color: #cbd5e1
}

.lead__field--select .lead__arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #a0a6b3;
    pointer-events: none
}

/* чекбокс */
.lead__agree {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 20px;
    color: #707887;
    font-size: 14px
}

.lead__agree input {
    display: none
}

.lead__check {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid #e1e1e1;
    background: #fff;
    position: relative;
    flex: 0 0 18px
}

.lead__agree input:checked + .lead__check {
    background: var(--c-red);
    border-color: var(--c-red)
}

.lead__agree input:checked + .lead__check::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg)
}

/* кнопка */
.lead__btn {
    display: block;
    width: 100%;
    height: 56px;
    border: 0;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(90deg, #e40429 0%, #cc0730 100%);
    box-shadow: 0 6px 16px rgba(228, 10, 40, .25);
    transition: filter .15s
}

.lead__btn:hover {
    filter: brightness(.96)
}

.lead__note {
    margin-top: 10px;
    color: #8d96a8;
    font-size: 12px;
    text-align: center
}

/* полукруглая граница (как в макете) */
.lead__curve {
    position: absolute;
    z-index: 0;
    left: 82%;
    top: 50%;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: var(--c-bg);
    transform: translate(-58%, -50%);
    pointer-events: none;
}

/* LEAD — адаптив */
@media (max-width: 1200px) {
    .lead__left {
        --lead-zoom: 170%
    }

    .lead__curve {
        width: 660px;
        height: 660px;
        left: 81%
    }
}

@media (max-width: 1024px) {
    .lead__left {
        --lead-zoom: 185%;
        background-position: 55% 50%
    }

    .lead__form {
        padding: 32px 40px
    }

    .lead__copy h2 {
        font-size: 40px
    }

    .lead__curve {
        width: 600px;
        height: 600px;
        left: 80%
    }
}

@media (max-width: 900px) {
    .lead__left {
        --lead-zoom: 200%;
        background-position: 58% 50%
    }

    .lead__curve {
        width: 520px;
        height: 520px;
        left: 79%
    }
}

@media (max-width: 760px) {
    .lead {
        padding: 32px 0
    }

    .lead__inner {
        border-radius: 24px
    }

    .lead__curve {
        display: none
    }

    .lead__left, .lead__right {
        position: relative;
        width: 100%
    }

    .lead__right {
        inset: auto
    }

    .lead__left {
        min-height: 240px;
        --lead-zoom: 210%;
        background-position: 50% 35%
    }

    .lead__copy {
        left: 20px;
        right: 20px;
        top: 28px
    }

    .lead__copy h2 {
        font-size: 28px;
        line-height: 1.1
    }

    .lead__copy p {
        font-size: 14px
    }

    .lead__form {
        max-width: 640px;
        padding: 18px 20px
    }

    .lead__field input {
        height: 52px
    }

    .lead__btn {
        height: 56px
    }

    .lead__note {
        font-size: 11px
    }
}

@media (max-width: 430px) {
    .lead__copy h2 {
        font-size: 24px
    }

    .lead__left {
        min-height: 210px;
        --lead-zoom: 220%
    }
}

/* =================== УТИЛИТЫ =================== */
.placeholder-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 32px;
    min-width: 32px
}

@media (max-width: 760px) {
    .results__examples {
        flex-direction: column; /* столбцом */
        gap: 16px; /* расстояние между карточками */
    }

    .results__case {
        width: 100%; /* во всю ширину контейнера */
        min-height: 220px; /* чтобы картинка не была слишком низкой */
    }
}

@media (max-width: 760px) {
    .results__img {
        background-size: cover;
        background-position: center;
    }
}

.chio-hero__bg video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* чтобы видео обрезалось по контейнеру */
}