@charset "UTF-8";
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

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

img {
  vertical-align: top;
}

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

html,
body {
  height: 100%;
  line-height: 1;
}

body {
  background-color: #02050f;
  font-family: DaysOne, sans-serif;
  overflow-x: hidden;
  position: static;
}
body.blocked {
  overflow-y: hidden;
}

html, body, .wrapper {
  position: static;
  scroll-behavior: smooth;
}

[class$=__container] {
  max-width: 1440px;
  padding-inline: 10px;
  margin: 0 auto;
}

.pointer {
  cursor: pointer;
}

.button-link {
  display: block;
  padding: 13px 33px;
  background-color: #2f00e2;
  color: #fff;
  border-radius: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}
.button-link:hover {
  transform: translateY(3px);
  background-color: #2706aa;
}
.button-link::after {
  display: none;
}

.header {
  overflow-x: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  background-color: #1e1e1e;
}

.header__container {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 5px;
}
.header__logo img {
  width: 30px;
  height: 30px;
}
.header__logo h1 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
}
@media (min-width: 375px) {
  .header__logo {
    gap: 10px;
  }
  .header__logo img {
    width: 40px;
    height: 40px;
  }
  .header__logo h1 {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .header__logo h1 {
    font-size: 28px;
  }
}
@media (min-width: 920px) {
  .header__logo {
    gap: 5px;
  }
  .header__logo h1 {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .header__logo h1 {
    font-size: 30px;
  }
}

.header__menu {
  display: flex;
  position: relative;
  z-index: 100;
  align-items: center;
  gap: 5px;
}
@media (min-width: 375px) {
  .header__menu {
    gap: 10px;
  }
}
@media (min-width: 920px) {
  .header__menu {
    display: none;
  }
}

.header__phone-link {
  color: #fff;
  font-size: 10px;
}

.header__burger-button {
  width: 25px;
  height: 25px;
  filter: invert(1);
  position: relative;
}
.header__burger-button #open-menu {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.header__burger-button #close-menu {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.header__burger-button.active #open-menu {
  display: none;
}
.header__burger-button.active #close-menu {
  display: block;
}

.nav {
  z-index: 99;
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease 0s;
}
.nav.active {
  left: 0;
}
@media (min-width: 920px) {
  .nav {
    position: static;
    height: auto;
    width: auto;
  }
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
}
@media (min-width: 576px) {
  .nav__list {
    gap: 20px;
  }
}
@media (min-width: 768px) {
  .nav__list {
    gap: 20px;
  }
}
@media (min-width: 920px) {
  .nav__list {
    flex-direction: row;
    gap: 10px;
  }
}
@media (min-width: 1024px) {
  .nav__list {
    gap: 15px;
  }
}

.nav__item.contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.nav__item.contacts a {
  width: 24px;
  height: 24px;
  position: relative;
}
.nav__item.contacts a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .nav__item.contacts {
    display: none;
  }
}

.nav__link {
  cursor: pointer;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transform: scaleX(0);
  transition: transform 0.3s ease 0s;
}
.nav__link:hover::after {
  transform: scaleX(1);
}
@media (min-width: 375px) {
  .nav__link {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .nav__link {
    font-size: 16px;
  }
}
@media (min-width: 920px) {
  .nav__link {
    font-size: 12px;
  }
}
@media (min-width: 1024px) {
  .nav__link {
    font-size: 14px;
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  padding-block: 60px;
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .hero {
    margin-top: 100px;
    padding-block: 100px;
  }
}
@media (min-width: 768px) {
  .hero {
    margin-top: 120px;
    padding-block: 120px;
  }
}
@media (min-width: 920px) {
  .hero {
    margin-top: 80px;
    padding-block: 80px;
  }
}
@media (min-width: 1024px) {
  .hero {
    margin-top: 100px;
    padding-block: 100px;
  }
}
@media (min-width: 1440px) {
  .hero {
    margin-top: 120px;
    padding-block: 120px;
    margin-bottom: 50px;
  }
}

.hero__bg {
  max-width: 1600px;
  width: 90%;
  pointer-events: none;
  user-select: none;
}

.hero__images {
  position: absolute;
  height: 100%;
  top: -40px;
  left: 0;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  user-select: none;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero__images {
    top: 0;
  }
}

.hero__image {
  position: absolute;
  top: 0;
  overflow: hidden;
}

.hero__image--left {
  left: 0;
  transform: scale(0.2) translate(-200%, -210%);
}
@media (min-width: 576px) {
  .hero__image--left {
    transform: scale(0.4) translate(-76%, -85%);
  }
}
@media (min-width: 768px) {
  .hero__image--left {
    transform: scale(0.4) translate(-76%, -85%);
  }
}
@media (min-width: 920px) {
  .hero__image--left {
    transform: scale(0.5) translate(-50%, -60%);
  }
}
@media (min-width: 1024px) {
  .hero__image--left {
    transform: none;
    width: 50%;
    aspect-ratio: 1/1.1;
    top: -40px;
  }
  .hero__image--left img {
    position: absolute;
    text-transform: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
  }
}
.hero__image--right {
  right: 0;
  transform: scale(0.2) translate(200%, -150%);
}
.hero__image--right::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.3) translate(30%, 60%) rotate(-15deg) scaleY(1.5);
  background: linear-gradient(180deg, rgba(2, 5, 15, 0) 0%, #02050f 30%);
}
@media (min-width: 576px) {
  .hero__image--right {
    transform: scale(0.4) translate(76%, -40%);
  }
}
@media (min-width: 768px) {
  .hero__image--right {
    transform: scale(0.4) translate(76%, -20%);
  }
}
@media (min-width: 920px) {
  .hero__image--right {
    transform: scale(0.5) translate(50%, -30%);
  }
}
@media (min-width: 1024px) {
  .hero__image--right {
    transform: none;
    width: 30%;
    aspect-ratio: 1/1.1;
    top: auto;
    bottom: 0;
    right: 0;
  }
  .hero__image--right img {
    position: absolute;
    text-transform: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
  }
}
.hero__image--left img {
  animation: float-left 6s ease-in-out infinite;
}

.hero__image--right img {
  animation: float-right 7s ease-in-out infinite;
}

@keyframes float-left {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes float-right {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.intro {
  margin-bottom: 50px;
}
@media (min-width: 576px) {
  .intro {
    margin-bottom: 100px;
  }
}

.intro__title {
  position: relative;
  display: flex;
  align-items: start;
  flex-direction: column;
  max-width: 1440px;
  margin-bottom: 25px;
  overflow: hidden;
}
@media (min-width: 576px) {
  .intro__title {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 50px;
  }
}
.intro__title h2 {
  position: relative;
  z-index: 4;
  color: #c6d4ff;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  font-size: 16px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.intro__title h2 strong {
  font-weight: 400;
  font-size: 30px;
}
@media (min-width: 576px) {
  .intro__title h2 {
    font-size: 26px;
  }
  .intro__title h2 strong {
    font-size: 44px;
  }
  .intro__title h2 {
    padding-inline: 10px;
  }
}
@media (min-width: 920px) {
  .intro__title h2 {
    font-size: 32px;
  }
  .intro__title h2 strong {
    font-size: 56px;
  }
}
@media (min-width: 1024px) {
  .intro__title h2 {
    font-size: 36px;
  }
  .intro__title h2 strong {
    font-size: 64px;
  }
}
@media (min-width: 1440px) {
  .intro__title h2 {
    font-size: 60px;
  }
  .intro__title h2 strong {
    font-size: 110px;
  }
}
.intro__title .intro__title-line {
  display: block;
  content: "";
  height: 60px;
  width: 400px;
  background: url("../../assets/images/intro-line-mobile.png") no-repeat;
  background-size: cover;
}
.intro__title .intro__title-line.intro__title-line--first {
  transform: translate(-65%, -20%);
}
.intro__title .intro__title-line.intro__title-line--second {
  transform: rotate(180deg) translateX(-30%);
}
@media (min-width: 375px) {
  .intro__title .intro__title-line.intro__title-line--second {
    transform: rotate(180deg) translateX(-40%);
  }
}
@media (min-width: 576px) {
  .intro__title .intro__title-line {
    background: url("../../assets/images/intro-line-desktop.png") no-repeat;
    height: 100px;
  }
  .intro__title .intro__title-line.intro__title-line--second {
    transform: none;
  }
  .intro__title .intro__title-line.intro__title-line--first {
    transform: none;
  }
}

.intro__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 576px) {
  .intro__body {
    flex-direction: row;
    align-items: end;
  }
}

.intro__content {
  margin: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Involve, serif;
  max-width: 350px;
  gap: 10px;
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .intro__content {
    margin: 0;
    font-size: 28px;
    max-width: 45%;
  }
}

.intro__block-1 {
  color: #fff;
}

.intro__block-2 {
  color: #6884fc;
  font-weight: 600;
}

.intro__link {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  text-align: center;
  max-width: 350px;
  background: linear-gradient(90deg, #cc0254 0%, #ff5fa0 24%, #a463f3 52%, #6289fe 76%, #2b01ce 100%), linear-gradient(#2f00e2, #2f00e2);
}
.intro__link:hover {
  opacity: 0.9;
  background: linear-gradient(90deg, #cc0254 0%, #ff5fa0 24%, #a463f3 52%, #6289fe 76%, #2b01ce 100%), linear-gradient(#2f00e2, #2f00e2);
}
@media (min-width: 920px) {
  .intro__link {
    font-size: 24px;
    max-width: 45%;
  }
}
@media (min-width: 1440px) {
  .intro__link {
    font-size: 28px;
  }
}

.evolution {
  overflow: hidden;
  width: 100%;
}

.evolution__container {
  position: relative;
  margin-bottom: clamp(60px, 12.87vw, 192px);
}

.evolution__subtitile {
  text-transform: uppercase;
  font-size: 16px;
  color: #fff;
  transform: translateX(10px);
}
@media (min-width: 375px) {
  .evolution__subtitile {
    font-size: 18px;
    transform: translateX(10%);
  }
}
@media (min-width: 576px) {
  .evolution__subtitile {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .evolution__subtitile {
    font-size: 32px;
  }
}
@media (min-width: 920px) {
  .evolution__subtitile {
    font-size: 38px;
  }
}
@media (min-width: 1024px) {
  .evolution__subtitile {
    transform: translateX(0);
  }
}

.evolution__title {
  text-transform: uppercase;
  position: absolute;
  color: #1a2eff;
  text-align: center;
  white-space: nowrap;
  /* Адаптивный размер шрифта с ограничением по ширине */
  font-size: clamp(20px, 9.9vw, 192px);
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(-211.2px, -10.89vw, -44px);
  text-shadow: 0 0 3px #1a2eff, 0 0 7px #1a2eff, 0 0 13px #1a2eff;
}
@media (min-width: 920px) {
  .evolution__title {
    text-shadow: 0 0 5px #1a2eff, 0 0 9px #1a2eff, 0 0 15px #1a2eff;
  }
}
.evolution__title {
  /* Если текст слишком длинный, уменьшить масштаб через scale */
  /* Можно потом добавить JS/решение через clamp + vw для супер точного подгоня */
}

.features {
  margin-bottom: 50px;
  overflow: hidden;
}

.features__container {
  padding-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.features__title {
  text-transform: uppercase;
  align-self: center;
  font-size: 20px;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #cc0254 0%, #ff5fa0 24%, #a463f3 52%, #6289fe 76%, #2b01ce 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 576px) {
  .features__title {
    font-size: 32px;
  }
}
@media (min-width: 768px) {
  .features__title {
    font-size: 36px;
  }
}
@media (min-width: 920px) {
  .features__title {
    font-size: 42px;
    align-self: end;
  }
}

.features__body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.features__content {
  display: none;
}
@media (min-width: 920px) {
  .features__content {
    gap: 20px;
    display: grid;
    grid-template-columns: auto auto auto;
  }
}
@media (min-width: 1440px) {
  .features__content {
    display: flex;
  }
}
.features__content {
  justify-content: space-between;
  flex-wrap: wrap;
}

.features__card {
  flex: 0 0 auto;
  position: relative;
  margin: 0 auto;
  transition: all 0.3s ease 0s;
}
.features__card:hover {
  transform: scale(1.01);
}
@media (min-width: 920px) {
  .features__card {
    width: 300px;
  }
}
@media (min-width: 1440px) {
  .features__card {
    width: 400px;
  }
}
.features__card.swiper-slide {
  width: 100%;
}
.features__card {
  color: #fff;
  border-radius: 40px;
  padding: 2px; /* товщина бордера */
  background: linear-gradient(90deg, #cc0254 0%, #ff5fa0 24%, #a463f3 52%, #6289fe 76%, #2b01ce 100%);
}
.features__card .features__card-content {
  width: 100%;
  height: 100%;
  background-color: #02050f; /* внутрішній фон */
  border-radius: 36px; /* менший на товщину бордера */
  padding: 20px;
}

.features__card-title {
  color: #9abeff;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 920px) {
  .features__card-title {
    font-size: 30px;
  }
}

.features__card-description {
  font-family: Involve, sans-serif;
}
@media (min-width: 920px) {
  .features__card-description {
    font-size: 18px;
    line-height: 1.2;
  }
}
@media (min-width: 1024px) {
  .features__card-description {
    font-size: 20px;
  }
}

.features__button {
  font-size: 12px;
}
@media (min-width: 576px) {
  .features__button {
    font-size: 18px;
  }
}
@media (min-width: 920px) {
  .features__button {
    font-size: 22px;
  }
}

.features__swiper {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: calc(100vw - 60px);
  max-width: 350px;
  color: #fff;
  height: 230px;
}
@media (min-width: 576px) {
  .features__swiper {
    max-width: none;
  }
}
@media (min-width: 920px) {
  .features__swiper {
    display: none !important;
  }
}

@media (min-width: 920px) {
  .swiper-buttons {
    display: none !important;
  }
}

.swiper-button-prev {
  position: absolute;
  left: -40px !important;
}

.swiper-button-next {
  position: absolute;
  right: -40px !important;
}

.swiper-navigation-icon {
  display: none !important;
}

.instruction {
  margin-bottom: 200px;
}

.instruction__container {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
}
@media (min-width: 920px) {
  .instruction__container {
    flex-direction: row;
    gap: 50px;
    align-items: center;
  }
}
@media (min-width: 1440px) {
  .instruction__container {
    gap: 120px;
  }
}

.instruction__title {
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 30px;
  max-width: 350px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.instruction__title span:first-child {
  align-self: start;
}
.instruction__title span:last-child {
  align-self: end;
}
@media (min-width: 920px) {
  .instruction__title {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .instruction__title {
    max-width: 500px;
    font-size: 40px;
  }
}
@media (min-width: 1440px) {
  .instruction__title {
    font-size: 44px;
    margin-bottom: 50px;
  }
}

.instruction__subtitle {
  color: #6884fc;
  display: block;
  max-width: 400px;
  width: 95%;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .instruction__subtitle {
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  .instruction__subtitle {
    max-width: 500px;
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  .instruction__subtitle {
    font-size: 24px;
    margin-bottom: 50px;
  }
}

.instruction__article {
  display: block;
  max-width: 400px;
  color: #fff;
  font-family: Involve, sans-serif;
  font-size: 12px;
  width: 100%;
  margin-bottom: 10px;
}
@media (min-width: 920px) {
  .instruction__article {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .instruction__article {
    max-width: 500px;
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1440px) {
  .instruction__article {
    font-size: 20px;
    margin-bottom: 25px;
  }
}
.instruction__article:last-of-type {
  margin-bottom: 40px;
}
@media (min-width: 1440px) {
  .instruction__article:last-of-type {
    margin-bottom: 60px;
  }
}

.instruction__link {
  display: block;
  margin: 0 auto;
  max-width: 350px;
  font-size: 12px;
  text-align: center;
}
@media (min-width: 920px) {
  .instruction__link {
    font-size: 18px;
    max-width: 400px;
  }
}
@media (min-width: 920px) {
  .instruction__link {
    font-size: 22px;
    max-width: 500px;
  }
}

.instruction__video {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  width: 290px;
  aspect-ratio: 9/16;
  box-shadow: -3px -2px 10px 0px rgba(47, 0, 226, 0.8), -8px 5px 14px 0px rgba(255, 95, 160, 0.7);
  margin-bottom: 50px;
}
@media (min-width: 920px) {
  .instruction__video {
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .instruction__video {
    width: 380px;
  }
}
@media (min-width: 1440px) {
  .instruction__video {
    width: 450px;
  }
}
.instruction__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card {
  color: #fff;
  background-color: #262626;
  border-radius: 40px;
  width: 95%;
  max-width: 350px;
  margin: 0 auto;
  margin-bottom: 150px;
}
@media (min-width: 768px) {
  .card {
    max-width: 700px;
  }
}
@media (min-width: 920px) {
  .card {
    max-width: 1440px;
    padding-inline: 20px;
  }
}

.card__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .card__container {
    flex-direction: row;
  }
}
@media (min-width: 920px) {
  .card__container {
    justify-content: space-between;
    height: 400px;
  }
}
@media (min-width: 1440px) {
  .card__container {
    height: 600px;
  }
}

.card__main-info {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  order: 2;
}
@media (min-width: 768px) {
  .card__main-info {
    order: 1;
    max-width: 48%;
    margin: auto 0;
  }
}
@media (min-width: 920px) {
  .card__main-info {
    justify-content: start;
    align-items: start;
    height: calc(100% - 80px);
  }
}
@media (min-width: 1440px) {
  .card__main-info {
    height: calc(100% - 100px);
  }
}

.card__title {
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .card__title {
    font-size: 26px;
  }
}
@media (min-width: 920px) {
  .card__title {
    text-align: left;
    font-size: 32px;
  }
}
@media (min-width: 1440px) {
  .card__title {
    font-size: 42px;
    margin-bottom: 40px;
  }
}

.card__descr {
  font-family: Involve, sans-serif;
  font-size: 12px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .card__descr {
    font-size: 14px;
    margin-bottom: 40px;
  }
}
@media (min-width: 920px) {
  .card__descr {
    text-align: left;
    max-width: 400px;
  }
}
@media (min-width: 920px) {
  .card__descr {
    font-size: 16px;
    line-height: 1.2;
  }
}
@media (min-width: 1440px) {
  .card__descr {
    font-size: 18px;
  }
}

.card__price-card {
  position: relative;
  margin-bottom: 30px;
  padding: 2px; /* товщина бордера */
  border-radius: 40px;
  background: linear-gradient(90deg, #cc0254 0%, #ff5fa0 24%, #a463f3 52%, #6289fe 76%, #2b01ce 100%);
}
@media (min-width: 768px) {
  .card__price-card {
    margin-bottom: 0px;
  }
}
@media (min-width: 920px) {
  .card__price-card {
    margin-top: auto;
  }
}
.card__price-card .card__price-card-content {
  width: 100%;
  height: 100%;
  background-color: #262626; /* внутрішній фон */
  border-radius: 36px; /* менший на товщину бордера */
  padding: 10px 25px;
  display: flex;
  align-items: start;
  gap: 3px;
}

@media (min-width: 768px) {
  .card__price {
    font-size: 22px;
  }
}
@media (min-width: 1440px) {
  .card__price {
    font-size: 52px;
  }
}

.card__currency {
  font-size: 12px;
}
@media (min-width: 1440px) {
  .card__currency {
    font-size: 20px;
  }
}

.card__image {
  z-index: 2;
  position: relative;
  aspect-ratio: 1/1.64;
  width: 264px;
  margin-top: -120px;
  order: 1;
}
@media (min-width: 768px) {
  .card__image {
    order: 2;
    width: 50%;
    margin-top: -180px;
  }
}
@media (min-width: 920px) {
  .card__image {
    position: absolute;
    left: 50%;
    width: 300px;
    transform: translateX(-50%);
  }
}
@media (min-width: 1024px) {
  .card__image {
    width: 400px;
    bottom: 0px;
    margin-top: -80px;
  }
}
@media (min-width: 1440px) {
  .card__image {
    width: 490px;
  }
}
.card__image {
  margin-bottom: 20px;
}
.card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  animation: float-img 6s ease-in-out infinite;
}

.card__secondary {
  order: 3;
}

.card__params {
  display: none;
}
@media (min-width: 920px) {
  .card__params {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
}

.card__param {
  text-align: right;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}
@media (min-width: 1440px) {
  .card__param {
    font-size: 26px;
  }
}
.card__param::after {
  display: block;
  position: absolute;
  z-index: 1;
  content: "";
  height: 4px;
  width: 150%;
  right: 0;
  bottom: 0;
  background-image: url("../../assets/images/param-underline.png");
  background-size: cover;
}
.card__param:nth-child(1)::after {
  width: 150%;
}
.card__param:nth-child(2)::after {
  width: 125%;
}
.card__param:nth-child(3)::after {
  width: 250%;
}
.card__param:nth-child(4)::after {
  width: 275%;
}
.card__param:nth-child(5)::after {
  width: 220%;
}

.card__link {
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  text-align: center;
  max-width: 350px;
  width: calc(100vw - 32px);
  background: linear-gradient(90deg, #cc0254 0%, #ff5fa0 24%, #a463f3 52%, #6289fe 76%, #2b01ce 100%), linear-gradient(#2f00e2, #2f00e2);
  position: absolute;
  bottom: -60px;
  left: 0;
}
@media (min-width: 768px) {
  .card__link {
    left: 50%;
    transform: translateX(-50%);
  }
  .card__link:hover {
    transform: translate(-50%, 3px);
  }
  .card__link {
    max-width: 450px;
  }
}
@media (min-width: 920px) {
  .card__link {
    position: relative;
    z-index: 4;
    top: 0;
    width: auto;
    width: 350px;
    font-size: 16px;
  }
}

@keyframes float-img {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.about {
  margin-bottom: 50px;
}

.about__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .about__title {
    display: none;
  }
}
.about__title {
  color: #fff;
  gap: 5px;
}
.about__title h2 {
  font-size: 30px;
}
.about__title h3 {
  font-family: Involve, sans-serif;
  font-size: 14px;
}
@media (min-width: 576px) {
  .about__title h2 {
    font-size: 44px;
  }
  .about__title h3 {
    font-family: Involve, sans-serif;
    font-size: 21px;
  }
}

.about__body {
  content: "";
  display: block;
  width: 100vw;
  aspect-ratio: 0.84/1;
  background-image: url("../../assets/images/about-mobile.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .about__body {
    aspect-ratio: 1.52;
    background-image: url("../../assets/images/about-desktop.png");
    background-position-x: center;
  }
}
@media (min-width: 1440px) {
  .about__body {
    background-position-x: center;
  }
}

.purpose {
  width: 100vw;
  overflow: hidden;
}

.purpose__title {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
}
.purpose__title span {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #fff;
  display: block;
}
.purpose__title h2 {
  position: relative;
  align-self: end;
  margin-right: 10%;
  color: #fff;
  text-transform: uppercase;
  background: #02050f;
  z-index: 3;
  padding: 0px 20px;
}
@media (min-width: 576px) {
  .purpose__title h2 {
    font-size: 24px;
  }
}
@media (min-width: 920px) {
  .purpose__title h2 {
    font-size: 44px;
  }
}
.purpose__title {
  margin-bottom: 30px;
}

.purpose__body {
  position: relative;
  z-index: 3;
  color: #fff;
}

.purpose__heading {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .purpose__heading {
    font-size: 18px;
  }
}
@media (min-width: 920px) {
  .purpose__heading {
    font-size: 28px;
  }
}

.purpose__descr {
  font-size: 12px;
  line-height: 1.2;
  font-family: Involve, sans-serif;
}
@media (min-width: 576px) {
  .purpose__descr {
    font-size: 16px;
  }
}
@media (min-width: 920px) {
  .purpose__descr {
    font-size: 18px;
  }
}

.purpose__addition {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  min-height: 600px;
}
@media (min-width: 920px) {
  .purpose__addition {
    height: 800px;
  }
}
@media (min-width: 1440px) {
  .purpose__addition {
    height: 1000px;
  }
}
.purpose__addition .purpose__addition-content {
  margin-top: auto;
  position: relative;
  z-index: 3;
}
@media (min-width: 576px) {
  .purpose__addition .purpose__addition-content {
    display: flex;
    margin: 0 auto;
    max-width: 1440px;
    width: 100%;
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }
}

.purpose__image {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: url("../../assets/images/purpose-mobile.png");
  opacity: 0.95;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
  width: 100vw;
  aspect-ratio: 1/1;
}
.purpose__image::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(180deg, rgba(2, 5, 15, 0) 0%, #02050f 100%);
}
@media (min-width: 576px) {
  .purpose__image {
    aspect-ratio: 1.5/1;
    background-image: url("../../assets/images/purpose.png");
  }
}

.purpose__labels {
  gap: 15px;
  color: #02050f;
  font-family: Involve, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  margin-bottom: 100px;
}
@media (min-width: 576px) {
  .purpose__labels {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 550px;
    margin-bottom: 200px;
  }
}
@media (min-width: 920px) {
  .purpose__labels {
    max-width: 680px;
    gap: 25px;
  }
}

.purpose__label {
  padding: 10px 15px;
  background-color: #c6d4ff;
  border-radius: 30px;
  max-width: 400px;
  font-size: 12px;
  text-align: center;
}
.purpose__label:nth-child(3) {
  flex-basis: 100%;
}
@media (min-width: 576px) {
  .purpose__label {
    max-width: 450px;
    font-size: 16px;
  }
}
@media (min-width: 920px) {
  .purpose__label {
    max-width: 500px;
    font-size: 18px;
    padding: 15px 25px;
  }
}

.purpose__link {
  display: block;
  max-width: 350px;
  width: 90%;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
}
@media (min-width: 576px) {
  .purpose__link {
    margin: 0;
    margin-top: 50px;
    max-width: 400px;
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  .purpose__link {
    font-size: 22px;
  }
}

.params {
  padding-top: 15px;
  width: 100vw;
  color: #fff;
  background-image: url("../../assets/images/params-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 70px;
}

.params__title {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.params__title span {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #fff;
  display: block;
}
.params__title h2 {
  position: relative;
  color: #fff;
  text-transform: uppercase;
  background: #150206;
  z-index: 3;
  padding: 0px 20px;
}
@media (min-width: 576px) {
  .params__title h2 {
    font-size: 24px;
  }
}
@media (min-width: 920px) {
  .params__title h2 {
    font-size: 44px;
  }
}
.params__title {
  margin-bottom: 30px;
}

.params__body {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .params__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
  }
}

.params__image {
  order: 2;
  position: relative;
  width: 110%;
  aspect-ratio: 1/1.5;
}
.params__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: float-img 6s ease-in-out infinite;
}
.params__image {
  margin-left: -15%;
  margin-top: -30%;
}
@media (min-width: 375px) {
  .params__image {
    width: 100%;
    max-width: 400px;
    margin-inline: 0;
  }
}
@media (min-width: 768px) {
  .params__image {
    grid-column: 1;
    grid-row: 1/3;
    width: 90%;
    margin: 0;
  }
}

@keyframes float-img {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.params__frequencies {
  position: relative;
  z-index: 3;
  order: 1;
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .params__frequencies {
    grid-column: 2;
    grid-row: 1;
    flex-direction: column;
    margin: 0 auto;
    align-items: center;
    width: 100%;
  }
}

.params__frequencies-title {
  display: block;
  max-width: 40%;
  font-family: Involve, sans-serif;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .params__frequencies-title {
    max-width: 100%;
    font-size: 24px;
  }
}

.params__frequencies-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .params__frequencies-body {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}

.params__frequencies-item {
  font-size: 13px;
  padding: 10px 15px;
  border-radius: 30px;
  border: 2px solid #fff;
}
@media (min-width: 1024px) {
  .params__frequencies-item {
    font-size: 16px;
    padding: 15px 20px;
  }
}

.params__all-params {
  order: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .params__all-params {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
  }
}

.params__all-group {
  max-width: 400px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.params__all-group:nth-child(1) .params__all-params__item:first-child {
  width: 55%;
}
.params__all-group:nth-child(2) .params__all-params__item:first-child {
  width: 45%;
}
.params__all-group:nth-child(3) .params__all-params__item:first-child {
  width: 40%;
}
.params__all-group:nth-child(3) .params__all-params__item:last-child {
  width: 50%;
}
.params__all-group:nth-child(3) .params__all-params__item:last-child h4 {
  white-space: nowrap;
}
@media (min-width: 768px) {
  .params__all-group:nth-child(1) .params__all-params__item:first-child {
    min-width: 55%;
  }
  .params__all-group:nth-child(1) .params__all-params__item:last-child {
    min-width: 40%;
  }
  .params__all-group:nth-child(2) .params__all-params__item:first-child {
    min-width: 55%;
  }
  .params__all-group:nth-child(2) .params__all-params__item:last-child {
    min-width: 40%;
  }
  .params__all-group:nth-child(3) .params__all-params__item:first-child {
    min-width: 45%;
  }
  .params__all-group:nth-child(3) .params__all-params__item:last-child {
    min-width: 50%;
  }
}
@media (min-width: 1024px) {
  .params__all-group {
    min-width: 470px;
  }
}

.params__all-params__item {
  height: 70px;
  padding: 10px;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  font-family: Involve, sans-serif;
  font-size: 12px;
  border: 1px solid #fff;
  justify-content: space-between;
  align-items: start;
  border-radius: 20px;
  background-color: rgba(2, 5, 15, 0.3);
  font-weight: 600;
}
.params__all-params__item h4 {
  font-size: 13px;
  display: block;
  max-width: 100px;
  text-transform: uppercase;
}
.params__all-params__item p {
  color: #d33465;
}
@media (min-width: 768px) {
  .params__all-params__item h4 {
    white-space: nowrap;
    font-size: 14px;
  }
  .params__all-params__item p {
    font-size: 13px;
  }
}
@media (min-width: 1024px) {
  .params__all-params__item h4 {
    font-size: 18px;
  }
  .params__all-params__item p {
    font-size: 14px;
  }
}

.params__cta {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
}
.params__cta span {
  display: none;
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 3px;
  background-color: #fff;
}
.params__cta span.params__cta-bg {
  content: "";
  position: absolute;
  display: none;
  width: 100vw;
  height: 70px;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(2, 5, 15, 0) 0%, #02050f 37%, #02050f 100%);
}
@media (min-width: 768px) {
  .params__cta span {
    display: block;
  }
  .params__cta span.params__cta-bg {
    display: block;
  }
}

.params__link {
  position: relative;
  margin: 0 auto;
  max-width: 350px;
  text-align: center;
  font-size: 12px;
  background: #e6001f;
  z-index: 5;
}
.params__link:hover {
  background: #b3041c;
}
@media (min-width: 768px) {
  .params__link {
    font-size: 16px;
  }
  .params__link__cover {
    margin: 0 auto;
    display: flex;
    position: relative;
    z-index: 2;
    display: inline-block;
    background: linear-gradient(180deg, rgba(2, 5, 15, 0) 0%, #02050f 37%, #02050f 100%);
    padding-inline: 30px;
    transform: translateX(50%);
  }
}
@media (min-width: 1024px) {
  .params__link__cover {
    transform: translateX(70%);
  }
}
@media (min-width: 1440px) {
  .params__link__cover {
    transform: translateX(95%);
  }
}

.controlls {
  position: relative;
  z-index: 3;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 100px;
}
.controlls__bg {
  position: absolute;
  top: -50px;
  left: 0;
  content: "";
  display: block;
  width: 100vw;
  height: 130%;
  background-image: url("../../assets/images/controlls-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: bottom;
}
.controlls__bg::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  top: -45px;
  height: 70px;
  display: block;
  pointer-events: none; /* чтобы не мешал кликам */
  background: linear-gradient(0deg, rgba(2, 5, 15, 0) 0%, #02050F 100%);
}

.controlls__container {
  overflow: hidden;
  position: relative;
}

.controlls__title {
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
  margin-left: 25px;
  margin-bottom: 50px;
}
@media (min-width: 576px) {
  .controlls__title {
    font-size: 26px;
  }
}
@media (min-width: 920px) {
  .controlls__title {
    font-size: 32px;
  }
}

.controlls__body {
  display: none;
}
@media (min-width: 768px) {
  .controlls__body {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}

.controlls__content {
  display: flex;
  gap: 20px;
}
@media (min-width: 1024px) {
  .controlls__content {
    gap: 50px;
  }
}

.controlls__content-group {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.controlls__block {
  display: flex;
  flex-direction: column;
}
.controlls__block.swiper-slide-active .constrolls__block-image {
  opacity: 1;
}

.controlls__block-title {
  font-family: Involve, sans-serif;
  text-transform: uppercase;
  color: #fff;
  display: inline-block;
  background-color: #2f00e2;
  font-weight: 700;
  border-radius: 30px;
  padding: 15px 20px;
  max-width: fit-content; /* ограничиваем под контент */
  white-space: nowrap; /* текст не переносится */
  margin-bottom: 20px;
}
@media (min-width: 920px) {
  .controlls__block-title {
    font-size: 18px;
  }
}

.controlls__block-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.constrolls__block-item {
  font-size: 13px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-family: Involve, sans-serif;
  text-transform: capitalize;
  color: #fff;
}
@media (min-width: 920px) {
  .constrolls__block-item {
    font-size: 16px;
  }
}
.constrolls__block-item::before {
  content: "";
  background-image: url("../../assets/images/controlls-list-img.png");
  height: 24px;
  width: 24px;
  display: block;
}
.constrolls__block-item::after {
  content: "";
  position: absolute;
  display: block;
  bottom: -5px;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, #cc0254 0%, #ff5fa0 24%, #a463f3 52%, #6289fe 76%, #2b01ce 90%, rgba(42, 1, 206, 0) 100%);
}

.constrolls__block-image {
  opacity: 0;
  transition: all 0.3s ease 0s;
  width: 100%;
  object-fit: contain;
  /* Маска: горизонтальный и вертикальный градиент */
  -webkit-mask-image: linear-gradient(to right, black 0%, black 90%, transparent 100%), linear-gradient(to bottom, black 0%, black 90%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-composite: destination-in;
  mask-image: linear-gradient(to right, black 0%, black 90%, transparent 100%), linear-gradient(to bottom, black 0%, black 90%, transparent 100%);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  mask-composite: intersect; /* современный стандарт для комбинирования */
}

.controlls__image {
  max-width: 40%;
  aspect-ratio: 1/1.78;
  overflow: hidden; /* чтобы img не вылезало */
  max-width: 450px;
  pointer-events: none;
  user-select: none;
}
.controlls__image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* сохраняет пропорции и полностью видимое изображение */
  display: block;
  /* Маска: горизонтальный и вертикальный градиент */
  -webkit-mask-image: linear-gradient(to right, black 0%, black 90%, transparent 100%), linear-gradient(to bottom, black 0%, black 80%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-composite: destination-in;
  mask-image: linear-gradient(to right, black 0%, black 90%, transparent 100%), linear-gradient(to bottom, black 0%, black 80%, transparent 100%);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  mask-composite: intersect; /* современный стандарт для комбинирования */
}

.controlls__swiper {
  width: 100vw;
  height: 500px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .controlls__swiper {
    display: none !important;
  }
}

.controlls__swiper-buttons {
  position: absolute;
  right: 0;
  bottom: 100px;
  z-index: 2;
}
.controlls__swiper-buttons img {
  width: 64px;
  height: 64px;
}
@media (min-width: 768px) {
  .controlls__swiper-buttons {
    display: none;
  }
}

.controlls__link {
  position: relative;
  z-index: 5;
  max-width: 400px;
  text-align: center;
  margin: 0 auto;
  background: linear-gradient(90deg, #cc0254 0%, #ff5fa0 24%, #a463f3 52%, #6289fe 76%, #2b01ce 100%);
}
@media (min-width: 920px) {
  .controlls__link {
    margin: 0;
    margin-top: -200px;
    margin-left: 60px;
  }
}

.detector__container {
  position: relative;
  z-index: 4;
}

.detector__image {
  width: 100%;
  aspect-ratio: 5.6/2;
  position: relative;
  z-index: 2;
}
.detector__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.detector__image {
  pointer-events: none;
  user-select: none;
}

.detecror__body {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .detecror__body {
    position: relative;
    z-index: 4;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    margin-top: -28%;
  }
}

.detector__left {
  margin-bottom: 30px;
}
@media (min-width: 920px) {
  .detector__left {
    width: 600px;
  }
}
@media (min-width: 576px) {
  .detector__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.detector__left .detector__left-mob-title {
  position: relative;
  color: #fff;
  z-index: 3;
  font-family: Involve, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}
.detector__left .detector__left-mob-title strong {
  font-weight: 700;
  background: linear-gradient(90deg, #cc0254 0%, #ff5fa0 24%, #a463f3 52%, #6289fe 76%, #2b01ce 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 576px) {
  .detector__left .detector__left-mob-title {
    display: none;
  }
}
.detector__left .detector__left-image {
  display: block;
  width: 100%;
  aspect-ratio: 1/1.1;
  position: relative;
  margin-top: -170px;
}
.detector__left .detector__left-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 576px) {
  .detector__left .detector__left-image img {
    animation: float-img 6s ease-in-out infinite;
  }
}
@media (min-width: 576px) {
  .detector__left .detector__left-image {
    max-width: 400px;
  }
}
@media (min-width: 768px) {
  .detector__left .detector__left-image {
    width: 550px;
    height: 550px;
    margin-top: 0;
  }
}
@media (min-width: 920px) {
  .detector__left .detector__left-image {
    width: 120%;
    height: auto;
    min-width: 500px;
    aspect-ratio: 1/1.1;
  }
  .detector__left .detector__left-image img {
    object-fit: cover;
  }
}
@media (min-width: 768px) {
  .detector__left {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .detector__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 50%;
  }
}

.detector__title {
  display: none;
  margin-bottom: 30px;
  position: relative;
  color: #fff;
  z-index: 3;
  font-family: Involve, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  font-size: 30px;
}
.detector__title strong {
  font-weight: 700;
  background: linear-gradient(90deg, #cc0254 0%, #ff5fa0 24%, #a463f3 52%, #6289fe 76%, #2b01ce 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 576px) {
  .detector__title {
    display: block;
  }
}
@media (min-width: 768px) {
  .detector__title {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .detector__title {
    font-size: 36px;
  }
}

.detector__divider {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #cc0254 0%, #ff5fa0 24%, #a463f3 52%, #6289fe 76%, #2b01ce 100%);
  margin-bottom: 30px;
}

.detector__features {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-size: 12px;
  gap: 10px;
}
@media (min-width: 768px) {
  .detector__features {
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
  }
}

.detector__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 45%;
}
@media (min-width: 768px) {
  .detector__feature {
    max-width: 110px;
  }
}

.detector__feature-img {
  position: relative;
  width: 80px;
  height: 80px;
}
.detector__feature-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@keyframes float-img {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.consult {
  padding-top: 100px;
}
.consult::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  content: "";
  background-color: #02050F;
  z-index: 3;
}
.consult {
  position: relative;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .consult {
    margin-bottom: 60px;
  }
}

.consult__container {
  position: relative;
  z-index: 7;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.consult__title {
  text-transform: uppercase;
  font-size: 22px;
  margin-bottom: 15px;
}
@media (min-width: 920px) {
  .consult__title {
    font-size: 44px;
    margin-bottom: 25px;
  }
}

.consult__descriptio {
  font-family: Involve, sans-serif;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .consult__descriptio {
    margin-bottom: 30px;
  }
}
@media (min-width: 920px) {
  .consult__descriptio {
    font-size: 18px;
  }
}

.consult__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.consult__labels {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .consult__labels {
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }
}

.consult__input {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
@media (min-width: 375px) {
  .consult__input {
    width: 100%;
    max-width: 350px;
  }
}
@media (min-width: 920px) {
  .consult__input {
    max-width: 400px;
  }
}
.consult__input label {
  margin-left: 25px;
  font-size: 18px;
  margin-bottom: 10px;
  font-family: Involve, sans-serif;
}
@media (min-width: 920px) {
  .consult__input label {
    margin-bottom: 15px;
  }
}
.consult__input input {
  display: block;
  outline: none;
  background: transparent;
  min-width: 270px;
  border: 1.5px solid #fff;
  font-size: 16px;
  padding: 10px 25px;
  color: #fff;
  border-radius: 30px;
}
@media (min-width: 375px) {
  .consult__input input {
    width: 100%;
    max-width: 350px;
  }
}
@media (min-width: 920px) {
  .consult__input input {
    font-size: 22px;
    max-width: 400px;
    padding: 10px 25px;
  }
}

.consult__submit {
  font-family: DaysOne, sans-serif;
  width: 270px;
}
@media (min-width: 375px) {
  .consult__submit {
    width: 100%;
    max-width: 350px;
    font-size: 18px;
  }
}
@media (min-width: 920px) {
  .consult__submit {
    font-size: 22px;
  }
}
.consult__submit {
  margin-bottom: 100px;
}
@media (min-width: 768px) {
  .consult__submit {
    margin-bottom: 0;
  }
}

.footer {
  display: none;
}
@media (min-width: 768px) {
  .footer {
    display: block;
  }
}
.footer {
  position: relative;
  z-index: 4;
}

.footer__bg {
  background-image: url("../../assets/images/footer-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  content: "";
  display: block;
  width: 100vw;
  height: 600px;
  bottom: 0;
  left: 0;
}
.footer__bg::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  top: 0px;
  height: 70px;
  display: block;
  pointer-events: none; /* чтобы не мешал кликам */
  background: linear-gradient(0deg, rgba(2, 5, 15, 0) 0%, #02050F 100%);
}
@media (min-width: 1024px) {
  .footer__bg {
    background-position-y: center;
  }
}

.footer__header {
  position: relative;
  z-index: 5;
}

.footer__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.footer__logo {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  gap: 10px;
}
.footer__logo img {
  width: 60px;
  height: 60px;
}
.footer__logo h1 {
  font-size: 32px;
  color: #fff;
}

.footer__nav-title {
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
}

.footer__divider {
  position: relative;
  z-index: 5;
  width: 100vw;
  height: 2px;
  background-color: #fff;
  display: block;
  content: "";
  filter: blur(4px);
}

.footer__body {
  position: relative;
  z-index: 3;
  padding-bottom: 15px;
}

.body-footer__container {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.body-footer__nav {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  height: 100px;
}

.body-footer__copy {
  margin-top: auto;
  color: #fff;
  font-family: Involve, sans-serif;
  font-size: 18px;
}

.body-footer__contact {
  height: 100px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
}

.body-footer__tel {
  color: #fff;
  font-size: 22px;
  font-family: Involve, sans-serif;
  font-weight: 500;
}

.body-footer__socail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.body-footer__social-link {
  display: block;
  width: 45px;
  height: 45px;
  position: relative;
}
.body-footer__social-link img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.popup {
  position: fixed;
  top: 0 !important;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 101;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup.active {
  opacity: 1;
  visibility: visible;
}

.popup-container {
  width: 100%;
  position: fixed;
  padding: 15px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  border-radius: 30px;
  max-width: 800px;
  border-radius: 40px;
  background: #02050f;
  background-image: url(../../assets/images/pop-bg.webp);
  background-position: bottom;
  background-repeat: no-repeat;
  border: 0.5px solid #2F00E2;
  box-shadow: 0px 0px 16px 0px #2F00E2;
  transition: transform 0.3s ease;
}

.popup.active .popup-container {
  transform: translate(-50%, -50%) scale(1);
}

.title-pop {
  color: #fff;
  text-align: center;
  font-family: Involve;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-top: 20px;
}

.form__inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.close-pop {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  z-index: 10;
  cursor: pointer;
}
.close-pop img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.close-pop {
  filter: invert(1);
}

.form-card-text {
  color: #fff;
  font-weight: 500;
  font-family: Involve, sans-serif;
}