:root {
  --screen-width: 1920px;
  --screen-height: 1080px;
  --logo-top: 30px;
  --logo-height: 50px;

  --font-family: 'Space Grotesk', sans-serif;
  --second-family: 'SF Pro Text', sans-serif;
  --third-family: 'Courier Prime', sans-serif;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('./fonts/SpaceGrotesk-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('./fonts/SpaceGrotesk-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('./fonts/SpaceGrotesk-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('./fonts/SpaceGrotesk-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('./fonts/SpaceGrotesk-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Text';
  src: url('./fonts/SFProText-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Text';
  src: url('./fonts/SFProText-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Text';
  src: url('./fonts/SFProText-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Text';
  src: url('./fonts/SFProText-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Text';
  src: url('./fonts/SFProText-Heavy.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Text';
  src: url('./fonts/SFProText-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Text';
  src: url('./fonts/SFProText-RegularItalic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Text';
  src: url('./fonts/SFProText-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Text';
  src: url('./fonts/SFProText-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Text';
  src: url('./fonts/SFProText-SemiboldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Text';
  src: url('./fonts/SFProText-HeavyItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Courier Prime';
  src: url('./fonts/CourierPrime-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Courier Prime';
  src: url('./fonts/CourierPrime-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Courier Prime';
  src: url('./fonts/CourierPrime-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Courier Prime';
  src: url('./fonts/CourierPrime-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #090713;
  font-family: var(--font-family);
}

.hero-screen {
  position: relative;
  width: 100vw;
  height: 100vh;
  isolation: isolate;
  background: #090713;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-global {
  width: 1320px;
  height: 760px;
  right: -170px;
  top: -150px;
  background: rgba(140, 71, 208, 0.79);
  filter: blur(280px);
  opacity: 0.7;
  z-index: 0;
}

.hero-glow-raccoon {
  width: 780px;
  height: 620px;
  right: 260px;
  top: 270px;
  background: #19005c;
  filter: blur(96px);
  opacity: 0.9;
  z-index: 1;
}

.hero-glow-left {
  width: 560px;
  height: 860px;
  left: -340px;
  top: 130px;
  background: rgba(54, 12, 116, 0.9);
  filter: blur(230px);
  z-index: 1;
}

.hero-glow-right {
  width: 520px;
  height: 760px;
  right: -220px;
  top: 180px;
  background: rgba(94, 29, 167, 0.72);
  filter: blur(210px);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  right: -60px;
  top: 0;
  width: auto;
  height: 100vh;
  max-width: none;
  object-fit: contain;
  object-position: right center;
  opacity: 0.66;
  z-index: 1;
}

.hero-raccoon {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  height: 95vh;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: right bottom;
  z-index: 3;
}

.hero-logo {
  position: absolute;
  left: 200px;
  top: var(--logo-top);
  width: auto;
  height: var(--logo-height);
  z-index: 4;
}

.hero-content {
  position: absolute;
  left: 200px;
  top: calc(var(--logo-top) + var(--logo-height) + 40px);
  width: 800px;
  height: 760px;
  z-index: 5;
  color: #f5f5f5;
}

.hero-date {
  margin-top: 0;
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 42px;
  line-height: 114%;
  letter-spacing: 0.02em;
  color: #f2b726;
}

.hero-title {
  margin-top: 15px;
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 102px;
  line-height: 100%;
  color: #a449f6;
  text-shadow:
    0 6px 20px #7818df,
    0 -6px 20px #7818df,
    6px 0 20px #7818df,
    -6px 0 20px #7818df;
}

.hero-address {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  text-align: left;
  color: #f2b726;
}

.hero-address-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.hero-description {
  margin: 40px 0 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: #f5f5f5;
}

.hero-includes-title {
  margin-top: 35px;
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 42px;
  line-height: 114%;
  color: #a449f6;
  text-shadow:
    0 6px 20px #7818df,
    0 -6px 20px #7818df,
    6px 0 20px #7818df,
    -6px 0 20px #7818df;
}

.hero-includes-list {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0 18px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: #f5f5f5;
}

.hero-includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 2px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  margin-top: 9px;
  background: #a449f6;
  border-radius: 50%;
  flex: 0 0 auto;
}

.hero-cta-row {
  margin-top: -35px;
  padding: 0 0 25px;
  display: flex;
  align-items: center;
}

.hero-cta {
  margin-top: 0;
  border: none;
  border-radius: 10px;
  padding: 14px 56px;
  width: 206px;
  height: 52px;
  background: #f2b726;
  box-shadow:
    -4px 0 20px 0 rgba(242, 183, 38, 0.35),
    4px 0 20px 0 rgba(242, 183, 38, 0.35),
    0 4px 20px 0 rgba(242, 183, 38, 0.35),
    0 -4px 20px 0 rgba(242, 183, 38, 0.35);
  cursor: pointer;

  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 133%;
  text-transform: uppercase;
  white-space: nowrap;
  color: #050109;
}

.hero-cta:active {
  transform: translateY(1px);
}

.hero-footer {
  position: absolute;
  left: 200px;
  bottom: 38px;
  display: flex;
  gap: 26px;
  z-index: 5;
}

.hero-footer-link {
  color: #a8a7b6;
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
}

.hero-offer {
  position: relative;
  left: -30px;
  bottom: 0;
  width: 514px;
  height: 290px;
  z-index: 5;
}

.hero-offer-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-offer-picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-offer-content {
  position: absolute;
  left: 116px;
  top: 112px;
}

.hero-offer-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 156%;
  color: #f5f5f5;
}

.hero-offer-prices {
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 117%;
}

.hero-offer-old {
  position: relative;
  color: #f5f5f5;
}

.hero-offer-strike {
  position: absolute;
  left: -4px;
  top: 14px;
  border-radius: 2px;
  width: 64px;
  height: 3px;
  background: #af2929;
  transform: rotate(-15deg);
}

.hero-offer-new {
  color: #a449f6;
}

@media (max-width: 1920px) and (min-width: 651px) {
  :root {
    --logo-top: clamp(25px, calc(10px + 1.0417vw), 30px);
    --logo-height: clamp(42px, calc(18px + 1.6667vw), 50px);
  }

  .hero-logo,
  .hero-content,
  .hero-footer {
    left: clamp(80px, calc(-280px + 25vw), 200px);
  }

  .hero-content {
    top: calc(var(--logo-top) + var(--logo-height) + 32px);
    width: clamp(770px, calc(680px + 6.25vw), 800px);
  }

  .hero-raccoon {
    right: -140px;
    height: 95vh;
  }

  .hero-bg {
    right: -60px;
  }

  .hero-date {
    font-size: clamp(32px, calc(2px + 2.0833vw), 42px);
  }

  .hero-title {
    margin-top: clamp(10px, calc(-5px + 1.0417vw), 15px);
    font-size: clamp(82px, calc(22px + 4.1667vw), 102px);
  }

  .hero-address {
    margin-top: clamp(12px, calc(-12px + 1.6667vw), 20px);
  }

  .hero-description {
    margin-top: clamp(26px, calc(-16px + 2.9167vw), 40px);
  }

  .hero-includes-title {
    margin-top: clamp(24px, calc(-9px + 2.2917vw), 35px);
  }

  .hero-includes-list {
    margin-top: clamp(10px, calc(-5px + 1.0417vw), 15px);
  }

  .hero-cta-row {
    margin-top: clamp(-45px, calc(-75px + 2.0833vw), -35px);
  }

  .hero-address,
  .hero-description,
  .hero-includes-list,
  .hero-cta,
  .hero-footer-link,
  .hero-offer-title {
    font-size: 18px;
  }

  .hero-includes-title {
    font-size: clamp(32px, calc(2px + 2.0833vw), 42px);
  }

  .hero-offer-prices {
    font-size: 24px;
  }

  .hero-offer {
    width: 514px;
    height: 290px;
  }
}

@media (max-width: 1440px) and (min-width: 651px) {
  .hero-raccoon {
    right: -220px;
  }

  .hero-description {
    max-width: 650px;
  }
}

@media (max-width: 1024px) and (min-width: 651px) {
  :root {
    --logo-top: 25px;
    --logo-height: 42px;
  }

  .hero-logo,
  .hero-content,
  .hero-footer {
    left: 60px;
  }

  .hero-content {
    top: calc(var(--logo-top) + var(--logo-height) + 26px);
    width: 700px;
  }

  .hero-raccoon {
    right: -285px;
    height: 95vh;
  }

  .hero-bg {
    right: -110px;
  }

  .hero-date {
    font-size: 24px;
  }

  .hero-title {
    margin-top: 10px;
    font-size: 62px;
  }

  .hero-address {
    margin-top: 14px;
  }

  .hero-address,
  .hero-description {
    font-size: 15px;
  }

  .hero-description {
    margin-top: 28px;
    max-width: 520px;
  }

  .hero-includes-title {
    margin-top: 26px;
    font-size: 24px;
  }

  .hero-includes-list {
    margin-top: 10px;
    font-size: 16px;
    max-width: 640px;
    gap: 0 20px;
  }

  .hero-cta-row {
    margin-top: -22px;
  }

  .hero-cta {
    min-width: 206px;
    font-size: 18px;
  }

  .hero-offer {
    left: clamp(-30px, -2.93vw, -18px);
    width: clamp(390px, 50.3vw, 515px);
    height: clamp(220px, 28.32vw, 290px);
  }

  .hero-offer-content {
    left: clamp(88px, 11.33vw, 116px);
    top: clamp(84px, 10.94vw, 112px);
  }

  .hero-offer-title {
    font-size: 18px;
  }

  .hero-offer-prices {
    font-size: 24px;
  }

  .hero-offer-strike {
    top: 14px;
    width: 64px;
  }

  .hero-footer-link {
    font-size: 18px;
  }
}

@media (max-width: 900px) and (min-width: 651px) {
  .hero-content {
    width: calc(100vw - 120px);
  }

  .hero-cta-row {
    width: 100%;
  }

  .hero-offer {
    flex: 1 1 auto;
    min-width: 0;
    width: min(515px, calc(100vw - 300px));
    height: clamp(220px, 32vw, 290px);
  }

  .hero-offer-content {
    left: clamp(104px, 15vw, 126px);
    top: clamp(92px, 13.2vw, 116px);
    max-width: calc(100% - 120px);
  }

  .hero-offer-title {
    font-size: 18px;
    white-space: nowrap;
  }

  .hero-offer-prices {
    font-size: 24px;
  }

  .hero-offer-strike {
    top: 14px;
    width: 64px;
  }
}

@media (max-width: 820px) and (min-width: 651px) {
  .hero-cta-row {
    margin-top: -54px;
  }

  .hero-offer {
    left: 55px;
    width: clamp(640px, 95vw, 680px);
    height: clamp(300px, 46vw, 360px);
  }

  .hero-offer-content {
    left: clamp(108px, 16.5vw, 102px);
    top: clamp(122px, 18.5vw, 146px);
    max-width: calc(100% - 140px);
  }
}

@media (max-width: 800px) and (min-width: 651px) {
  .hero-cta-row {
    margin-top: -120px;
  }

  .hero-offer {
    width: clamp(1020px, 172.5vw, 1200px);
    height: clamp(400px, 60vw, 432px);
  }

  .hero-offer-bg {
    width: 110%;
  }

  .hero-offer-content {
    top: clamp(170px, 25vw, 200px);
  }
}

@media (max-width: 770px) and (min-width: 651px) {
  :root {
    --logo-top: 25px;
    --logo-height: clamp(54px, 8.05vw, 62px);
  }

  .hero-screen::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 230px;
    background: linear-gradient(
      180deg,
      rgba(62, 10, 122, 0.96) 0%,
      rgba(62, 10, 122, 0.88) 45%,
      rgba(62, 10, 122, 0.45) 76%,
      rgba(62, 10, 122, 0) 100%
    );
    pointer-events: none;
    z-index: 2;
  }

  .hero-logo,
  .hero-content,
  .hero-footer {
    left: clamp(50px, 7.8vw, 60px);
  }

  .hero-content {
    top: calc(var(--logo-top) + var(--logo-height) + 30px);
    width: calc(100vw - clamp(100px, 15.6vw, 120px));
    height: auto;
  }

  .hero-date {
    font-size: clamp(20px, 3.1vw, 24px);
  }

  .hero-title {
    margin-top: 10px;
    font-size: clamp(60px, 9.35vw, 72px);
    line-height: 0.96;
    white-space: nowrap;
  }

  .hero-address {
    margin-top: 10px;
    width: 100%;
    font-size: 14px;
  }

  .hero-address-icon {
    width: 18px;
    height: 18px;
  }

  .hero-description {
    margin-top: 30px;
    max-width: 360px;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-includes-title {
    margin-top: 32px;
    max-width: 390px;
    font-size: clamp(22px, 3.15vw, 24px);
  }

  .hero-includes-list {
    margin-top: 12px;
    display: block;
    max-width: 390px;
    font-size: 14px;
    line-height: 1.3;
  }

  .hero-includes-list li {
    margin-top: 8px;
  }

  .hero-dot {
    width: 5px;
    height: 5px;
    margin-top: 7px;
  }

  .hero-cta-row {
    margin-top: -80px;
    padding: 0;
    width: calc(100vw - clamp(50px, 7.8vw, 60px));
    align-items: center;
  }

  .hero-cta {
    width: 206px;
    min-width: 206px;
    height: 52px;
    flex: 0 0 auto;
    font-size: 18px;
  }

  .hero-offer {
    left: -58px;
    width: clamp(500px, 66.8vw, 514px);
    height: clamp(260px, 37.7vw, 290px);
    flex: 0 0 auto;
  }

  .hero-offer-bg {
    width: 100%;
    object-fit: contain;
  }

  .hero-offer-content {
    left: clamp(128px, 18vw, 146px);
    top: clamp(98px, 14.5vw, 112px);
    max-width: 260px;
  }

  .hero-offer-title {
    font-size: 18px;
    white-space: nowrap;
  }

  .hero-offer-prices {
    font-size: 24px;
  }

  .hero-raccoon {
    right: clamp(-430px, -55vw, -385px);
    bottom: -85px;
    height: 92vh;
  }

  .hero-bg {
    right: -120px;
    top: 60px;
  }

  .hero-footer {
    bottom: 25px;
    gap: 32px;
  }

  .hero-footer-link {
    font-size: 16px;
  }
}

@media (max-width: 650px) {
  html,
  body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .hero-screen {
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    height: auto;
    padding: 15px 15px 0;
    overflow-x: hidden;
    background: #16062d;
  }

  .hero-screen::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 230px;
    background: linear-gradient(
      180deg,
      rgba(62, 10, 122, 0.96) 0%,
      rgba(62, 10, 122, 0.88) 45%,
      rgba(62, 10, 122, 0.45) 76%,
      rgba(62, 10, 122, 0) 100%
    );
    pointer-events: none;
    z-index: 2;
  }

  .hero-glow-left,
  .hero-glow-right {
    display: none;
  }

  .hero-glow-raccoon {
    width: 390px;
    height: 834px;
    left: 50%;
    right: auto;
    top: clamp(280px, 104vw, 370px);
    border-radius: 100%;
    background: #19005c;
    filter: blur(250.3px);
    transform: translateX(-15%);
    opacity: 1;
    z-index: 1;
  }

  .hero-glow-global {
    width: 462px;
    height: 462px;
    left: calc(50% - 159px);
    right: auto;
    top: 204px;
    border-radius: 100%;
    background: rgba(140, 71, 208, 0.79);
    filter: blur(333.25px);
    transform: none;
    opacity: 1;
    z-index: 2;
  }

  .hero-logo {
    position: relative;
    display: block;
    height: 62px;
    left: 0;
    top: 0;
    z-index: 9;
  }

  .hero-content {
    position: static;
    margin-top: 15px;
    width: calc(100vw - 30px);
    max-width: calc(100vw - 30px);
    height: auto;
    position: relative;
    left: 0;
    top: auto;
    z-index: 8;
  }

  .hero-date {
    margin-top: 0;
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: #f2b726;
  }

  .hero-title {
    margin-top: 0;
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 72px;
    line-height: 82%;
    color: #a449f6;
    text-shadow:
      0 6px 20px #7818df,
      0 -6px 20px #7818df;
  }

  .hero-address {
    margin-top: 0;
    width: 100%;
    align-items: flex-start;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: #f2b726;
  }

  .hero-address span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hero-address-icon {
    width: 18px;
    height: 18px;
  }

  .hero-description {
    margin-top: 15px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 13px;
    line-height: 157%;
    text-align: left;
    color: #cfcfd6;
  }

  .hero-includes-title {
    margin-top: 10px;
    font-family: var(--third-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: #a449f6;
    text-shadow:
      0 6px 20px #7818df,
      0 -6px 20px #7818df;
  }

  .hero-includes-list {
    margin-top: 0;
    display: block;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    line-height: 156%;
    text-align: left;
    color: #f5f5f5;
  }

  .hero-includes-list li {
    margin-top: 0;
    justify-content: flex-start;
  }

  .hero-dot {
    width: 6px;
    height: 6px;
    margin-top: 7px;
  }

  .hero-cta-row {
    margin-top: 5px;
    padding: 0;
    width: calc(100vw - 30px);
    max-width: calc(100vw - 30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
    z-index: 10;
  }

  .hero-offer {
    order: 1;
    left: 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: 0;
    height: clamp(235px, 67vw, 275px);
    isolation: isolate;
  }

  .hero-offer-content {
    left: 0;
    top: clamp(42px, 11.5vw, 50px);
    width: 100%;
    text-align: center;
    z-index: 2;
  }

  .hero-offer-title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 156%;
    color: #f5f5f5;
    white-space: nowrap;
  }

  .hero-offer-prices {
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 22px;
    line-height: 117%;
    color: #f5f5f5;
    gap: 12px;
  }

  .hero-offer-new {
    color: #a449f6;
  }

  .hero-offer-strike {
    left: -2px;
    top: 11px;
    width: 66px;
  }

  .hero-cta {
    order: 2;
    position: relative;
    z-index: 11;
    width: 100%;
    max-width: none;
    height: auto;
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    align-self: center;
    font-size: 15px;
  }

  .hero-footer {
    position: static;
    margin-top: 0;
    margin-left: -15px;
    padding: 44px 15px 25px;
    width: calc(100% + 30px);
    max-width: none;
    background: linear-gradient(
      180deg,
      rgba(5, 1, 9, 0.42) 0%,
      rgba(5, 1, 9, 0.68) 16%,
      rgba(5, 1, 9, 0.86) 34%,
      rgba(5, 1, 9, 0.96) 52%,
      #050109 70%,
      #050109 100%
    );
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    position: relative;
    left: 0;
    bottom: auto;
    z-index: 7;
  }

  .hero-footer-link {
    font-size: 18px;
    line-height: 1.2;
  }

  .hero-raccoon {
    left: 50%;
    right: auto;
    top: clamp(280px, 104vw, 370px);
    bottom: auto;
    width: auto;
    height: clamp(460px, 118vw, 585px);
    object-fit: contain;
    transform: translateX(-15%);
    opacity: 0.9;
    z-index: 2;
  }

  .hero-bg {
    left: 50%;
    right: auto;
    top: 35px;
    width: 390px;
    height: 892px;
    max-width: none;
    transform: translateX(-50%) scale(1);
    object-fit: contain;
    object-position: top center;
    opacity: 0.72;
  }

  .hero-offer-bg {
    object-fit: fill;
    z-index: 1;
  }
}

@media (max-width: 360px) {
  .hero-raccoon {
    top: 305px;
    transform: translateX(-24%);
  }
}

@media (min-width: 430px) and (max-width: 650px) {
  .hero-raccoon {
    top: 365px;
    transform: translateX(-32%);
  }
}

.booking-modal-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 1, 8, 0.66);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  z-index: 999;
}

.booking-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-modal {
  position: relative;
  border-radius: 24px;
  padding: 40px 110px 45px;
  width: 496px;
  min-height: 424px;
  height: auto;
  background: #06030a;
  box-shadow: 0 4px 67px 0 #a449f6;
}

.booking-back {
  display: none;
}

.booking-modal-title {
  margin: 0;
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 42px;
  line-height: 114%;
  text-transform: uppercase;
  text-align: center;
  color: #f2b726;
}

.booking-modal-subtitle {
  margin: 20px 0 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  text-align: center;
  color: #f5f5f5;
}

.booking-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-input {
  border: 1px solid #f5f5f5;
  border-radius: 8px;
  padding: 12px;
  width: 266px;
  height: 44px;
  background: transparent;
  outline: none;

  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #f5f5f5;
}

.booking-input:focus {
  border-color: #a449f6;
}

.booking-input::placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #f5f5f5;
  opacity: 1;
}

.booking-error {
  width: 266px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 138%;
  color: #ff4d4f;
}

.booking-error:empty {
  display: none;
}

.booking-submit {
  margin-top: 20px;
  border: none;
  border-radius: 10px;
  padding: 14px 20px;
  width: 266px;
  height: 52px;
  box-shadow:
    -4px 0 20px 0 rgba(242, 183, 38, 0.35),
    4px 0 20px 0 rgba(242, 183, 38, 0.35),
    0 4px 20px 0 rgba(242, 183, 38, 0.35),
    0 -4px 20px 0 rgba(242, 183, 38, 0.35);
  background: #f2b726;
  cursor: pointer;

  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 133%;
  text-transform: uppercase;
  white-space: nowrap;
  color: #050109;
}

.booking-submit:disabled {
  cursor: not-allowed;
  opacity: 0.75;
}

.success-modal {
  padding: 36px 30px 45px;
  width: 496px;
  min-height: 276px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-modal-title {
  font-size: 36px;
  line-height: 114%;
}

.success-modal-subtitle {
  margin-top: 12px;
  font-size: 18px;
  line-height: 156%;
}

.success-modal-close {
  margin-top: 35px;
}

@media (max-width: 650px) {
  .booking-modal-overlay {
    align-items: stretch;
    justify-content: stretch;
    background: transparent;
  }

  .booking-modal {
    border-radius: 0;
    padding: 80px 60px 0;
    width: 100vw;
    min-height: 100vh;
    height: 100vh;
    background:
      radial-gradient(
        178.16% 115.21% at 52.22% 102.69%,
        #050109 57.19%,
        #38117a 100%
      ),
      #fff;
    box-shadow: none;
    overflow-y: auto;
  }

  .booking-back {
    position: absolute;
    left: 15px;
    top: 25px;
    display: block;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;

    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 156%;
    text-align: center;
    color: #9a9a9a;
  }

  .booking-modal-title {
    font-size: 42px;
  }

  .booking-modal-subtitle {
    font-size: 18px;
  }

  .booking-form {
    align-items: center;
  }

  .booking-submit {
    font-size: 18px;
  }

  .success-modal-overlay {
    align-items: center;
    justify-content: center;
    padding: 0 9px;
    background: rgba(3, 1, 8, 0.66);
  }

  .success-modal {
    border-radius: 24px;
    padding: 38px 28px 45px;
    width: 100%;
    max-width: 496px;
    min-height: 276px;
    height: auto;
    background: #06030a;
    box-shadow: 0 4px 67px 0 #a449f6;
    overflow: visible;
  }

  .success-modal-title {
    font-size: 36px;
  }

  .success-modal-subtitle {
    margin-top: 12px;
    font-size: 18px;
  }

  .success-modal-close {
    margin-top: 35px;
    width: 100%;
    max-width: 298px;
  }
}
