* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

.chev {
    position: relative;
    min-height: 100vh;
    /* фиолетовый верх (под героем/условиями) → белый (партнёр/футер) */
    background: linear-gradient(180deg, #9419AC 0px, #9419AC 1600px, #ffffff 2200px, #ffffff 100%);
    overflow: hidden;
    font-family: 'Kulikov Soft', sans-serif;
    color: #4a4a4a;
}

/* Hero background composition */
.chev__bg {
    position: absolute;
    top: 220px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 18%);
}

@media screen and (min-width: 1445px) {
    .chev__bg {
        /*top: -180px;*/
    }
}

.chev__wrap {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px 0;
}

/* ---------- Header ---------- */
.chev-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 36px 50px 0;
}

.chev-header__logos {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.chev-header__logo-k {
    height: 44px;
    width: auto;
}

.chev-header__logo-c {
    height: 36px;
    width: auto;
}

.chev-lang {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    padding: 4px;
}

.chev-lang__item {
    padding: 8px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.2s, color 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chev-lang__item--active {
    background: #ffffff;
    color: #9401aa;
}

.chev-lang-select {
    display: none;
}

/* ---------- Hero titles ---------- */
.chev-hero {
    position: relative;
    margin-top: 20px;
    height: 600px;
}

.chev-title {
    position: absolute;
    transform: rotate(-12deg);
    transform-origin: left center;
    color: #ffffff;
    text-align: center;
}

.chev-title--1 {
    left: 110px;
    top: 110px;
}

.chev-title--2 {
    left: 600px;
    top: 150px;
}

.chev-title__top {
    margin: 0 0 4px;
    font-weight: 600;
    white-space: nowrap;
}

.chev-title--1 .chev-title__top {
    font-size: 36px;
}

.chev-title--2 .chev-title__top {
    font-size: 24px;
}

.chev-title__bottom {
    margin: 0;
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.chev-title--1 .chev-title__bottom {
    font-size: 36px;
    font-weight: 600;
}

.chev-title--2 .chev-title__bottom {
    font-size: 24px;
}

.chev-pill {
    background: #93d500;
    border-radius: 20px;
    padding: 4px 10px;
}

/* ---------- Условия акции ---------- */
.chev-conditions {
    margin-top: 60px;
    background: rgba(240, 240, 240, 0.2);
    border-radius: 24px;
    padding: 50px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.chev-conditions__title {
    margin: 0;
    font-weight: 600;
    font-size: 36px;
    color: #ffffff;
    text-align: center;
}

.chev-date {
    width: 100%;
    background: linear-gradient(90deg, #9c01aa 0%, #ff60ec 100%);
    border-radius: 50px;
    padding: 12px 48px;
    color: #ffffff;
    font-size: 36px;
    text-align: center;
}

.chev-steps {
    display: flex;
    gap: 21px;
    width: 100%;
    justify-content: center;
    align-items: stretch;
}

.chev-step {
    flex: 1 1 0;
    max-width: 432px;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.chev-step__num {
    flex-shrink: 0;
    width: 47px;
    min-height: 46px;
    background: #9c01aa;
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.chev-step__text {
    margin: 0;
    font-size: 20px;
    color: #4a4a4a;
    line-height: 1.25;
}

.chev-step__text b {
    font-weight: 700;
}

/* ---------- Продукты ---------- */
.chev-products {
    margin-top: 250px;
    background: rgba(252, 252, 252, 0.2);
    border: 0.5px solid #a6a6a6;
    border-radius: 24px;
    padding: 50px 16px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.chev-products__title {
    margin: 0;
    font-size: 36px;
    color: #4a4a4a;
    text-align: center;
}

.chev-products__title--ice {
    margin-top: 16px;
}

.chev-products__row {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.chev-tile {
    width: 250px;
    height: 250px;
    border-radius: 42px;
    overflow: hidden;
    flex-shrink: 0;
}

.chev-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---------- 3 победителя ---------- */
.chev-prizes {
    margin-top: 24px;
    background: rgba(252, 252, 252, 0.2);
    border: 0.5px solid #a6a6a6;
    border-radius: 24px;
    padding: 50px 64px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.chev-prizes__text {
    margin: 0;
    flex: 1;
    font-size: 36px;
    color: #ffffff;
    line-height: 1.2;
    background: #9C01AA;
    text-align: center;
    padding: 32px 40px;
    border-radius: 24px;
}

.chev-prizes__img {
    flex-shrink: 0;
    width: 50%;
    max-width: 700px;
    height: auto;
    display: block;
}

/* ---------- Генеральный партнёр ---------- */
.chev-partner {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.chev-partner__title {
    margin: 0;
    font-size: 36px;
    color: #4a4a4a;
    text-align: center;
}

.chev-partner__logo {
    width: 100%;
    background: #f2f2f2;
    border-radius: 24px;
    padding: 24px 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chev-partner__logo img {
    height: 150px;
    width: auto;
    max-width: 580px;
    object-fit: contain;
}

.chev-partner__banner {
    width: 100%;
    display: block;
    border-radius: 16px;
    overflow: hidden;
}

.chev-partner__banner img {
    width: 100%;
    display: block;
}

/* ---------- Публичная оферта ---------- */
.chev-offer-wrap {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.chev-offer {
    background: #a2d23f;
    color: #ffffff;
    font-size: 20px;
    padding: 24px;
    border-radius: 24px;
    text-align: center;
    text-decoration: none;
    min-width: 552px;
    transition: background 0.3s;
}

.chev-offer:hover {
    background: #93cd0c;
}

/* ---------- Футер ---------- */
.chev-footer {
    position: relative;
    margin: 36px 0 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #9c01aa;
    border-radius: 34px 34px 0 0;
}

.chev-footer__inner {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px;
    min-height: 305px;
    display: flex;
    align-items: center;
}

.chev-footer__phone {
    position: absolute;
    right: 0;
    bottom: -80px;
    width: 360px;
    max-width: 30%;
    height: auto;
    z-index: 2;
    pointer-events: none;
    /* опущен на 80px и срезан снизу по нижней кромке футера */
    clip-path: inset(0 0 80px 0);
}

.chev-footer__col {
    display: flex;
    flex-direction: column;
    gap: 41px;
    max-width: 900px;
}

.chev-footer__app {
    display: flex;
    gap: 64px;
    align-items: center;
}

.chev-footer__app-text {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.15;
}

.chev-footer__badges {
    display: flex;
    gap: 12px;
}

.chev-badge {
    border: 1px solid #ffffff;
    border-radius: 500px;
    height: 44px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chev-badge img {
    height: 24px;
    width: auto;
    display: block;
}

.chev-footer__bottom {
    display: flex;
    gap: 46px;
    align-items: center;
}

.chev-socials {
    display: flex;
    gap: 26px;
}

.chev-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-decoration: none;
    width: 64px;
}

.chev-social__icon {
    width: 32px;
    height: 32px;
    border-radius: 50px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chev-social__icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.chev-social__label {
    font-size: 12px;
    line-height: 14px;
    color: #ffffff;
    text-align: center;
}

.chev-footer__site {
    color: #ffffff;
    font-size: 16px;
    text-decoration: underline;
    font-weight: 600;
    white-space: nowrap;
}

.chev-footer__qr {
    width: 95px;
    height: auto;
}

/* ---------- Адаптив ---------- */
@media screen and (max-width: 1200px) {
    .chev-title--1 { left: 60px; top: 90px; }
    .chev-title--2 { left: 46%; top: 140px; }
    .chev-hero { height: 480px; }
}

@media screen and (max-width: 900px) {
    .chev__wrap { padding: 0 16px 0; }
    .chev-header { padding: 20px 16px 16px; position: relative; z-index: 10; }
    .chev-header__logos { gap: 10px; }
    .chev-header__logo-k { height: 24px; }
    .chev-header__logo-c { height: auto; width: 120px; }
    .chev-lang { display: none; }
    .chev-lang-select {
        display: block;
        background: rgba(0, 0, 0, 0.25);
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 50px;
        padding: 8px 16px;
        font-size: 14px;
        font-weight: 600;
        font-family: inherit;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        outline: none;
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        padding-right: 32px;
    }
    .chev-lang-select option {
        background: #9401aa;
        color: #ffffff;
    }

    .chev-hero {
        position: static;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 26px;
        margin: 18px 0 28px;
    }
    .chev-title { position: static; transform: rotate(-6deg); }
    .chev-title__top { white-space: normal; }
    .chev-title__bottom { flex-wrap: wrap; }
    .chev-title--1 .chev-title__top { font-size: 20px; }
    .chev-title--1 .chev-title__bottom { font-size: 20px; }
    .chev-title--2 .chev-title__top { font-size: 14px; }
    .chev-title--2 .chev-title__bottom { font-size: 14px; }

    .chev-conditions { margin-top: calc(100vw * 0.711 - 40px); }
    .chev-conditions__title { font-size: 24px; }
    .chev-date { font-size: 20px; padding: 10px 24px; text-align: center; }
    .chev-steps { flex-direction: column; align-items: center; }
    .chev-step { max-width: 480px; width: 100%; }
    .chev-step__text { font-size: 16px; }

    .chev-products { margin-top: 40px; }
    .chev-products__title { font-size: 22px; }
    .chev-tile { width: 156px; height: 156px; border-radius: 26px; }

    .chev-partner__title { font-size: 22px; }
    .chev-partner__logo img { height: 82px; }

    .chev-prizes { flex-direction: column; padding: 32px 20px; text-align: center; gap: 20px; }
    .chev-prizes__text { font-size: 22px; flex: none; width: 100%; padding: 24px; }
    .chev-prizes__img { width: 100%; max-width: 420px; }

    .chev-offer { min-width: 0; width: 100%; max-width: 480px; }

    .chev-footer__inner { padding: 32px 20px 0; flex-direction: column; align-items: stretch; }
    .chev-footer__col { gap: 24px; }
    .chev-footer__app { flex-direction: column; gap: 16px; align-items: center; text-align: center; }
    .chev-footer__app-text { font-size: 16px; }
    .chev-footer__bottom { flex-direction: column; gap: 24px; }
    .chev-socials { gap: 16px; flex-wrap: wrap; justify-content: center; }
    .chev-footer__phone { position: static; width: 220px; max-width: 60%; margin: 16px auto 0; display: block; clip-path: none; }
}

@media screen and (max-width: 480px) {
    .chev-tile { width: 140px; height: 140px; }
    .chev-conditions { padding: 16px; }
    .chev-products { padding: 16px 10px; }
    .chev-header__logo-k { height: 22px; }
    .chev-header__logos { gap: 8px; }
}
