@font-face {
  font-family: 'Avenir Next Cyr';
  src: url('../fonts/AvenirNextCyr-Regular.woff2') format('woff2'), url('../fonts/AvenirNextCyr-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next Cyr';
  src: url('../fonts/AvenirNextCyr-Medium.woff2') format('woff2'), url('../fonts/AvenirNextCyr-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next Cyr';
  src: url('../fonts/AvenirNextCyr-Demi.woff2') format('woff2'), url('../fonts/AvenirNextCyr-Demi.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next Cyr';
  src: url('../fonts/AvenirNextCyr-Bold.woff2') format('woff2'), url('../fonts/AvenirNextCyr-Bold.woff') format('woff');
  font-weight: 750;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next Cyr';
  src: url('../fonts/AvenirNextCyr-Light.woff2') format('woff2'), url('../fonts/AvenirNextCyr-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #18191b;
  --white: #ffffff;
  --grey-light: #f4f4f4;
  --grey: #acacac;
  --accent: #f0a97a;
  --container: 1320px;
  --pad: clamp(28px, 15.625vw, 300px);
  --stage-scale: min(1, calc((100vw - 60px) / 1320));
  --font: 'Avenir Next Cyr', 'Avenir Next', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 768px;
  font-family: var(--font);
  color: var(--black);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
button { border: 0; background: transparent; cursor: pointer; }
.container {
  width: min(var(--container), calc(100vw - 60px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  background: #fff;
  padding: 30px 0 44px;
}
.header-inner { display: flex; flex-direction: column; align-items: center; gap: 60px; }
.header-top {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
}
.socials,
.header-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-actions { justify-self: end; gap: 20px; }
.socials a,
.header-actions a,
.header-actions button,
.footer-socials a {
  width: 28px;
  height: 28px;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding:0;
}

.countdown_timer{ width: auto;display: flex;flex-direction:row;  gap: 0px;}

.socials img,
.header-actions img,
.footer-socials img { width: 28px; height: 28px; object-fit: contain; }
.brand { width: 324px; color: var(--black); margin-top: 60px; }
.main-nav {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1.2;
  white-space: nowrap;
  justify-content: space-between;
}
.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: var(--accent); }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #929292;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 38%, rgba(0,0,0,.16) 100%),
    url('../img/hero-bg-clean.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.hero-stage {
  min-height: 1840px;
  padding: 120px 0 90px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
}
.hero-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}
.hero-main-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 620px;
}
.hero-heading {
  color: #fff;
  text-transform: uppercase;
}
.hero-title {
  margin: 0;
  font-weight: 300;
  font-size: 96px;
  line-height: .95;
  letter-spacing: .03em;
}
.hero-subtitle {
  margin: 26px 0 0;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: .05em;
  font-weight: 750;
}
.hero-date {
  margin: 85px 0 0;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: .05em;
  font-weight: 400;
}
.btn {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 22px;
  text-transform: uppercase;
  text-align: center;
  font-size: 32px;
  line-height: 1.32;
  letter-spacing: .03em;
  font-weight: 600;
}
.btn-light { background: var(--grey-light); color: var(--black); }
.btn-dark { background: var(--black); color: #fff; width: 100%; }
.hero-register {
  min-width: 314px;
  flex: 0 0 auto;
}
.hero-products {
  width: 554px;
  height: auto;
  margin-top: 50px;
  object-fit: contain;
}
.hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.glass-card {
  color: #fff;
  border-radius: 30px;
  background: linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,.1));
  backdrop-filter: blur(24.7px);
  -webkit-backdrop-filter: blur(24.7px);
}
.hero-note {
  width: 100%;
  padding: 30px;
  font-size: 22px;
  line-height: 1.2;
}
.hero-note p { margin: 0; }
.hero-info-grid {
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.hero-info-stack {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 700px; 
}
.info-card {
  border-radius: 30px;
  padding: 30px;
  font-size: 22px;
  line-height: 1.2;
  height: 100%;
}
.info-card h2,
.info-card p { margin: 0; }
.info-card h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 750;
}
.info-card-light { background: var(--grey-light); color: var(--black); }
.info-card-light p { margin-top: 10px; }
.info-card-dark {
  flex: 1;
  background: var(--black);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.info-card-dark ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.info-card-dark li { position: relative; padding-left: 20px; }
.info-card-dark li::before { content: "•"; position: absolute; left: 0; color: var(--accent); }
.steps {
  width: 100%;
  margin-top: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  color: #fff;
}
.step-card {
  /*  flex: 1;*/
    min-width: 0;
    display: flex;
    align-items: flex-start;
    gap: 0;
/*    max-width: 422px;*/
}

.step-card img { width: 72px; height: 60px; margin-top: -10px;}
.step-card h3 { margin: 0 0 14px; font-size: 36px; line-height: 1.2; letter-spacing: .05em; text-transform: uppercase; font-weight: 750; }
.step-card p { margin: 0; font-size: 22px; line-height: 1.2; }

.prizes,
.countdown-section,
.rules-section { background: var(--black); color: #fff; }
.prizes { padding: 120px 0 70px; overflow: hidden; }
.prizes-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.section-title {
  margin: 0;
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 750;
}
.light { color: #fff; }
.prize-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}
.prize-row-main { align-items: flex-start; }
.prize-main-left {
  flex: 1 1 auto;
  min-width: 0;
}
.prize-copy-line {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  min-width: 0;
}
.prize-row-main .prize-copy-line { margin-top: 100px; }
.prize-text { flex: 0 0 380px; min-width: 0; }
.prize-caption { margin: 0 0 10px; font-size: 22px; line-height: 1.2; font-weight: 500; }
.prize-sum { margin: 0; font-size: 36px; line-height: 1.2; letter-spacing: .05em; font-weight: 750; }
.winner-count {
  flex: 0 0 250px;
  margin: 4px 0 0;
  color: var(--accent);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
}
.prize-img {
  position: static;
  flex: 0 0 auto;
  object-fit: contain;
}
.prize-img-main { width: 539px;/* margin-right: 128px;*/ }
.prize-img-second { width: 385px; margin-right: 100px; }
.prize-img-gift { width: 437px; margin-right: 80px; }
.prize-separator {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.45);
  margin: 50px 0;
}
.prize-gift-text { flex-basis: 430px; }
.prize-gift-text p { margin: 0; font-size: 22px; line-height: 1.2; }

.countdown-section { padding: 0 0 60px; }
.countdown-card {
  width: 100%;
  background: var(--grey-light);
  color: var(--black);
  border-radius: 30px;
  padding: 40px 68px;
  display: grid;
  grid-template-columns: 378px 1fr;
  gap: 94px;
  align-items: start;
}
.countdown-card h2 { margin: 0; font-size: 36px; line-height: 1.2; letter-spacing: .05em; text-transform: uppercase; font-weight: 750; }
.countdown { display: flex; align-items: end; gap: 12px; }
.countdown-item { min-width: 128px; display: flex; flex-direction: column-reverse; gap: 4px; }
.countdown-item span { display: block; font-size: 95px; line-height: 1; letter-spacing: .05em; font-weight: 400; }
.countdown-item em { font-style: normal; font-size: 21px; line-height: 1.2; }
.countdown b { font-size: 95px; line-height: .98; font-weight: 300; }

.rules-section { padding: 30px 0 90px; }
.rules-inner { display: grid; grid-template-columns: 470px 1fr; gap: 90px; align-items: start; }
.rules-title { display: grid; grid-template-columns: 72px 1fr; /*gap: 20px;*/ color: #fff; }
.rules-title img { width: 72px;
    height: 60px;
    margin-top: -10px;}

.rules-title h2 { margin: 0; font-size: 36px; line-height: 1.2; letter-spacing: .05em; text-transform: uppercase; font-weight: 750; }
.rules-card { border: 1px solid var(--accent); border-radius: 30px; padding: 40px 68px; color: #fff; }
.rules-card p { margin: 0 0 20px; font-size: 22px; line-height: 1.2; }
.link-accent { display: inline-flex; text-transform: uppercase; color: var(--accent); font-size: 32px; line-height: 1.32; letter-spacing: .03em; font-weight: 600; }

.registration {
  position: relative;
  overflow: hidden;
  background: #eff0f0;
  padding: 90px 0;
  background:url('../img/registration-products.jpg');background-repeat: no-repeat; background-size:cover; 
}
.registration-inner { position: relative; min-height: 840px; display: flex; justify-content: flex-end; }

.registration-visual { position: absolute; left: -300px; top: -5px; width: 850px; }
.registration-form { width: 761px; position: relative; z-index: 1; }
.registration-form h2 { margin: 0 0 60px; font-size: 36px; line-height: 1.2; letter-spacing: .05em; text-transform: uppercase; font-weight: 750; }
.registration-form > label { display: block; margin-bottom: 14px; }
.registration-form > label > span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.registration-form input,
.registration-form select {
  width: 100%;
  height: 60px;
  border: 1px solid var(--black);
  border-radius: 8px;
  background: transparent;
  color: var(--black);
  padding: 8px 18px;
  font-size: 22px;
  line-height: 1.2;
  outline: none;
}
.registration-form input::placeholder { color: var(--grey); opacity: 1; }
.registration-form select { appearance: none; background-image: url('../icons/chevron.svg'); background-repeat: no-repeat; background-position: calc(100% - 18px) 50%; background-size: 21px 14px; }
.checkboxes { margin: 30px 0; display: grid; gap: 30px; }
.check-line { display: grid; grid-template-columns: 12px 1fr; gap: 12px; align-items: start; font-size: 22px; line-height: 1.2; }
.check-line input { width: 12px; height: 12px; margin: 8px 0 0; border-radius: 2px; accent-color: var(--black); }
.check-line a,
.conditions-link { text-decoration: underline; text-underline-position: from-font; }
.conditions-link { display: inline-flex; margin-bottom: 30px; font-size: 22px; line-height: 1.2; }

.footer { background: var(--black); color: #fff; padding: 90px 0; }
.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 58px;
}
.footer-logo { display: block; width: 160px; filter: brightness(0) invert(1); margin-bottom: 60px; }
.footer-contacts { display: flex; flex: 0 0 338px; flex-direction: column; align-items: flex-start; }
.footer-phone { font-size: 24px; line-height: 1.2; letter-spacing: .03em; text-transform: uppercase; font-weight: 750; margin-top: 28px; }
.footer-contacts span { color: var(--grey); font-size: 16px; line-height: 1.2; margin-top: 2px; }
.footer-mail { margin-top: 30px; font-size: 20px; line-height: 1.2; font-weight: 500; }
.footer-socials { margin-top: 74px; }
.footer-socials img { filter: brightness(0) invert(1); }
.footer-main { display: flex; flex: 1 1 auto; min-width: 0; flex-direction: column; gap: 110px; padding-top: 4px; }
.footer-top { display: flex; align-items: flex-start; justify-content: flex-start; gap: 180px; }
.footer-nav { display: flex; flex: 0 0 150px; flex-direction: column; gap: 16px; text-transform: uppercase; font-size: 22px; font-weight: 600; }
.footer-links { display: flex; flex: 0 1 360px; flex-direction: column; gap: 21px; font-size: 20px; line-height: 1.2; }
.footer-links a { text-decoration: underline; text-underline-position: from-font; }
.footer-info { display: flex; flex-direction: column; gap: 40px; max-width: 760px; font-size: 20px; line-height: 1.2; }
.footer-info p { margin: 0; }

@media (max-width: 1500px) {
  .hero-stage { min-height: 1540px; padding: 90px 0 70px; }
  .hero-title { font-size: 76px; }
  .hero-subtitle,
  .hero-date { font-size: 30px; }
  .hero-date { margin-top: 62px; }
  .hero-products { width: 370px; margin-top: 42px; }
  .hero-register { min-width: 260px; }
  .btn { min-height: 56px; font-size: 25px; }
  .hero-note,
  .info-card,
  .step-card p { font-size: 18px; }
  .info-card h2,
  .step-card h3 { font-size: 28px; }
  .info-card-dark { flex-basis: 400px; }
  .steps { gap: 38px; margin-top: 65px; }
  .main-nav { gap: 22px; font-size: 17px; }
  .brand { width: 280px; }
  .header-inner { gap: 60px; }
  .prizes { padding-top: 90px; }
  .section-title { font-size: 50px; }
  .prize-row { gap: 50px; }
  .prize-row-main .prize-copy-line { margin-top: 78px; }
  .prize-text { flex-basis: 340px; }
  .winner-count { flex-basis: 210px; }
  .prize-img-main { width: 400px; margin-right: 70px; }
  .prize-img-second { width: 285px; margin-right: 115px; }
  .prize-img-gift { width: 340px; margin-right: 90px; }
  .countdown-card { grid-template-columns: 320px 1fr; gap: 50px; padding-inline: 50px; }
  .countdown-item { min-width: 100px; }
  .countdown-item span,
  .countdown b { font-size: 74px; }
  .rules-inner { grid-template-columns: 400px 1fr; gap: 55px; }
  .registration-visual { left: -260px; width: 760px; }
  .footer-grid { gap: 38px; }
  .footer-contacts { flex-basis: 300px; }
  .footer-main { gap: 90px; }
  .footer-top { gap: 120px; }
  .footer-nav { flex-basis: 145px; }
}

@media (max-width: 1180px) {
  .hero-stage { min-height: 1280px; padding: 70px 0 60px; gap: 42px; }
  .hero-main { gap: 30px; }
  .hero-title { font-size: 62px; }
  .hero-subtitle,
  .hero-date { font-size: 24px; }
  .hero-subtitle { margin-top: 20px; }
  .hero-date { margin-top: 42px; }
  .hero-products { width: 300px; margin-top: 34px; }
  .hero-register { min-width: 220px; }
  .btn { min-height: 50px; font-size: 20px; }
  .hero-note,
  .info-card,
  .step-card p { font-size: 16px; }
  .info-card { padding: 24px; border-radius: 24px; }
  .info-card h2,
  .step-card h3 { font-size: 23px; }
  .info-card-dark { flex-basis: 340px; gap: 20px; }
  .steps { gap: 24px; margin-top: 48px; }
  .step-card { gap: 14px; }
  .step-card img { width: 36px; height: 26px; flex-basis: 36px; }
  body { min-width: 768px; }
  .site-header { padding-bottom: 34px; }
  .header-top { min-height: 84px; }
  .brand { width: 220px; }
  .socials { gap: 20px; }
  .main-nav { justify-content: center; flex-wrap: wrap; white-space: normal; row-gap: 14px; }
  .prize-row { gap: 34px; }
  .prize-copy-line { gap: 32px; }
  .prize-row-main .prize-copy-line { margin-top: 58px; }
  .prize-text { flex-basis: 300px; }
  .winner-count { flex-basis: 170px; }
  .section-title { font-size: 42px; }
  .prize-caption,
  .winner-count,
  .prize-gift-text p { font-size: 18px; }
  .prize-sum { font-size: 30px; }
  .prize-img-main { width: 320px; margin-right: 0; }
  .prize-img-second { width: 235px; margin-right: 35px; }
  .prize-img-gift { width: 280px; margin-right: 15px; }
  .prize-separator { margin: 40px 0; }
  .countdown-card { display: block; }
  .countdown-card h2 { margin-bottom: 30px; }
  .countdown { justify-content: space-between; }
  .countdown-item { min-width: auto; }
  .rules-inner { grid-template-columns: 1fr; }
  .registration-inner { min-height: 740px; }
  .registration-visual { left: -260px; width: 650px; top: 45px; }
  .registration-form { width: 55%; min-width: 520px; }
  .footer-grid { flex-wrap: wrap; gap: 50px; }
  .footer-contacts { flex: 0 0 260px; }
  .footer-main { flex: 1 1 420px; gap: 55px; }
  .footer-top { gap: 70px; }
  .footer-info { max-width: none; }
}

@media (max-width: 900px) {
  .hero { background-position: 58% top; }
  .hero-stage { min-height: auto; padding: 56px 0 60px; }
  .hero-main { align-items: flex-start; }
  .hero-title { font-size: 54px; }
  .hero-products { width: 260px; }
  .hero-content { margin-top: 260px; }
  .hero-info-grid { flex-direction: column; }
  .info-card-dark { flex: 0 1 auto; }
  .steps { flex-direction: column; gap: 28px; }
  .step-card { max-width: 520px; }
  .prize-row,
  .prize-copy-line { flex-wrap: wrap; }
  .prize-row { align-items: flex-start; }
  .prize-row-main .prize-copy-line { margin-top: 40px; }
  .winner-count { flex-basis: auto; }
  .prize-img-main,
  .prize-img-second,
  .prize-img-gift { margin-right: 0; }
}

/* Mobile layout for Figma node 23:56. Desktop CSS above is untouched. */
.mobile-header,
.mobile-menu {
  display: none;
}

.mobile-br {
  display: none;
}

.pc-br {
 display: block;
}



.hero-products-picture {
  display: block;
}

.hero-products {
  display: block;
  max-width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  :root {
    --container: 100%;
    --mobile-pad: 20px;
  }

  .mobile-br {
    display: block;
  }

.pc-br {
  display: none;
}


  html,
  body {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  body {
    background: #fff;
  }

  .container {
    width: 100%;
    padding-left: var(--mobile-pad);
    padding-right: var(--mobile-pad);
  }

  .site-header {
    position: relative;
    z-index: 15000;
    padding: 0;
    background: #fff;
  }

  .site-header .header-inner,
  .site-header .main-submenu {
    display: none !important;
  }

  .mobile-header {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    min-height: 126px;
    padding: 30px 20px 16px;
    background: #fff;
  }

  .mobile-header__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
  }

  .mobile-brand,
  .mobile-brand img {
    display: block;
    width: 125px;
    height: 28px;
  }

  .mobile-burger {
    position: relative;
    z-index: 15110;
    display: flex;
    width: 28px;
    height: 28px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0;
  }

  .mobile-burger span {
    display: block;
    width: 28px;
    height: 1px;
    background: #18191b;
    transition: transform .24s ease, opacity .24s ease;
  }

  .mobile-burger.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .mobile-burger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-burger.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .mobile-header__icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 28px;
  }

  .mobile-header__quick,
  .mobile-header__socials {
    display: flex;
    align-items: center;
  }

  .mobile-header__quick {
    gap: 24px;
  }

  .mobile-header__socials {
    gap: 30px;
  }

  .mobile-header__icons a,
  .mobile-header__icons img {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    object-fit: contain;
  }

  .mobile-menu {
    position: fixed;
    top: 8px;
    right: 8px;
    left: auto;
    z-index: 15100;
    display: flex;
    flex-direction: column;
    gap: 26px;
    width: min(263px, calc(100vw - 16px));
    height: 400px;
    padding: 32px 30px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(0,0,0,.18);
    color: #18191b;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(calc(100% + 20px));
    transition: opacity .26s ease, visibility .26s ease, transform .26s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .mobile-menu a {
    display: block;
    width: 100%;
  }

  .hero {
    position: relative;
    overflow: hidden;
    background: #eff0f0;
    color: #fff;
  }

  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 780px;
    background: url('../img/hero-bg-clean.png') 56% top / auto 780px no-repeat;
    pointer-events: none;
  }

  .hero-stage {
    position: relative;
    z-index: 1;
    min-height: 0;
    padding: 0 20px 32px;
    gap: 0;
    display: block;
  }

  .hero-main {
    display: block;
    width: 100%;
  }

  .hero-main-left {
    display: block;
    max-width: none;
  }

  .hero-title {
    margin: 0;
    max-width: 330px;
    color: #fff;
    font-weight: 300;
    font-size: 58px;
    line-height: .92;
    letter-spacing: .02em;
  }

  .hero-subtitle {
    margin: 26px 0 0;
    max-width: 310px;
    color: #fff;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: .04em;
    font-weight: 750;
  }

  .hero-date {
    margin: 46px 0 0;
    color: #fff;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: .04em;
    font-weight: 400;
  }

    .hero-products {
        width: 193px;
        margin: 10px 0 0 -20px;
    }

    .hero-register {
        display: inline-flex;
        min-width: 0;
        margin: 20px 0 0;
        padding: 7px 30px;
        border-radius: 8px;
        font-size: 22px;
        line-height: 1.2;
        letter-spacing: .02em;
    }

  .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 0 18px;
    width: 100%;
    margin-top: 30px;
  }

  .hero-note {
    grid-column: 1 / -1;
    width: 100%;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 17px;
    line-height: 1.35;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-note p {
    margin: 0;
    max-width: 392px;
  }

  .hero-info-grid,
  .hero-info-stack {
    display: contents;
  }

    .hero-info-stack .glass-card {
        grid-column: 1;
        grid-row: 2;
        margin-top: 40px;
        padding: 0;
        border-radius: 0;
        background: transparent;
        color: #18191b;
        font-size: 14px;
        line-height: 1.28;
        font-weight: normal;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        height: 150px;
    }
    .hero-info-stack .glass-card p strong{ font-weight: normal;}

  .hero-info-stack .glass-card p {
    margin: 0;
  }

.hero-heading {
    margin-top: 30px;
}

  .info-card-light {
    grid-column: 2;
    grid-row: 2;
    max-height: 210px;
    margin-top: 5px;
    padding: 20px;
    border-radius: 22px;
    background: #18191b;
    color: #fff;
  }

  .info-card-light h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.14;
    letter-spacing: .04em;
  }

  .info-card-light p {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.28;
  }

    .info-card-dark {
        grid-column: 1 / -1;
        grid-row: 3;
        margin-top: -20px;
        min-height: max-content;
        padding: 20px;
        border-radius: 25px;
        background: #fff;
        color: #18191b;
        display: flex;
        flex-direction: column;
        gap: 26px;
        z-index: -20;
        height: auto;
    }

  .info-card-dark h2 {
    margin: 0;
    color: #18191b;
    font-size: 20px;
    line-height: 1.13;
    letter-spacing: .02em;
  }

  .info-card-dark ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0 0 0 22px;
    list-style: disc;
  }

  .info-card-dark li {
    padding-left: 8px;
    font-size: 18px;
    line-height: 1.25;
  }

  .info-card-dark li::before {
    content: none;
  }

    .steps {
        grid-column: 1 / -1;
        grid-row: 4;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 28px 0 0;
        padding: 30px 20px;
        border-radius: 25px;
        background: #18191b;
    }

  .step-card {
    display: grid;
    grid-template-columns: 47px 1fr;
    gap: 10px;
    max-width: none;
    align-items: start;
  }

  .step-card img {
    width: 55px;
    height: 47px;
    margin: 0;
    object-fit: contain;
    margin-top: -12px;
  }

  .step-card h3 {
    margin: 0 0 5px;
    color: #f0a97a;
    font-size: 22px;
    line-height: 1.12;
    letter-spacing: .04em;
  }

  .step-card p {
    margin: 0;
    color: #fff;
    font-size: 17px;
    line-height: 1.25;
  }

  .prizes,
  .countdown-section,
  .rules-section {
    background: #18191b;
  }

  .prizes {
    padding: 30px 0 46px;
    overflow: hidden;
  }

  .prizes-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .section-title {
    margin: 0;
    color: #fff;
    font-size: 58px;
    line-height: .95;
    letter-spacing: .02em;
    font-weight: 300;
    z-index: 10;
  }

  .prize-row,
  .prize-row-main,
  .prize-row-gift {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .prize-main-left,
  .prize-copy-line {
    display: contents;
  }

    .winner-count {
        order: 1;
        margin: 190px 0 -158px;
        color: #f0a97a;
        font-size: 18px;
        line-height: 1.2;
        font-weight: 600;
    }

  .prize-img {
    order: 2;
    align-self: center;
    margin: 0;
  }

    .prize-img-main {
        width: 530px;
        margin-top: -65px;
        margin-left: 70px;
        z-index: 20;
    }

    .prize-text {
        flex-basis: 100%;
    }

  .prize-img-second {
        width: 530px;
        margin-top: -70px;
        margin-left: 70px;
        z-index: 20;
        margin-bottom: 10px;
  }

      .prize-img-gift {
        width: 376px;
        margin-top: -100px;
        margin-left: 50px;
        z-index: 20;
        margin-bottom: 60px;
    }

.last-point-prize{ margin: 140px 0 -140px 0px; z-index: 40;}

.prize-gift-text{}
.prize-gift-text strong{font-size:22px;margin-top:10px;}

  .prize-text,
  .prize-gift-text {
    order: 3;
    width: 100%;
    min-height: 112px;
    padding: 24px 28px;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 18px;
    background: transparent;
    color: #fff;
    margin-top: -40px;
  }

  .prize-caption,
  .prize-gift-text p {
    margin: 0 0 12px;
    color: #fff;
    font-size: 18px;
    line-height: 1.24;
    font-weight: 400;
  }

  .prize-sum {
    margin: 0;
    color: #fff;
    font-size: 24px;
    line-height: 1.16;
    letter-spacing: .02em;
    font-weight: 750;
  }

  .prize-gift-text p {
    margin-bottom: 0;
  }

 /* .prize-gift-text p br:first-of-type {
    display: none;
  }*/

  .prize-separator {
    display: none;
  }

  .prize-row + .prize-row,
  .prize-separator + .prize-row {
    margin-top: 55px;
  }

  .countdown-section {
    padding: 0 0 62px;
  }

  .countdown-card {
    width: 100%;
    display: block;
    padding: 27px 25px 24px;
    border-radius: 20px;
    background: #f4f4f4;
    color: #18191b;
  }

  .countdown-card h2 {
    margin: 0 0 30px;
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: .025em;
    font-weight: 750;
  }

  .countdown {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
  }

  .countdown-item {
    width: auto;
/*    min-width: 63px;*/
    display: flex;
    flex-direction: column-reverse;
    gap: 0px;
  }

.countdown_timer{ width: auto;display: flex;flex-direction:row;  gap: 0px;}

  .countdown-item span {
    display: block;
    font-size: 46px;
    line-height: .95;
    letter-spacing: .02em;
    font-weight: 400;
  }

  .countdown-item em {
    font-size: 13px;
    line-height: 1.15;
  }

  .countdown b {
    font-size: 52px;
    line-height: .95;
    font-weight: 300;
  }

  .rules-section {
    padding: 0 0 62px;
  }

  .rules-inner {
    display: flex;
    flex-direction: column;
    gap: 38px;
  }

   .rules-title {
        display: grid;
        grid-template-columns: 72px 1fr;
        gap: 0px;
        align-items: start;
    }

  .rules-title img {
    width: 72px;
    height: 60px;
    margin: -10px 0 0 0;
  }

  .rules-title h2 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: .035em;
  }

  .rules-card {
    padding: 36px 28px 34px;
    border-radius: 18px;
    border: 1px solid #f0a97a;
    color: #fff;
  }

  .rules-card p {
    margin: 0 0 30px;
    color: #fff;
    font-size: 18px;
    line-height: 1.25;
  }

  .link-accent {
    color: #f0a97a;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: .04em;
  }

  .registration {
    padding: 55px 0 52px;
    background: #eff0f0;
  }

  .registration-inner {
    min-height: 0;
    padding-left: 20px;
    padding-right: 20px;
    justify-content: flex-start;
  }

  .registration-visual {
    display: none;
  }

  .registration-form {
    width: 100%;
    min-width: 0;
    margin: 0;
  }

  .registration-form h2 {
    margin: 0 0 30px;
    color: #18191b;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: .035em;
    font-weight: 750;
  }

  .footer {
    padding: 55px 0 70px;
    background: #18191b;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .footer-contacts {
    display: contents;
  }

  .footer-logo {
    order: 1;
    width: 125px;
    margin: 0 0 52px;
    filter: none;
  }

  .footer-main {
    display: contents;
  }

  .footer-top {
    order: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 38px;
    width: 100%;
    margin-bottom: 54px;
  }

  .footer-nav {
    flex: 0 0 150px;
    gap: 19px;
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
  }

  .footer-links {
    flex: 1 1 auto;
    gap: 20px;
    color: #fff;
    font-size: 12px;
    line-height: 1.25;
  }

  .footer-phone {
    order: 3;
    margin-top: 0;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: .03em;
  }

  .footer-contacts span {
    order: 3;
    margin: 2px 0 20px;
    color: #acacac;
    font-size: 12px;
    line-height: 1.2;
  }

  .footer-mail {
    order: 4;
    margin-top: 0;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
  }

  .footer-socials {
    order: 5;
    margin-top: 50px;
    gap: 29px;
  }

  .footer-socials a,
  .footer-socials img {
    width: 28px;
    height: 28px;
  }

  .footer-info {
    order: 6;
    margin-top: 54px;
    gap: 24px;
    color: #fff;
    font-size: 12px;
    line-height: 1.35;
  }

  .scroll-top-btn {
    width: 52px;
    height: 52px;
    right: 8px;
    bottom: 8px;
  }

  .scroll-top-btn__bg {
    width: 52px;
    height: 52px;
  }

  .scroll-top-btn__arrow {
    left: 12px;
    top: 18px;
    width: 10px;
  }
}
