@charset "UTF-8";
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraLight.woff") format("woff"), url("../fonts/Inter-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Light.woff") format("woff"), url("../fonts/Inter-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff") format("woff"), url("../fonts/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* =====================================
   FUNCTIONS & MIXINS
===================================== */
/* =====================================
   GLOBAL ELEMENTS
===================================== */
* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Inter", sans-serif;
  margin: 0;
}

img {
  width: 100%;
  height: 100%;
}

/* =====================================
   BODY & PAGE
===================================== */
.body {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  padding: 0;
  margin: 0;
  --text-color-white: #ffffff;
  --text-color-black: #000000;
  --bg-dark: #1a1a1e;
  color: var(--text-color-white);
  background: var(--bg-dark);
}

.page {
  width: 85%;
  max-width: 1349px;
  margin: 0 auto;
}

/* =====================================
   TYPOGRAPHY
===================================== */
.title {
  font-family: "Inter", "Arial";
  font-weight: 200;
  font-size: clamp(40px, 4.2708333333vw, 82px);
  line-height: clamp(40px, 3.6979166667vw, 82px);
}
.title b {
  font-weight: 700;
}

.title-h2 {
  font-weight: 200;
  font-size: clamp(25px, 3.0208333333vw, 58px);
  line-height: clamp(25px, 3.0208333333vw, 58px);
}
.title-h2 b {
  font-weight: 700;
}

.title-h3 {
  font-weight: 700;
  font-size: clamp(30px, 2.34375vw, 45px);
  line-height: clamp(25px, 2.34375vw, 45px);
}

.title-h4 {
  font-weight: 700;
  font-size: clamp(20px, 1.5625vw, 30px);
  line-height: clamp(20px, 1.5625vw, 30px);
}

/* =====================================
   UTILITY CLASSES
===================================== */
.mob {
  display: none;
}

.text-color-pink {
  color: #b691ff;
}

.text-center {
  text-align: center;
}

/* =====================================
   IMAGES & LOGO
===================================== */
.box-image {
  position: relative;
  right: 40px;
}
.box-image__img {
  width: 115%;
}

.logo {
  display: flex;
  align-items: center;
  width: clamp(198px, 15.15625vw, 291px);
}

/* =====================================
   SECTION & LAYOUT ELEMENTS
===================================== */
.section-img {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  align-items: center;
  gap: 15px;
  margin-bottom: clamp(60px, 3.59375vw, 69px);
}

/* =====================================
   CIRCLE BLOCKS
===================================== */
.circle-block {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(91deg, #db35bd 0.53%, #8c54fd 88%);
  border: 0.7px solid rgba(238, 173, 226, 0.4941176471);
  box-shadow: 3px -2px 7px 0px rgba(0, 0, 0, 0.34);
  margin: auto;
}
.circle-block__icon {
  fill: #ffffff;
}

/* =====================================
   GRADIENT BORDER
===================================== */
.gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--gradient-border-radius);
  padding: 1px;
  background: linear-gradient(45deg, rgba(219, 53, 189, 0.3764705882), rgba(140, 84, 253, 0.3764705882));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

/* =====================================
   IMPORTS
===================================== */
.btn {
  text-decoration: none;
  background: linear-gradient(91deg, #db35bd 0.53%, #8c54fd 88%);
  background-size: 100% 100%;
  padding: 23px 53px;
  border-radius: 20px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-color-white);
  cursor: pointer;
  position: relative;
  z-index: 1;
  /* Плавные анимации */
  transition: transform 0.3s ease, background-position 1s ease, 0.2s linear;
}
@media (hover: hover) {
  .btn:hover {
    cursor: pointer;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(139, 84, 253, 0.6), 0 0 25px rgba(219, 53, 189, 0.4);
  }
}

/* =====================================
   Тень для кнопки
===================================== */
.shadow {
  position: relative;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
.shadow::after {
  content: "";
  position: absolute;
  inset: -1px;
  transform: translate(1px, 1px);
  background: linear-gradient(91deg, rgba(219, 53, 189, 0.3764705882) 0.53%, rgba(140, 84, 253, 0.3764705882) 88%);
  filter: blur(10px);
}

/* =====================================
   Контейнер для кнопки
===================================== */
.btn-box {
  position: relative;
}

.btn-container {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

/* =====================================
   Модификатор: прозрачная кнопка с градиентной обводкой
===================================== */
.btn--outline-gradient {
  background: transparent;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}
.btn--outline-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px; /* Толщина градиентной обводки */
  background: linear-gradient(91deg, rgba(219, 51, 188, 0.5019607843) 0.53%, rgba(140, 83, 253, 0.5019607843) 88%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; /* Chrome/Safari */
  mask-composite: exclude;
  -webkit-mask-composite: source-out;
          mask-composite: subtract; /* Firefox */
  z-index: -1;
}

/* =====================================
   MEDIA: до 678px
===================================== */
@media screen and (max-width: 678px) {
  .btn-container {
    flex-direction: column;
  }
}
.entry {
  /* Вертикальное выравнивание */
  align-items: flex-end;
  /* Внутренние элементы */
}
.entry__info {
  margin-bottom: 20%;
}
.entry__title {
  margin-bottom: 30px;
}
.entry__description {
  width: 100%;
  max-width: 60%;
  margin-bottom: 47px;
}

/* =====================================
   MEDIA: до 1183px
===================================== */
@media screen and (max-width: 1183px) {
  .entry__info {
    margin-bottom: 0;
  }
}
/* =====================================
   MEDIA: до 1022px
===================================== */
@media screen and (max-width: 1022px) {
  .entry {
    padding-top: 120px;
  }
  .entry__info {
    margin-bottom: 0;
  }
  .entry__box-img-mob {
    right: 0;
  }
  .entry__img-mob {
    width: 100%;
    height: 100%;
  }
  .entry__text-box {
    width: 100%;
    max-width: 80%;
    margin: auto;
    text-align: center;
  }
  .entry__description {
    margin: auto;
  }
}
/* =====================================
   MEDIA: до 878px
===================================== */
@media screen and (max-width: 878px) {
  .entry__text-box {
    max-width: 87%;
  }
  .entry__box-img-mob {
    margin-bottom: 20px;
  }
}
.footer {
  /* Позиционирование */
  position: relative;
  bottom: -3px;
  /* Flex layout */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  /* Размеры и отступы */
  padding: clamp(30px, 2.0833333333vw, 40px) clamp(30px, 2.34375vw, 45px);
  border-radius: clamp(57px, 2.3958333333vw, 46px) clamp(57px, 2.3958333333vw, 46px) 0 0;
  /* Визуальные эффекты */
  box-shadow: 3px -2px 41px 0px rgba(0, 0, 0, 0.34);
  /* Градиентная граница */
  --gradient-border-radius: clamp(57px, 2.3958333333vw, 46px) clamp(57px, 2.3958333333vw, 46px) 0 0;
  /* Элементы */
}
.footer__circle-block {
  width: clamp(50px, 3.3333333333vw, 64px);
  height: clamp(50px, 3.1770833333vw, 61px);
  transition: all 0.2s linear;
}
.footer__icon {
  width: clamp(20px, 1.5625vw, 30px);
  height: clamp(20px, 1.5625vw, 30px);
}
.footer__box {
  display: flex;
  gap: 20px;
}
.footer__download-box {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.footer__download-box-text, .footer__link {
  font-weight: 700;
}
.footer__link {
  text-underline-offset: 5px;
}
@media (hover: hover) {
  .footer__link:hover {
    cursor: pointer;
  }
  .footer__link:hover .footer__circle-block {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(139, 84, 253, 0.4);
  }
}
.footer__info {
  display: flex;
  align-items: center;
  gap: clamp(25px, 2.34375vw, 45px);
}

/* Исправление для градиентного бордера */
.footer.gradient-border::before {
  padding-bottom: 0;
}

/* ===================================
   MEDIA: адаптив до 878px
=================================== */
@media screen and (max-width: 878px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer__download-box {
    order: 1;
    flex-direction: row-reverse;
    gap: 10px;
  }
  .footer__info {
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 20px;
  }
}
.header {
  position: absolute;
  top: -1px;
  /* Визуальные эффекты */
  -webkit-backdrop-filter: blur(11px);
          backdrop-filter: blur(11px);
  box-shadow: 3px -2px 41px 0px rgba(0, 0, 0, 0.34);
  border-radius: 0 0 36px 36px;
  --gradient-border-radius: 0 0 36px 36px;
  /* Размеры */
  width: clamp(289px, 19.7916666667vw, 380px);
  height: clamp(70px, 5.46875vw, 105px);
  /* Центрирование содержимого */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =====================================
   MEDIA: до 1022px
===================================== */
@media screen and (max-width: 1022px) {
  .header {
    left: 50%;
    transform: translateX(-50%);
  }
}
.partners {
  /* Фон */
  background-image: url(/pictures/circles.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  /* Отступы */
  padding: clamp(30px, 8.3333333333vw, 160px) 0;
  margin: clamp(10px, 1.0416666667vw, 20px) 0;
}
.partners__title {
  width: 100%;
  max-width: 80%;
  margin: 0 auto clamp(48px, 4.84375vw, 93px);
}

.partners-cards {
  /* Сетка карточек */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 1.8229166667vw, 35px);
}
.partners-cards__card {
  position: relative;
  overflow: hidden;
  padding: clamp(33px, 2.4479166667vw, 47px);
  border-radius: clamp(40px, 3.125vw, 60px);
  min-height: clamp(344px, 27.2916666667vw, 524px);
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  /* Градиентная рамка */
  --gradient-border-radius: clamp(40px, 3.125vw, 60px);
}
.partners-cards__card::after {
  content: "";
  position: absolute;
  inset: clamp(0px, -1.0416666667vw, -20px);
  width: 105%;
  height: 105%;
  background-image: url(/pictures/card-bg.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  z-index: -1;
}
.partners-cards__box-img {
  position: relative;
  top: -5%;
  left: -5%;
  margin: 0 0 clamp(30px, 2.5vw, 48px);
  width: clamp(60px, 4.7916666667vw, 92px);
  height: clamp(58px, 4.5833333333vw, 88px);
}
.partners-cards__icon {
  width: clamp(34px, 2.7083333333vw, 52px);
  height: clamp(34px, 2.7083333333vw, 52px);
}
.partners-cards__title {
  margin-bottom: clamp(30px, 2.34375vw, 45px);
}
.partners-cards__suptitle {
  margin-bottom: clamp(23px, 1.7708333333vw, 34px);
}

/* =============================
   MEDIA: до 1022px
============================= */
@media screen and (max-width: 1022px) {
  .partners {
    background-image: none;
  }
  .partners-cards {
    overflow-x: auto;
    padding-bottom: 30px;
  }
  .partners-cards__card {
    width: 280px;
  }
}
/* =============================
   MEDIA: до 878px
============================= */
@media screen and (max-width: 878px) {
  .partners-cards {
    position: relative;
    right: 5%;
    width: 120%;
    padding-right: 5%;
  }
}
.step__title {
  display: block;
  margin-bottom: clamp(30px, 3.3854166667vw, 65px);
}
.step__info {
  margin-bottom: 40%;
}

.steps {
  display: grid;
  grid-auto-rows: 1fr;
  gap: clamp(17px, 1.3020833333vw, 25px);
}
.steps__item {
  position: relative;
  min-height: clamp(108px, 10.4166666667vw, 160px);
  border-radius: clamp(27px, 2.0833333333vw, 40px);
  --gradient-border-radius: clamp(27px, 2.0833333333vw, 40px);
  display: grid;
  grid-template-columns: 120px 3fr;
  -moz-column-gap: clamp(20px, 1.71875vw, 33px);
       column-gap: clamp(20px, 1.71875vw, 33px);
  align-items: center;
  background-image: url(/pictures/small-card.png);
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  box-shadow: 1px 10px 33px 0 rgba(0, 0, 0, 0.34);
  padding: clamp(17px, 1.0416666667vw, 20px) clamp(10px, 0.78125vw, 15px) clamp(10px, 0.78125vw, 15px) 0;
}
.steps__title {
  margin-bottom: clamp(15px, 1.0416666667vw, 20px);
}
.steps__circle-block {
  width: clamp(57px, 4.3229166667vw, 83px);
  height: clamp(54px, 4.1666666667vw, 80px);
}
.steps__icon {
  width: clamp(26px, 2.03125vw, 39px);
  height: clamp(26px, 2.03125vw, 39px);
}

/* =====================================
   MEDIA: до 1022px
===================================== */
@media screen and (max-width: 1022px) {
  .step__title {
    text-align: center;
  }
  .step__img-mob {
    width: 100%;
    height: 100%;
  }
  .step__box-img-mob {
    right: 0;
    margin-bottom: 20px;
  }
  .step__info {
    margin-bottom: 0;
  }
  .steps__item {
    grid-template-columns: 80px 3fr;
  }
}
.uniqueness {
  /* Позиционирование и размеры */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  min-height: 677px;
  /* Отступы и радиусы */
  padding: clamp(20px, 1.5625vw, 30px) clamp(23px, 2.4479166667vw, 47px) clamp(43px, 1.5625vw, 30px) clamp(23px, 2.4479166667vw, 47px);
  border-radius: clamp(45px, 3.125vw, 60px);
  --gradient-border-radius: clamp(45px, 3.125vw, 60px);
  /* Внутренние блоки */
  /* Фон */
}
.uniqueness__info {
  width: 100%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(30px, 3.9583333333vw, 76px);
}
.uniqueness::after {
  content: "";
  position: absolute;
  inset: -20px;
  width: 105%;
  height: 105%;
  background-image: url(/pictures/laptop.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: -35px;
  z-index: -1;
}

.uniqueness-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(22px, 1.4583333333vw, 28px);
}
.uniqueness-list__item {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: clamp(70px, 4.6875vw, 90px) 1fr;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  min-height: clamp(62px, 4.1666666667vw, 80px);
  padding: 10px 23px 10px 0;
  border-radius: clamp(20px, 1.40625vw, 27px);
  background-image: url(/pictures/uniqueness.png);
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  -webkit-backdrop-filter: blur(11px);
          backdrop-filter: blur(11px);
  --gradient-border-radius: clamp(20px, 1.40625vw, 27px);
}
.uniqueness-list__text {
  font-weight: 700;
}
.uniqueness-list__icon {
  width: clamp(23px, 1.5625vw, 30px);
  height: clamp(23px, 1.5625vw, 30px);
}
.uniqueness-list__box-img {
  width: clamp(41px, 2.8645833333vw, 55px);
  height: clamp(43px, 2.7604166667vw, 53px);
}

/* =====================================
   MEDIA: до 1433px
===================================== */
@media screen and (max-width: 1433px) {
  .uniqueness__info {
    max-width: 35%;
  }
  .uniqueness-list {
    flex-direction: column;
  }
  .uniqueness-list__item {
    width: 100%;
  }
}
/* =====================================
   MEDIA: до 1022px
===================================== */
@media screen and (max-width: 1022px) {
  .uniqueness {
    flex-direction: column;
    min-height: auto;
    padding-top: 80%;
  }
  .uniqueness__title {
    text-align: center;
  }
  .uniqueness__info {
    max-width: 100%;
  }
  .uniqueness__mob-box-img {
    position: absolute;
    top: 0;
    left: 0;
  }
  .uniqueness__mob-box-img-bg {
    position: absolute;
    left: 0;
    z-index: -1;
  }
  .uniqueness::after {
    display: none;
  }
}
/* =====================================
   MEDIA: до 878px
===================================== */
@media screen and (max-width: 878px) {
  .uniqueness {
    padding-top: 100%;
  }
  .uniqueness__mob-box-img-bg {
    position: absolute;
    left: 0;
    z-index: -1;
  }
  .uniqueness__mob-box-img-laptop {
    position: relative;
    width: 130%;
    z-index: -1;
  }
}
/* =====================================
   MEDIA QUERIES
===================================== */
@media screen and (max-width: 1022px) {
  .desk {
    display: none;
  }
  .mob {
    display: flex;
  }
  .section-img {
    grid-template-columns: 1fr;
  }
  .btn-box {
    margin: auto;
  }
}
@media screen and (max-width: 878px) {
  .body {
    font-size: 13px;
  }
  .page {
    max-width: 77%;
  }
}/*# sourceMappingURL=styles.css.map */