@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
   ============================================ */
.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: 15px;
}

.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: 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-NEW — точно по макету Фігма
   ============================================ */

/* Базова секція */
.hero-new {
  position: relative;
  background-color: #02050f;
  overflow: hidden;
}

/* ---- МОБІЛЬНА ВЕРСІЯ (default) ---- */
.hero-new__desktop {
  display: none;
}

.hero-new__features-block {
  display: none;
}

/* Мобіль: заголовок зверху */
.hero-new__mobile {
  display: flex;
  flex-direction: column;
  padding-top: 60px; /* висота хедера */
}

.hero-new__mobile-top {
  padding: 20px 16px 0;
}

/* Заголовок (спільний для моб і десктоп) */
.hero-new__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.hero-new__title-line1 {
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: clamp(28px, 8vw, 70px);
}

.hero-new__title-line2 {
  text-transform: uppercase;
  line-height: 1.1;
  font-size: clamp(28px, 8vw, 56px);
  color: #fff;
  /* На мобілі — без градієнту, просто білий як на макеті */
}

/* Підзаголовок */
.hero-new__subtitle {
  color: #ffffff;
  font-family: Involve, sans-serif;
  font-size: clamp(20px, 10vw, 40px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0;
  margin-top: 60px;
}

/* Зображення на мобілі — на всю ширину */
.hero-new__mobile-image {
  width: 100%;
  position: relative;
  overflow: visible;
}

.hero-new__mobile-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Форма на мобілі */
.hero-new__mobile-form {
  padding: 16px 16px 40px;
  display: flex;
  flex-direction: column;
}

/* Спільні елементи форми */
.hero-new__form-desc {
  color: #fff;
  font-family: Involve, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.hero-new__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.hero-new__input-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-new__label {
  color: #fff;
  font-family: Involve, sans-serif;
  font-size: 16px;
  margin-left: 16px;
}

.hero-new__input {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 30px;
  padding: 14px 22px;
  color: #fff;
  font-family: DaysOne, sans-serif;
  font-size: 16px;
  outline: none;
  width: 100%;
  transition: border-color 0.3s;
}

.hero-new__input:focus {
  border-color: #6289fe;
}

/* Кнопка — яскравий градієнт рожево→фіолетово→синій */
.hero-new__btn {
  display: block;
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-family: DaysOne, sans-serif;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(90deg, #cc0254 0%, #e8357a 20%, #a463f3 50%, #6289fe 75%, #2b01ce 100%);
  transition: opacity 0.3s, transform 0.3s;
  letter-spacing: 0.03em;
}

.hero-new__btn:hover {
  opacity: 0.88;
  transform: translateY(2px);
}

/* ---- ДЕСКТОП ВЕРСІЯ (768px+) ---- */
@media (min-width: 768px) {

  /* Ховаємо мобіль */
  .hero-new__mobile {
    display: none;
  }

  /* Секція — flex-row, фото справа як об'єкт */
  .hero-new {
    position: relative;
    padding-top: 60px; /* хедер */
    overflow: hidden;
  }

  /* Вся секція — висота вьюпорт */
  .hero-new__desktop {
    display: flex;
    flex-direction: row;
    height: calc(100vh - 60px);
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    overflow: hidden;
  }

  /* Ліва частина — по центру вертикально, зсув вниз */
  .hero-new__desktop-left {
    flex: 0 0 auto;
    width: 44%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    gap: 100px;
  }

  .hero-new__desktop-left .hero-new__title {
    margin-bottom: 12px;
  }

  .hero-new__desktop-left .hero-new__title-line1 {
   font-size: clamp(26px, 3.4vw, 50px);
    white-space: nowrap;
  }

  .hero-new__desktop-left .hero-new__title-line2 {
    font-size: clamp(26px, 3.4vw, 50px);
    white-space: nowrap;
  }

  .hero-new__desktop-left .hero-new__subtitle {
    color: #fff;
    font-size: clamp(9px, 2vw, 25px);
    margin-bottom: 28px;
  }

  .hero-new__desktop-left .hero-new__form-desc {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 70px;
    max-width: 320px;
  }

  .hero-new__desktop-left .hero-new__form {
    max-width: 320px;
  }

  .hero-new__desktop-left .hero-new__input {
    font-size: 20px;
    padding: 12px 20px;
    margin-bottom: 20px;
  }

  .hero-new__desktop-left .hero-new__btn {
    font-size: 17px;
    padding: 13px 20px;
  }

  /* Права частина — фото знизу, антени йдуть вгору за межі */
  .hero-new__desktop-right {
    flex: 1;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;

  }

  .hero-new__desktop-img {
    /* Фото виходить знизу і антени вгорі — як на макеті */
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
  }

  /* Features блок під основним контентом */
  .hero-new__features-block {
    display: block;
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 20px 24px 50px;
    border-bottom: 2px solid transparent;

  }

  
  .hero-new__features-row1,
  .hero-new__features-row2 {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-new__features-row2 {
    margin-top: 10px;
  }

  .hero-new__feature {
    color: #ffffff;
    font-family: DaysOne, sans-serif;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero-new__feature-arrow {
    color: #6289fe;
    font-size: 13px;
    opacity: 0.8;
    letter-spacing: -1px;
  }

  .hero-new__features-divider {
    display: none;
  }

  .hero-new__feature-line {
    flex: 1;
    max-width: 250px;
    height: 1px;
    background: linear-gradient(90deg, #6289fe 0%, #a463f3 60%, rgba(42,1,206,0) 100%);
    display: inline-block;
  }
}

@media (min-width: 1024px) {
  .hero-new__desktop {
    padding: 0 40px;
  }
  .hero-new__desktop-left {
    width: 43%;
  }
  .hero-new__desktop-left .hero-new__title-line1,
  .hero-new__desktop-left .hero-new__title-line2 {
    font-size: clamp(20px, 5vw, 70px);
  }
  .hero-new__desktop-left .hero-new__form {
    max-width: 360px;
  }
  .hero-new__features-block {
    padding: 14px 40px 22px;
  }
  .hero-new__feature {
    font-size: 22px;
  }
    .hero-new__desktop-left {
      gap: 15px;
    }
  
}

@media (min-width: 1440px) {
  .hero-new__desktop {
    padding: 0 60px;
  }
  .hero-new__desktop-left .hero-new__title-line1,
  .hero-new__desktop-left .hero-new__title-line2 {
    font-size: clamp(34px, 4vw, 60px)
  }
  .hero-new__features-block {
    padding: 14px 60px 22px;
  }
}

@keyframes hero-float-desktop {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* ============================================
   INTRO
   ============================================ */
.intro {
  margin-bottom: 50px;
}
@media (min-width: 576px) {
  .intro {
    margin-bottom: 100px;
  }
}

@media (max-width: 768px) {
  .hero-new__subtitle {
    margin-top: 10px;
    font-size: 17px;
  }
}

.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;
    padding-inline: 10px;
  }
  .intro__title h2 strong {
    font-size: 44px;
  }
}
@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
   ============================================ */
.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;
  }
}

/* ============================================
   FEATURES
   ============================================ */
.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
   ============================================ */
.instruction {
  margin-bottom: 50px;
}

.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%;
}

/* ============================================
   ABOUT
   ============================================ */
.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-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;
  }
}

/* ============================================
   PURPOSE
   ============================================ */
.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;
  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
   ============================================ */
.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
   ============================================ */
.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;
  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;
  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
   ============================================ */
.detector__container {
  position: relative;
  z-index: 4;
}

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

.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; }
  .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%;
}

/* ============================================
   CONSULT
   ============================================ */
.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;
  margin-bottom: 100px;
}
@media (min-width: 375px) { .consult__submit { width: 100%; max-width: 350px; font-size: 18px; } }
@media (min-width: 920px) { .consult__submit { font-size: 22px; } }
@media (min-width: 768px) { .consult__submit { margin-bottom: 0; } }

/* ============================================
   FOOTER
   ============================================ */
.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;
  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
   ============================================ */
.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;
  filter: invert(1);
}
.close-pop img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

/* ============================================
   МЕСЕНДЖЕР ВІДЖЕТ
   ============================================ */
.messenger-widget {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.messenger-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  cursor: pointer;
  background: linear-gradient(90deg,#cc0254,#ff5fa0,#a463f3,#6289fe,#2b01ce);
  box-shadow: 0 0 10px #a463f3, 0 0 20px #6289fe;
  transition: .3s;
}
.messenger-button:hover { transform: scale(1.1); }

.messenger-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: .3s;
}
.messenger-widget.active .messenger-list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.messenger {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #02050f;
  border: 2px solid #6289fe;
  transition: .3s;
}
.messenger img { width: 22px; filter: invert(1); }
.messenger:hover { transform: scale(1.1); border-color: #ff5fa0; box-shadow: 0 0 10px #ff5fa0; }