@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

button {
  padding: 0;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Montserrat";
  src: url(../assets/fonts/Montserrat/Montserrat-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url(../assets/fonts/Montserrat/Montserrat-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url(../assets/fonts/Montserrat/Montserrat-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url(../assets/fonts/Oswald/Oswald-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-dark: #000;
  --color-purple: #21083B;
  --color-header-button: #EBEEF6;
  --color-header-lang-button: rgba(255, 255, 255, 0.30);
  --color-text-white: #FFF;
  --color-text-white-accent: #EBEEF6;
  --color-text-blue: #3865C2;
  --color-border-purple: 1px solid #9578FA;
  --color-border-blue: 1px solid var(--New-Blue-Blue-Dark, #3865C2);
  --font-family-base: "Montserrat", sans-serif;
  --font-family-accent: "Oswald", sans-serif;
  --transition-duration: 0.25s;
}

.visibility-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 838.98px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 838.98px) {
  .visible-mobile {
    display: none !important;
  }
}

@media (width <= 1750.98px) {
  .hidden-laptop {
    display: none !important;
  }
}

@media (width > 1750.98px) {
  .visible-laptop {
    display: none !important;
  }
}

@media (width <= 1252.98px) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (width > 1252.98px) {
  .visible-tablet {
    display: none !important;
  }
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html.is-lock {
  overflow: hidden;
}

.container {
  width: 100%;
  position: relative;
  background: #000;
}

.header {
  position: fixed;
  z-index: 100;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: transparent;
  transition: margin-top var(--transition-duration) ease;
}
@media (width <= 838.98px) {
  .header {
    flex-direction: column;
    margin-top: 40px;
  }
}
.header--fixed {
  margin-top: 20px;
}
@media (width <= 838.98px) {
  .header--fixed {
    margin-top: 10px;
  }
}
.header__inner {
  display: flex;
  width: 100%;
  max-width: 1440px;
  padding: 20px 32px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 24px;
  border: 1px solid var(--1, rgba(255, 255, 255, 0.1));
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}
@media (width <= 1750.98px) {
  .header__inner {
    max-width: 1216px;
  }
}
@media (width <= 838.98px) {
  .header__inner {
    padding: 12px 12px 8px 12px;
    max-width: 450px;
    background: none;
    border: none;
    border-radius: unset;
    backdrop-filter: none;
    box-shadow: none;
  }
}
.header__wrapper--mobile {
  display: contents;
  width: 100%;
  max-width: 450px;
}
@media (width <= 838.98px) {
  .header__wrapper--mobile {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    border: 1px solid var(--1, rgba(255, 255, 255, 0.1));
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  }
}
.header__menu-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (width <= 838.98px) {
  .header__menu-wrapper {
    display: contents;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (width <= 1252.98px) {
  .header__nav {
    gap: 30px;
  }
}
@media (width <= 838.98px) {
  .header__nav {
    gap: 0px;
    justify-content: space-between;
  }
  .header__nav--mobile {
    padding: 12px;
    width: 100%;
    max-width: 450px;
  }
}
.header__nav-link {
  color: var(--New-Main-White-Primary, #FFF);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
  transition: opacity var(--transition-duration) ease;
  white-space: nowrap;
}
.header__nav-link:hover {
  opacity: 0.6;
}
@media (width <= 838.98px) {
  .header__nav-link {
    font-size: 14px;
  }
}
.header__cta {
  display: flex;
  min-height: 48px;
  padding: 4px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  background: var(--System-Green, #50CC55);
  text-decoration: none;
  transition: opacity var(--transition-duration) ease;
}
.header__cta-text {
  color: var(--Neutrals-Neutral_0, #FFF);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  white-space: nowrap;
}
.header__cta:hover {
  opacity: 0.6;
}
@media (width <= 838.98px) {
  .header__cta {
    padding: 4px 12px;
    min-width: 233px;
  }
}
.header__lang {
  display: flex;
  width: 42px;
  height: 42px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: var(--color-header-lang-button);
  position: relative;
  user-select: none;
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
.header__lang-item {
  width: 100%;
  border-radius: 10px;
}
.header__lang-current {
  background: none;
  border: none;
  color: var(--color-text-white);
  cursor: pointer;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.header__lang-current, .header__lang-btn {
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.header__lang-current:hover, .header__lang-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}
.header__lang-current:active, .header__lang-btn:active {
  transform: scale(0.98);
}
.header__lang-list {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 0;
  justify-content: center;
  align-items: center;
  list-style: none;
  border-radius: 10px;
  background: var(--color-header-lang-button);
  width: 42px;
  z-index: 10;
}
.header__lang--open .header__lang-list {
  display: flex;
}
.header__lang--open .header__lang-current {
  display: none;
}
.header__lang-btn {
  display: block;
  height: 42px;
  width: 100%;
  background: none;
  border: none;
  color: var(--color-text-white);
  cursor: pointer;
  border-radius: 10px;
}

.hero {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  background: url(../assets/img/hero-phone.webp), linear-gradient(220deg, #1D1D1D 6.39%, #000 69.36%);
  background-repeat: no-repeat, no-repeat;
  background-position: calc(50% + 310px) top, center;
  position: relative;
}
@media (width <= 1750.98px) {
  .hero {
    background-size: 1250px 900px, cover;
    background-position: calc(50% + 250px) calc(0% + 40px), center;
  }
}
@media (width <= 1252.98px) {
  .hero {
    background-position: calc(50% - 110px) calc(50% + 220px), center;
  }
}
@media (width <= 838.98px) {
  .hero {
    background-size: 620px 450px, cover;
    background-position: calc(50% - 50px) calc(50% + 190px), center;
    padding-inline: 12px;
  }
}
.hero__inner {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  gap: 20px;
  width: 100%;
  max-width: 1440px;
  align-items: flex-start;
  padding: 380px 0px 250px 0px;
}
@media (width <= 1750.98px) {
  .hero__inner {
    max-width: 1216px;
    min-height: 940px;
    padding: 360px 0px 230px 0px;
  }
}
@media (width <= 1252.98px) {
  .hero__inner {
    align-items: center;
    padding: 250px 0px 600px 0px;
    min-height: unset;
  }
}
@media (width <= 838.98px) {
  .hero__inner {
    padding: 230px 0px 420px 0px;
  }
}
.hero__title, .hero__subtitle, .hero__text {
  width: 100%;
  max-width: 667px;
}
@media (width <= 1750.98px) {
  .hero__title, .hero__subtitle, .hero__text {
    max-width: 550px;
  }
}
@media (width <= 1252.98px) {
  .hero__title, .hero__subtitle, .hero__text {
    max-width: 800px;
    width: 100%;
    text-align: center;
  }
}
@media (width <= 1252.98px) and (width <= 838.98px) {
  .hero__title, .hero__subtitle, .hero__text {
    max-width: 450px;
    text-align: left;
  }
}
.hero__title {
  color: var(--Neutrals-Neutral_0, #FFF);
  font-family: var(--font-family-accent);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
}
@media (width <= 838.98px) {
  .hero__title {
    font-size: 32px;
  }
}
.hero__subtitle {
  color: var(--Neutrals-Neutral_0, #FFF);
  font-family: var(--font-family-accent);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
@media (width <= 838.98px) {
  .hero__subtitle {
    font-size: 24px;
  }
}
.hero__text {
  color: var(--Neutrals-Neutral_0, #FFF);
  font-family: var(--font-family-base);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 838.98px) {
  .hero__text {
    font-size: 16px;
  }
}
.hero__rock {
  position: absolute;
  z-index: 0;
  bottom: -40px;
  left: 0;
  right: 0;
  height: 100%;
  background: url(../assets/img/hero-rock.webp);
  background-repeat: no-repeat;
  background-position: right bottom;
}
@media (width <= 1750.98px) {
  .hero__rock {
    background-size: 1000px 650px;
  }
}
@media (width <= 1252.98px) {
  .hero__rock {
    bottom: -50px;
    background-size: 800px 520px;
  }
}
@media (width <= 838.98px) {
  .hero__rock {
    bottom: -40px;
    background-size: 560px 450px;
  }
}

.capabilities {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 160px 0px;
  position: relative;
  z-index: 1;
  border-radius: 80px 80px 0 0;
  background: url(../assets/img/capabilities-360.webp), url(../assets/img/capabilities-AR.webp), linear-gradient(180deg, #1D1D1D 27.21%, #000 98.76%);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: calc(50% - 460px) 160px, calc(50% + 515px) calc(50% + 40px), center;
}
@media (width <= 1750.98px) {
  .capabilities {
    background-position: calc(50% - 300px) 160px, calc(50% + 400px) calc(50% + 40px), center;
  }
}
@media (width <= 1252.98px) {
  .capabilities {
    border-radius: 40px 40px 0px 0px;
    background-position: calc(50% - 50px) 160px, calc(50% + 150px) calc(50% + 320px), center;
  }
}
@media (width <= 838.98px) {
  .capabilities {
    padding: 80px 12px;
    background: linear-gradient(180deg, #1D1D1D 27.21%, #000 98.76%);
  }
}
.capabilities__inner {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 160px;
  background: transparent;
}
@media (width <= 1750.98px) {
  .capabilities__inner {
    max-width: 1216px;
  }
}
@media (width <= 1252.98px) {
  .capabilities__inner {
    max-width: 800px;
  }
}
@media (width <= 838.98px) {
  .capabilities__inner {
    max-width: 450px;
    gap: 115px;
  }
}
.capabilities__card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 60px;
}
.capabilities__title {
  color: var(--01, #EBEEF6);
  text-align: center;
  font-family: Oswald;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
}
@media (width <= 838.98px) {
  .capabilities__title {
    font-size: 32px;
  }
}
.capabilities__grid {
  display: flex;
  width: 100%;
  height: 440px;
  gap: 20px;
}
@media (width <= 1252.98px) {
  .capabilities__grid {
    flex-wrap: wrap;
    height: unset;
    max-width: 800px;
    align-items: center;
    justify-content: center;
    align-items: stretch;
  }
}
@media (width <= 838.98px) {
  .capabilities__grid {
    height: unset;
    max-width: 450px;
    align-items: stretch;
  }
}
.capabilities__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 33%;
  height: 100%;
}
@media (width <= 1252.98px) {
  .capabilities__column {
    display: contents;
  }
}
.capabilities__card {
  display: flex;
  padding: 20px 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-radius: 24px;
  border: 1px solid var(--1, rgba(255, 255, 255, 0.1));
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  flex: 1;
}
@media (width <= 1252.98px) {
  .capabilities__card {
    min-width: 350px;
    max-width: 350px;
  }
}
@media (width <= 838.98px) {
  .capabilities__card {
    padding: 20px;
    min-width: unset;
    max-width: 50%;
  }
}
.capabilities__card--360 {
  padding-top: 104px;
}
@media (width <= 1252.98px) {
  .capabilities__card--360 {
    min-width: 600px;
  }
}
@media (width <= 838.98px) {
  .capabilities__card--360 {
    padding-top: 20px;
    min-width: 100%;
  }
}
.capabilities__card--modification {
  padding-bottom: 197px;
  width: 33%;
}
@media (width <= 1252.98px) {
  .capabilities__card--modification {
    min-width: 600px;
  }
}
@media (width <= 838.98px) {
  .capabilities__card--modification {
    padding-bottom: 120px;
    min-width: 100%;
  }
}
.capabilities__card--zoom {
  padding-top: 147px;
}
@media (width <= 1252.98px) {
  .capabilities__card--zoom {
    min-width: 600px;
  }
}
@media (width <= 838.98px) {
  .capabilities__card--zoom {
    padding-top: 120px;
    min-width: 100%;
  }
}
.capabilities__media {
  position: absolute;
}
.capabilities__media--360 {
  top: -40px;
  right: 0;
}
@media (width <= 1252.98px) {
  .capabilities__media--360 {
    top: -20px;
    right: 40px;
  }
}
@media (width <= 838.98px) {
  .capabilities__media--360 {
    top: -25px;
    right: calc(50% - 170px);
  }
  .capabilities__media--360 img {
    width: 221px;
    height: 86px;
  }
}
.capabilities__media--zoom {
  top: -8px;
  right: 30px;
}
@media (width <= 1750.98px) {
  .capabilities__media--zoom {
    right: 20px;
  }
}
@media (width <= 1252.98px) {
  .capabilities__media--zoom {
    top: -10px;
    right: 100px;
  }
}
@media (width <= 838.98px) {
  .capabilities__media--zoom {
    right: calc(50% - 175px);
  }
  .capabilities__media--zoom img {
    width: 256px;
    height: 157px;
  }
}
.capabilities__media--modification {
  right: 0;
  bottom: -50px;
}
@media (width <= 1252.98px) {
  .capabilities__media--modification {
    right: 30px;
    bottom: -50px;
  }
}
@media (width <= 838.98px) {
  .capabilities__media--modification img {
    width: 350px;
    height: 178px;
  }
}
.capabilities__card-title {
  color: var(--Neutrals-Neutral_0, #FFF);
  font-family: Oswald;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 838.98px) {
  .capabilities__card-title {
    font-size: 24px;
  }
}
.capabilities__card-text {
  color: var(--Neutrals-Neutral_0, #FFF);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 838.98px) {
  .capabilities__card-text {
    font-size: 14px;
  }
}
.capabilities__stat-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  width: 100%;
}
@media (width <= 838.98px) {
  .capabilities__stat-wrapper {
    gap: 25px;
  }
}
.capabilities__stat-title {
  color: var(--01, #EBEEF6);
  font-family: Oswald;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 838.98px) {
  .capabilities__stat-title {
    font-size: 32px;
  }
}
.capabilities__stat-text {
  color: var(--01, #EBEEF6);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 838.98px) {
  .capabilities__stat-text {
    font-size: 14px;
  }
}
.capabilities__note {
  color: var(--01, #EBEEF6);
  text-align: center;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 838.98px) {
  .capabilities__note {
    font-size: 16px;
  }
}
.capabilities__stats {
  display: flex;
  width: 100%;
  gap: 20px;
}
@media (width <= 838.98px) {
  .capabilities__stats {
    flex-wrap: wrap;
    align-items: stretch;
    gap: 12px;
  }
}
.capabilities__stat {
  display: flex;
  width: 33%;
  padding: 20px 30px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 24px;
  border: 1px solid var(--1, rgba(255, 255, 255, 0.1));
  background: rgba(255, 255, 255, 0.1);
}
@media (width <= 838.98px) {
  .capabilities__stat {
    width: 48%;
  }
  .capabilities__stat:nth-child(3) {
    width: 100%;
  }
}

.business {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 160px 0;
  border-radius: 80px;
  background: url(../assets/img/business-phones.webp), #DBDBE9;
  background-repeat: no-repeat;
  background-position: calc(50% - 460px) 41px, center;
}
@media (width <= 1252.98px) {
  .business {
    border-radius: 40px;
    padding: 800px 0px 160px 0px;
    background-position: center calc(0% + 30px), center;
    background-size: 800px 825px;
  }
}
@media (width <= 838.98px) {
  .business {
    padding: 640px 12px 80px 12px;
    background-position: calc(50% - 50px) calc(0% + 30px), center;
    background-size: 620px 620px;
  }
}
.business__inner {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  gap: 160px;
}
@media (width <= 1750.98px) {
  .business__inner {
    max-width: 1216px;
  }
}
@media (width <= 1252.98px) {
  .business__inner {
    max-width: 800px;
    gap: 80px;
  }
}
@media (width <= 838.98px) {
  .business__inner {
    max-width: 450px;
  }
}
.business__content {
  display: flex;
  align-self: flex-end;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 673px;
  min-height: 730px;
}
@media (width <= 1750.98px) {
  .business__content {
    width: 586px;
  }
}
@media (width <= 1252.98px) {
  .business__content {
    width: 100%;
    align-self: center;
  }
}
@media (width <= 838.98px) {
  .business__content {
    min-height: unset;
  }
}
.business__title {
  color: var(--Style, #1E1E1E);
  font-family: Oswald;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: left;
  align-self: flex-start;
}
@media (width <= 1252.98px) {
  .business__title {
    align-self: center;
    text-align: center;
  }
}
@media (width <= 838.98px) {
  .business__title {
    font-size: 32px;
    text-align: left;
    align-self: flex-start;
    margin-bottom: 25px;
  }
}
.business__note {
  color: #1E1E1E;
  text-align: center;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 1252.98px) {
  .business__note {
    align-self: center;
    text-align: center;
  }
}
@media (width <= 838.98px) {
  .business__note {
    font-size: 16px;
  }
}
.business__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.business__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 12px;
}
.business__item-title {
  color: var(--Style, #1E1E1E);
  font-family: Oswald;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 838.98px) {
  .business__item-title {
    font-size: 24px;
  }
}
.business__item-text {
  color: var(--Style, #1E1E1E);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}
@media (width <= 838.98px) {
  .business__item-text {
    font-size: 14px;
  }
}

.tech {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 160px 0px;
  border-radius: 80px;
  background: url(../assets/img/tech-phone.webp), url(../assets/img/tech-bg.webp), linear-gradient(139deg, #1D1D1D 17.43%, #000 56.88%);
  background-repeat: no-repeat;
  background-position: calc(50% - 380px) calc(50% + 330px), 50% top, center;
}
@media (width <= 1750.98px) {
  .tech {
    background-position: calc(50% - 200px) calc(50% + 320px), calc(50% + 40px) top, center;
  }
}
@media (width <= 1252.98px) {
  .tech {
    background-position: calc(50% - 80px) calc(50% + 500px), calc(50% - 200px) calc(50% + 262px), center;
    border-radius: 40px;
  }
}
@media (width <= 838.98px) {
  .tech {
    padding: 80px 12px;
    background-position: calc(50% - 0px) calc(50% + 410px), calc(50% - 110px) calc(50% + 262px), center;
    background-size: 376px 235px, 910px 844px, cover;
  }
}
.tech__inner {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 500px;
}
@media (width <= 1750.98px) {
  .tech__inner {
    max-width: 1216px;
  }
}
@media (width <= 1252.98px) {
  .tech__inner {
    max-width: 800px;
    gap: 900px;
  }
}
@media (width <= 838.98px) {
  .tech__inner {
    max-width: 450px;
    gap: 540px;
  }
}
.tech__title {
  color: var(--Neutrals-Neutral_0, #FFF);
  text-align: center;
  font-family: Oswald;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
}
@media (width <= 1252.98px) {
  .tech__title {
    align-self: center;
  }
}
@media (width <= 838.98px) {
  .tech__title {
    font-size: 32px;
  }
}
.tech__features {
  width: 675px;
  display: flex;
  align-self: flex-start;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 80px;
}
@media (width <= 1252.98px) {
  .tech__features {
    width: 100%;
  }
}
.tech__list-wrapper {
  display: flex;
  min-height: 730px;
  gap: 35px;
}
@media (width <= 838.98px) {
  .tech__list-wrapper {
    gap: 14px;
    min-height: unset;
  }
}
.tech__list {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 30px;
}
@media (width <= 838.98px) {
  .tech__list {
    gap: 14px;
  }
}
.tech__item {
  display: flex;
  width: 100%;
  padding: 32px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 12px;
  border-radius: 24px;
  border: 1px solid var(--1, rgba(255, 255, 255, 0.1));
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
}
@media (width <= 838.98px) {
  .tech__item {
    padding: 24px 16px;
  }
}
.tech__item--unity {
  padding-top: 93px;
}
@media (width <= 838.98px) {
  .tech__item--unity {
    padding-top: 93px;
  }
}
.tech__item--optimization {
  padding-top: 131px;
}
@media (width <= 838.98px) {
  .tech__item--optimization {
    padding-top: 131px;
  }
}
.tech__media {
  position: absolute;
}
.tech__media--unity {
  width: 88px;
  height: 100px;
  top: -25px;
  right: calc(50% - 20px);
}
@media (width <= 838.98px) {
  .tech__media--unity {
    right: calc(50% - 40px);
  }
}
.tech__media--optimization {
  width: 246px;
  height: 186px;
  top: -50px;
  right: 30px;
}
@media (width <= 838.98px) {
  .tech__media--optimization {
    right: calc(50% - 175px);
    top: 0;
  }
  .tech__media--optimization img {
    width: 171px;
    height: 128px;
  }
}
.tech__item-title {
  color: var(--New-Main-White-Primary, #FFF);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
@media (width <= 838.98px) {
  .tech__item-title {
    font-size: 16px;
  }
}
.tech__item-text {
  color: var(--Neutrals-Neutral_0, #FFF);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
@media (width <= 838.98px) {
  .tech__item-text {
    font-size: 14px;
  }
}
.tech__text-block {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}
@media (width <= 1252.98px) {
  .tech__text-block {
    align-items: flex-start;
  }
}
.tech__hint {
  color: var(--Neutrals-Neutral_0, #FFF);
  text-align: center;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 1252.98px) {
  .tech__hint {
    text-align: left;
  }
}
@media (width <= 838.98px) {
  .tech__hint {
    font-size: 16px;
  }
}
.tech__slogan {
  color: var(--Neutrals-Neutral_0, #FFF);
  text-align: center;
  font-family: Oswald;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}
@media (width <= 1252.98px) {
  .tech__slogan {
    text-align: left;
  }
}
@media (width <= 838.98px) {
  .tech__slogan {
    font-size: 24px;
  }
}

.interactive {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 160px 0px;
  position: relative;
  background: url(../assets/img/interactive-laptop.webp);
  background-repeat: no-repeat;
  background-position: calc(50% + 620px) calc(100% - 210px);
}
@media (width <= 1750.98px) {
  .interactive {
    padding-top: 770px;
    background-position: center top;
    padding-bottom: 100px;
  }
}
@media (width <= 1252.98px) {
  .interactive {
    padding-top: 650px;
    background-size: 980px 700px;
  }
}
@media (width <= 838.98px) {
  .interactive {
    padding: 205px 0px 80px 0px;
    background-size: 410px 251px;
  }
}
.interactive-bg {
  position: absolute;
  bottom: 150px;
  left: calc(50% - 350px);
  width: 1920px;
  height: 383px;
  flex-shrink: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  z-index: 0;
}
@media (width <= 1750.98px) {
  .interactive-bg {
    left: 0%;
    top: calc(0% + 580px);
  }
}
@media (width <= 838.98px) {
  .interactive-bg {
    width: 850px;
    height: 138px;
    top: calc(0% + 160px);
  }
}
.interactive__inner {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media (width <= 1750.98px) {
  .interactive__inner {
    max-width: 1216px;
  }
}
@media (width <= 1252.98px) {
  .interactive__inner {
    max-width: 800px;
  }
}
@media (width <= 838.98px) {
  .interactive__inner {
    max-width: 450px;
  }
}
.interactive__content {
  display: flex;
  width: 673px;
  min-height: 890px;
  align-self: flex-start;
  flex-direction: column;
  align-items: flex-start;
  gap: 52px;
}
@media (width <= 1750.98px) {
  .interactive__content {
    width: 100%;
    min-height: unset;
  }
}
@media (width <= 838.98px) {
  .interactive__content {
    gap: 35px;
  }
}
.interactive__title {
  color: var(--Neutrals-Neutral_0, #FFF);
  font-family: Oswald;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}
@media (width <= 1750.98px) {
  .interactive__title {
    text-align: center;
  }
}
@media (width <= 838.98px) {
  .interactive__title {
    font-size: 24px;
    text-align: left;
    padding-inline: 12px;
  }
}
.interactive__lead {
  color: var(--Neutrals-Neutral_0, #FFF);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 1750.98px) {
  .interactive__lead {
    text-align: center;
  }
}
@media (width <= 838.98px) {
  .interactive__lead {
    font-size: 16px;
    text-align: left;
    padding-inline: 12px;
  }
}
.interactive__pills-wrapper {
  display: flex;
  gap: 20px;
  width: 100%;
}
@media (width <= 1750.98px) {
  .interactive__pills-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 130px 110px;
  }
}
@media (width <= 1252.98px) {
  .interactive__pills-wrapper {
    align-self: stretch;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}
@media (width <= 838.98px) {
  .interactive__pills-wrapper {
    gap: 12px;
  }
}
.interactive__pills {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}
@media (width <= 1750.98px) {
  .interactive__pills {
    display: contents;
  }
}
.interactive__pill {
  display: flex;
  padding: 20px 30px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 24px;
  border: 1px solid var(--1, rgba(255, 255, 255, 0.1));
  background: rgba(255, 255, 255, 0.1);
}
@media (width <= 838.98px) {
  .interactive__pill {
    padding: 20px;
  }
}
.interactive__pill-text {
  color: var(--01, #EBEEF6);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 838.98px) {
  .interactive__pill-text {
    font-size: 14px;
  }
}

.ecosystem {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 180px 0px;
  position: relative;
  background: url(../assets/img/ecosystem-tape-bottom.webp), url(../assets/img/ecosystem-car.webp), url(../assets/img/ecosystem-tape-top.webp);
  background-repeat: no-repeat;
  background-position: calc(50% - 1060px) calc(100% + 65px), calc(50% - 590px) 40px, calc(50% + 1000px) top;
}
@media (width <= 1750.98px) {
  .ecosystem {
    padding-top: 890px;
    background: url(../assets/img/ecosystem-tape-bottom.webp), url(../assets/img/ecosystem-tape-top.webp), url(../assets/img/ecosystem-car.webp);
    background-position: calc(50% - 755px) calc(100% - 410px), calc(50% + 470px) top, center calc(0% - 90px);
    background-repeat: no-repeat;
    overflow: visible;
  }
}
@media (width <= 1252.98px) {
  .ecosystem {
    background-position: calc(50% - 870px) calc(100% - 540px), calc(50% + 470px) top, center calc(0% - 90px);
  }
}
@media (width <= 838.98px) {
  .ecosystem {
    padding: 372px 12px 80px 12px;
    background: url(../assets/img/ecosystem-tape-top.webp), url(../assets/img/ecosystem-car.webp);
    background-position: calc(50% + 300px) -10px, center top;
    background-repeat: no-repeat;
    background-size: auto 160px, 503px 445px;
  }
}
.ecosystem__inner {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media (width <= 1750.98px) {
  .ecosystem__inner {
    max-width: 1216px;
  }
}
@media (width <= 1252.98px) {
  .ecosystem__inner {
    max-width: 800px;
  }
}
@media (width <= 838.98px) {
  .ecosystem__inner {
    max-width: 450px;
  }
}
.ecosystem__content {
  display: flex;
  width: 673px;
  min-height: 840px;
  align-self: flex-end;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
@media (width <= 1750.98px) {
  .ecosystem__content {
    width: 100%;
    min-height: unset;
  }
}
@media (width <= 838.98px) {
  .ecosystem__content {
    gap: 15px;
  }
}
.ecosystem__title {
  color: var(--Neutrals-Neutral_0, #FFF);
  font-family: Oswald;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}
@media (width <= 1750.98px) {
  .ecosystem__title {
    align-self: center;
    text-align: center;
  }
}
@media (width <= 838.98px) {
  .ecosystem__title {
    font-size: 32px;
    text-align: left;
    align-self: flex-start;
  }
}
.ecosystem__hint {
  color: var(--Neutrals-Neutral_0, #FFF);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  position: relative;
  bottom: 10px;
}
@media (width <= 1750.98px) {
  .ecosystem__hint {
    text-align: center;
    align-self: center;
    width: max(50vw, 450px);
  }
}
@media (width <= 838.98px) {
  .ecosystem__hint {
    width: 100%;
    text-align: left;
    font-size: 14px;
    bottom: 5px;
  }
}
.ecosystem__subtitle {
  color: var(--Neutrals-Neutral_0, #FFF);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 1750.98px) {
  .ecosystem__subtitle {
    text-align: center;
    align-self: center;
  }
}
@media (width <= 838.98px) {
  .ecosystem__subtitle {
    font-size: 16px;
    text-align: left;
    align-self: flex-start;
  }
}
.ecosystem__pills-wrapper {
  display: flex;
  width: 100%;
  gap: 20px;
}
@media (width <= 1750.98px) {
  .ecosystem__pills-wrapper {
    flex-direction: column;
  }
}
@media (width <= 1252.98px) {
  .ecosystem__pills-wrapper {
    flex-direction: row;
  }
}
@media (width <= 838.98px) {
  .ecosystem__pills-wrapper {
    flex-direction: column;
  }
}
.ecosystem__pills {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 50%;
}
@media (width <= 1750.98px) {
  .ecosystem__pills {
    width: 100%;
    flex-direction: row;
    gap: 20px;
  }
}
@media (width <= 1252.98px) {
  .ecosystem__pills {
    align-items: stretch;
    flex-direction: column;
  }
}
.ecosystem__pill {
  display: flex;
  padding: 20px 30px;
  align-items: flex-start;
  border-radius: 24px;
  border: 1px solid var(--1, rgba(255, 255, 255, 0.1));
  background: rgba(255, 255, 255, 0.1);
}
@media (width <= 838.98px) {
  .ecosystem__pill {
    padding: 20px;
  }
}
.ecosystem__pill-text {
  color: var(--01, #EBEEF6);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 838.98px) {
  .ecosystem__pill-text {
    font-size: 14px;
  }
}

.economy {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 180px 0px;
  position: relative;
  z-index: 1;
  border-radius: 80px;
  background: #DBDBE9;
  overflow: hidden;
}
@media (width <= 1252.98px) {
  .economy {
    border-radius: 40px;
    padding-bottom: 590px;
  }
}
@media (width <= 838.98px) {
  .economy {
    padding: 80px 12px 320px 12px;
  }
}
.economy::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("../assets/img/economy-top.webp"), url("../assets/img/economy-bottom.webp");
  background-repeat: no-repeat, no-repeat;
  background-position: calc(50% + 450px) 170px, calc(50% - 450px) calc(100% - 120px);
  z-index: 1;
  border-radius: inherit;
}
@media (width <= 1252.98px) {
  .economy::after {
    background-position: center 670px, center calc(100% + 30px);
  }
}
@media (width <= 838.98px) {
  .economy::after {
    background-size: 435px 345px;
    background-position: center calc(50% - 250px), center calc(100% - 25px);
  }
}
.economy__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  font-family: Montserrat;
  font-weight: 700;
  line-height: 1;
  opacity: 0.3;
  color: #fff;
}
.economy__bg--cgi {
  position: absolute;
  top: 85px;
  left: calc(50% + 100px);
  font-size: 370px;
}
@media (width <= 1750.98px) {
  .economy__bg--cgi {
    top: 145px;
    left: calc(50% + 12px);
  }
}
@media (width <= 1252.98px) {
  .economy__bg--cgi {
    top: 600px;
    left: calc(50% - 160px);
  }
}
@media (width <= 838.98px) {
  .economy__bg--cgi {
    font-size: 240px;
  }
}
@media (width <= 838.98px) {
  .economy__bg--cgi {
    top: calc(50% - 500px);
    left: calc(50% - 220px);
  }
}
.economy__bg--3d {
  position: absolute;
  bottom: calc(50% - 450px);
  left: calc(50% - 650px);
  font-size: 274px;
}
@media (width <= 1750.98px) {
  .economy__bg--3d {
    bottom: calc(50% - 360px);
    left: calc(50% - 550px);
  }
}
@media (width <= 1252.98px) {
  .economy__bg--3d {
    bottom: calc(0% + 470px);
    left: calc(50% - 160px);
  }
}
@media (width <= 838.98px) {
  .economy__bg--3d {
    bottom: calc(0% + 200px);
  }
}
.economy__bg--showroom {
  position: absolute;
  left: calc(50% - 720px);
  bottom: -85px;
  font-size: 274px;
}
@media (width <= 1750.98px) {
  .economy__bg--showroom {
    font-size: 224px;
    left: calc(50% - 630px);
    bottom: -15px;
  }
}
@media (width <= 1252.98px) {
  .economy__bg--showroom {
    font-size: 145px;
    left: calc(50% - 400px);
  }
}
@media (width <= 838.98px) {
  .economy__bg--showroom {
    left: calc(50% - 180px);
    bottom: 20px;
    font-size: 64px;
  }
}
.economy__inner {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 120px;
  z-index: 2;
}
@media (width <= 1750.98px) {
  .economy__inner {
    max-width: 1216px;
  }
}
@media (width <= 1252.98px) {
  .economy__inner {
    max-width: 800px;
    gap: 80px;
  }
}
@media (width <= 838.98px) {
  .economy__inner {
    max-width: 450px;
  }
}
.economy__wrapper--top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
  padding-bottom: 120px;
  border-bottom: 1px solid #908FAA;
}
@media (width <= 1750.98px) {
  .economy__wrapper--top {
    gap: 40px;
    padding-bottom: 0px;
    border: none;
  }
}
@media (width <= 1252.98px) {
  .economy__wrapper--top {
    gap: 480px;
  }
}
@media (width <= 838.98px) {
  .economy__wrapper--top {
    gap: 260px;
  }
}
.economy__content {
  display: flex;
  width: 673px;
  flex-direction: column;
  align-items: flex-start;
}
.economy__content--top {
  align-self: flex-start;
}
.economy__content--bottom {
  align-self: flex-end;
}
@media (width <= 1750.98px) {
  .economy__content {
    width: 585px;
  }
}
@media (width <= 1252.98px) {
  .economy__content {
    width: 100%;
  }
}
.economy__title {
  color: var(--Neutrals-Black, #000);
  font-family: Oswald;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 80px;
}
@media (width <= 1252.98px) {
  .economy__title {
    text-align: center;
    align-self: center;
  }
}
@media (width <= 838.98px) {
  .economy__title {
    text-align: left;
    align-self: flex-start;
    font-size: 32px;
    margin-bottom: 40px;
  }
}
.economy__text {
  color: var(--Neutrals-Black, #000);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 80px;
}
@media (width <= 838.98px) {
  .economy__text {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
.economy__subtitle {
  color: var(--Neutrals-Black, #000);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 30px;
}
@media (width <= 838.98px) {
  .economy__subtitle {
    font-size: 20px;
  }
}
.economy #economy__list-1,
.economy #economy__list-2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}
@media (width <= 838.98px) {
  .economy #economy__list-1,
  .economy #economy__list-2 {
    gap: 12px;
    padding-left: 16px;
  }
}
.economy__item {
  color: var(--Neutrals-Black, #000);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (width <= 838.98px) {
  .economy__item {
    font-size: 16px;
  }
}
.economy__compare {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.economy__compare-col {
  display: flex;
  align-items: flex-start;
  gap: 92px;
}
@media (width <= 1750.98px) {
  .economy__compare-col {
    gap: 46px;
  }
}
@media (width <= 1252.98px) {
  .economy__compare-col {
    flex-direction: column;
  }
}
@media (width <= 838.98px) {
  .economy__compare-col {
    gap: 24px;
  }
}
.economy__compare-text {
  color: #1E1E1E;
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 50%;
}
@media (width <= 1252.98px) {
  .economy__compare-text {
    width: 100%;
  }
}
@media (width <= 838.98px) {
  .economy__compare-text {
    font-size: 16px;
  }
}

.why {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 160px 0px;
  position: relative;
  z-index: 1;
}
@media (width <= 838.98px) {
  .why {
    padding: 80px 12px;
  }
}
.why__inner {
  width: 100%;
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (width <= 1750.98px) {
  .why__inner {
    max-width: 1216px;
  }
}
@media (width <= 1252.98px) {
  .why__inner {
    max-width: 800px;
    flex-direction: column;
    gap: 80px;
  }
}
@media (width <= 838.98px) {
  .why__inner {
    max-width: 450px;
    gap: 40px;
  }
}
.why__title {
  color: var(--01, #EBEEF6);
  font-family: Oswald;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
  min-width: 460px;
  width: 30%;
  padding-top: 40px;
  align-self: flex-start;
  white-space: nowrap;
}
@media (width <= 1252.98px) {
  .why__title {
    padding-top: 0px;
    align-self: center;
    text-align: center;
    width: 100%;
    min-width: unset;
  }
}
@media (width <= 838.98px) {
  .why__title {
    align-self: flex-start;
    text-align: left;
    font-size: 36px;
  }
}
.why__table-wrapper {
  width: 69%;
}
@media (width <= 1252.98px) {
  .why__table-wrapper {
    width: 100%;
  }
}
.why__table {
  width: 100%;
}
.why__row {
  display: flex;
  padding: 20px 0;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
@media (width <= 838.98px) {
  .why__row {
    padding: 10px 0px;
  }
}
.why__head {
  color: var(--New-Main-White-Primary, #FFF);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  width: 20%;
}
@media (width <= 838.98px) {
  .why__head {
    font-size: 14px;
  }
}
.why__head--feature {
  min-width: 270px;
  text-align: left;
}
@media (width <= 838.98px) {
  .why__head--feature {
    min-width: 113px;
  }
}
.why__cell {
  color: var(--New-Main-White-Primary, #FFF);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  width: 25%;
}
@media (width <= 838.98px) {
  .why__cell {
    font-size: 12px;
  }
}
.why__cell--feature {
  min-width: 270px;
}
@media (width <= 838.98px) {
  .why__cell--feature {
    min-width: 113px;
  }
}
.why__cell--yes, .why__cell--no, .why__cell--text {
  display: flex;
  justify-content: center;
  align-items: center;
}

.clients {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 160px 0px;
  position: relative;
  z-index: 1;
  background: url(../assets/img/clients-wheel.webp), linear-gradient(180deg, #000 0%, #1D1D1D 52.25%);
  background-repeat: no-repeat;
  background-position: calc(50% + 400px) -30px, center;
}
@media (width <= 1252.98px) {
  .clients {
    background-position: center -30px, center;
    padding-top: 60px;
  }
}
@media (width <= 838.98px) {
  .clients {
    padding: 80px 12px 570px 12px;
    background-size: 375px 520px, auto;
    background-position: center calc(100% - 60px), center;
  }
}
.clients__inner {
  width: 100%;
  max-width: 1440px;
  display: flex;
  align-items: center;
}
@media (width <= 1750.98px) {
  .clients__inner {
    max-width: 1216px;
  }
}
@media (width <= 1252.98px) {
  .clients__inner {
    max-width: 800px;
    justify-content: center;
  }
}
@media (width <= 838.98px) {
  .clients__inner {
    max-width: 450px;
  }
}
.clients__content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  align-self: flex-start;
  gap: 80px;
}
@media (width <= 1252.98px) {
  .clients__content {
    align-self: center;
    align-items: center;
  }
}
@media (width <= 838.98px) {
  .clients__content {
    gap: 40px;
  }
}
.clients__title {
  color: var(--Neutrals-Neutral_0, #FFF);
  font-family: Oswald;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}
@media (width <= 1252.98px) {
  .clients__title {
    text-align: center;
    align-self: center;
  }
}
@media (width <= 838.98px) {
  .clients__title {
    text-align: left;
    align-self: flex-start;
    font-size: 32px;
  }
}
.clients__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 32px;
}
@media (width <= 838.98px) {
  .clients__grid {
    gap: 12px 14px;
  }
}
.clients__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
  border-radius: 24px;
  border: 1px solid var(--1, rgba(255, 255, 255, 0.1));
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  height: 140px;
}
@media (width <= 838.98px) {
  .clients__item {
    padding: 20px 12px;
  }
}

.cta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 160px 0px;
  position: relative;
  position: relative;
  overflow: hidden;
}
@media (width <= 1252.98px) {
  .cta {
    padding: 120px 12px;
  }
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #5755FE;
  z-index: 1;
  border-radius: 80px;
}
@media (width <= 1252.98px) {
  .cta::before {
    border-radius: 40px;
  }
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #1D1D1D 30%, #DBDBE9 60%);
  z-index: 0;
}
.cta__inner {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 60px;
}
@media (width <= 1750.98px) {
  .cta__inner {
    max-width: 1216px;
  }
}
@media (width <= 1252.98px) {
  .cta__inner {
    max-width: 800px;
  }
}
@media (width <= 838.98px) {
  .cta__inner {
    max-width: 450px;
  }
}
.cta__title {
  color: var(--Neutrals-Neutral_0, #FFF);
  text-align: center;
  font-family: Oswald;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}
@media (width <= 1750.98px) {
  .cta__title {
    max-width: 800px;
  }
}
@media (width <= 838.98px) {
  .cta__title {
    font-size: 32px;
  }
}
.cta__actions {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
@media (width <= 1252.98px) {
  .cta__actions {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
@media (width <= 838.98px) {
  .cta__actions {
    width: 100%;
  }
}
.cta__btn {
  display: flex;
  width: 450px;
  padding: 24px 30px;
  justify-content: center;
  align-items: center;
  color: var(--Brand-color-Fc_Blue_100, #5755FE);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  border-radius: 18px;
  background: var(--Neutrals-Neutral_5, #F5F5FF);
  transition: opacity var(--transition-duration) ease;
}
.cta__btn:hover {
  opacity: 0.8;
}
@media (width <= 838.98px) {
  .cta__btn {
    width: 100%;
    padding: 20px 12px;
    font-size: 16px;
  }
}

.footer {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 80px 0px;
  position: relative;
  z-index: 1;
  background: var(--Neutrals-Neutral_10, #DBDBE9);
}
@media (width <= 1750.98px) {
  .footer {
    padding: 80px 32px 80px 32px;
  }
}
@media (width <= 1252.98px) {
  .footer {
    padding: 80px 12px 60px 12px;
  }
}
@media (width <= 838.98px) {
  .footer {
    padding-bottom: 341px;
  }
}
.footer__inner {
  width: 100%;
  max-width: 1440px;
  display: flex;
  align-items: center;
}
@media (width <= 1750.98px) {
  .footer__inner {
    max-width: 1216px;
  }
}
@media (width <= 1252.98px) {
  .footer__inner {
    max-width: 800px;
  }
}
@media (width <= 838.98px) {
  .footer__inner {
    max-width: 450px;
  }
}
.footer__content {
  gap: 40px;
  display: flex;
}
.footer__phones {
  position: absolute;
  width: 495px;
  height: 400px;
  left: calc(50% + 220px);
  bottom: 0;
  background: url(../assets/img/footer-phones.webp);
  background-repeat: no-repeat;
  background-size: 495px 400px;
}
@media (width <= 1750.98px) {
  .footer__phones {
    left: calc(50% + 120px);
  }
}
@media (width <= 1252.98px) {
  .footer__phones {
    left: calc(50% + 30px);
  }
}
@media (width <= 838.98px) {
  .footer__phones {
    width: 375px;
    height: 304px;
    background-size: 375px 304px;
    margin: 0 auto;
    left: auto;
  }
}
.footer__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 645px;
}
@media (width <= 1750.98px) {
  .footer__info {
    width: 450px;
  }
}
@media (width <= 838.98px) {
  .footer__info {
    width: 100%;
  }
}
.footer__subtitle {
  color: var(--Neutrals-Black, #000);
  font-family: Montserrat;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
@media (width <= 838.98px) {
  .footer__subtitle {
    font-size: 20px;
  }
}
.footer__text {
  color: var(--Neutrals-Black, #000);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
@media (width <= 838.98px) {
  .footer__text {
    font-size: 14px;
  }
}
.footer__qr {
  align-content: center;
}
.footer__download-links {
  display: flex;
  gap: 16px;
}
@media (width <= 838.98px) {
  .footer__download-links {
    width: 100%;
    align-items: center;
  }
}
.footer__link-download {
  display: flex;
  height: 45px;
  width: 220px;
  padding: 4px 40px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 10px;
  background: var(--Neutrals-Neutral_30, #A8A7BF);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.footer__link-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
@media (width <= 838.98px) {
  .footer__link-download {
    width: auto;
    max-width: 200px;
    min-width: 160px;
  }
}
.footer__text-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (width <= 838.98px) {
  .footer__text-block {
    width: 100%;
  }
}
.footer__text-block--btn {
  gap: 2px;
  align-items: center;
  justify-content: center;
}
.footer__text-up, .footer__text-down {
  color: var(--color-text-white);
  font-family: var(--font-family-base);
  font-style: normal;
  line-height: normal;
  text-transform: uppercase;
  align-self: flex-start;
}
.footer__text-up {
  font-size: 10px;
  font-weight: 500;
}
.footer__text-down {
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
@media (width <= 838.98px) {
  .footer__text-down {
    font-size: 12px;
  }
}

.body-locked {
  overflow: hidden;
}

.hero__play {
  display: inline-flex;
  align-items: center;
  position: absolute;
  left: calc(50% + 355px);
  top: calc(50% - 50px);
  background: transparent;
  opacity: 0.9;
  border: none;
  transition: transform var(--transition-duration) ease, opacity var(--transition-duration) ease;
}
.hero__play:hover {
  transform: scale(1.02);
  opacity: 1;
}
.hero__play:active {
  transform: scale(0.98);
}
@media (width <= 1750.98px) {
  .hero__play {
    left: calc(50% + 290px);
    top: calc(50% - 70px);
  }
}
@media (width <= 1252.98px) {
  .hero__play {
    left: calc(50% - 60px);
    top: calc(50% + 140px);
  }
}
@media (width <= 838.98px) {
  .hero__play {
    left: calc(50% - 35px);
    top: calc(50% + 135px);
    width: 80px;
    height: 80px;
  }
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

.video-modal__dialog {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(12px, 2vw, 24px);
}

.video-modal__frame {
  width: min(1200px, 92vw);
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.is-open .video-modal__frame {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.video-modal__frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
@media (width <= 1750.98px) {
  .video-modal__frame {
    width: min(1200px, 75vw);
  }
}
@media (width <= 1252.98px) {
  .video-modal__frame {
    width: 92vw;
  }
}

.video-modal__close {
  position: absolute;
  top: calc(50% - 375px);
  left: calc(50% + min(600px, 46vw));
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  transition: background-color var(--transition-duration) ease, transform var(--transition-duration) ease;
}
.video-modal__close:hover {
  background-color: #363535;
  transform: scale(1.04);
}
@media (width <= 1750.98px) {
  .video-modal__close {
    top: 20px;
    left: calc(50% + 38vw);
  }
}
@media (width <= 1252.98px) {
  .video-modal__close {
    top: 40px;
    left: calc(50% + 42vw);
    display: none;
  }
}
@media (width <= 838.98px) {
  .video-modal__close {
    top: 100px;
    left: calc(50% + 38vw);
  }
}

.modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-duration) ease, visibility var(--transition-duration) ease;
}
.modal.is-visible .modal__inner {
  transform: translateY(0);
  opacity: 1;
}
.modal.is-hide .modal__inner {
  transform: translateY(-40px);
  opacity: 0;
}
.modal.is-visible {
  opacity: 1;
  visibility: visible;
}
.modal__overlay {
  position: absolute;
  z-index: 100;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  --webkit-backdrop-filter: blur(5px);
}
.modal__inner {
  position: relative;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(680px, 96vw);
  padding: 60px 80px;
  border-radius: 40px;
  background: var(--Style, #1E1E1E);
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.modal__inner--sent {
  background: url(../assets/img/modal-cta-bg-sent.png), #1E1E1E;
  background-repeat: no-repeat;
  background-position: center top, center;
}
@media (width <= 838.98px) {
  .modal__inner--sent {
    background-size: 480px 300px, cover;
  }
}
@media (width <= 838.98px) {
  .modal__inner {
    padding: 30px 40px;
  }
}
.modal__title {
  color: var(--01, #EBEEF6);
  text-align: center;
  font-family: Oswald;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 40px;
}
@media (width <= 838.98px) {
  .modal__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.modal__title--sent {
  margin-bottom: 20px;
}
@media (width <= 838.98px) {
  .modal__title--sent {
    font-size: 28px;
  }
}
.modal__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.modal__label {
  position: absolute;
  top: 50%;
  transform: translateY(-100%);
  color: var(--New-Main-Black-Secondary, #888);
  text-overflow: ellipsis;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  align-self: flex-start;
  font-weight: 500;
  line-height: 24px;
  pointer-events: none;
  transition: transform var(--transition-duration) ease, font-size var(--transition-duration) ease;
}
@media (width <= 838.98px) {
  .modal__label {
    font-size: 16px;
  }
}
.modal__input-wrapper {
  position: relative;
  width: 100%;
}
.modal__input-wrapper:has(.modal__error:not(:empty)) .modal__input {
  border-color: #EA1D21;
}
.modal__input {
  display: flex;
  width: 100%;
  height: 64px;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  margin-bottom: 20px;
  outline: none;
  border: none;
  border-bottom: 1px solid var(--New-Main-Black-Secondary, #888);
  background-color: transparent;
  color: var(--New-Main-White-Primary, #FFF);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  transition: border-color var(--transition-duration) ease;
}
.modal__input:focus + .modal__label, .modal__input:not(:placeholder-shown) + .modal__label {
  transform: translateY(-200%);
  font-size: 12px;
}
.modal__input:focus, .modal__input:not(:placeholder-shown) {
  border-color: var(--color-text-blue);
}
@media (width <= 838.98px) {
  .modal__input {
    font-size: 16px;
    height: 48px;
  }
}
.modal__error {
  display: none;
  margin-top: -10px;
  font-size: 12px;
  font-family: var(--font-family-base);
  color: #EA1D21;
}
@media (width <= 838.98px) {
  .modal__error {
    margin-top: unset;
    position: relative;
    top: -10px;
    font-size: 10px;
  }
}
.modal__error:not(:empty) {
  display: block;
}
.modal__btn {
  display: flex;
  height: 64px;
  width: 100%;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(90deg, #467EF3 0%, #709EFF 100%);
  color: var(--New-Main-White-Primary, #FFF);
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  transition: box-shadow var(--transition-duration) ease, transform var(--transition-duration) ease;
}
.modal__btn:hover {
  box-shadow: 0 8px 24px rgba(100, 197, 246, 0.3);
  transform: translateY(-2px);
}
@media (width <= 838.98px) {
  .modal__btn {
    height: 48px;
    font-size: 18px;
  }
}
.modal__text {
  color: var(--01, #EBEEF6);
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 20px;
}
@media (width <= 838.98px) {
  .modal__text {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.modal__success-img {
  margin-bottom: 50px;
}
@media (width <= 838.98px) {
  .modal__success-img {
    margin-bottom: 30px;
  }
}

.showroom {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 100px 0px;
  position: relative;
  z-index: 1;
  background: url(../assets/img/configurator-bg-blocks.webp), url(../assets/img/configurator-bg-colors.png);
  background-repeat: no-repeat, no-repeat;
  background-position: center;
  background-size: auto, 2000px 1200px;
}
@media (width <= 1750.98px) {
  .showroom {
    padding-top: 0px;
  }
}
@media (width <= 1252.98px) {
  .showroom {
    background: url(../assets/img/configurator-bg-colors.png) center/1450px 1000px no-repeat;
    padding-top: 60px;
  }
}
@media (width <= 838.98px) {
  .showroom {
    padding: 80px 12px;
    background-size: 700px 650px;
  }
}
@media (width <= 838.98px) {
  .showroom__configurator {
    width: 100%;
  }
}
.showroom__inner {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  background: transparent;
}
@media (width <= 1750.98px) {
  .showroom__inner {
    max-width: 1216px;
  }
}
@media (width <= 1252.98px) {
  .showroom__inner {
    max-width: 800px;
  }
}
@media (width <= 838.98px) {
  .showroom__inner {
    max-width: 450px;
    gap: 40px;
  }
}
.showroom__title-wrapper {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}
.showroom__title {
  color: var(--Neutrals-Neutral_0, #FFF);
  font-family: Oswald;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
}
@media (width <= 838.98px) {
  .showroom__title {
    font-size: 32px;
  }
}

.fs-btn-wrapper {
  display: flex;
  justify-content: center;
  order: 1;
}

#unity-canvas {
  background: url(../assets/img/configurator-plug.webp) center/cover no-repeat;
  border: 20px solid rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  width: 1010px;
  height: 530px;
  border-radius: 32px;
}
@media (width <= 1252.98px) {
  #unity-canvas {
    width: 760px;
    height: auto;
    aspect-ratio: 101/53;
    border-radius: 16px;
    border: 10px solid rgba(0, 0, 0, 0.5);
  }
}
@media (width <= 838.98px) {
  #unity-canvas {
    width: 100%;
  }
}

#unity-canvas.is-fullscreen {
  border: none !important;
  border-radius: 0 !important;
}

#unity-container {
  position: relative;
}

#unity-container.unity-mobile {
  width: 100%;
  height: 100%;
}

.unity-mobile #unity-canvas {
  width: 100%;
  height: 100%;
}

#unity-loading-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

#unity-logo {
  width: 267px;
  height: 150px;
  background: url("https://cdn.formacar.com/storage/configurator/TemplateData/FormaCarLogo2025.png") center/contain no-repeat;
}

#unity-progress-bar-empty {
  width: 267px;
  height: 18px;
  margin-top: 10px;
  background: url("https://cdn.formacar.com/storage/configurator/TemplateData/progress-bar-empty-dark.png") no-repeat center;
  background-size: 267px 18px;
}

#unity-progress-bar-full {
  width: 0%;
  height: 18px;
  margin-top: 10px;
  background: url("https://cdn.formacar.com/storage/configurator/TemplateData/progress-bar-full-dark.png") no-repeat center;
  background-size: 267px 18px;
  border-radius: 32px;
}

#unity-progress-text {
  margin-top: 10px;
  color: white;
}

#unity-footer {
  position: relative;
}

.unity-mobile #unity-footer {
  display: none;
}

#unity-warning {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%);
  background: white;
  padding: 10px;
  display: none;
}

#start-overlay {
  transition: opacity 0.35s ease, transform 0.4s ease;
}

#start-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.fs-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 180px;
  min-height: 48px;
  padding: 4px 12px;
  border-radius: 12px;
  background: #F5F5FF;
  color: #5755FE;
  cursor: pointer;
  position: relative;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 1px 2px rgba(17, 17, 24, 0.06), 0 2px 8px rgba(17, 17, 24, 0.08);
}

.fs-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(17, 17, 24, 0.14), 0 2px 6px rgba(17, 17, 24, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.fs-btn.is-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: auto;
}

.fs-btn.is-disabled:hover {
  transform: none;
  box-shadow: none;
}

.fs-btn.is-disabled::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(17, 17, 24, 0.9);
  color: #fff;
  padding: 6px 8px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.15s;
}

.fs-btn.is-disabled:hover::after {
  opacity: 1;
}

.full-screen-btn__text {
  color: #5755FE;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  white-space: nowrap;
}

.mobile-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.3);
}
@media (width <= 838.98px) {
  .mobile-overlay {
    display: flex;
  }
}

.mobile-overlay__card {
  display: grid;
  gap: 24px;
  place-items: center;
  padding: 22px 20px;
  border-radius: 16px;
  color: #fff;
}

.mobile-overlay__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  font-family: Montserrat, sans-serif;
}

.mobile-overlay--start .start-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 4px 30px;
  font-size: 14px;
  border-radius: 12px;
  border: none;
  background: #F5F5FF;
  color: #5755FE;
  font-weight: 600;
  font-family: Montserrat, sans-serif;
  box-shadow: 0 4px 12px rgba(17, 17, 24, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mobile-overlay--start .start-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(17, 17, 24, 0.14), 0 2px 6px rgba(17, 17, 24, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/*# sourceMappingURL=main.css.map */
