* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.site {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    background:
        radial-gradient(circle at 70% 12%, rgba(255,255,255,.12), transparent 28%),
        #000;
    min-height: 100vh;
}

.header {
    height: 104px;
    padding: 24px 60px 18px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.logo {
    letter-spacing: .18em;
    text-align: center !important;;
}

.logo__main {
    font-size: 34px;
    line-height: 1;
}

.logo__sub {
    margin-top: 9px;
    font-size: 13px;
    letter-spacing: .26em;
    opacity: .8;
}

.nav {
    display: flex;
    gap: 38px;
    padding-top: 14px;
    font-size: 14px;
    text-transform: uppercase;
}

.hero {
    min-height: 610px;
    padding: 36px 60px 42px;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 34px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.hero__left {
    padding-top: 36px;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: 45px;
    line-height: 1.22;
    text-transform: uppercase;
    font-weight: 900;
}

.script {
    margin-bottom: 28px;
    font-size: 46px;
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-weight: 300;
}

.hero p {
    margin: 0 0 32px;
    font-size: 18px;
    line-height: 1.45;
}

.period {
    width: 395px;
    min-height: 92px;
    margin-bottom: 32px;
    padding: 20px 22px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.period__icon {
    width: 44px;
    height: 44px;
    border: 2px solid #fff;
    border-radius: 5px;
    display: grid;
    place-items: center;
    font-size: 24px;
}

.period span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
    font-size: 15px;
}

.period b {
    display: block;
    text-transform: uppercase;
    font-size: 18px;
}

.main-btn,
.submit-btn {
    border: 0;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 900;
}

.main-btn {
    width: 395px;
    height: 66px;
    background: #fff;
    color: #000;
    border-radius: 5px;
    display: grid;
    place-items: center;
    font-size: 16px;
}

.hero__right {
    position: relative;
    padding-top: 0;
    text-align: center;
}

.hero__place {
    margin-top: 0;
    text-transform: uppercase;
    font-size: 23px;
    font-weight: 800;
}

.hero__prize {
    font-size: 49px;
    line-height: 1;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 900;
}

.orange-line {
    width: 315px;
    height: 10px;
    margin: 7px auto 0;
    background: linear-gradient(90deg, transparent, #e56b18 12%, #f07a1d 82%, transparent);
    transform: rotate(-3deg);
    border-radius: 50%;
}

.car {
    background:
        radial-gradient(ellipse at center, rgba(255,255,255,.25), transparent 60%),
        linear-gradient(145deg, #4a4a4a, #111);
    border-radius: 50% 48% 38% 36%;
    position: relative;
    box-shadow: inset 0 0 35px rgba(255,255,255,.18), 0 30px 80px rgba(0,0,0,.9);
}

.car::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 8%;
    bottom: 19%;
    height: 24%;
    background: linear-gradient(90deg, #111, #777, #222);
    border-radius: 999px;
}

.car::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 15%;
    bottom: 6%;
    height: 24%;
    background:
        radial-gradient(circle at 15% 50%, #050505 0 16px, #bbb 17px 24px, #050505 25px 35px, transparent 36px),
        radial-gradient(circle at 85% 50%, #050505 0 16px, #bbb 17px 24px, #050505 25px 35px, transparent 36px);
}

.car--big {
    width: 620px;
    height: 245px;
    margin: 70px 0 0 auto;
}

.car__text {
    position: absolute;
    left: 44%;
    top: 48%;
    font-size: 34px;
    font-weight: 900;
    opacity: .28;
}

.section {
    padding: 0 56px 20px;
}

.section-title {
    margin: 0 0 45px;
    display: flex;
    align-items: center;
    gap: 24px;
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 400;
    text-align: center;
}

.section-title::before,
.section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,.25);
}

.prizes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 27px;
}

.prize-card {
    position: relative;
    height: 395px;
    padding: 52px 18px 20px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 7px;
    text-align: center;
}

.num {
    position: absolute;
    left: 50%;
    top: -28px;
    transform: translateX(-50%);
    width: 59px;
    height: 59px;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 50%;
    background: #000;
    display: grid;
    place-items: center;
    font-size: 30px;
}

.place {
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 9px;
}

.prize-card h3 {
    margin: 0;
    text-transform: uppercase;
    font-size: 28px;
    line-height: 1.08;
}

.prize-card p {
    margin: 4px 0 0;
    font-size: 18px;
}

.prize-card strong {
    display: block;
    margin-top: 7px;
    font-size: 43px;
}

.car--small {
    width: 310px;
    max-width: 100%;
    height: 130px;
    margin: 62px auto 0;
}

.phone-img {
    width: 190px;
    height: 210px;
    margin: 25px auto 0;
    border-radius: 34px;
    background:
        radial-gradient(circle at 30px 30px, #111 0 12px, transparent 13px),
        radial-gradient(circle at 62px 30px, #111 0 12px, transparent 13px),
        radial-gradient(circle at 46px 62px, #111 0 12px, transparent 13px),
        linear-gradient(145deg, #ff8c22, #bf3b00);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 24px;
    color: rgba(0,0,0,.45);
    font-size: 22px;
    font-weight: 900;
}

.cert-img {
    width: 245px;
    height: 120px;
    margin: 28px auto 0;
    background:
        radial-gradient(circle at right, rgba(255,255,255,.25), transparent 34%),
        linear-gradient(145deg, #191919, #050505);
    border: 1px solid rgba(255,255,255,.18);
    display: grid;
    place-items: center;
    font-size: 30px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    margin-top: -15px;
}

.step__top {
    height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.step__top span {
    width: 39px;
    height: 39px;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 21px;
}

.step__icon {
    font-size: 54px;
    line-height: 1;
}

.step p {
    margin: 12px 0 0;
    font-size: 16px;
    line-height: 1.35;
}

.form-section {
    width: 920px;
    max-width: calc(100% - 40px);
    margin: 15px auto 28px;
}

.form-section h2 {
    margin: 0 0 22px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 31px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.field,
.upload {
    display: block;
}

.field span,
.upload > span {
    display: block;
    margin-bottom: 7px;
    font-size: 15px;
}

.field input {
    width: 100%;
    height: 47px;
    padding: 0 15px;
    border: 1px solid rgba(255,255,255,.45);
    background: transparent;
    color: #fff;
    border-radius: 4px;
    font-size: 15px;
}

.field input::placeholder {
    color: rgba(255,255,255,.42);
}

.upload {
    margin-top: 14px;
}

.upload input {
    display: none;
}

.upload__box {
    height: 107px;
    border: 1px dashed rgba(255,255,255,.55);
    border-radius: 4px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;
    color: #fff;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
}

.upload__icon {
    font-size: 29px;
}

.upload small {
    color: rgba(255,255,255,.75);
}

.agree {
    margin: 12px 0;
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.75);
}

.agree a {
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    height: 52px;
    background: #fff;
    color: #000;
    border-radius: 5px;
    font-size: 16px;
}

.safe {
    margin-top: 12px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,.75);
}

.form__message {
    margin-top: 12px;
    text-align: center;
    font-size: 15px;
}

.form__message--success {
    color: #49d17d;
}

.form__message--error {
    color: #ff6d6d;
}

.footer {
    min-height: 104px;
    padding: 26px 56px;
    border-top: 1px solid rgba(255,255,255,.15);
    display: grid;
    grid-template-columns: 260px 1fr 260px;
    align-items: start;
    gap: 20px;
}

.footer .logo {
    text-align: left;
}

.footer .logo__main {
    font-size: 29px;
}

.footer__period {
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
}

.footer__period b {
    display: block;
    margin-top: 4px;
    font-size: 22px;
    font-weight: 400;
}

.footer__socials {
    display: flex;
    justify-content: flex-end;
    gap: 33px;
    font-size: 39px;
}

.footer__links {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    color: rgba(255,255,255,.55);
    font-size: 12px;
}

.cookie {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: 720px;
    margin: 0 auto;
    padding: 17px;
    background: #fff;
    color: #000;
    border-radius: 14px;
    display: none;
    gap: 16px;
    align-items: center;
    z-index: 20;
}

.cookie--show {
    display: flex;
}

.cookie button {
    padding: 12px 18px;
    border: 0;
    border-radius: 9px;
    background: #000;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 980px) {
    .header {
        height: auto;
        padding: 22px 20px;
    }

    .hero {
        padding: 28px 20px 35px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__left {
        padding-top: 10px;
    }

    .period,
    .main-btn {
        width: 100%;
        max-width: 395px;
        margin-left: auto;
        margin-right: auto;
    }

    .car--big {
        width: 100%;
        max-width: 620px;
        margin: 45px auto 0;
    }

    .section {
        padding: 0 20px 20px;
    }

    .prizes,
    .steps {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .prize-card {
        max-width: 410px;
        margin: 0 auto;
        width: 100%;
    }

    .footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer .logo {
        text-align: center;
    }

    .footer__socials {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .header {
        align-items: center;
        gap: 20px;
    }

    .logo__main {
        font-size: 25px;
    }

    .nav {
        gap: 16px;
        font-size: 11px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .script {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero__prize {
        font-size: 34px;
    }

    .orange-line {
        width: 220px;
    }

    .car--big {
        height: 165px;
    }

    .section-title {
        font-size: 23px;
        gap: 12px;
    }

    .form__row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .form-section h2 {
        font-size: 25px;
    }

    .cookie {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 30px;
    }

    .period {
        padding: 16px;
    }

    .period b {
        font-size: 15px;
    }

    .prize-card h3 {
        font-size: 24px;
    }
}

.nav__link,
.footer__links button {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.nav__link {
    text-transform: uppercase;
}

.footer__links button {
    color: rgba(255,255,255,.55);
    font-size: 12px;
}

.nav__link:hover,
.footer__links button:hover {
    opacity: .7;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
}

.modal--show {
    display: block;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.82);
    backdrop-filter: blur(6px);
}

.modal__window {
    position: relative;
    width: min(1120px, calc(100% - 32px));
    height: min(840px, calc(100vh - 32px));
    margin: 16px auto;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.12), transparent 34%),
        #050505;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 18px;
    color: #fff;
    overflow: hidden;
}

.modal__close {
    position: absolute;
    right: 22px;
    top: 18px;
    z-index: 2;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
}

.modal__content {
    height: 100%;
    padding: 58px 72px 60px;
    overflow-y: auto;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,.84);
}

.modal__content h2 {
    margin: 0 0 28px;
    text-transform: uppercase;
    color: #fff;
    font-size: 42px;
    line-height: 1.1;
}

.modal__content h3 {
    margin: 34px 0 10px;
    color: #fff;
    text-transform: uppercase;
    font-size: 24px;
}

.modal__content p {
    margin: 0 0 20px;
}

.modal__content ul,
.modal__content ol {
    padding-left: 24px;
}

.modal__content li {
    margin-bottom: 10px;
}

.modal__content::-webkit-scrollbar {
    width: 8px;
}

.modal__content::-webkit-scrollbar-track {
    background: rgba(255,255,255,.08);
}

.modal__content::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.35);
    border-radius: 999px;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 560px) {
    .modal__window {
        width: 100%;
        height: 100vh;
        margin: 0;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .modal__content {
        padding: 72px 22px 44px;
        font-size: 16px;
    }

    .modal__content h2 {
        font-size: 30px;
    }

    .modal__close {
        right: 16px;
        top: 16px;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.main-btn,
.submit-btn {
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.main-btn:hover,
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(255,255,255,.28);
}

.prize-card {
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.prize-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,.8);
    box-shadow: 0 0 40px rgba(255,255,255,.12);
}

.upload__box {
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.upload__box.is-drag {
    border-color: #fff;
    background: rgba(255,255,255,.08);
    box-shadow: 0 0 30px rgba(255,255,255,.12);
}

.upload__box.is-selected {
    border-color: rgba(73,209,125,.9);
    background: rgba(73,209,125,.08);
}

.hero__right {
    animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.orange-line {
    animation: orangeGlow 2.8s ease-in-out infinite;
}

@keyframes orangeGlow {
    0%, 100% {
        opacity: .75;
        filter: blur(.2px);
    }
    50% {
        opacity: 1;
        filter: blur(1px);
    }
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    right: -160px;
    top: 70px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(255, 124, 31, .22), transparent 62%);
    pointer-events: none;
}

.hero__left,
.hero__right {
    position: relative;
    z-index: 1;
}

.hero-car {
    width: 720px;
    max-width: 100%;
    margin-top: 40px;
    filter:
        drop-shadow(0 40px 55px rgba(0,0,0,.9))
        drop-shadow(0 0 36px rgba(255,255,255,.14));
    animation: carEnter .9s ease both, carFloat 5s ease-in-out infinite .9s;
}

.hero__right::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 45px;
    width: 72%;
    height: 34px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(255,255,255,.22), transparent 70%);
    filter: blur(12px);
    opacity: .55;
}

@keyframes carEnter {
    from {
        opacity: 0;
        transform: translateX(60px) scale(.96);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes carFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.prize-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
    filter: drop-shadow(0 22px 34px rgba(0,0,0,.75));
    transition: transform .25s ease, filter .25s ease;
}

.prize-card:hover .prize-img {
    transform: scale(1.04);
    filter:
        drop-shadow(0 26px 38px rgba(0,0,0,.8))
        drop-shadow(0 0 22px rgba(255,255,255,.12));
}

.prize-img--car {
    width: 320px;
    max-width: 100%;
    margin-top: 58px;
}

.prize-img--phone {
    width: 180px;
    height: 215px;
    margin-top: 25px;
}

.prize-img--cert {
    width: 260px;
    height: 135px;
    margin-top: 26px;
}

.car,
.phone-img,
.cert-img {
    display: none;
}

.hero__right {
    animation: none;
}

@media (max-width: 560px) {
    .hero-car {
        margin-top: 25px;
    }

    .hero__right::after {
        bottom: 20px;
    }

    .prize-img--phone {
        width: 150px;
    }
}

.steps--timeline {
    position: relative;
    margin: 8px auto 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    text-align: center;
}

.steps--timeline::before {
    content: "";
    position: absolute;
    left: 16.7%;
    right: 16.7%;
    top: 26px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 122, 31, .75),
        rgba(255,255,255,.35),
        rgba(255, 122, 31, .75),
        transparent
    );
    box-shadow: 0 0 18px rgba(255, 122, 31, .35);
}

.steps--timeline .step {
    position: relative;
    padding: 0 20px 24px;
}

.step__number {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 25%, rgba(255,255,255,.35), transparent 36%),
        linear-gradient(145deg, #ff8a2a, #b94b05);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 24px;
    font-weight: 900;
    box-shadow:
        0 0 0 8px #000,
        0 0 24px rgba(255,122,31,.55);
}

.step__icon-wrap {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    background:
        radial-gradient(circle at center, rgba(255,122,31,.12), transparent 62%),
        rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.step__icon-wrap img {
    max-width: 125px;
    max-height: 125px;
    object-fit: contain;
    filter: drop-shadow(0 22px 28px rgba(0,0,0,.65));
}

.steps--timeline .step:hover .step__icon-wrap {
    transform: translateY(-6px) scale(1.03);
    border-color: rgba(255,122,31,.45);
    box-shadow:
        0 0 34px rgba(255,122,31,.18),
        inset 0 0 22px rgba(255,122,31,.08);
}

.steps--timeline .step h3 {
    margin: 0 0 10px;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 900;
}

.steps--timeline .step p {
    max-width: 260px;
    margin: 0 auto;
    color: rgba(255,255,255,.68);
    font-size: 16px;
    line-height: 1.42;
}

@media (max-width: 980px) {
    .steps--timeline {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .steps--timeline::before {
        left: 50%;
        right: auto;
        top: 0;
        bottom: 0;
        width: 1px;
        height: auto;
        background: linear-gradient(
            180deg,
            transparent,
            rgba(255,122,31,.65),
            rgba(255,255,255,.28),
            rgba(255,122,31,.65),
            transparent
        );
    }

    .steps--timeline .step {
        padding-bottom: 0;
    }

    .step__number {
        box-shadow:
            0 0 0 8px #000,
            0 0 24px rgba(255,122,31,.55);
    }
}

@media (max-width: 980px) {
    .hero {
        min-height: calc(100vh - 90px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 18px;
    }

    .hero__right {
        order: -1;
        padding-top: 10px;
    }

    .hero__left {
        padding-top: 0;
    }

    .hero-car {
        width: 112%;
        max-width: none;
        margin: 18px 0 0 -6%;
    }

    .hero__place {
        font-size: 18px;
    }

    .hero__prize {
        font-size: 34px;
    }
}

@media (max-width: 560px) {
    .hero {
        padding-top: 18px;
    }

    .hero-car {
        width: 122%;
        margin-left: -11%;
        margin-top: 12px;
    }

    .hero h1 {
        font-size: 31px;
    }

    .script {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .hero p {
        margin-bottom: 18px;
    }

    .period {
        min-height: 74px;
        margin-bottom: 18px;
    }
}