@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  margin: 0;
  padding: 0;
}

b,
strong {
  font-weight: 700;
  color: inherit;
}

i,
em {
  font-style: italic;
  color: inherit;
}

u {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 3px;
}

mark {
  background: #fff3c4;
  color: inherit;
  padding: 0 2px;
}

sup,
sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.35em;
}

sub {
  bottom: -0.15em;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 80px;
}
@media (max-width: 1080px) {
  .header__inner {
    gap: 15px;
  }
}
.header__logo img {
  display: block;
  height: 60px;
  width: auto;
}
.header__burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #ededed;
  background: #ffffff;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #292d32;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.header__nav {
  flex: 1;
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}
@media (max-width: 1080px) {
  .header__menu {
    gap: 15px;
  }
}
.header__menu li {
  list-style: none;
}
.header__menu li.current-menu-item a {
  color: #0a78ee;
}
.header__menu a {
  color: #3b4353;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.2s ease;
}
@media (max-width: 1080px) {
  .header__menu a {
    font-size: 13px;
  }
}
.header__menu a:hover {
  color: #0a78ee;
}
.header__menu a:focus-visible {
  outline: 2px solid #2f6fb5;
  outline-offset: 4px;
  border-radius: 4px;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: auto;
}
@media (max-width: 1080px) {
  .header__actions {
    gap: 15px;
  }
}
@media (max-width: 900px) {
  .header__actions {
    display: none;
  }
}
.header__lang {
  position: relative;
}
.header__lang-current {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #f6f6f6;
  padding: 6px;
  font-size: 16px;
  color: #364153;
  cursor: pointer;
  text-transform: uppercase;
}
.header__lang-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  list-style: none;
  margin: 0;
  padding: 3px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  display: none;
  z-index: 30;
}
.header__lang-link {
  display: block;
  color: #333333;
  text-decoration: none;
  font-size: 16px;
  padding: 12px;
  text-align: center;
  text-transform: uppercase;
}
.header__lang-link:hover {
  background: #f6f6f6;
}
.header .js-lang-switcher.is-open .header__lang-list {
  display: block;
}
.header__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.header__login:focus-visible {
  outline: 2px solid #2f6fb5;
  outline-offset: 4px;
}
.header__login-icon {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
  object-fit: contain;
}
.header__mobile {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.header__mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.header__mobile-panel {
  position: absolute;
  inset: 0;
  background: #1e293b;
  color: #ffffff;
  padding: 22px 20px 32px;
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  display: grid;
  align-items: center;
  grid-template-rows: auto 1fr auto auto;
  gap: 18px;
}
.header__mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__mobile-top .wrap-switcher {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__mobile-top .wrap-switcher .header__lang-current {
  background: none;
  color: #fff;
  padding: 9px 7px;
  border: 1px solid rgba(237, 237, 237, 0.2);
}
.header__mobile-top
  .wrap-switcher
  .js-lang-switcher.is-open
  .header__lang-list {
  display: block;
}
.header__mobile-title {
  font-size: 24px;
  color: #d1d5dc;
}
.header__mobile-close {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(237, 237, 237, 0.2);
  background: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.header__mobile-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: #ffffff;
  transform-origin: center;
}
.header__mobile-close span:first-child {
  transform: rotate(45deg);
}
.header__mobile-close span:last-child {
  transform: rotate(-45deg);
}
.header__mobile-nav {
  padding: 10px 0;
  text-align: right;
}
.header__mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 30px;
}
.header__mobile-nav a {
  color: #d1d5dc;
  font-size: 24px;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.header__mobile-nav a:hover,
.header__mobile-nav a:focus-visible {
  color: #8bb6ff;
  outline: none;
}
.header__mobile-brand {
  display: flex;
  flex-flow: column;
  align-items: end;
  text-align: right;
  gap: 20px;
  color: #d1d5dc;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
}
.header__mobile-brand img {
  width: 185px;
  height: auto;
}
.header__mobile-copy {
  text-align: right;
  color: #99a1af;
  font-size: 14px;
  line-height: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}
.header__mobile.is-open {
  pointer-events: auto;
  opacity: 1;
}
.header__mobile.is-open .header__mobile-backdrop {
  opacity: 1;
}
.header__mobile.is-open .header__mobile-panel {
  opacity: 1;
  transform: translateY(0);
}
.header__burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 900px) {
  .header__nav {
    display: none;
  }
  .header__actions {
    gap: 12px;
  }
  .header__login {
    width: 40px;
    height: 40px;
  }
  .header__burger {
    display: inline-flex;
    margin-left: auto;
    flex-direction: column;
  }
}

body.is-locked {
  overflow: hidden;
}

.error-page {
  padding: 140px 0 160px;
  background: #f7f8fd;
  color: #0a0a0a;
}
.error-page__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 16px;
  align-items: center;
  justify-items: center;
}
.error-page__code {
  margin: 0;
  font-size: clamp(96px, 14vw, 160px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -2px;
}
.error-page__text {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  color: #4a5565;
}
@media (max-width: 768px) {
  .error-page {
    padding: 100px 0 120px;
  }
}

@keyframes bitbon-badge-float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(-7deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
.hero {
  position: relative;
  padding: 140px 0 120px;
  color: #ffffff;
  overflow: hidden;
  background-color: #081840;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1080px) {
  .hero {
    padding: 40px 0;
  }
}
.hero__content {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.hero__title {
  font-size: 60px;
  font-weight: 600;
  line-height: 60px;
  margin: 0 auto 24px;
  max-width: 840px;
}
@media (max-width: 1080px) {
  .hero__title {
    text-align: left;
    font-size: 40px;
    line-height: 50px;
  }
}
.hero__subtitle {
  font-size: 20px;
  line-height: 28px;
  color: #eff6ff;
  margin: 0 auto 60px;
  max-width: 840px;
}
@media (max-width: 1080px) {
  .hero__subtitle {
    text-align: left;
    margin: 0 auto 40px;
    font-weight: 300;
  }
}
.hero__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
@media (max-width: 1080px) {
  .hero__cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
.hero__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.08)
    ),
    rgba(18, 35, 72, 0.6);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
@media (max-width: 1080px) {
  .hero__card {
    padding: 15px;
  }
}
.hero__card-icon img {
  width: 84px;
  height: 75px;
  -o-object-fit: contain;
  object-fit: contain;
}
.hero__card-body {
  text-align: left;
}
.hero__card-title {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 6px;
  color: #fff;
}
.hero__card-link {
  font-size: 16px;
  color: #8bb9ff;
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.hero__card-link:hover {
  color: #b6d3ff;
}
.hero__card-link:focus-visible {
  outline: 2px solid #8bb6ff;
  outline-offset: 3px;
  border-radius: 4px;
}

.digital {
  padding: 100px 0;
  background-color: #ffffff;
  color: #1f2937;
}
.digital__wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}
.digital__content {
  flex: 1 1 50%;
}
.digital__title {
  font-size: 48px;
  font-weight: 500;
  line-height: 52px;
  margin-bottom: 28px;
}
@media (max-width: 1080px) {
  .digital__title {
    font-size: 36px;
    line-height: 40px;
  }
}
.digital__text {
  font-size: 18px;
  line-height: 28px;
  color: #4b5563;
  margin-bottom: 22px;
}
.digital__media {
  flex: 1 1 50%;
  position: relative;
  display: inline-block;
}
.digital__badge {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  background: #00abc2;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  z-index: 2;
  animation: digital-badge-float 3.8s ease-in-out infinite;
  will-change: transform;
}
.digital__badge img {
  width: 68px;
  height: 68px;
  -o-object-fit: contain;
  object-fit: contain;
}
.digital__image {
  display: block;
  width: 100%;
  max-width: 620px;
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #fff;
}
@media (max-width: 1080px) {
  .digital {
    padding: 40px 0;
  }
  .digital__wrap {
    flex-direction: column-reverse;
    gap: 36px;
  }
  .digital__media {
    width: 100%;
  }
  .digital__image {
    height: 300px;
    max-width: 100%;
  }
  .digital__badge {
    bottom: -12px;
    top: inherit;
    left: -12px;
    width: 82px;
    height: 82px;
  }
  .digital__badge img {
    width: 58px;
    height: 58px;
  }
}

.bitbon {
  padding: 100px 0;
}
.bitbon__wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.bitbon__media {
  position: relative;
  width: 100%;
  max-width: 620px;
  height: 480px;
  border-radius: 18px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #fff;
  background: #0a1626;
}
@media (max-width: 1080px) {
  .bitbon__media {
    height: 300px;
  }
}
.bitbon__lottie {
  width: 100%;
  height: 100%;
  margin-top: -45px;
}
@media (max-width: 1080px) {
  .bitbon__lottie {
    height: 300px;
    margin-top: -25px;
  }
}
.bitbon__badge {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  background: #2f7cff;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  z-index: 2;
  animation: bitbon-badge-float 3.8s ease-in-out infinite;
  will-change: transform;
}
.bitbon__badge img {
  width: 40px;
  height: 30px;
  -o-object-fit: contain;
  object-fit: contain;
}
.bitbon__content {
  display: flex;
  flex-direction: column;
}
.bitbon__title {
  font-size: 48px;
  font-weight: 500;
  line-height: 52px;
  color: #0a0a0a;
  margin: 0 0 25px;
}
@media (max-width: 1080px) {
  .bitbon__title {
    font-size: 36px;
    line-height: 40px;
  }
}
.bitbon__text {
  font-size: 18px;
  line-height: 28px;
  color: #364153;
  margin: 0 0 15px;
}
.bitbon .btn {
  margin-top: 15px;
}
@media (max-width: 1279px) {
  .bitbon {
    padding: 90px 0;
  }
  .bitbon__wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .bitbon__media {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .bitbon {
    padding: 40px 0;
  }
  .bitbon__badge {
    width: 72px;
    height: 72px;
    top: inherit;
    bottom: -14px;
    left: -14px;
  }
  .bitbon__badge img {
    width: 38px;
    height: 38px;
  }
  .bitbon__text {
    font-size: 16px;
  }
}

.space {
  padding: 100px 0;
  background: radial-gradient(
      circle at 8% 5%,
      rgba(103, 150, 255, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 10%,
      rgba(255, 117, 194, 0.12),
      transparent 32%
    ),
    #f7f8fd;
}
.space__wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.space__card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 40px 60px;
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.space__icon {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 16px;
}
.space__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: #0a0a0a;
}
.space__text {
  font-size: 18px;
  line-height: 28px;
  color: #4a5565;
  margin-bottom: 4px;
}
@media (max-width: 1024px) {
  .space {
    padding: 90px 0;
  }
  .space__wrap {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .space {
    padding: 70px 0;
  }
  .space__card {
    padding: 22px 22px;
  }
}

.partners {
  padding: 100px 0 100px;
  text-align: center;
}
.partners__title {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
  color: #0a0a0a;
  margin-bottom: 40px;
}
.partners__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  justify-items: center;
}
.partners__card {
  width: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eff6ff, #faf5ff 50%, #eff6ff);
  border-radius: 18px;
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.2);
  border: 1px solid #f3f4f6;
}
.partners__card img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 1080px) {
  .partners {
    padding: 40px 0;
  }
  .partners__list {
    gap: 20px;
  }
}

@keyframes digital-badge-float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(-7deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}
.ecosystem {
  padding: 100px 0;
  background: radial-gradient(
      circle at 10% 10%,
      rgba(103, 150, 255, 0.12),
      transparent 32%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(255, 117, 194, 0.12),
      transparent 35%
    ),
    #f7f8fd;
}
@media (max-width: 1080px) {
  .ecosystem {
    padding: 40px 0;
  }
}
.ecosystem__head {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 20px;
}
@media (max-width: 1080px) {
  .ecosystem__head {
    text-align: left;
  }
}
.ecosystem__title {
  font-size: 48px;
  font-weight: 500;
  line-height: 52px;
  margin-bottom: 18px;
  color: #0a0a0a;
}
@media (max-width: 1080px) {
  .ecosystem__title {
    font-size: 36px;
    line-height: 40px;
  }
}
.ecosystem__subtitle {
  font-size: 18px;
  line-height: 28px;
  color: #4a5565;
  margin: 0 auto;
}
.ecosystem__slider {
  padding-bottom: 12px;
}
.ecosystem__slider .owl-stage {
  display: flex;
}
.ecosystem__slider .owl-item {
  padding: 12px;
}
.ecosystem__slider .owl-dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.ecosystem__slider .owl-dot span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d3d4d6;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.ecosystem__slider .owl-dot.active span {
  display: block;
  background: linear-gradient(135deg, #6aa5ff, #3c64ff);
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(60, 100, 255, 0.25);
}
.ecosystem__card {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(15, 23, 42, 0.04);
}
.ecosystem__icon {
  width: 80px !important;
  height: 80px !important;
  -o-object-fit: contain;
  object-fit: contain;
}
.ecosystem__card-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: #101828;
}
.ecosystem__card-text {
  font-size: 14px;
  line-height: 20px;
  color: #101828;
}
.ecosystem__cards {
  display: none;
  gap: 30px;
  flex-direction: column;
}
.ecosystem__slide {
  display: grid;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 20px 0;
}
@media (max-width: 1279px) {
  .ecosystem__slide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .ecosystem__slider {
    display: none !important;
  }
  .ecosystem__cards {
    display: flex;
    gap: 20px;
  }
}

.solution {
  padding: 80px 0 120px;
  background: #f8fbff;
  color: #0f172a;
}
.solution__head {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 40px;
  display: grid;
  gap: 12px;
}
.solution__title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  color: #0a0a0a;
}
.solution__subtitle {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 20px;
  color: #0a0a0a;
}
.solution__note {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #4a5565;
}
.solution__table {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.solution__notice {
  padding: 35px 140px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: grid;
  gap: 20px;
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  color: #4a5565;
}
.solution__notice-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
}
.solution__row {
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  align-items: stretch;
  border-bottom: 1px solid #fff;
  background: #f1f6ff;
  align-items: center;
}
.solution__row:nth-child(odd):not(.solution__row--head) {
  background: #dceaff;
}
.solution__row--head {
  background: #c5dafb;
  color: #282e36;
  font-weight: 700;
  font-size: 14px;
}
.solution__cell {
  padding: 16px 18px;
  font-size: 15px;
  line-height: 1.6;
  border-left: 1px solid #fff;
}
.solution__cell:first-child {
  font-weight: 600;
  text-align: center;
  border-left: none;
}
.solution__cell a.solution__link {
  display: inline-block;
  margin-top: 6px;
  color: #155dfc;
  text-decoration: none;
}
.solution__cell a.solution__link:hover {
  text-decoration: underline;
}
.solution__cell .qr-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.solution__qr {
  width: 98px;
  height: 98px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-top: 8px;
}
.solution__footnote {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #4a5565;
}
@media (max-width: 1024px) {
  .solution {
    padding: 60px 0 100px;
  }
  .solution__notice {
    padding: 28px 24px;
  }
  .solution__row {
    grid-template-columns: 70px 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .solution {
    padding: 40px 0;
  }
  .solution__title {
    text-align: left;
    font-size: 40px;
    line-height: 48px;
  }
  .solution__subtitle {
    font-size: 18px;
    text-align: left;
  }
  .solution__note {
    text-align: left;
  }
  .solution__row {
    grid-template-columns: 1fr;
    border-bottom: 8px solid #e5e7eb;
  }
  .solution__row:nth-child(odd):not(.solution__row--head) {
    background: #ffffff;
  }
  .solution__cell {
    padding: 12px 14px;
    border-left: none;
  }
  .solution__cell:first-child {
    text-align: left;
  }
  .solution__row--head {
    display: none;
  }
  .solution__notice {
    padding: 22px 20px;
    gap: 12px;
  }
  .solution__notice-text {
    font-size: 16px;
    line-height: 24px;
  }
}

.buy-hero {
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}
@media (max-width: 1080px) {
  .buy-hero {
    height: 190px;
  }
}

.buy {
  padding: 100px 0;
}
@media (max-width: 1080px) {
  .buy {
    padding: 40px 0;
  }
}
.buy__wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 1080px) {
  .buy__wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
.buy__text {
  display: grid;
  font-size: 18px;
  line-height: 28px;
  color: #364153;
  padding-top: 20px;
}
@media (max-width: 1080px) {
  .buy__text {
    padding-top: 0;
  }
}
.buy__text p {
  margin: 0 0 15px;
}
.buy__text p strong {
  font-weight: 700;
}
.buy__title {
  font-size: 48px;
  font-weight: 500;
  line-height: 52px;
  margin: 0 0 25px;
  color: #0a0a0a;
}
@media (max-width: 1080px) {
  .buy__title {
    font-size: 38px;
    line-height: 40px;
  }
}
.buy__link {
  color: #2b7fff;
  text-decoration: none;
}
.buy__link:hover {
  text-decoration: underline;
}
.buy__form-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.2);
  border: 1px solid #edf2f7;
  padding: 35px;
  display: grid;
}
@media (max-width: 1080px) {
  .buy__form-card {
    width: 100%;
    padding: 35px 20px;
  }
}
.buy__form-title {
  margin: 0 0 30px;
  font-size: 24px;
  line-height: 30px;
  color: #0a0a0a;
}
@media (max-width: 1080px) {
  .buy__form-title {
    text-align: center;
    font-size: 20px;
  }
}

.buy-form {
  display: grid;
}
.buy-form__agree {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #4a5568;
}
.buy-form__agree a {
  color: #2b7fff;
  text-decoration: none;
}
.buy-form__agree a:hover {
  text-decoration: underline;
}

.dev {
  padding: 50px 0 100px;
}
@media (max-width: 1080px) {
  .dev {
    padding: 50px 0;
  }
}
.dev__wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 75px;
  align-items: center;
}
@media (max-width: 1080px) {
  .dev__wrap {
    display: flex;
    flex-direction: column;
  }
}
.dev__media {
  position: relative;
  max-width: 620px;
  height: 480px;
  border-radius: 20px;
  background: url("../images/img-10.jpg") center/cover no-repeat;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border: 1px solid #fff;
}
@media (max-width: 1080px) {
  .dev__media {
    width: 100%;
    height: 300px;
  }
}
.dev__logo {
  width: 370px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 1080px) {
  .dev__logo {
    width: 265px;
  }
}
.dev__badge {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #6887bd, #39517b);
  border-radius: 18px;
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
  animation: bitbon-badge-float 3.8s ease-in-out infinite;
  will-change: transform;
}
@media (max-width: 1080px) {
  .dev__badge {
    bottom: -10px;
    left: -10px;
    top: inherit;
    right: inherit;
    width: 70px;
    height: 70px;
  }
}
.dev__badge img {
  width: 38px;
  height: 38px;
  -o-object-fit: contain;
  object-fit: contain;
}
.dev__content {
  display: grid;
  color: #0a0a0a;
}
.dev__title {
  font-size: 48px;
  line-height: 52px;
  font-weight: 500;
  margin: 0 0 30px;
}
@media (max-width: 1080px) {
  .dev__title {
    font-size: 36px;
    line-height: 40px;
  }
}
.dev__text {
  font-size: 18px;
  line-height: 28px;
  margin: 0 0 20px;
  color: #364153;
}
.dev__text strong,
.dev__text b {
  font-weight: 700;
}
.dev__link {
  color: #155dfc;
  text-decoration: none;
}
.dev__link:hover {
  text-decoration: underline;
}
.dev__spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #e6e9f1;
  border-radius: 16px;
  text-decoration: none;
  color: #155dfc;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.5s;
  margin-top: 20px;
}
.dev__spec:hover {
  background: #f9f9f9;
}
.dev__spec:focus-visible {
  outline: 2px solid #2b7fff;
  outline-offset: 3px;
}
.dev__spec-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 1;
  min-width: 0;
}
.dev__spec-icon img {
  width: 44px;
  height: 44px;
  -o-object-fit: contain;
  object-fit: contain;
}
.dev__spec-text {
  white-space: normal;
  line-height: 1.5;
}
.dev__spec-arrow img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 720px) {
  .dev__spec {
    align-items: flex-start;
  }
}

.legal {
  padding: 100px 0 100px;
  color: #0a0a0a;
}
@media (max-width: 1024px) {
  .legal {
    padding: 40px 0;
  }
}
.legal__title {
  font-size: 60px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 50px;
}
@media (max-width: 1024px) {
  .legal__title {
    font-size: 40px;
    line-height: 52px;
    text-align: left;
    margin: 0 0 25px;
  }
}
.legal__subtitle {
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  margin: 0 0 30px;
  color: #0a0a0a;
}
.legal__meta {
  margin: 0 0 25px;
  color: #4b5563;
  font-size: 16px;
  line-height: 24px;
}
.legal__description {
  color: #4a5565;
  line-height: 1.6;
  margin-bottom: 50px;
  font-size: 16px;
}
.legal__docs-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 18px;
  color: #0a0a0a;
}
.legal__docs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.legal__doc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #e6e9f1;
  border-radius: 16px;
  text-decoration: none;
  color: #155dfc;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  transition: all 0.5s;
}
@media (max-width: 1024px) {
  .legal__doc {
    font-size: 14px;
    line-height: 18px;
  }
}
.legal__doc:hover {
  background: #f9f9f9;
}
.legal__doc:focus-visible {
  outline: 2px solid #2b7fff;
  outline-offset: 3px;
}
.legal__doc-icon img {
  width: 44px;
  height: 44px;
  -o-object-fit: contain;
  object-fit: contain;
}
.legal__doc-text {
  flex: 1;
}
.legal__doc-arrow img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}

.news {
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .news {
    padding: 40px 0;
  }
}
.news__title {
  text-align: center;
  font-size: 60px;
  font-weight: 500;
  margin: 0 0 70px;
  color: #0a0a0a;
}
@media (max-width: 1024px) {
  .news__title {
    font-size: 40px;
    line-height: 52px;
    text-align: left;
    margin: 0 0 30px;
  }
}
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}
@media (max-width: 1024px) {
  .news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .news__grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: inherit;
  text-decoration: none;
}
.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}
.news-card__image {
  width: 100%;
  height: 215px;
  -o-object-fit: cover;
  object-fit: cover;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.news-card__body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
@media (max-width: 1024px) {
  .news-card__body {
    gap: 15px;
    height: auto;
  }
}
.news-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: #0a0a0a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-card__date {
  margin: auto 0 0;
  font-size: 14px;
  color: #666;
}

.news-single {
  padding: 60px 0 80px;
  color: #111827;
}
.news-single__top {
  max-width: 900px;
  margin: 0 auto 30px;
}
.news-single__image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}
.news-single__meta {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  color: #4a5565;
  font-size: 14px;
  max-width: 900px;
  margin: 0 auto 24px;
}
.news-single__meta--bottom {
  margin-top: 24px;
}
.news-single__datawrap {
  display: flex;
  gap: 20px;
  color: #666;
}
.news-single__share img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}
.news-single__share-wrap {
  position: relative;
}
.news-single__share {
  position: relative;
  border: none;
  background: transparent;
  padding: 8px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.news-single__share:hover {
  background: rgba(21, 93, 252, 0.08);
}
.news-single__share:focus-visible {
  outline: 2px solid #155dfc;
  outline-offset: 4px;
}
.news-single__share-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 280px;
  background: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  padding: 10px 0;
  display: none;
  z-index: 5;
}
.news-single__share.is-open + .news-single__share-menu,
.news-single__share.is-open ~ .news-single__share-menu {
  display: block;
}
.news-single__share-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}
.news-single__share-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
  color: #1f2937;
  text-decoration: none;
  border: none;
  background: #fff;
}
.news-single__share-item:hover {
  background: #f6f8fb;
}
.news-single__share-icon {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}
.news-single__share-label {
  font-size: 16px;
  line-height: 1.4;
}
.news-single__title {
  max-width: 900px;
  margin: 0 auto 35px;
  font-size: 36px;
  line-height: 42px;
  font-weight: 500;
  color: #0a0a0a;
}
@media (max-width: 1024px) {
  .news-single__title {
    font-size: 24px;
    line-height: 32px;
    margin: 0 auto 25px;
  }
}
.news-single__body {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  font-size: 18px;
  line-height: 32px;
  color: #333333;
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 30px;
}
@media (max-width: 1024px) {
  .news-single__body {
    font-size: 16px;
    line-height: 28px;
  }
}
.news-single__body p {
  margin: 0 0 25px;
}
.news-single__body ul,
.news-single__body ol {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 25px;
  display: grid;
  gap: 8px;
}
.news-single__body a {
  color: #155dfc;
  text-decoration: none;
}
.news-single__body a:hover {
  text-decoration: underline;
}
.news-single__body strong {
  font-weight: 700;
}
.news-single__body em {
  font-style: italic;
}

.news-single-related {
  padding: 40px 0 80px;
}
.news-single-related__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.news-single-related__title {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  color: #0a0a0a;
}
@media (max-width: 1024px) {
  .news-single-related__title {
    font-size: 22px;
  }
}
.news-single-related__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #155dfc;
  text-decoration: none;
  font-weight: 600;
}
.news-single-related__more:hover {
  text-decoration: underline;
}

@media (max-width: 1080px) {
  .news-single {
    padding: 40px 0;
  }
}
.contacts {
  padding: 100px 0 100px;
  background: radial-gradient(
      circle at 10% 10%,
      rgba(103, 150, 255, 0.12),
      transparent 32%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(255, 117, 194, 0.12),
      transparent 35%
    ),
    #f7f8fd;
}
@media (max-width: 1024px) {
  .contacts {
    padding: 40px 0;
  }
}
.contacts__title {
  text-align: center;
  font-size: 60px;
  font-weight: 500;
  margin: 0 0 50px;
  color: #0a0a0a;
}
@media (max-width: 1024px) {
  .contacts__title {
    font-size: 40px;
    margin: 0 0 30px;
  }
}
.contacts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}
@media (max-width: 1024px) {
  .contacts__grid {
    display: flex;
    flex-direction: column;
  }
}
.contacts__card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #edf2f7;
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.2);
  padding: 40px;
}
@media (max-width: 1024px) {
  .contacts__card {
    padding: 30px 20px;
  }
}
.contacts__card .form-textarea {
  min-height: 80px;
}
.contacts__card-title {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 500;
  color: #0a0a0a;
}
@media (max-width: 1024px) {
  .contacts__card-title {
    font-size: 18px;
    line-height: 32px;
    text-align: center;
  }
}
.contacts__subtitle {
  margin: 0 0 35px;
  font-size: 16px;
  color: #333333;
}
@media (max-width: 1024px) {
  .contacts__subtitle {
    font-size: 14px;
    line-height: 18px;
    text-align: center;
  }
}
.contacts__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 50px;
}
@media (max-width: 1024px) {
  .contacts__list {
    gap: 35px;
  }
}
.contacts__list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: center;
}
.contacts__list li:first-child .contacts__text {
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  max-width: 370px;
}
.contacts__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #155dfc;
  border-radius: 16px;
}
.contacts__icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}
.contacts__info {
  display: grid;
  gap: 4px;
}
.contacts__label {
  margin: 0 0 5px;
  font-size: 14px;
  color: #6a7282;
}
.contacts__text {
  margin: 0;
  font-size: 20px;
  color: #101828;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .contacts__text {
    font-size: 17px;
  }
}
.contacts__link {
  color: #2b7fff;
  text-decoration: none;
}
.contacts__link:hover {
  text-decoration: underline;
}

.cooperation-hero {
  height: 400px;
  background: #082059;
  background-image: var(--coop-hero-bg, url("../images/img-08.jpg"));
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 400px;
}
@media (max-width: 1300px) {
  .cooperation-hero {
    background-image: var(--coop-hero-bg-mobile, var(--coop-hero-bg, url("../images/img-08-mob.png")));
    background-position: 50% 50%;
  }
}
@media (max-width: 1024px) {
  .cooperation-hero {
    background-size: auto 200px;
    height: 200px;
  }
}
.cooperation-hero__content {
  position: relative;
}
.cooperation-hero__content .gif-wrap {
  position: absolute;
  right: 267px;
  top: 10px;
  width: 180px;
}
@media (max-width: 1300px) {
  .cooperation-hero__content .gif-wrap {
    display: none;
  }
}
.cooperation-hero__content .gif-wrap img {
  width: 100%;
}

.coop-intro {
  padding: 100px 0;
  background: radial-gradient(
      circle at 10% 10%,
      rgba(103, 150, 255, 0.1),
      transparent 32%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(255, 117, 194, 0.1),
      transparent 35%
    ),
    #f7f8fd;
  text-align: center;
  display: grid;
  gap: 14px;
}
@media (max-width: 1024px) {
  .coop-intro {
    padding: 40px 0;
  }
}
.coop-intro__title {
  font-size: 60px;
  font-weight: 500;
  margin: 0 0 20px;
  color: #0a0a0a;
}
@media (max-width: 1024px) {
  .coop-intro__title {
    text-align: left;
    font-size: 36px;
    line-height: 40px;
    margin: 0 0 15px;
  }
}
.coop-intro__subtitle {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 35px;
  color: #0a0a0a;
}
@media (max-width: 1024px) {
  .coop-intro__subtitle {
    text-align: left;
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 20px;
  }
}
.coop-intro__text {
  max-width: 950px;
  margin: 0 auto 35px;
  font-size: 18px;
  line-height: 28px;
  color: #364153;
}
@media (max-width: 1024px) {
  .coop-intro__text {
    text-align: left;
    margin: 0 auto 25px;
  }
}
.coop-intro__text:last-child {
  margin: 0 auto 0;
}

.coop-cases {
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .coop-cases {
    padding: 40px 0;
  }
}
.coop-cases__item {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 100px;
}
.coop-cases__item:first-child {
  margin-top: 0;
}
@media (max-width: 1024px) {
  .coop-cases__item {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    margin-top: 80px;
  }
}
.coop-cases__item--reverse {
  grid-template-columns: 1fr 1.05fr;
}
@media (max-width: 1024px) {
  .coop-cases__item--reverse {
    flex-direction: column;
  }
}
.coop-cases__item--reverse .coop-cases__text {
  order: 2;
}
.coop-cases__item--reverse .coop-cases__image {
  order: 1;
}
.coop-cases__text {
  display: grid;
}
.coop-cases__title {
  margin: 0 0 30px;
  font-size: 48px;
  line-height: 52px;
  font-weight: 500;
  color: #0a0a0a;
}
@media (max-width: 1024px) {
  .coop-cases__title {
    font-size: 36px;
    line-height: 40px;
    margin: 0 0 25px;
  }
}
.coop-cases__desc {
  margin: 0 0 15px;
  font-size: 18px;
  line-height: 28px;
  color: #364153;
}
.coop-cases .btn {
  margin-top: 20px;
}
@media (max-width: 480px) {
  .coop-cases .btn {
    width: 100%;
  }
}
.coop-cases__image {
  width: 100%;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #fff;
}
.coop-cases__image.gif-image {
  position: relative;
  width: 580px;
  height: 473px;
}
@media (max-width: 620px) {
  .coop-cases__image.gif-image {
    width: 400px;
    height: 325px;
  }
}
.coop-cases__image.gif-image .gif-wrap {
  width: 315px;
  position: absolute;
  top: 24px;
  right: 140px;
}
@media (max-width: 620px) {
  .coop-cases__image.gif-image .gif-wrap {
    width: 230px;
    top: 4px;
    right: 86px;
  }
}
.coop-cases__image.gif-image .gif-wrap img {
  width: 100%;
}
.coop-cases__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.coop-cases__item--reverse .coop-cases__image {
  position: relative;
  width: 580px;
  height: 470px;
  background: #0a1626;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1080px) {
  .coop-cases__item--reverse .coop-cases__image {
    width: 100%;
  }
}
@media (max-width: 420px) {
  .coop-cases__item--reverse .coop-cases__image {
    height: 350px;
  }
}
.coop-cases__item--reverse .coop-cases__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.coop-cases__item--reverse .coop-cases__image .coop-cases__lottie {
  width: 100%;
  height: 100%;
  margin-top: -70px;
}
@media (max-width: 1080px) {
  .coop-cases__item--reverse .coop-cases__image .coop-cases__lottie {
    height: 300px;
    margin-top: -25px;
  }
}

.coop-form {
  padding: 100px 0;
  background: radial-gradient(
      circle at 10% 10%,
      rgba(103, 150, 255, 0.1),
      transparent 32%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(255, 117, 194, 0.1),
      transparent 35%
    ),
    #f7f8fd;
}
@media (max-width: 1024px) {
  .coop-form {
    padding: 40px 0;
  }
}
.coop-form__card {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.2);
  border: 1px solid #f3f4f6;
  padding: 40px;
  display: grid;
}
@media (max-width: 1024px) {
  .coop-form__card {
    padding: 30px 15px;
  }
}
.coop-form__title {
  margin: 0 0 15px;
  font-size: 36px;
  font-weight: 500;
  color: #0a0a0a;
  text-align: center;
}
@media (max-width: 1024px) {
  .coop-form__title {
    font-size: 24px;
    line-height: 28px;
  }
}
.coop-form__subtitle {
  margin: 0 0 25px;
  font-size: 16px;
  color: #333333;
  text-align: center;
}
.coop-form__link {
  color: #2b7fff;
  text-decoration: none;
}
.coop-form__link:hover {
  text-decoration: underline;
}
.coop-form .buy-form {
  gap: 0;
}
.coop-form .buy-form .form-select {
  margin-bottom: 25px;
}
.coop-form .buy-form .form-input {
  margin-bottom: 25px;
}
.coop-form .buy-form .form-textarea {
  margin-bottom: 25px;
}
.coop-form .buy-form .buy-form__agree {
  margin-top: 25px;
  text-align: center;
}

.footer {
  background: #1e293b;
  color: #d1d5dc;
  padding: 100px 0;
  font-size: 16px;
  line-height: 1.6;
}
.footer a {
  color: #d1d5dc;
  text-decoration: none;
}
.footer a:hover {
  color: #ffffff;
}
.footer a:focus-visible {
  outline: 2px solid #4fa2ff;
  outline-offset: 3px;
  border-radius: 4px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 80px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__logo {
  width: 180px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer__legal {
  margin: 0;
  color: #e2e8f0;
  max-width: 300px;
}
.footer__title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 14px;
  color: #f8fafc;
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer__contacts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.footer__contacts-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: center;
}
.footer__icon img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer__text {
  margin: 0;
  color: #e2e8f0;
}
.footer__contact-link {
  color: #e2e8f0;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #99a1af;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}
.footer__copy {
  margin: 0 5px 0 0;
}
.footer__privacy {
  color: #94a3b8;
}
.footer__privacy:hover {
  color: #ffffff;
}
@media (max-width: 960px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .footer {
    padding: 45px 0 35px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
    gap: 45px;
    grid-template-areas: "nav" "contacts" "brand";
  }
  .footer__brand {
    grid-area: brand;
  }
  .footer__nav {
    grid-area: nav;
  }
  .footer__contacts {
    grid-area: contacts;
  }
  .footer__logo {
    margin-bottom: 20px;
  }
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.btn {
  display: flex;
  align-items: center;
  padding: 20px 30px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  width: 250px;
  transition: background 0.5s ease, box-shadow 0.5s ease;
  text-align: center;
  justify-content: center;
}
.btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #2b7fff, #155dfc);
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #165dfb, #1448e7);
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.btn--primary:active {
  background: linear-gradient(135deg, #266ce6, #1148c7);
}
.btn--primary:focus-visible {
  outline: 2px solid #4fa2ff;
  outline-offset: 3px;
}
.btn--icon::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  background: url("../images/icon-13.svg") center/contain no-repeat;
}
.btn--no-icon {
  padding: 15px 30px;
  width: 100%;
}
.btn--no-icon::after {
  display: none;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #2b7fff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.link-arrow::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../images/icon-22.svg") center/contain no-repeat;
  transition: transform 0.2s ease;
}
.link-arrow:hover {
  color: #155dfc;
}
.link-arrow:hover::after {
  transform: translateX(2px);
}
.link-arrow:focus-visible {
  outline: 2px solid #2b7fff;
  outline-offset: 3px;
}

.form-label {
  font-size: 14px;
  color: #364153;
  margin-bottom: 10px;
  display: inline-block;
}

.wpcf7-form-control-wrap {
  display: block;
}

.form-input,
.form-textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #f3f3f5;
  font-size: 15px;
  color: #0f172a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}
.form-input::-moz-placeholder,
.form-textarea::-moz-placeholder {
  color: #a0aec0;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #a0aec0;
}
.form-input:focus,
.form-textarea:focus {
  border-color: #2b7fff;
  box-shadow: 0 0 0 3px rgba(43, 127, 255, 0.15);
  outline: none;
  background: #ffffff;
}
.form-input.wpcf7-not-valid,
.form-textarea.wpcf7-not-valid {
  border: 1px solid #dc3232;
}

.form-textarea {
  min-height: 80px;
  height: 80px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}
@media (max-width: 1080px) {
  .form-row {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}

.form-field {
  display: grid;
  gap: 6px;
  margin-bottom: 25px;
}

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

.form-select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #f3f3f5;
  font-size: 15px;
  color: #0f172a;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../images/icon-28.svg");
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: right 12px center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-select:focus {
  border-color: #2b7fff;
  box-shadow: 0 0 0 3px rgba(43, 127, 255, 0.15);
  outline: none;
  background-color: #ffffff;
}

.wpcf7-not-valid-tip {
  font-size: 13px;
  margin-top: 5px;
}

.wpcf7-response-output {
  text-align: center;
  padding: 15px;
  font-size: 12px;
  line-height: 20px;
  margin: 0 0 15px !important;
  border: none !important;
  color: #dc3232 !important;
}

.wpcf7-form {
  position: relative;
}

.wpcf7-form.submitting {
  pointer-events: none;
}
.wpcf7-form.submitting::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  border-radius: inherit;
  z-index: 2;
}
.wpcf7-form.submitting::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-top-color: #2b7fff;
  animation: form-spinner 0.8s linear infinite;
  z-index: 3;
}

@keyframes form-spinner {
  to {
    transform: rotate(360deg);
  }
}
.acceptanceWrap label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.acceptanceWrap label input {
  width: 20px;
  height: 20px;
}
