* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #011e30;
  line-height: 1.5;
  background: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.header {
  position: relative;
}
.header__inner {
  max-width: 1748px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
  gap: 10px;
  overflow-x: clip;
}
@media (max-width: 500px) {
  .header__inner {
    max-width: none;
    padding: 16px;
    height: auto;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo img {
  display: block;
  width: 110px;
  height: auto;
}
@media (max-width: 900px) {
  .header__logo img {
    width: 90px;
  }
}
@media (max-width: 640px) {
  .header__logo img {
    width: 70px;
  }
}
@media (max-width: 360px) {
  .header__logo img {
    width: 56px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 56px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .header__nav {
    display: none;
  }
}
.header__nav-item {
  position: relative;
  flex: 0 0 auto;
}
.header__nav-link {
  border: none;
  cursor: pointer;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: transparent;
  font-size: 18px;
  font-weight: 500;
  color: #011e30;
  transition: color 0.3s ease;
}
.header__nav-link:hover {
  color: #079ff5;
}
.header__dropdown {
  position: absolute;
  top: calc(100% + 45px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(1, 30, 48, 0.12);
  padding: 43px 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  min-width: 260px;
  z-index: 50;
}
.header__dropdown.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.header__dropdown--mega {
  flex-direction: row;
  align-items: flex-start;
  gap: 124px;
  min-width: 820px;
  padding: 43px 55px;
}
.header__dropdown--lang {
  min-width: 0;
  width: auto;
  padding: 16px 24px;
  gap: 8px;
}
.header__dropdown--lang .header__dropdown-link {
  width: auto;
  text-align: center;
}
.header__dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
.header__dropdown-link {
  border: none;
  cursor: pointer;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: transparent;
  width: 100%;
  text-align: left;
  font-weight: 500;
  font-size: 16px;
  color: #011e30;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.header__dropdown-link:hover {
  color: #079ff5;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  min-width: 0;
}
@media (max-width: 640px) {
  .header__actions .header__icon-btn {
    display: none;
  }
}
@media (max-width: 420px) {
  .header__actions {
    gap: 8px;
  }
}
@media (max-width: 360px) {
  .header__actions {
    gap: 6px;
  }
}
.header__icon-btn {
  border: none;
  cursor: pointer;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  width: 49px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e6f5fe;
  border-radius: 8px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.header__icon-btn:hover {
  opacity: 0.8;
}
.header__icon-btn svg {
  width: 32px;
  height: 32px;
}
.header__cta {
  border: none;
  cursor: pointer;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #079ff5;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 1;
  min-width: 0;
}
.header__cta:hover {
  opacity: 0.8;
}
@media (max-width: 640px) {
  .header__cta {
    padding: 10px 18px;
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .header__cta {
    padding: 7px 12px;
    font-size: 11px;
  }
}
.header__burger {
  border: none;
  cursor: pointer;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: none;
  width: 49px;
  height: 49px;
  align-items: center;
  justify-content: center;
  background: transparent;
  flex-shrink: 0;
}
.header__burger svg {
  width: 24px;
  height: 18px;
}
@media (max-width: 1000px) {
  .header__burger {
    display: flex;
  }
}
@media (max-width: 500px) {
  .header__burger {
    width: 40px;
    height: 40px;
  }
  .header__burger svg {
    width: 22px;
    height: 16px;
  }
}
@media (max-width: 360px) {
  .header__burger {
    width: 32px;
    height: 32px;
  }
  .header__burger svg {
    width: 18px;
    height: 13px;
  }
}
.header__mobile {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow-y: auto;
}
.header__mobile.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.header__mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  height: 110px;
  border-bottom: 1px solid #ebf2fb;
}
@media (max-width: 500px) {
  .header__mobile-top {
    padding: 16px;
    height: auto;
  }
}
.header__mobile-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 500px) {
  .header__mobile-actions .header__icon-btn {
    display: none;
  }
  .header__mobile-actions .header__cta {
    padding: 10px 18px;
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .header__mobile-actions {
    gap: 6px;
  }
  .header__mobile-actions .header__cta {
    padding: 7px 12px;
    font-size: 11px;
  }
}
.header__mobile-close {
  border: none;
  cursor: pointer;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  flex-shrink: 0;
}
.header__mobile-close svg {
  width: 32px;
  height: 32px;
}
@media (max-width: 360px) {
  .header__mobile-close {
    width: 32px;
    height: 32px;
  }
  .header__mobile-close svg {
    width: 24px;
    height: 24px;
  }
}
.header__mobile-nav {
  padding: 8px 24px 40px;
}
@media (max-width: 500px) {
  .header__mobile-nav {
    padding: 8px 16px 32px;
  }
}
.header__mobile-item {
  border-bottom: 1px solid #ebf2fb;
}
.header__mobile-item--plain .header__mobile-link {
  justify-content: flex-start;
}
.header__mobile-link {
  border: none;
  cursor: pointer;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 4px;
  background: transparent;
  font-size: 17px;
  font-weight: 600;
  color: #011e30;
  text-align: left;
}
.header__mobile-chevron {
  flex-shrink: 0;
  width: 12px;
  height: 8px;
  transition: transform 0.3s ease;
}
.is-open > .header__mobile-chevron {
  transform: rotate(180deg);
}
.header__mobile-submenu {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  overflow: hidden;
}
.header__mobile-submenu.is-open {
  grid-template-rows: 1fr;
}
.header__mobile-submenu-inner {
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding-bottom: 16px;
}
.header__mobile-submenu--grid .header__mobile-submenu-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 24px;
}
.header__mobile-sublink {
  display: block;
  padding: 12px 4px;
  font-size: 16px;
  color: rgba(1, 30, 48, 0.75);
}
.header__mobile-sublink:hover {
  color: #079ff5;
}

.hero {
  width: calc(100% - 40px);
  max-width: 1800px;
  margin: 0 auto;
  border-radius: 30px;
  background: url("../image/hero-bg.png") center/cover no-repeat;
  min-height: clamp(420px, 55vw, 953px);
}
@media (max-width: 1250px) {
  .hero {
    width: calc(100% - 24px);
  }
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: start;
  gap: 40px;
  padding: clamp(32px, 6vw, 104px);
}
@media (max-width: 1250px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-content: center;
    gap: 0px;
  }
}
.hero__title {
  font-size: clamp(24px, 4.5vw, 69px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
@media (max-width: 1250px) {
  .hero__title {
    max-width: 435px;
    width: 100%;
    margin-inline: auto;
  }
}
@media (max-width: 800px) {
  .hero__title {
    max-width: 258px;
    width: 100%;
  }
}
.hero__title-break {
  display: none;
}
@media (min-width: 1251px) {
  .hero__title-break {
    display: inline;
  }
}
.hero__title-accent {
  color: #079ff5;
}
.hero__text {
  margin-top: 20px;
  max-width: 440px;
  font-size: clamp(14px, 1.3vw, 20px);
  color: #011e30;
}
@media (max-width: 1250px) {
  .hero__text {
    margin-inline: auto;
  }
}
.hero__buttons {
  margin-top: clamp(18px, 3vw, 42px);
  display: flex;
  gap: 24px;
  flex-wrap: nowrap;
}
@media (max-width: 1250px) {
  .hero__buttons {
    justify-content: center;
  }
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: clamp(14px, 1.8vw, 22px) clamp(16px, 4vw, 40px);
  border-radius: 100px;
  font-size: clamp(12px, 1.3vw, 18px);
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
}
.hero__btn svg {
  width: clamp(14px, 2vw, 23px);
  height: clamp(9px, 1.2vw, 14px);
  flex-shrink: 0;
}
.hero__btn:hover {
  opacity: 0.8;
}
.hero__btn--primary {
  background: #011e30;
  color: #ffffff;
}
.hero__btn--secondary {
  background: #ffffff;
  color: #011e30;
  border: 1px solid #011e30;
}
.hero__scheme {
  position: relative;
  width: 100%;
  max-width: 868px;
  aspect-ratio: 520/380;
  margin: 0 auto;
}
@media (max-width: 1250px) {
  .hero__scheme {
    max-width: 500px;
    aspect-ratio: 700/380;
  }
}
@media (max-width: 700px) {
  .hero__scheme {
    max-width: 360px;
    aspect-ratio: 700/320;
  }
}

.services {
  position: relative;
  overflow: hidden;
  padding: 37px 0 96px;
}
@media (max-width: 1500px) {
  .services {
    padding-bottom: 60px;
  }
}
@media (max-width: 700px) {
  .services {
    padding-bottom: 20px;
  }
}
.services__blob {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 100%;
  background: rgba(160, 209, 252, 0.65);
  filter: blur(160px);
  pointer-events: none;
  z-index: 0;
}
.services__blob--left {
  bottom: 70px;
  left: -300px;
}
.services__blob--right {
  bottom: 70px;
  right: -300px;
}
@media (max-width: 1500px) {
  .services__blob {
    display: none;
  }
}
.services__inner {
  max-width: 1748px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.services__title {
  text-align: center;
  font-size: 52px;
  font-weight: 600;
}
@media (max-width: 1500px) {
  .services__title {
    font-size: 32px;
  }
}
@media (max-width: 700px) {
  .services__title {
    font-size: 18px;
  }
}
.services__subtitle {
  text-align: center;
  max-width: 630px;
  margin: 20px auto 0;
  color: #011e30;
  font-size: 20px;
}
@media (max-width: 1500px) {
  .services__subtitle {
    font-size: 16px;
  }
}
@media (max-width: 700px) {
  .services__subtitle {
    font-size: 14px;
  }
}
.services__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1500px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 820px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}
.services__card {
  position: relative;
  z-index: 1;
  background: #fff;
  box-shadow: 0 0 8px 0 rgba(1, 18, 3, 0.2);
  border-radius: 28px;
  padding: 48px 40px;
}
@media (max-width: 820px) {
  .services__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 20px;
  }
}
.services__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}
.services__icon svg {
  width: 60px;
  height: 60px;
}
.services__card-title {
  margin-top: 24px;
  font-size: 26px;
  font-weight: 700;
}
@media (max-width: 1500px) {
  .services__card-title {
    font-size: 20px;
  }
}
@media (max-width: 820px) {
  .services__card-title {
    font-size: 16px;
  }
}
.services__card-text {
  margin-top: 12px;
  font-size: 16px;
  color: rgba(1, 30, 48, 0.75);
  line-height: 1.6;
}
@media (max-width: 820px) {
  .services__card-text {
    text-align: center;
  }
}

.discuss {
  width: calc(100% - 40px);
  max-width: 1800px;
  margin: 0 auto 96px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0a0e1a 0%, #133b7c 100%);
  color: #ffffff;
  position: relative;
}
@media (max-width: 1500px) {
  .discuss {
    margin: 0 auto 60px;
  }
}
@media (max-width: 700px) {
  .discuss {
    width: calc(100% - 24px);
    margin: 0 auto 20px;
  }
}
.discuss__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 138px 103px;
}
@media (max-width: 1500px) {
  .discuss__inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 64px 48px;
  }
}
@media (max-width: 700px) {
  .discuss__inner {
    padding: 56px 24px;
  }
}
.discuss__content {
  max-width: 506px;
  flex-shrink: 0;
}
.discuss__logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 1500px) {
  .discuss__logo {
    justify-content: center;
  }
}
.discuss__logo img {
  width: 100px;
  height: auto;
}
.discuss__title {
  margin-top: 44px;
  font-size: 62px;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 700px) {
  .discuss__title {
    font-size: 40px;
  }
}
@media (max-width: 700px) {
  .discuss__title {
    margin-top: 24px;
    font-size: 16px;
  }
}
.discuss__title-accent {
  color: #079ff5;
}
.discuss__btn {
  border: none;
  cursor: pointer;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #079ff5;
  color: #ffffff;
  padding: 14px 28px;
  margin-top: 54px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.discuss__btn svg {
  flex-shrink: 0;
}
.discuss__btn:hover {
  opacity: 0.8;
}
@media (max-width: 700px) {
  .discuss__btn {
    margin-top: 28px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.discuss__scheme {
  position: relative;
  width: 100%;
  max-width: 1061px;
  aspect-ratio: 700/300;
  margin-bottom: 60px;
  background: url("../image/discuss-scheme.png") center/contain no-repeat;
}
@media (max-width: 700px) {
  .discuss__scheme {
    display: none;
  }
}
.discuss__step {
  position: absolute;
  top: 94%;
  width: 25%;
  text-align: center;
  transform: translateX(-50%);
}
.discuss__step--1 {
  left: 8%;
}
.discuss__step--2 {
  left: 35%;
}
.discuss__step--3 {
  left: 62%;
}
.discuss__step--4 {
  left: 89%;
}
.discuss__step-title {
  font-size: clamp(6px, 1.8vw, 15px);
  font-weight: 700;
}
.discuss__step-text {
  margin-top: 4px;
  font-size: clamp(3px, 1.2vw, 13px);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
}
.discuss__mobileSteps {
  display: none;
}
@media (max-width: 700px) {
  .discuss__mobileSteps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(12px, 4vw, 24px);
    width: 100%;
    max-width: 380px;
    margin: clamp(20px, 6vw, 48px) auto 0;
  }
}
.discuss__mobileStep {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.discuss__mobileStepImg {
  width: clamp(80px, 30vw, 160px);
  height: auto;
  display: block;
}
.discuss__mobileStepTitle {
  margin-top: clamp(8px, 2.5vw, 14px);
  font-size: clamp(14px, 3.5vw, 18px);
  font-weight: 700;
}
.discuss__mobileStepText {
  margin-top: 6px;
  font-size: clamp(12px, 3vw, 14px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  max-width: 260px;
}

.stages {
  padding-bottom: 96px;
}
@media (max-width: 1500px) {
  .stages {
    padding-bottom: 60px;
  }
}
@media (max-width: 700px) {
  .stages {
    padding-bottom: 20px;
  }
}
.stages__inner {
  max-width: 1848px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  grid-template-areas: "title title" "media content";
  gap: 30px;
}
@media (max-width: 1500px) {
  .stages__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "media" "content";
  }
}
.stages__title {
  grid-area: title;
  font-size: 42px;
  font-weight: 600;
}
@media (max-width: 1500px) {
  .stages__title {
    font-size: 32px;
    text-align: center;
  }
}
@media (max-width: 800px) {
  .stages__title {
    font-size: 18px;
    text-align: center;
  }
}
.stages__media {
  grid-area: media;
  display: flex;
  min-width: 0;
}
.stages__content {
  grid-area: content;
  min-width: 0;
}
.stages__photo {
  width: 100%;
  min-height: 607px;
  border-radius: 28px;
  background: url("../image/stages-photo.png") center/cover no-repeat;
}
@media (max-width: 620px) {
  .stages__photo {
    min-height: 320px;
  }
}
.stages__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  min-width: 0;
}
@media (max-width: 1200px) {
  .stages__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 800px) {
  .stages__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    scrollbar-width: none;
  }
  .stages__grid::-webkit-scrollbar {
    display: none;
  }
}
.stages__card {
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #ebf2fb;
  border-radius: 28px;
  padding: 48px 40px;
}
.stages__card:nth-child(1), .stages__card:nth-child(4) {
  background: #ebf2fb;
  border-color: transparent;
}
@media (max-width: 800px) {
  .stages__card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .stages__card:nth-child(2), .stages__card:nth-child(3) {
    background: #ebf2fb;
    border-color: #ebf2fb;
  }
}
.stages__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}
.stages__icon svg {
  width: 60px;
  height: 60px;
}
.stages__card-title {
  margin-top: 24px;
  font-size: 26px;
  font-weight: 700;
}
@media (max-width: 800px) {
  .stages__card-title {
    text-align: center;
    font-size: 18px;
  }
}
.stages__card-text {
  margin-top: 18px;
  font-size: 16px;
  color: rgba(1, 19, 32, 0.75);
  line-height: 1.6;
}
@media (max-width: 800px) {
  .stages__card-text {
    text-align: center;
    font-size: 12px;
  }
}
.stages__nav {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 800px) {
  .stages__nav {
    display: flex;
  }
}
.stages__nav-btn {
  border: none;
  cursor: pointer;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ebf2fb;
  color: #011e30;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.stages__nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.stages__nav-btn svg {
  width: 18px;
  height: 18px;
}

.gamedev {
  width: calc(100% - 40px);
  max-width: 1800px;
  margin: 0 auto 96px;
  border-radius: 30px;
  overflow: hidden;
  background: url("../image/gamedev-bg.png") center/cover no-repeat;
  color: #ffffff;
}
@media (max-width: 1500px) {
  .gamedev {
    margin: 0 auto 60px;
    background: url("../image/gamedev-bg-2.png") center 30%/cover no-repeat;
  }
}
@media (max-width: 700px) {
  .gamedev {
    width: calc(100% - 24px);
    margin: 0 auto 36px;
    background: url("../image/gamedev-bg-3.png") center/cover no-repeat;
  }
}
.gamedev__inner {
  min-height: 847px;
  display: flex;
  align-items: center;
}
@media (max-width: 1500px) {
  .gamedev__inner {
    min-height: 448px;
    align-items: flex-start;
    justify-content: center;
  }
}
@media (max-width: 800px) {
  .gamedev__inner {
    min-height: 496px;
  }
}
.gamedev__content {
  padding: 103px;
}
@media (max-width: 1500px) {
  .gamedev__content {
    padding: 74px 32px 0;
    text-align: center;
  }
}
@media (max-width: 800px) {
  .gamedev__content {
    padding: 27px 15px 0;
    text-align: center;
  }
}
.gamedev__title {
  max-width: 580px;
  font-weight: 600;
  font-size: 76px;
  line-height: 128%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #fff;
}
@media (max-width: 1500px) {
  .gamedev__title {
    font-size: 40px;
  }
}
@media (max-width: 800px) {
  .gamedev__title {
    max-width: 100%;
    font-size: 20px;
  }
}
.gamedev__text {
  margin-top: 30px;
  max-width: 580px;
  font-weight: 400;
  font-size: 24px;
  line-height: 160%;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 1500px) {
  .gamedev__text {
    font-size: 20px;
  }
}
@media (max-width: 800px) {
  .gamedev__text {
    max-width: 100%;
    font-size: 12px;
    margin-inline: auto;
  }
}
.gamedev__btn {
  border: none;
  cursor: pointer;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: inline-block;
  margin-top: 42px;
  background: #079ff5;
  padding: 22px 91px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  transition: opacity 0.3s ease;
}
.gamedev__btn:hover {
  opacity: 0.8;
}
@media (max-width: 1500px) {
  .gamedev__btn {
    padding: 20px 93px;
    font-size: 16px;
  }
}
@media (max-width: 800px) {
  .gamedev__btn {
    width: 100%;
    padding: 14px 93px;
    margin-top: 20px;
  }
}

.faq {
  padding: 0 0 96px;
}
@media (max-width: 1500px) {
  .faq {
    padding-bottom: 60px;
  }
}
@media (max-width: 700px) {
  .faq {
    padding-bottom: 20px;
  }
}
.faq__inner {
  max-width: 1748px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq__title {
  text-align: center;
  font-size: 52px;
  font-weight: 600;
}
@media (max-width: 1500px) {
  .faq__title {
    font-size: 32px;
  }
}
@media (max-width: 700px) {
  .faq__title {
    font-size: 18px;
  }
}
.faq__list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 700px) {
  .faq__list {
    margin-top: 26px;
  }
}
.faq__item {
  border-radius: 24px;
  background: #ffffff;
  border: 2px solid #e6f5fe;
  transition: all 0.3s ease;
}
.faq__item.is-open {
  background: #e6f5fe;
}
.faq__question {
  border: none;
  cursor: pointer;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 40px;
  background: transparent;
  font-size: 20px;
  font-weight: 600;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #011e30;
  text-align: left;
}
@media (max-width: 700px) {
  .faq__question {
    font-size: 14px;
  }
}
.faq__toggle {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #079ff5;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq__toggle svg {
  width: 14px;
  height: 14px;
}
.faq__toggle-line {
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.is-open .faq__toggle-line--v {
  transform: rotate(90deg);
  opacity: 0;
}
.faq__answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.is-open .faq__answer-wrap {
  grid-template-rows: 1fr;
}
.faq__answer {
  overflow: hidden;
  min-height: 0;
  padding: 0 32px;
  font-size: 16px;
  color: rgba(1, 19, 32, 0.8);
  line-height: 1.6;
}
.is-open .faq__answer {
  padding: 0 32px 24px;
}

.contact {
  padding: 0 0 96px;
}
@media (max-width: 1500px) {
  .contact {
    padding-bottom: 60px;
  }
}
@media (max-width: 700px) {
  .contact {
    padding-bottom: 20px;
  }
}
.contact__inner {
  max-width: 1800px;
  margin: 0 auto;
  padding: 87px 24px;
  background: url("../image/hero-bg.png") center/cover no-repeat;
  border-radius: 30px;
}
@media (max-width: 1500px) {
  .contact__inner {
    padding: 50px 24px;
  }
}
@media (max-width: 700px) {
  .contact__inner {
    padding: 20px 24px;
  }
}
.contact__card {
  background: #ffffff;
  border-radius: 30px;
  padding: 74px 115px;
  max-width: 972px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 700px) {
  .contact__card {
    padding: 36px 24px;
  }
}
.contact__title {
  font-weight: 600;
  font-size: 42px;
  text-align: center;
  color: #011e30;
}
@media (max-width: 1500px) {
  .contact__title {
    font-size: 30px;
  }
}
@media (max-width: 700px) {
  .contact__title {
    font-size: 18px;
  }
}
.contact__text {
  margin-top: 22px;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  color: rgba(1, 19, 32, 0.75);
  max-width: 500px;
  margin-inline: auto;
}
@media (max-width: 1500px) {
  .contact__text {
    font-size: 14px;
  }
}
@media (max-width: 700px) {
  .contact__text {
    font-size: 12px;
  }
}
.contact__form {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 42px;
  text-align: left;
}
@media (max-width: 700px) {
  .contact__form {
    gap: 30px;
  }
}
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact__field.is-invalid .contact__input {
  border-color: #e5484d;
}
.contact__field.is-invalid .contact__error {
  opacity: 1;
  visibility: visible;
}
.contact__input {
  border: none;
  border-bottom: 1px solid rgba(1, 19, 32, 0.8);
  background: transparent;
  padding-bottom: 15px;
  font-size: 16px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #011e30;
  transition: border-color 0.3s ease;
}
.contact__input:focus {
  outline: none;
  border-color: #079ff5;
}
.contact__input::placeholder {
  color: #7c8a9c;
}
.contact__error {
  font-size: 13px;
  line-height: 1.3;
  min-height: 17px;
  color: #e5484d;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}
.contact__consent-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}
.contact__consent {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  color: #011e30;
}
.contact__consent-wrap.is-invalid .contact__consent {
  color: #e5484d;
}
.contact__checkbox {
  width: 20px;
  height: 20px;
  accent-color: #079ff5;
}
.contact__consent-wrap.is-invalid .contact__checkbox {
  accent-color: #e5484d;
}
.contact__consent-wrap.is-invalid .contact__error--consent {
  opacity: 1;
  visibility: visible;
}
.contact__submit {
  border: none;
  cursor: pointer;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  align-self: center;
  background: #011e30;
  color: #ffffff;
  padding: 22px 96px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.contact__submit:hover {
  opacity: 0.8;
}
@media (max-width: 700px) {
  .contact__submit {
    padding: 16px 48px;
    font-size: 14px;
  }
}
.contact__modal {
  position: fixed;
  inset: 0;
  background: rgba(1, 19, 32, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 300;
}
.contact__modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.contact__modal-card {
  position: relative;
  background: #ffffff;
  border-radius: 30px;
  padding: 56px 48px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  transform: translateY(16px);
  transition: transform 0.3s ease;
}
.contact__modal.is-open .contact__modal-card {
  transform: translateY(0);
}
.contact__modal-close {
  border: none;
  cursor: pointer;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.contact__modal-close svg {
  width: 18px;
  height: 18px;
}
.contact__modal-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e6f5fe;
  color: #079ff5;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.contact__modal-icon svg {
  width: 28px;
  height: 28px;
}
.contact__modal-title {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 700;
  color: #011e30;
}
.contact__modal-text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(1, 19, 32, 0.7);
}
.contact__modal-btn {
  border: none;
  cursor: pointer;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin-top: 28px;
  background: #079ff5;
  color: #ffffff;
  padding: 14px 40px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.3s ease;
}
.contact__modal-btn:hover {
  opacity: 0.8;
}

.footer {
  padding-top: 60px;
}
@media (max-width: 1500px) {
  .footer {
    padding-top: 40px;
  }
}
@media (max-width: 700px) {
  .footer {
    padding-top: 20px;
  }
}
.footer__inner {
  max-width: 1748px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(255px, 320px) repeat(4, 1fr);
  grid-template-areas: "brand about products legal help";
  gap: 103px;
}
@media (max-width: 1400px) {
  .footer__inner {
    grid-template-columns: minmax(220px, 280px) repeat(2, 1fr);
    grid-template-areas: "brand about products" "brand legal help";
    gap: 40px 60px;
  }
}
@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "about products" "legal help" "brand brand";
    gap: 20px;
  }
}
.footer__brand {
  grid-area: brand;
}
@media (max-width: 900px) {
  .footer__brand {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footer__col:nth-child(2) {
  grid-area: about;
}
.footer__col:nth-child(3) {
  grid-area: products;
}
.footer__col:nth-child(4) {
  grid-area: legal;
}
.footer__col:nth-child(5) {
  grid-area: help;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer__logo img {
  height: 44px;
  width: auto;
}
.footer__about {
  margin-top: 29px;
  font-weight: 500;
  font-size: 14px;
  line-height: 186%;
  color: rgba(1, 30, 48, 0.8);
  max-width: 295px;
}
@media (max-width: 900px) {
  .footer__about {
    margin-inline: auto;
  }
}
.footer__social {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}
@media (max-width: 900px) {
  .footer__social {
    justify-content: center;
  }
}
.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 7px;
  background: #f8f8f8;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer__social-link:hover {
  background-color: #c7e1ff;
}
.footer__social-link svg {
  width: 22px;
  height: 22px;
}
.footer__col-title {
  font-weight: 700;
  font-size: 14px;
  color: #011320;
  margin-bottom: 28px;
}
@media (max-width: 600px) {
  .footer__col-title {
    margin-bottom: 20px;
  }
}
.footer__link {
  display: block;
  font-size: 16px;
  color: #011e30;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
@media (max-width: 1500px) {
  .footer__link {
    margin-bottom: 16px;
  }
}
@media (max-width: 1500px) {
  .footer__link {
    margin-bottom: 12px;
  }
}
.footer__link:hover {
  color: #079ff5;
}
.footer__link--pill {
  display: inline-block;
  margin-top: 4px;
  border: 1px solid #011e30;
  border-radius: 100px;
  padding: 8px 20px;
}
.footer__link--pill:hover {
  opacity: 0.8;
  color: #011e30;
}
.footer__bottom {
  margin-top: 60px;
  padding: 24px;
  text-align: center;
  border-top: 1px solid #b3b3b3;
  font-size: 16px;
  color: rgba(1, 30, 48, 0.8);
}
@media (max-width: 600px) {
  .footer__bottom {
    margin-top: 40px;
    padding: 20px 16px;
    font-size: 14px;
  }
}
