@font-face {
  font-family: "Bounded";
  src: url("../fonts/Bounded-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bounded";
  src: url("../fonts/Bounded-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bounded";
  src: url("../fonts/Bounded-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bounded";
  src: url("../fonts/Bounded-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bounded";
  src: url("../fonts/Bounded-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bounded";
  src: url("../fonts/Bounded-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bounded";
  src: url("../fonts/Bounded-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 1.8vh;
  color: #010e32;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 11px 25px;
  border-radius: 15px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  transition: background-color 0.2s, box-shadow 0.2s, color 0.2s;
}
.btn--lg {
  padding: 16px 32px;
}
.btn--primary {
  background: #1daff7;
  color: #ffffff;
  box-shadow: 0 2px 8px 0 rgba(16, 93, 226, 0.4);
}
.btn--primary:hover {
  opacity: 0.9;
}
.btn--ghost {
  padding: 11px 20px;
  background: #ffffff;
  color: #010e32;
  box-shadow: 0 2px 8px 0 rgba(16, 93, 226, 0.4);
  border: 1px solid #1daff7;
}
.btn--ghost:hover {
  color: #1daff7;
}
.btn--outline {
  background: #ffffff;
  color: #010e32;
  box-shadow: 0 2px 8px 0 rgba(16, 93, 226, 0.4);
}
.btn--outline:hover {
  color: #1daff7;
}
.btn__arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0 0;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.header__bar {
  display: contents;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  width: 100%;
  padding: 14px 24px;
  background: #ffffff;
  border-radius: 23px;
  box-shadow: 0 2px 8px 0 rgba(16, 93, 226, 0.4);
  overflow: visible;
}
.header__actions-inner {
  display: flex;
  flex-shrink: 0;
}
.header__logo {
  display: flex;
  flex-shrink: 0;
}
.header__logo-text {
  color: #010e32;
}
.header__logo-accent {
  color: #1daff7;
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s;
}
.header__burger:hover {
  background: rgba(29, 175, 247, 0.08);
}
.header__burger-line {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #010e32;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.header__burger.is-active .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger.is-active .header__burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__burger.is-active .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  color: #010e32;
  transition: color 0.2s;
}
.header__nav-link:hover {
  color: #1daff7;
}
.header__nav-chevron {
  width: 10px;
  height: 6px;
  margin-top: 2px;
  opacity: 0.6;
}
.header__actions--menu {
  display: none;
}

.header__nav-item {
  position: relative;
}
.header__nav-item--dropdown .header__nav-link--dropdown {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}
@media (min-width: 1031px) {
  .header__inner {
    position: relative;
  }
}
.header__nav-chevron-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}
.header__dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: min(780px, 100vw - 48px);
  padding: 14px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 2px 8px 0 rgba(16, 93, 226, 0.2745098039);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transform: translateX(-50%) translateY(8px);
  z-index: 120;
}
.header__dropdown::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 30px;
}
.header__nav-item--dropdown.is-open .header__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
@media (min-width: 1031px) {
  .header__nav-item--dropdown.is-open .header__nav-chevron-wrap {
    transform: rotate(180deg);
  }
  .header__nav-item--dropdown.is-open .header__nav-link--dropdown {
    color: #1daff7;
  }
}
.header__dropdown-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.header__dropdown-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1030px) {
  .header__dropdown-backdrop {
    display: none;
  }
}
.header__dropdown-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.header__dropdown-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(1, 14, 50, 0.06);
  background: #ffffff;
  transition: box-shadow 0.2s, transform 0.2s;
}
.header__dropdown-card:hover {
  box-shadow: 0 2px 8px 0 rgba(16, 93, 226, 0.2745098039);
  transform: translateY(-2px);
}
.header__dropdown-card-head {
  padding: 12px 16px;
  font-family: "Bounded", sans-serif;
  font-size: 1.8vh;
  font-weight: 700;
  color: #010e32;
  border-bottom: 1px solid rgba(1, 14, 50, 0.06);
}
.header__dropdown-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 180px;
  background: #eef5fb;
}
.header__dropdown-card-media svg {
  width: 60%;
  max-width: 220px;
  height: auto;
}
.header__dropdown-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.header__dropdown-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #f4f8fc;
  transition: background-color 0.2s;
}
.header__dropdown-banner:hover {
  background: #eaf4fb;
}
.header__dropdown-banner:hover .header__dropdown-banner-link {
  color: #0059aa;
}
.header__dropdown-banner-icon {
  flex-shrink: 0;
  display: flex;
  color: #1daff7;
}
.header__dropdown-banner-text {
  flex: 1;
  min-width: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 1.4vh;
  font-weight: 500;
  line-height: 1.4;
  color: #363636;
}
.header__dropdown-banner-link {
  flex-shrink: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  color: #1daff7;
  white-space: nowrap;
  transition: color 0.2s;
}

@media (max-width: 1030px) {
  .header__nav-item--dropdown {
    border-bottom: 1px solid rgba(1, 14, 50, 0.06);
    position: relative;
  }
  .header__nav-link--dropdown {
    width: 100%;
    justify-content: space-between;
    padding: 14px 24px;
    text-align: left;
  }
  .header__nav-chevron-wrap {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    padding: 9px;
    border: 1px solid rgba(1, 14, 50, 0.1);
    border-radius: 50%;
    background: #ffffff;
  }
  .header__nav-item--dropdown.is-open .header__nav-chevron-wrap {
    transform: rotate(180deg);
  }
  .header__nav-item--dropdown.is-open .header__nav-link--dropdown {
    color: #1daff7;
  }
  .header__dropdown {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    z-index: auto;
    padding: 0 16px;
    border-radius: 0;
    box-shadow: none;
    transform: none !important;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }
  .header__dropdown::before {
    display: none;
  }
  .header__nav-item--dropdown.is-open .header__dropdown {
    max-height: 900px;
    padding: 0 16px 16px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none !important;
  }
  .header__dropdown-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .header__dropdown-card-head {
    padding: 10px 12px;
    font-size: 1.4vh;
  }
  .header__dropdown-card-media {
    height: 140px;
    min-height: 0;
    aspect-ratio: auto;
  }
  .header__dropdown-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    padding: 12px 14px;
  }
  .header__dropdown-banner-link {
    white-space: normal;
  }
}
@media (max-width: 760px) {
  .header__dropdown-cards {
    grid-template-columns: 1fr;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 1 0px 0px;
  min-height: 100vh;
}
.hero__inner {
  width: 100%;
}
.hero__card {
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 0 30px 30px 0;
  box-shadow: 0 2px 8px 0 rgba(16, 93, 226, 0.2745098039);
  padding: 40px 40px 40px 60px;
}
.hero__title {
  font-family: "Bounded", sans-serif;
  font-size: 5.5vh;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  color: #031b5e;
  margin-bottom: 24px;
}
.hero__title-accent {
  background: linear-gradient(90deg, #1daff7 0%, #0059aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero__text {
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  line-height: 1.6;
  color: #010e32;
  margin-bottom: 40px;
  width: 85%;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  margin-top: 10px;
}
.hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.about {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 80px 0px;
  background: #ffffff;
}
.about__left {
  flex: 1 1 48%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.about__inner {
  padding: 0 60px;
}
.about__title {
  font-family: "Bounded", sans-serif;
  font-size: 3.4vh;
  font-weight: 700;
  line-height: 37px;
  color: #031b5e;
  margin-bottom: 20px;
  width: 72%;
}
.about__title-accent {
  background: linear-gradient(90deg, #1daff7 0%, #0059aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.about__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.about__text p {
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  line-height: 1.6;
  color: #363636;
}
.about__text strong {
  font-weight: 700;
}
.about__partners {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 20px 60px;
  background: #ffffff;
  border-radius: 0 20px 20px 0;
  box-shadow: 0 2px 8px 0 rgba(16, 93, 226, 0.2745098039);
  width: 78%;
}
.about__partners-label {
  font-family: "Bounded", sans-serif;
  font-size: 2vh;
  font-weight: 400;
  color: #010e32;
  white-space: nowrap;
}
.about__partners-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}
.about__partner-logo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.about__partner-logo span {
  color: #999999;
}
.about__partner-logo svg,
.about__partner-logo img {
  display: block;
  height: 100%;
  width: auto;
}
.about__features {
  flex: 1 1 48%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__feature {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 20px 0 0 20px;
  box-shadow: 0 2px 8px 0 rgba(16, 93, 226, 0.2745098039);
}
.about__feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  border: 1.5px solid transparent;
  box-shadow: 0 2px 8px 0 rgba(16, 93, 226, 0.2745098039);
  background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(135deg, #1daff7 0%, #f5faff 48%, #0059aa 100%) border-box;
}
.about__feature-icon svg,
.about__feature-icon img {
  display: block;
  width: 36px;
  height: 36px;
}
.about__feature-title {
  font-family: "Bounded", sans-serif;
  font-size: 2vh;
  font-weight: 400;
  color: #010e32;
}

.projects {
  position: relative;
  padding: 100px 60px 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100px, #f6faff calc(100% - 100px), #ffffff 100%);
}
.projects__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.projects__title {
  flex: 1 1 50%;
  font-family: "Bounded", sans-serif;
  font-size: 3.4vh;
  font-weight: 700;
  line-height: 37px;
  color: #031b5e;
}
.projects__intro {
  flex: 1 1 40%;
  margin-left: auto;
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  line-height: 1.55;
  color: #010e32;
  text-align: left;
}
.projects__list {
  display: flex;
  gap: 28px;
  margin-bottom: 28px;
}
.projects__card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 2px 8px 0 rgba(16, 93, 226, 0.2745098039);
  overflow: hidden;
  width: 50%;
}
.projects__card-media {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 47vh;
}
.projects__card-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.projects__block {
  padding: 20px;
}
.projects__card-title {
  font-family: "Bounded", sans-serif;
  font-size: 2.4vh;
  font-weight: 700;
  line-height: 1.3;
  color: #010e32;
  margin-bottom: 10px;
}
.projects__card-text {
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  line-height: 1.55;
  color: #363636;
  margin-bottom: 24px;
  width: 80%;
}
.projects__card-footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(1, 14, 50, 0.08);
}
.projects__card-price {
  font-family: "Bounded", sans-serif;
  font-size: 2.2vh;
  font-weight: 400;
  color: #010e32;
}
.projects__card-meta {
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  color: rgba(1, 14, 50, 0.55);
}
.projects__note {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: #ffffff;
  border-radius: 15px;
  width: 56%;
}
.projects__note-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #1daff7;
}
.projects__note-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.projects__note-text {
  font-family: "DM Sans", sans-serif;
  font-size: 1.5vh;
  font-weight: 300;
  line-height: 1.45;
  color: rgba(1, 14, 50, 0.7);
}

.logo-stack {
  padding: 80px 0 100px;
  background: #ffffff;
  overflow: hidden;
}
.logo-stack__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 0 60px;
  margin-bottom: 56px;
}
.logo-stack__title {
  flex: 1 1 45%;
  font-family: "Bounded", sans-serif;
  font-size: 3.4vh;
  font-weight: 700;
  line-height: 1.2;
  color: #031b5e;
}
.logo-stack__intro {
  flex: 1 1 20%;
  margin-left: auto;
  font-family: "DM Sans", sans-serif;
  font-size: 1.8vh;
  font-weight: 500;
  line-height: 1.55;
  color: #363636;
  text-align: left;
}
.logo-stack__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.logo-stack__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  gap: 0;
  animation: logo-stack-marquee 40s linear infinite;
}
.logo-stack__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 72px;
  padding-right: 72px;
}
.logo-stack__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 48px;
}
.logo-stack__item img,
.logo-stack__item svg {
  display: block;
  height: 100%;
  width: auto;
  max-width: 180px;
  -o-object-fit: contain;
     object-fit: contain;
}

@keyframes logo-stack-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .logo-stack__track {
    animation: none;
  }
  .logo-stack__marquee {
    overflow-x: auto;
  }
}
.footer {
  position: relative;
  padding: 120px 0px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 90px, #f6faff 100%);
}
.footer__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.footer__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.footer__inner {
  position: relative;
  z-index: 1;
  padding: 50px 60px 20px;
  background: #ffffff;
  border-radius: 48px 48px 0 0;
  box-shadow: 0 2px 8px 0 rgba(16, 93, 226, 0.2745098039);
}
.footer__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: -100px;
}
.footer__logo svg {
  display: block;
  width: min(438px, 70%);
  height: auto;
}
.footer__grid {
  display: grid;
  grid-template-columns: 3.5fr 1.7fr;
  gap: 32px 40px;
  margin-bottom: 40px;
}
.footer__meta {
  display: grid;
  grid-template-columns: 0.8fr 0.9fr;
  gap: 32px 40px;
}
.footer #requisites {
  display: flex;
  flex-direction: column;
}
.footer__requisites-block {
  display: flex;
  gap: 50px;
}
.footer__requisites-left {
  width: 50%;
}
.footer__requisites-right {
  width: 50%;
}
.footer__heading {
  margin-bottom: 16px;
  font-family: "Bounded", sans-serif;
  font-size: 2.4vh;
  font-weight: 400;
  line-height: 1.3;
  color: #010e32;
}
.footer__text {
  font-family: "DM Sans", sans-serif;
  font-size: 1.5vh;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(1, 14, 50, 0.72);
}
.footer__text + .footer__text {
  margin-top: 12px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.footer__link, .footer__contact {
  font-family: "DM Sans", sans-serif;
  font-size: 1.5vh;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(1, 14, 50, 0.72);
  transition: color 0.2s;
}
.footer__link:hover, .footer__contact:hover {
  color: #1daff7;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(1, 14, 50, 0.08);
}
.footer__copy, .footer__company {
  font-family: "DM Sans", sans-serif;
  font-size: 1.4vh;
  font-weight: 500;
  line-height: 1.4;
  color: #9A9A9A;
}
.footer__company {
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.container {
  padding: 0 60px;
  max-width: 1440px;
  margin: 0 auto;
}

.page {
  min-height: 100vh;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  height: 100%;
}

.header__logo-text {
  font-family: "Bounded", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #010e32;
  letter-spacing: 0.02em;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }
  .hero__card {
    min-height: 480px;
    border-radius: 40px;
  }
  .hero__content {
    padding: 48px 40px;
  }
  .header__nav {
    gap: 24px;
  }
  .about {
    padding: 64px 40px;
    gap: 36px;
  }
  .projects {
    padding: 80px 40px 64px;
  }
  .logo-stack__head {
    padding: 0 40px;
    margin-bottom: 44px;
  }
  .footer__inner {
    padding: 40px 40px 24px;
    border-radius: 36px 36px 0 0;
  }
  .footer__grid {
    gap: 28px 24px;
  }
}
@media (max-width: 1030px) {
  .container {
    padding: 0 20px;
  }
  .hero {
    padding: 130px 0 48px;
    min-height: auto;
    align-items: flex-start;
  }
  .hero__card {
    flex-direction: column;
    min-height: 0;
    border-radius: 32px;
  }
  .hero__content {
    padding: 40px 32px 24px;
    width: 95%;
    border-radius: 30px;
  }
  .hero__text {
    max-width: 100%;
  }
  .hero__visual {
    width: 100%;
  }
  .about {
    flex-direction: column;
    padding: 56px 20px;
    gap: 32px;
  }
  .about__inner {
    padding: 0;
  }
  .about__left {
    align-items: center;
  }
  .about__partners {
    border-radius: 20px;
  }
  .about__features {
    width: 100%;
  }
  .about__feature {
    border-radius: 20px;
  }
  .projects {
    padding: 64px 20px 48px;
  }
  .projects__head {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }
  .projects__intro {
    margin-left: 0;
    max-width: none;
    text-align: left;
  }
  .projects__list {
    flex-direction: column;
    gap: 20px;
  }
  .projects__card {
    width: 100%;
  }
  .projects__note {
    width: 100%;
  }
  .logo-stack {
    padding: 64px 0 72px;
  }
  .logo-stack__head {
    flex-direction: column;
    gap: 16px;
    padding: 0 20px;
    margin-bottom: 36px;
  }
  .logo-stack__intro {
    margin-left: 0;
    max-width: none;
    text-align: left;
  }
  .logo-stack__group {
    gap: 48px;
    padding-right: 48px;
  }
  .logo-stack__item {
    height: 40px;
  }
  .footer {
    padding: 218px 16px 0;
  }
  .footer__inner {
    padding: 32px 20px 20px;
    border-radius: 28px 28px 0 0;
  }
  .footer__logo {
    margin-bottom: 32px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 28px;
  }
  .footer__meta {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer__company {
    text-align: left;
  }
  .header__container {
    position: relative;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px;
    margin: 0 20px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 2px 8px 0 rgba(16, 93, 226, 0.4);
    z-index: 2;
  }
  .header.is-menu-open {
    z-index: 200;
    padding-top: 0;
    background: #ffffff;
  }
  .header.is-menu-open .header__container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 210;
    margin: 0;
    padding: 20px 20px 14px;
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 1px 0 rgba(1, 14, 50, 0.06);
    max-width: 100%;
  }
  .header.is-menu-open .header__inner {
    background: #ffffff;
  }
  .header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .header__inner {
    width: 100%;
    justify-content: space-between;
    flex: 1;
    min-width: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    position: relative;
    z-index: 2;
  }
  .header__logo,
  .header__burger {
    position: relative;
    z-index: 3;
  }
  .header__burger {
    display: flex;
    background: transparent;
  }
  .header.is-menu-open .header__burger {
    background: transparent;
  }
  .header__menu {
    position: fixed;
    top: var(--header-offset, 72px);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100dvh - var(--header-offset, 72px));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 0;
    padding-bottom: 32px;
    background: #ffffff;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 200;
  }
  .header__menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .header__nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .header__nav-link {
    width: 100%;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(1, 14, 50, 0.06);
  }
  .header__nav-link--dropdown {
    border-bottom: none;
  }
  .header__actions--desktop {
    display: none;
  }
  .header__actions--menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 16px 24px 0;
    margin-top: auto;
  }
  .header__actions--menu .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 760px) {
  .container {
    padding: 0 16px;
  }
  .hero {
    padding: 90px 0 32px;
  }
  .hero__title {
    font-size: 3vh;
  }
  .hero__content {
    padding: 28px 20px 16px;
    width: 93%;
  }
  .hero__card {
    border-radius: 24px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    justify-content: center;
    width: 100%;
  }
  .about {
    padding: 48px 16px;
  }
  .about__title {
    font-size: 3vh;
    line-height: 27px;
    width: 100%;
  }
  .about__partners {
    width: 100%;
    flex-direction: column;
    padding: 16px 20px;
  }
  .about__feature {
    padding: 18px 20px;
    gap: 16px;
  }
  .about__feature-icon {
    width: 52px;
    height: 52px;
  }
  .projects {
    padding: 48px 16px 40px;
  }
  .projects__title {
    line-height: 27px;
  }
  .projects__card {
    border-radius: 22px;
  }
  .projects__card-media {
    height: 27vh;
  }
  .projects__note {
    padding: 14px 16px;
  }
  .header {
    padding-top: 12px;
  }
  .header__container {
    margin: 0 16px;
    padding: 12px 16px;
  }
  .footer {
    padding: 148px 0px 0;
  }
  .footer__inner {
    padding: 70px 20px 20px;
  }
  .footer__requisites-block {
    gap: 25px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}/*# sourceMappingURL=style.css.map */