/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}

@font-face {
  font-family: 'Inter';
  src: url('/fontsHESOYam/inter-variablefontHESOYam.woff2')
    format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

/* header */

.topbarHESOYam {
  background: #d42123;
  padding: 8px 12px;
  text-align: center;
}

.topbarHESOYam__text {
  margin: 0;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 400;
}

.topbarHESOYam__link {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

.headerHESOYam {
  background: #0f0f0f;
}

.headerHESOYam__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 155px;
  height: 72px;
}

.headerHESOYam__logo img {
  width: 260px;

  display: block;
}

.navHESOYam__list {
  display: flex;
  gap: 155px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navHESOYam__list a {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  padding-bottom: 4px;
}

.navHESOYam__list a:hover {
  border-bottom: 1px solid #d42123;
}

.burgerHESOYam {
  display: none;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

.burgerHESOYam span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s ease;
}

.burgerHESOYam span:not(:last-child) {
  margin-bottom: 5px;
}

@media (max-width: 900px) {
  .burgerHESOYam {
    display: block;
  }

  .headerHESOYam__inner {
    gap: 40px;
  }

  .navHESOYam {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 260px;
    background: #0f0f0f;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.25s ease;
    padding: 100px 24px;
  }

  .navHESOYam.is-open {
    transform: translateX(0);
    opacity: 1;
    z-index: 3;
  }

  .navHESOYam__list {
    flex-direction: column;
    gap: 24px;
  }

  .burgerHESOYam.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burgerHESOYam.is-open span:nth-child(2) {
    opacity: 0;
  }

  .burgerHESOYam.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
.heroHESOYam {
  position: relative;
  color: #fff;
  background: #0f0f0f;
}

.heroHESOYam::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/imagesHESOYam/hero-cyty-bgdeskHESOYam.webp') center / cover
    no-repeat;
  z-index: 0;
}

.heroHESOYam__container {
  position: relative;
  z-index: 2;

  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 20px 90px;

  display: grid;
  grid-template-columns: 560px 1fr;
  grid-template-areas:
    'image content'
    'image badge';
  column-gap: 60px;
  row-gap: 28px;
  align-items: center;
}

.heroHESOYam__image {
  grid-area: image;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.heroHESOYam__image img {
  max-width: 560px;
  width: 100%;
  height: auto;
  display: block;
}

.heroHESOYam__content {
  grid-area: content;
}

.heroHESOYam__label {
  display: inline-block;
  margin-bottom: 12px;

  font-family: Inter;
  font-size: 24px;
  font-weight: 700;
  color: #fff;

  -webkit-text-stroke: 1px #d42123;
}

.heroHESOYam__title {
  margin: 0 0 16px;
  font-family: Inter;
  font-size: 64px;
  font-weight: 700;
}

.heroHESOYam__text {
  max-width: 560px;
  margin-bottom: 28px;

  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
}

.heroHESOYam__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 48px;
  width: 100%;
  padding: 0 28px;

  border-radius: 5px;
  border: 1px solid #d42123;

  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;

  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.heroHESOYam__btn:hover {
  box-shadow: 0 0 14px rgba(212, 33, 35, 0.6);
  transform: translateY(-1px);
}

.heroHESOYam__badge {
  grid-area: badge;
  justify-self: end;

  max-width: 420px;
  width: 100%;

  padding: 18px 22px;
  border-radius: 10px;
  border: 1px solid #fff;

  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(93, 93, 93, 0.05) 100%
  );
  backdrop-filter: blur(4px);
}

.heroHESOYam__badgeHeader {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 8px;
}

.heroHESOYam__badgeIcon {
  width: 22px;
  height: 22px;
}

.heroHESOYam__badgeTitle {
  font-family: Inter;
  font-size: 16px;
  font-weight: 700;
  text-align: right;
}

.heroHESOYam__badgeDesc {
  margin: 0;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  text-align: right;
}

@media (max-width: 1024px) {
  .heroHESOYam__container {
    grid-template-columns: 420px 1fr;
    column-gap: 32px;
  }

  .heroHESOYam__title {
    font-size: 52px;
  }
}

@media (max-width: 740px) {
  .heroHESOYam::before {
    background: url('/imagesHESOYam/hero-cytybgmbHESOYam.webp') center / cover
      no-repeat;
  }

  .heroHESOYam__container {
    grid-template-columns: 1fr;
    grid-template-areas:
      'content'
      'badge'
      'image';
    text-align: center;
    padding: 90px 16px 50px;
  }

  .heroHESOYam__title {
    font-size: 42px;
  }

  .heroHESOYam__badge {
    max-width: 520px;
    text-align: right;
    justify-content: flex-end;
  }

  .heroHESOYam__badgeHeader,
  .heroHESOYam__badgeDesc {
    text-align: right;
    justify-content: flex-end;
  }

  .heroHESOYam__image img {
    max-width: 520px;
    margin: 0 auto;
  }
}

.gameHESOYam {
  background: #0f0f0f;
  padding: 80px 20px;
  color: #fff;
}

.gameHESOYam__container {
  max-width: 1240px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 60px;
  align-items: start;
}

.gameHESOYam__card {
  border-radius: 10px;
  border: 1px solid #381c1c;
  background: radial-gradient(
    67.68% 67.68% at 50% 32.32%,
    #4d1314 0%,
    #0f0f0f 100%
  );
  padding: 20px;
}

.gameHESOYam__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.gameHESOYam__ratings {
  margin: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.gameHESOYam__rating {
  color: #fff;
  font-family: Inter;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
}

.gameHESOYam__stars {
  margin: 0 4px;
}

.gameHESOYam__btn {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 48px;
  width: 100%;

  border-radius: 6px;
  border: 1px solid #d42123;

  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;

  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.gameHESOYam__btn:hover {
  box-shadow: 0 0 14px rgba(212, 33, 35, 0.6);
  transform: translateY(-1px);
}

.gameHESOYam__title {
  margin: 0 0 20px;
  color: #fff;
  font-family: Inter;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
}

.gameHESOYam__content p {
  margin: 0 0 14px;
  color: #fff;
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1024px) {
  .gameHESOYam__container {
    grid-template-columns: 420px 1fr;
    gap: 32px;
  }
}

@media (max-width: 740px) {
  .gameHESOYam {
    padding: 60px 16px;
  }

  .gameHESOYam__container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gameHESOYam__title {
    font-size: 26px;
  }

  .gameHESOYam__ratings {
    justify-content: space-between;
  }
}

.featuresHESOYam {
  background: #0f0f0f;
  padding: 80px 20px;
  color: #fff;
}

.featuresHESOYam__container {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}

.featuresHESOYam__title {
  margin: 0 0 20px;
  color: #fff;
  font-family: Inter;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
}

.featuresHESOYam__text {
  max-width: 900px;
  margin: 0 auto 28px;
  color: #fff;
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
}

.featuresHESOYam__label {
  margin: 0 0 36px;
  color: #fff;
  font-family: Inter;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

.featuresHESOYam__list {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.featuresHESOYam__item {
  flex: 1;
  padding: 0 24px;
}

.featuresHESOYam__item img {
  width: 20px;
  height: 20px;
  margin-bottom: 12px;
}

.featuresHESOYam__item p {
  margin: 0;
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
}

.featuresHESOYam__divider {
  width: 1px;
  height: 60px;
  background: #d42123;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .featuresHESOYam__list {
    flex-direction: column;
    gap: 24px;
  }

  .featuresHESOYam__divider {
    width: 80%;
    height: 1px;
  }

  .featuresHESOYam__item {
    padding: 0;
  }
}

@media (max-width: 740px) {
  .featuresHESOYam {
    padding: 60px 16px;
  }

  .featuresHESOYam__title {
    font-size: 28px;
  }

  .featuresHESOYam__text {
    font-size: 14px;
  }

  .featuresHESOYam__item p {
    font-size: 14px;
  }
}
.demoSectionHESOYam {
  background: #0f0f0f;
  padding: 70px 0;
}

.demoHESOYam {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  aspect-ratio: 16 / 9;

  border-radius: 14px;
  overflow: hidden;
  background: url('/imagesHESOYam/bkackninja-demobgHESOYam.webp') center / cover
    no-repeat;
}

.demoHESOYam__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;

  cursor: pointer;
  user-select: none;

  transition: opacity 0.2s ease, transform 0.2s ease;
}

.demoHESOYam__overlay:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

.demoHESOYam__iframe {
  position: absolute;
  inset: 0;
  z-index: 3;

  width: 100%;
  height: 100%;
  border: none;

  display: none;
}

.demoHESOYam.is-playing::after,
.demoHESOYam.is-playing .demoHESOYam__overlay {
  display: none;
}

.demoHESOYam.is-playing .demoHESOYam__iframe {
  display: block;
}

@media (max-width: 740px) {
  .demoSectionHESOYam {
    padding: 50px 16px;
  }

  .demoHESOYam {
    border-radius: 10px;
  }

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

.reviewsHESOYam {
  background: #0f0f0f;
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
}

.reviewsHESOYam__head {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
  padding: 0 16px;
}

.reviewsHESOYam__title {
  margin-bottom: 12px;
  font-family: Inter;
  font-size: 32px;
  font-weight: 700;
}

.reviewsHESOYam__subtitle {
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  opacity: 0.9;
}

.reviewsHESOYam__marquee {
  display: flex;
  overflow-x: scroll;
  scrollbar-width: none;
  cursor: grab;
}

.reviewsHESOYam__marquee::-webkit-scrollbar {
  display: none;
}

.reviewsHESOYam__list {
  display: flex;
  gap: 24px;
  padding: 0 16px;
  flex-shrink: 0;
}

.reviewsHESOYam__item {
  min-width: 320px;
  max-width: 320px;
  background: #191919;
  border: 1px solid #282828;
  border-radius: 12px;
  padding: 18px;
}

.reviewsHESOYam__text {
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 14px;
}

.reviewsHESOYam__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reviewsHESOYam__user {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Inter;
  font-size: 15px;
  font-weight: 700;
}

.reviewsHESOYam__user img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #282828;
  background: #191919;
}

.reviewsHESOYam__rating {
  font-family: Inter;
  font-size: 15px;
  font-weight: 700;
}

.reviewsHESOYam__date {
  display: block;
  margin-top: 8px;
  font-family: Inter;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.5;
}

.surveySectionHESOYam {
  width: 100%;
  background: #0f0f0f;
  box-sizing: border-box;
}

.surveyBgHESOYam {
  width: 100%;
  background: url('/imagesHESOYam/ninja-quetiondeskHESOYam.webp') center / cover
    no-repeat;
  border-radius: 40px;
  padding: 80px 20px;
  box-sizing: border-box;
}

.surveyContainerHESOYam {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.surveyTitleHESOYam {
  font-family: Inter;
  font-size: 32px;
  font-weight: 700;
  color: #0f0f0f;
}

.surveyDescHESOYam {
  margin-top: 10px;
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  color: #0f0f0f;
}

.surveyProgressHESOYam {
  position: relative;
  margin: 48px 0 40px;
}

.surveyProgressLineHESOYam {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #d42123;
  transform: translateY(-50%);
}

.surveyProgressDotsHESOYam {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}

.surveyProgressDotsHESOYam li {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #d42123;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Inter;
  font-size: 14px;
  font-weight: 700;
  color: #d42123;
}

.surveyProgressDotsHESOYam li.active {
  background: #d42123;
  color: #fff;
}

.surveyStepsHESOYam {
  width: 100%;
}

.surveyStepHESOYam {
  display: none;
}

.surveyStepHESOYam.active {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.surveyQuestionHESOYam {
  font-family: Inter;
  font-size: 24px;
  font-weight: 700;
  color: #0f0f0f;
  margin-bottom: 28px;
}

.surveyAnswersHESOYam {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.surveyAnswerHESOYam {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
  cursor: pointer;

  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  color: #0f0f0f;
  text-align: center;
}

.surveyAnswerHESOYam input {
  display: none;
}

.surveyAnswerHESOYam span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #9c9c9c;
  position: relative;
  flex-shrink: 0;
}

.surveyAnswerHESOYam input:checked + span {
  border-color: #d42123;
}

.surveyAnswerHESOYam input:checked + span::after {
  content: '';
  width: 10px;
  height: 10px;
  background: #d42123;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.surveyNavHESOYam {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.surveyBtnHESOYam {
  font-family: Inter;
  font-size: 20px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  border: 2px solid #d42123;
  background: transparent;
  color: #0f0f0f;
  cursor: pointer;
}

.surveyBtnHESOYam.next {
  background: #d42123;
  color: #fff;
}

.surveyResultHESOYam {
  display: none;
  margin-top: 40px;
}

.surveyHeartHESOYam {
  width: 95px;
  height: 95px;
  margin-bottom: 24px;
}

.surveyThanksHESOYam {
  font-family: Inter;
  font-size: 40px;
  font-weight: 700;
  color: #0f0f0f;
}

.surveyKeepHESOYam {
  margin-top: 12px;
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  color: #0f0f0f;
}

.surveyCtaHESOYam {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 30px;
  border: 2px solid #d42123;
  border-radius: 8px;
  font-family: Inter;
  font-size: 20px;
  font-weight: 700;
  color: #0f0f0f;
  text-decoration: none;
}

@media (max-width: 600px) {
  .surveySectionHESOYam {
    padding: 20px;
  }

  .surveyBgHESOYam {
    padding: 40px 12px;
    background: url('/imagesHESOYam/ninja-quetionmbHESOYam.webp') center / cover
      no-repeat;
  }

  .surveyTitleHESOYam {
    font-size: 26px;
  }

  .surveyQuestionHESOYam {
    font-size: 20px;
  }

  .surveyBtnHESOYam {
    font-size: 16px;
    padding: 10px 22px;
  }

  .surveyThanksHESOYam {
    font-size: 30px;
  }

  .surveyCtaHESOYam {
    font-size: 16px;
    padding: 10px 22px;
  }
}

.contactSectionHESOYam {
  width: 100%;
  padding: 80px 20px;
  background: #0f0f0f;
}

.contactContainerHESOYam {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.contactTitleHESOYam {
  color: #fff;
  font-family: Inter;
  font-size: 32px;
  font-weight: 700;
}

.contactDescHESOYam {
  margin-top: 8px;
  color: #fff;
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
}

.contactGridHESOYam {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.contactFormHESOYam {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contactLabelHESOYam {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
  font-family: Inter;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.contactLabelHESOYam.full {
  grid-column: span 2;
}

.contactInputHESOYam,
.contactTextareaHESOYam {
  border-radius: 5px;
  border: 1px solid #686868;
  background: #333;
  padding: 12px;
  color: #a9a9a9;
  font-family: Inter;
  font-size: 16px;
}

.contactTextareaHESOYam {
  min-height: 120px;
  resize: none;
}

.contactBtnHESOYam {
  grid-column: span 2;
  margin-top: 10px;
  padding: 14px;
  border-radius: 5px;
  border: 2px solid #d42123;
  background: transparent;
  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.contactSuccessHESOYam {
  grid-column: span 2;
  margin-top: 12px;
  color: #4caf50;
  font-family: Inter;
  font-size: 14px;
  display: none;
}

.contactInfoHESOYam {
  border-radius: 10px;
  background: #333;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contactInfoItemHESOYam {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: Inter;
  font-size: 14px;
}

@media (max-width: 900px) {
  .contactGridHESOYam {
    grid-template-columns: 1fr;
  }

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

  .contactLabelHESOYam.full {
    grid-column: span 1;
  }

  .contactBtnHESOYam {
    grid-column: span 1;
  }
}

.advisorySectionHESOYam {
  width: 100%;
  padding: 80px 20px;
  background: #0f0f0f;
}

.advisoryContainerHESOYam {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #d42123;
  background: transparent;
  text-align: center;
}

.advisoryTitleHESOYam {
  margin-bottom: 24px;
  color: #fff;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
}

.advisoryTextHESOYam {
  margin-bottom: 18px;
  color: #fff;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
}

.advisoryTextHESOYam:last-child {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .advisorySectionHESOYam {
    padding: 40px 16px;
  }

  .advisoryContainerHESOYam {
    padding: 24px;
  }

  .advisoryTitleHESOYam {
    font-size: 26px;
  }

  .advisoryTextHESOYam {
    font-size: 14px;
  }
}
.footerHESOYam {
  background: #0f0f0f;
  padding: 80px 20px 40px;
  color: #fff;
}

.footerContainerHESOYam {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.footerTitleHESOYam {
  color: #fff;
  font-family: Inter;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 12px;
}

.footerTitleMarginHESOYam {
  margin-top: 28px;
}

.footerTextHESOYam {
  color: #fff;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}

.footerLogoHESOYam {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: nowrap;
}

.footer18HESOYam {
  width: 48px;
  height: auto;
  flex-shrink: 0;
}

.footerLogoImgHESOYam {
  height: 32px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
}

.footerNavHESOYam ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footerNavHESOYam li {
  margin: 0;
}

.footerNavHESOYam a {
  color: #fff;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: opacity 0.2s ease;
}

.footerNavHESOYam a:hover {
  opacity: 0.75;
}

.footerRightHESOYam {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footerCopyHESOYam {
  margin-top: 60px;
  text-align: center;
  color: #fff;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1200px) {
  .footerContainerHESOYam {
    gap: 40px;
  }

  .footerLogoImgHESOYam {
    max-width: 200px;
  }
}

@media (max-width: 1024px) {
  .footerContainerHESOYam {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }

  .footerLogoImgHESOYam {
    max-width: 170px;
  }
}

@media (max-width: 900px) {
  .footerContainerHESOYam {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footerLogoHESOYam {
    justify-content: flex-start;
  }

  .footerLogoImgHESOYam {
    max-width: 160px;
  }

  .footerRightHESOYam {
    align-items: flex-start;
  }

  .footerCopyHESOYam {
    margin-top: 40px;
  }
}

.ninjaIntroHESOYam {
  background: #0f0f0f;
  padding: 80px 20px;
}

.ninjaIntroContainerHESOYam {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 650px;
  gap: 60px;
  align-items: center;
}

.ninjaIntroTitleHESOYam {
  color: #fff;
  font-family: Inter;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 24px;
}

.ninjaIntroDescHESOYam {
  color: #fff;
  font-family: Inter;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 16px;
}

.ninjaIntroImageWrapHESOYam {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.ninjaIntroImageHESOYam {
  width: 650px;
  height: 441px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

@media (max-width: 1100px) {
  .ninjaIntroContainerHESOYam {
    grid-template-columns: 1fr 520px;
    gap: 40px;
  }

  .ninjaIntroImageHESOYam {
    width: 520px;
    height: auto;
  }
}

@media (max-width: 900px) {
  .ninjaIntroContainerHESOYam {
    grid-template-columns: 1fr 420px;
  }

  .ninjaIntroImageHESOYam {
    width: 420px;
  }
}

@media (max-width: 768px) {
  .ninjaIntroHESOYam {
    padding: 60px 16px;
  }

  .ninjaIntroContainerHESOYam {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ninjaIntroTitleHESOYam {
    font-size: 26px;
    text-align: left;
  }

  .ninjaIntroDescHESOYam {
    font-size: 15px;
  }

  .ninjaIntroImageWrapHESOYam {
    justify-content: center;
  }

  .ninjaIntroImageHESOYam {
    width: 100%;
    height: auto;
    border-radius: 16px;
  }
}

.contactSectionHESOYam--alt {
  background: #0f0f0f;
  padding: 80px 20px;
}

.contactContainerHESOYam--alt {
  max-width: 1240px;
  margin: 0 auto;
}

.contactGridHESOYam--alt {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: flex-start;
}

.contactInfoHESOYam--alt {
  background: #333;
  border-radius: 10px;
  padding: 24px;
}

@media (max-width: 900px) {
  .contactGridHESOYam--alt {
    grid-template-columns: 1fr;
  }
}

.terms {
  padding: 70px 0;
  background: #0f0f0f;
}

.terms h1 {
  color: #fff;
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

.terms-date {
  color: #fff;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.terms h2 {
  color: #fff;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

.terms p {
  color: #fff;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

.terms ul {
  list-style-type: disc;
}

.terms li {
  color: #fff;
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .terms {
    padding: 20px 0;
  }
}

.agePopupHESOYam {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.agePopupHESOYam.is-open {
  display: block;
}

.agePopupHESOYam__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.agePopupHESOYam__content {
  position: relative;
  max-width: 420px;
  margin: 0 16px;
  padding: 32px 24px;
  background: #111;
  border-radius: 12px;
  text-align: center;
  z-index: 2;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.agePopupHESOYam__title {
  color: #fff;
  font-family: Inter;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.agePopupHESOYam__text {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 24px;
}

.agePopupHESOYam__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.agePopupHESOYam__btn {
  flex: 1;
  min-width: 140px;
  padding: 14px 16px;
  cursor: pointer;

  color: #fff;
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;

  border-radius: 5px;
  background: #333;
  border: 2px solid transparent;
  transition: 0.2s ease;
}

.agePopupHESOYam__btn--yes {
  border: 2px solid var(--1, #d42123);
}

.agePopupHESOYam__btn--yes:hover {
  background: var(--1, #d42123);
  border: 2px solid var(--1, #d42123);
}

.agePopupHESOYam__btn--exit:hover {
  opacity: 0.85;
}

@media (max-width: 480px) {
  .agePopupHESOYam__content {
    padding: 24px 18px;
    width: 320px;
    margin: auto;
  }

  .agePopupHESOYam__title {
    font-size: 20px;
  }

  .agePopupHESOYam__text {
    font-size: 13px;
  }
}
