@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 300 700;
  src: url("media/fonts/oswald-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 300 700;
  src: url("media/fonts/oswald-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --red: #c93e3b;
  --black: #050505;
  --soft-black: #0e0e0e;
  --muted: #858585;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: #ffffff;
  font-family: "Oswald", Arial, sans-serif;
  letter-spacing: 0;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.visual-hero {
  position: relative;
  min-height: 450px;
  height: 45vh;
  overflow: hidden;
  background: #000000;
}

.visual-hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2040px;
  max-width: none;
  min-width: 160%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.visual-hero__shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.visual-hero__mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177px;
  max-height: 62%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.offer {
  background: #ffffff;
  padding: 38px 24px 48px;
}

.offer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 336px;
  align-items: center;
  gap: 58px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.offer__title {
  margin: 0;
  color: #000000;
  font-size: 60px;
  line-height: 1.2;
  font-weight: 700;
}

.offer__title span,
.offer__title b {
  color: var(--red);
  font-style: normal;
}

.offer__title b,
.offer__title em {
  font-weight: 300;
}

.offer__title em {
  color: #000000;
  font-style: normal;
}

.offer__actions {
  display: grid;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  width: 100%;
  border: 3px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: #ffffff;
  background: var(--red);
}

.button--primary:hover {
  color: #000000;
  border-color: #000000;
  background: #ffffff;
}

.button--secondary {
  color: var(--red);
  border-color: var(--red);
  background: #ffffff;
}

.button--secondary:hover {
  color: #ffffff;
  background: var(--red);
}

.steps {
  background: #ffffff;
  padding: 58px 24px 28px;
}

.steps__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.steps__title {
  margin: 0 0 50px;
  color: var(--red);
  text-align: center;
  font-size: 40px;
  line-height: 1.25;
  font-weight: 700;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 36px;
}

.step {
  min-width: 0;
  text-align: center;
}

.step img {
  display: block;
  width: 100%;
  max-width: 278px;
  aspect-ratio: 403 / 560;
  margin: 0 auto 28px;
  border-radius: 8px;
  object-fit: cover;
}

.step h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.step p {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 400;
}

.video-cta {
  display: flex;
  justify-content: center;
  background: #ffffff;
  padding: 24px 24px 58px;
}

.button--video {
  width: min(100%, 560px);
  min-height: 76px;
  gap: 12px;
  color: #ffffff;
  border: 0;
  border-radius: 0;
  background: var(--red);
  font-size: 28px;
}

.button--video span {
  font-size: 44px;
  line-height: 0.7;
}

.button--video:hover {
  color: #ffffff;
  background: #a8322f;
}

.social {
  padding: 74px 24px 78px;
  text-align: center;
  color: #ffffff;
  background: var(--soft-black);
}

.social__title {
  margin: 0 0 28px;
  font-size: 42px;
  line-height: 1.5;
  font-weight: 300;
}

.social__title span {
  color: var(--red);
  font-weight: 700;
}

.social__links {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.social__links a {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social__links svg {
  display: block;
  width: 64px;
  height: 64px;
  color: currentColor;
  fill: currentColor;
}

.social__links a:hover {
  color: var(--red);
  transform: translateY(-2px);
}

.ticker {
  height: 70px;
  overflow: hidden;
  color: var(--muted);
  background: #000000;
}

.ticker__track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  gap: 36px;
  animation: ticker 18s linear infinite;
}

.ticker__track span {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  font-size: 20px;
}

.ticker__track span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: rgba(0, 0, 0, 0.88);
}

.video-modal__frame {
  width: min(960px, 92vw);
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-modal__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal__close {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border: 0;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
  font-size: 44px;
  line-height: 1;
}

.status-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.status-card {
  width: min(100%, 430px);
  padding: 46px 54px;
  border: 1px solid #333333;
  border-radius: 20px;
  text-align: center;
  color: #ffffff;
  background: #1a1a1a;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  font-family: Arial, sans-serif;
}

.status-card__spinner {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  border: 4px solid #333333;
  border-top-color: #e63946;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.status-card__title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
}

.status-card__text {
  margin: 0;
  color: #aaaaaa;
  font-size: 15px;
  line-height: 1.5;
}

.status-card.is-ok .status-card__spinner,
.status-card.is-error .status-card__spinner {
  animation: none;
}

.status-card.is-ok .status-card__spinner {
  border-color: #2a9d4f;
}

.status-card.is-error .status-card__spinner {
  border-color: #e63946;
}

.status-card.is-ok .status-card__spinner::after,
.status-card.is-error .status-card__spinner::after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
}

.status-card.is-ok .status-card__spinner::after {
  content: "✓";
  color: #2a9d4f;
}

.status-card.is-error .status-card__spinner::after {
  content: "!";
  color: #e63946;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1199px) {
  .offer__inner {
    grid-template-columns: minmax(0, 1fr) 302px;
    gap: 40px;
  }

  .offer__title {
    font-size: 50px;
  }

  .button {
    font-size: 18px;
  }
}

@media (max-width: 959px) {
  .offer {
    padding-top: 44px;
  }

  .offer__inner {
    grid-template-columns: 1fr;
  }

  .offer__actions {
    width: min(100%, 340px);
  }

  .steps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .visual-hero__video {
    width: 1440px;
    min-width: 230%;
  }

  .offer__title {
    font-size: 30px;
    line-height: 1.32;
  }

  .button {
    min-height: 50px;
    font-size: 15px;
  }

  .steps {
    padding-top: 44px;
  }

  .steps__title {
    margin-bottom: 36px;
    font-size: 30px;
  }

  .steps__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .button--video {
    min-height: 64px;
    font-size: 22px;
  }

  .social__title {
    font-size: 30px;
  }
}

@media (max-width: 479px) {
  .visual-hero {
    min-height: 600px;
    height: 65vh;
  }

  .visual-hero__video {
    width: 1268px;
    min-width: 360%;
  }

  .visual-hero__mark {
    width: 104px;
  }

  .offer {
    padding: 36px 28px 46px;
  }

  .offer__actions {
    width: 100%;
  }

  .status-card {
    padding: 38px 28px;
  }
}
