.flex-center {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  display: flex;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.img-fit {
  position: absolute;
  width: 100%;
  -o-object-position: center center;
  object-position: center center;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  left: 0;
  top: 0;
  height: 100%;
}

:root {
  font-size: 16px;
  scroll-behavior: smooth;
  --fontBody: "manrope";
  --colorBlack: #141414;
  --colorDarkGrey: #383838;
  --colorBlue: #00AAFF;
  --colorTextLink: #0099F7;
  --colorLightLine: #E5E5EB;
  --colorLightText: #727276;
  --colorGreen: #05C155;
  --colorRed: #FF6163;
}

body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100vh;
  color: var(--colorBlack);
  background: #fff;
  font: 1rem/1.5 var(--fontBody);
}

a {
  text-decoration-color: transparent;
  color: currentColor;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
  transition-duration: 0.3s;
}

a img,
a svg {
  display: block;
}

path {
  transition: stroke 0.3s;
}

label {
  display: block;
  cursor: pointer;
}

input {
  background: transparent;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
}

input:focus {
  outline: none;
}

textarea {
  outline: none !important;
  font-family: inherit;
  font-size: inherit;
}

[type=submit],
button {
  background: transparent;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

button {
  padding: 0;
  font-family: inherit;
  border: none;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

button img,
button svg {
  display: block;
}

::-moz-placeholder {
  opacity: 1;
  color: #6C6C6C;
}

::placeholder {
  opacity: 1;
  color: #6C6C6C;
}

mark {
  background: transparent;
  color: inherit;
  font-size: inherit;
}

small,
time {
  font-size: 0.875rem;
  display: block;
  color: var(--colorLightText);
}

h1 {
  font: 800 1.625rem/1.35 var(--fontBody);
}

h2 {
  font: 700 1.375rem/1.35 var(--fontBody);
  margin-bottom: 0.64em;
}

* + h2 {
  margin-top: 0.91em;
}

h3 {
  font: 700 1.125rem/1.35 var(--fontBody);
  margin-bottom: 0.67em;
}

* + h3 {
  margin-top: 0.89em;
}

h4 {
  font: 700 1rem/1.5 var(--fontBody);
  margin-bottom: 0.75em;
}

* + h4 {
  margin-top: 1em;
}

.btn-white,
.btn-blue,
.btn-bordered {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  display: flex;
  cursor: pointer;
  padding: 0 5px;
  border-radius: 6px;
  gap: 10px;
}

.btn-bordered {
  border: 1px solid var(--colorBlue);
  color: var(--colorTextLink);
  font-weight: 500;
}

.btn-bordered:hover {
  color: #fff;
  background: var(--colorTextLink);
  border-color: var(--colorTextLink);
}

.btn-blue {
  color: #fff;
  background: var(--colorBlue);
  font-weight: 600;
}

.btn-blue:hover {
  background: var(--colorTextLink);
}

.btn-white {
  color: var(--colorTextLink);
  background: #fff;
  font-weight: 600;
}

.btn-white:hover {
  background: var(--colorRed);
  color: #fff;
}

@font-face {
  font-family: "manrope";
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Manrope-VariableFont_wght.woff2") format("woff2");
}

.container {
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.margin-top {
  margin-top: 32px;
}

.bottom-grey {
  background: #F5F5F7;
  padding-top: 32px;
  padding-bottom: 32px;
}

.collapse__btn {
  cursor: pointer;
  transition-duration: 0.3s;
}

.collapse__caret {
  transition-duration: 0.3s;
  flex-shrink: 0;
}

.open > .collapse__btn > .collapse__caret {
  transform: rotate(180deg);
}

.collapse__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s;
}

[data-tooltip] {
  cursor: pointer;
  transition: 0.3s;
}

.ico-question {
  color: #C8C8C8;
}

.ico-question:hover {
  color: var(--colorBlack);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--colorLightText);
}

.breadcrumbs li + li::before {
  content: "/";
  margin-left: 0.25em;
}

.main-aside {
  display: grid;
  gap: 24px;
}

.sots {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sots small {
  width: 100%;
}

.swiper-nav-wrapper {
  margin-right: -16px;
  position: relative;
}

.link-light a,
a.link-light {
  color: var(--colorLightText);
}

.link-light a:hover,
a.link-light:hover {
  color: var(--colorTextLink);
}

.link-blue a,
a.link-blue {
  color: var(--colorTextLink);
}

.link-blue a:hover,
a.link-blue:hover {
  color: var(--colorRed);
}

#tooltip {
  display: none;
  max-width: 270px;
  padding: 14px 16px;
  color: #fff;
  font-size: 0.875rem;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1215686275);
  background: #2B2B2B;
  border-radius: 12px;
}

.swiper-slide {
  box-sizing: border-box;
}

.swiper-pagination,
.swiper-button-prev,
.swiper-button-next {
  display: none;
}

.swiper-pagination {
  justify-content: center;
  position: static;
  margin-top: 24px;
  gap: 12px;
}

.swiper-pagination-bullet {
  margin: 0 !important;
  opacity: 1;
  width: 12px;
  height: 12px;
  border: 1px solid var(--colorBlue);
  background: transparent;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  background: var(--colorBlue);
}

.swiper-button-prev,
.swiper-button-next {
  margin: 0;
  width: 48px;
  height: 48px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.1215686275);
  border-radius: 50%;
  background: #fff;
  color: inherit;
  top: calc(50% - 18px);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: auto;
  height: auto;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: var(--colorBlue);
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
}

.swiper-button-prev {
  left: 0;
  transform: translateY(-50%);
}

.swiper-button-next {
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}

.article-banner {
  border-radius: 24px;
  background: #F2FCFF;
  padding: 16px 0;
  margin: 0 auto 24px;
  width: 100%;
  max-width: 1360px;
}

.article-banner__body {
  margin-top: 16px;
}

.article-banner__body h1 {
  margin-bottom: 16px;
}

.article-banner__body time {
  margin-top: 24px;
}

.article-banner__img {
  display: block;
  border-radius: 16px;
  -o-object-position: center center;
  object-position: center center;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 1.37;
  margin-bottom: 16px;
}

.article-banner__about {
  font-weight: 500;
}

.article-banner__small {
  padding-bottom: 0px;
}

.comments h2 {
  margin-bottom: 1em;
}

.comments .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 288px;
  border: 1px solid var(--colorLightLine);
  border-radius: 12px;
  padding: 24px 20px 20px;
  gap: 12px;
  height: auto;
}

.comments .swiper-slide a {
  align-self: flex-start;
  margin-top: auto;
}

.comments .swiper-pagination {
  display: none;
}

.comments__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.comments__name p {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal;
  font-size: 1.25rem;
  font-weight: 600;
}

.section-pad {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-title {
  font: 700 1.625rem/1.2 var(--fontBody);
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1rem;
  color: var(--colorLightText);
  line-height: 1.6;
  margin-bottom: 48px;
}

.page-header {
  width: 100%;
  z-index: 100;
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 1px 0 transparent;
  transition: box-shadow 0.3s;
}

.page-header.is-scrolled {
  box-shadow: 0 1px 0 #E5E5EB;
}

.page-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
}

.page-header__logo {
  flex-shrink: 0;
}

.page-header__logo img {
  display: block;
  width: 107px;
}

.page-header__nav {
  display: none;
  gap: 4px;
}

.page-header__nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--colorDarkGrey);
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.page-header__nav-link:hover {
  background: rgba(0, 170, 255, 0.08);
  color: var(--colorBlue);
}

.page-header__actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.page-header__login {
  height: 40px;
  padding: 0 20px;
  font-size: 0.875rem;
  border-radius: 8px;
}

.page-header__cta {
  height: 40px;
  padding: 0 20px;
  font-size: 0.875rem;
  border-radius: 8px;
}

.page-header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: auto;
}

.page-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--colorBlack);
  border-radius: 2px;
  transition: 0.3s;
}

.page-header__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.page-header__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.page-header__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.page-header__mobile {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--colorLightLine);
  padding: 16px;
  gap: 8px;
}

.page-header__mobile.is-open {
  display: flex;
}

.page-header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.page-header__mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  padding: 12px;
  border-radius: 8px;
  color: var(--colorDarkGrey);
}

.page-header__mobile-nav a:hover {
  background: #f5f5f7;
}

.hero {
  background: #F2FCFF;
  overflow: hidden;
  padding-bottom: 60px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: url(../img/main-bg-top.svg) center/contain no-repeat;
  pointer-events: none;
  top: -120px;
  right: -120px;
}

.hero__grid {
  display: grid;
  gap: 48px;
  padding-top: 40px;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__title {
  font: 800 1.75rem/1.2 var(--fontBody);
  color: var(--colorBlack);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--colorDarkGrey);
  margin-bottom: 28px;
  max-width: 540px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  background: rgba(0, 170, 255, 0.1);
  border: 1px solid rgba(0, 170, 255, 0.25);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--colorTextLink);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero__btn-primary {
  height: 52px;
  padding: 0 28px;
  border-radius: 12px;
  font-size: 0.9375rem;
}

.hero__btn-demo {
  height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 0.9375rem;
}

.hero__microcopy {
  font-size: 0.8125rem;
  color: var(--colorLightText);
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.chat-mock {
  display: flex;
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  min-height: 320px;
}

.chat-mock__sidebar {
  width: 200px;
  flex-shrink: 0;
  border-right: 1px solid var(--colorLightLine);
  overflow: hidden;
}

.chat-mock__sidebar-head {
  padding: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--colorLightText);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--colorLightLine);
}

.chat-mock__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  cursor: pointer;
  transition: background 0.15s;
}

.chat-mock__row + .chat-mock__row {
  border-top: 1px solid rgba(229, 229, 235, 0.6);
}

.chat-mock__row--active {
  background: #EFF9FF;
}

.chat-mock__row:hover:not(.chat-mock__row--active) {
  background: #f7f7f9;
}

.chat-mock__row-body {
  flex: 1;
  overflow: hidden;
}

.chat-mock__row-name {
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-mock__row-preview {
  font-size: 0.75rem;
  color: var(--colorLightText);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.chat-mock__row-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.chat-mock__ava {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--colorBlue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.chat-mock__time {
  font-size: 0.6875rem;
  color: var(--colorLightText);
}

.chat-mock__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--colorBlue);
}

.chat-mock__dialog {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-mock__dialog-head {
  padding: 14px 16px;
  border-bottom: 1px solid var(--colorLightLine);
  flex-shrink: 0;
}

.chat-mock__dialog-name {
  font-size: 0.875rem;
  font-weight: 600;
}

.chat-mock__dialog-sub {
  font-size: 0.6875rem;
  color: var(--colorLightText);
  margin-top: 2px;
}

.chat-mock__msgs {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.chat-mock__msg {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.chat-mock__msg--in {
  background: #F0F0F5;
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}

.chat-mock__msg--out {
  background: var(--colorBlue);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}

.chat-mock__ai-tag {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 3px;
}

.chat-mock__transfer {
  margin: 0 14px 14px;
  background: #E8F9EF;
  color: #05C155;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
}

.pain {
  background: #fff;
}

.pain__grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

.pain__card {
  padding: 28px;
  border: 1px solid var(--colorLightLine);
  border-radius: 16px;
  transition: box-shadow 0.25s;
}

.pain__card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
}

.pain__card h3 {
  font-size: 1.125rem;
  margin: 16px 0 8px;
}

.pain__card p {
  font-size: 0.9375rem;
  color: var(--colorLightText);
  line-height: 1.6;
}

.pain__icon {
  color: var(--colorBlue);
}

.pain__bottom {
  margin-top: 40px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--colorDarkGrey);
  border-left: 3px solid var(--colorBlue);
  padding-left: 25px;
}

.solution {
  background: #F5F5F7;
}

.solution__inner {
  display: grid;
  gap: 48px;
}

.solution__text p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--colorDarkGrey);
  margin-bottom: 16px;
}

.solution__accent {
  font-weight: 600;
  color: var(--colorBlack) !important;
  font-size: 1.0625rem !important;
}

.solution__diagram {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.solution__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.solution__node span {
  font-size: 0.8125rem;
  font-weight: 600;
}

.solution__node--source .solution__node-icon,
.solution__node--center .solution__node-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution__node--source .solution__node-icon {
  background: rgba(0, 170, 255, 0.1);
  color: var(--colorBlue);
}

.solution__node--center .solution__node-icon {
  background: var(--colorBlue);
  color: #fff;
}

.solution__arrow {
  font-size: 1.125rem;
  color: var(--colorLightText);
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 23px;
}

.solution__channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.solution__channels .solution__channel:last-child:nth-child(odd) {
  grid-column: 1/-1;
}

.solution__channel {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--colorLightLine);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--colorDarkGrey);
}

.solution__channel svg {
  color: var(--colorBlue);
  flex-shrink: 0;
}

.solution__channel span {
  font-size: 0.8125rem;
  font-weight: 500;
}

.how {
  background: #fff;
}

.how__steps {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

.how__step {
  position: relative;
  padding-left: 72px;
}

.how__step h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.how__step p {
  font-size: 0.9375rem;
  color: var(--colorLightText);
  line-height: 1.6;
}

.how__num {
  position: absolute;
  left: 0;
  top: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--colorBlue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 1.375rem/1 var(--fontBody);
}

.how__note {
  margin-top: 48px;
  font-size: 0.9375rem;
  color: var(--colorLightText);
  border-left: 3px solid var(--colorBlue);
  padding-left: 20px;
  line-height: 1.6;
}

.diff {
  background: var(--colorBlack);
  color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
  position: relative;
}

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

.diff__content {
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.diff__content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
}

.diff__lead {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.diff__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.diff__point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.diff__point span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.diff__check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 170, 255, 0.25);
  border: 1px solid rgba(0, 170, 255, 0.5);
  color: var(--colorBlue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.diff__badge {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translate(-0.06em, -50%);
  display: none;
  width: 1em;
  height: 1em;
  font-size: 200px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  align-items: center;
  justify-content: center;
}

.features {
  background: #fff;
}

.features__grid {
  display: grid;
  gap: 16px;
  margin-top: 48px;
}

.features__card {
  padding: 28px;
  border: 1px solid var(--colorLightLine);
  border-radius: 16px;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.features__card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 170, 255, 0.3);
}

.features__card h3 {
  font-size: 1.0625rem;
  margin: 16px 0 8px;
}

.features__card p {
  font-size: 0.875rem;
  color: var(--colorLightText);
  line-height: 1.6;
}

.features__icon {
  color: var(--colorBlue);
}

.ai-trust {
  background: #F2FCFF;
}

.ai-trust__inner {
  display: grid;
  gap: 40px;
}

.ai-trust__header .section-lead {
  margin-bottom: 0;
}

.ai-trust__economy {
  padding: 22px 24px;
  background: #fff;
  border: 1px solid rgba(0, 170, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 170, 255, 0.06);
}

.ai-trust__economy-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--colorDarkGrey);
  margin: 0 0 12px;
  line-height: 1.35;
}

.ai-trust__economy-text {
  font-size: 0.875rem;
  color: var(--colorLightText);
  line-height: 1.65;
  margin: 0;
}

.ai-trust__points {
  display: grid;
  gap: 32px;
}

.ai-trust__point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.ai-trust__point h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.ai-trust__point p {
  font-size: 0.875rem;
  color: var(--colorLightText);
  line-height: 1.6;
}

.ai-trust__num {
  font: 700 0.8125rem/1 var(--fontBody);
  color: var(--colorBlue);
  letter-spacing: 0.04em;
  padding-top: 3px;
  flex-shrink: 0;
  width: 28px;
}

.ai-trust__body {
  flex: 1;
}

.ai-trust__note {
  font-size: 1rem;
  font-weight: 600;
  color: var(--colorDarkGrey);
  border-left: 3px solid var(--colorBlue);
  padding-left: 20px;
  margin-top: 8px;
}

.demo {
  background: #fff;
}

.demo__tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.demo__tab {
  flex: 1;
  height: 44px;
  min-width: 0;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--colorLightText);
  background: #F5F5F7;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.demo__tab.is-active {
  background: #EFF9FF;
  color: var(--colorBlue);
  border-color: rgba(0, 170, 255, 0.3);
}

.demo__tab:hover:not(.is-active) {
  background: #eee;
  color: var(--colorDarkGrey);
}

.demo__panels {
  border: 1px solid var(--colorLightLine);
  border-radius: 16px;
  overflow: hidden;
}

.demo__panel {
  display: none;
}

.demo__panel.is-active {
  display: block;
}

.demo__screen {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding: 24px;
  min-height: 220px;
}

.demo__screen-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--colorLightText);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.demo__label-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--colorGreen);
}

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

.demo__msg {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 480px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.875rem;
  line-height: 1.55;
}

.demo__msg--in {
  background: #F0F0F5;
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}

.demo__msg--auto {
  background: var(--colorBlue);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}

.demo__msg--system {
  background: transparent;
  border: 1px dashed var(--colorLightLine);
  color: var(--colorLightText);
  font-size: 0.8125rem;
  align-self: center;
  text-align: center;
  max-width: none;
}

.demo__msg--transfer {
  background: #E8F9EF;
  color: var(--colorGreen);
  font-size: 0.8125rem;
  font-weight: 600;
  align-self: center;
  text-align: center;
  border-radius: 8px;
  padding: 10px 16px;
}

.demo__msg-from {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 2px;
}

.for-whom {
  background: #F5F5F7;
}

.for-whom__grid {
  display: grid;
  gap: 16px;
  margin-top: 48px;
}

.for-whom__card {
  padding: 32px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--colorLightLine);
  transition: box-shadow 0.25s;
}

.for-whom__card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.for-whom__card h3 {
  font-size: 1.125rem;
  margin: 16px 0 10px;
}

.for-whom__card p {
  font-size: 0.875rem;
  color: var(--colorLightText);
  line-height: 1.6;
}

.for-whom__icon {
  color: var(--colorBlue);
}

.results {
  background: #fff;
}

.results__grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

.results__card {
  padding: 32px 28px;
  border: 1px solid var(--colorLightLine);
  border-radius: 16px;
}

.results__card h3 {
  font-size: 1.25rem;
  margin: 12px 0 10px;
}

.results__card p {
  font-size: 0.875rem;
  color: var(--colorLightText);
  line-height: 1.6;
}

.results__num {
  font: 700 2.25rem/1 var(--fontBody);
  color: rgba(0, 170, 255, 0.2);
  letter-spacing: -0.02em;
}

.pricing {
  background: #F5F5F7;
}

.pricing__grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}

.pricing__card {
  background: #fff;
  border: 1px solid var(--colorLightLine);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s;
}

.pricing__card:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.pricing__card--featured {
  border-color: var(--colorBlue);
  box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.2), 0 16px 48px rgba(0, 170, 255, 0.12);
}

.pricing__card-intro {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.pricing__badge {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  background: var(--colorBlue);
  color: #fff;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  align-self: flex-start;
}

.pricing__card--featured .pricing__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-bottom: 0;
  z-index: 2;
  white-space: nowrap;
}

.pricing__name {
  font: 700 1.375rem/1 var(--fontBody);
  margin-bottom: 16px;
}

.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}

.pricing__price strong {
  font: 800 2.25rem/1 var(--fontBody);
  color: var(--colorBlack);
}

.pricing__price span {
  font-size: 0.875rem;
  color: var(--colorLightText);
}

.pricing__desc {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.pricing__note {
  flex: 1 1 auto;
  min-height: 0;
  font-size: 0.8125rem;
  color: var(--colorLightText);
  line-height: 1.6;
  margin-bottom: 20px;
}

.pricing__unlim {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  background: rgba(0, 170, 255, 0.08);
  border: 1px solid rgba(0, 170, 255, 0.2);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--colorTextLink);
  margin-bottom: 24px;
}

.pricing__features {
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--colorLightLine);
}

.pricing__features-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--colorDarkGrey);
  margin-bottom: 10px;
}

.pricing__features-list {
  margin: 0;
  padding-left: 1.15em;
  font-size: 0.8125rem;
  color: var(--colorLightText);
  line-height: 1.55;
}

.pricing__features-list li + li {
  margin-top: 6px;
}

.pricing__features-open {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  padding: 0;
  background: none;
  border: none;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--colorTextLink);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing__features-open:hover {
  color: var(--colorBlue);
}

.pricing__btn {
  height: 48px;
  border-radius: 12px;
  font-size: 0.9375rem;
}

.pricing__footer {
  margin-top: 28px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--colorLightText);
}

.pricing-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
}

.pricing-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.pricing-modal .main-plan-desc {
  display: block !important;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.pricing-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(1100px, 100%);
  max-height: min(90vh, 900px);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.pricing-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--colorLightLine);
  flex-shrink: 0;
}

.pricing-modal__title {
  margin: 0;
  font: 700 1.25rem/1.3 var(--fontBody);
  color: var(--colorBlack);
}

.pricing-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: -8px -8px 0 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 10px;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--colorLightText);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.pricing-modal__close:hover {
  background: #f0f0f2;
  color: var(--colorBlack);
}

.pricing-modal__body {
  padding: 16px 24px 24px;
  overflow: auto;
  flex: 1;
  min-height: 0;
}

.faq {
  background: #fff;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--colorLightLine);
  border-radius: 16px;
  overflow: hidden;
}

.faq__item {
  border-bottom: 1px solid var(--colorLightLine);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__item.open .faq__q {
  color: var(--colorBlue);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  transition: background 0.2s;
}

.faq__q:hover {
  background: #FAFAFA;
}

.faq__q span {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.faq__q svg {
  flex-shrink: 0;
  color: var(--colorLightText);
}

.faq__a {
  padding: 12px 24px 22px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--colorDarkGrey);
}

.final-cta {
  background: var(--colorBlack);
  color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: center;
}

.final-cta__inner {
  max-width: 680px;
  margin: 0 auto;
}

.final-cta__inner h2 {
  font: 800 1.75rem/1.2 var(--fontBody);
  color: #fff;
  margin-bottom: 20px;
}

.final-cta__inner p {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
}

.final-cta__btn {
  height: 56px;
  padding: 0 36px;
  border-radius: 12px;
  font-size: 1rem;
  display: inline-flex;
}

.final-cta__note {
  margin-bottom: 0 !important;
  margin-top: 16px;
  font-size: 0.875rem !important;
  color: rgba(255, 255, 255, 0.4) !important;
}

.tool-links {
  background: #F5F5F7;
}

.tool-links__list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 12px 28px;
}

.tool-links__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--colorTextLink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tool-links__link:hover {
  color: var(--colorBlue);
}

.page-footer {
  background: #1A1A1A;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 0;
  padding-bottom: 0;
  margin-top: auto;
}

.page-footer__inner {
  display: grid;
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 40px;
}

.page-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.page-footer__logo img {
  display: block;
  width: 120px;
  filter: brightness(10);
}

.page-footer__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 380px;
}

.page-footer__cta {
  height: 44px;
  padding: 0 24px;
  border-radius: 10px;
  font-size: 0.875rem;
}

.page-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}

.page-footer__nav a {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.page-footer__nav a:hover {
  color: #fff;
}

.page-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-footer__bottom .container {
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 0.8125rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.main-banner-bonus {
  margin-left: 16px;
  margin-right: 16px;
  border-radius: 24px;
  background: linear-gradient(170.67deg, #0A73BE 27.06%, #04F4CC 62.24%, #0A73BE 98.07%);
  padding: 24px 8px 36px;
  width: calc(100% - 32px);
  color: #fff;
  font-weight: 600;
  font-size: 1.125rem;
}

.main-banner-bonus h2 {
  margin-bottom: 20px;
}

.main-banner-bonus li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.main-banner-bonus li + li {
  margin-top: 12px;
}

.main-banner-bonus svg {
  flex-shrink: 0;
}

.main-banner-bonus__img {
  display: block;
  margin: 5px auto 0;
}

.main-banner-bonus__reg {
  height: 60px;
  border-radius: 12px;
  width: 244px;
  margin: 10px auto 0;
  font-size: 1rem;
  align-self: start;
}

.main-more h2 {
  margin-bottom: 16px;
}

.main-more p + p {
  margin-top: 0.875em;
}

.main-news .swiper {
  margin-right: -16px;
}

.main-news__header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
  justify-content: space-between;
}

.main-news__header h2 {
  margin: 0;
}

.main-news__item {
  border-radius: 12px;
  overflow: hidden;
  width: 288px;
  background: #fff;
}

.main-news__img {
  display: block;
  aspect-ratio: 1.6;
  -o-object-position: center center;
  object-position: center center;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.main-news__body {
  padding: 16px;
}

.main-news__body p {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal;
  font-weight: 600;
}

.main-news__more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.main-plan {
  border-radius: 12px;
  overflow: hidden;
}

.main-plan .collapse__btn {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.56;
  text-transform: uppercase;
  color: #fff;
  background: var(--colorBlue);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.main-plan.open {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1215686275);
}

.main-plan + .main-plan {
  margin-top: 12px;
}

.main-plan--max .collapse__btn {
  background: var(--colorGreen);
}

.main-plan__body {
  padding: 0 20px 20px;
}

.main-plan__option {
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  border-bottom: 1px solid var(--colorLightLine);
}

.main-plan__option svg {
  flex-shrink: 0;
}

.main-plan__option p {
  flex-grow: 1;
}

.main-plan__option mark {
  font-weight: 700;
}

.main-plan__cost {
  margin-top: 12px;
  text-align: center;
  line-height: 1.33;
}

.main-plan__cost mark {
  display: block;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.5rem;
}

.main-plan__get {
  max-width: 400px;
  margin: 12px auto 0;
  height: 48px;
}

.main-plan-desc {
  overflow: hidden;
  display: none;
}

.main-plan-desc table {
  border-spacing: 24px 0;
  width: calc(100% + 48px);
  border-collapse: separate;
  margin-left: -24px;
  font-weight: 600;
}

.main-plan-desc table .btn-blue {
  font-weight: 500;
}

.main-plan-desc tr:nth-child(n+3) td {
  position: relative;
}

.main-plan-desc tr:nth-child(n+3) td::before {
  content: "";
  position: absolute;
  top: 0;
  left: -12px;
  right: -12px;
  border-top: 1px solid rgba(0, 0, 0, 0.1019607843);
}

.main-plan-desc tr:last-child td {
  background: transparent;
}

.main-plan-desc tr:last-child td::before {
  display: none;
}

.main-plan-desc th {
  font: 700 1.125rem/1.56 var(--fontBody);
  color: #fff;
  text-transform: uppercase;
  padding: 14px 5px;
}

.main-plan-desc th:first-child {
  width: 100%;
}

.main-plan-desc th + th {
  position: relative;
}

.main-plan-desc th + th span {
  position: relative;
  z-index: 1;
  display: block;
  width: 180px;
}

.main-plan-desc th + th::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px 12px 0 0;
  background: var(--colorBlue);
}

.main-plan-desc th:last-child::before {
  background: var(--colorGreen);
}

.main-plan-desc td {
  padding: 16px 0;
}

.main-plan-desc td + td {
  text-align: center;
  background: #F6F6F7;
}

.main-plan-desc td:last-child {
  background: #EBFFF1;
}

.main-plan-desc__option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.main-top {
  background: #F2FCFF;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-bottom: 60px;
}

.main-top::before,
.main-top::after {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  position: absolute;
  background: url(../img/main-bg-top.svg) center center/contain no-repeat;
  pointer-events: none;
}

.main-top::before {
  content: "";
  top: -95px;
  right: -89px;
}

.main-banner {
  margin-top: 24px;
}

.main-banner h2 {
  margin: 12px 0 24px;
  font-size: 1.25rem;
}

.main-banner__feature {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 16px;
  align-items: center;
  font-weight: 500;
}

.main-banner__feature + .main-banner__feature {
  font-size: 1.0625rem;
  margin-top: 12px;
}

.main-banner__reg {
  width: 244px;
  height: 60px;
  border-radius: 12px;
  margin-top: 20px;
}

.main-banner__img {
  display: block;
  margin: 16px auto 0;
  width: 500px;
}

.main-modules {
  background: #fff;
  padding: 32px 16px 0;
  max-width: 1360px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.main-modules h2 {
  margin: 0 auto 1em;
  max-width: 1200px;
}

.main-modules__body {
  display: grid;
  gap: 12px;
  margin: 0 auto;
  max-width: 1200px;
}

.main-modules__item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border: 1px solid var(--colorLightLine);
  border-radius: 16px;
  padding: 20px 24px 24px;
}

.main-modules__item h3 {
  margin-bottom: 6px;
}

.main-modules__about {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 12px;
  margin-top: auto;
}

.main-modules__about a {
  font-size: 0.875rem;
}

.similars h2 {
  margin-bottom: 32px;
}

.similars__item {
  width: 288px;
  background: #fff;
  border-radius: 12px;
  height: auto;
  overflow: hidden;
}

.similars__img {
  width: 100%;
  display: block;
  -o-object-position: center center;
  object-position: center center;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1.6;
}

.similars__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 16px;
  height: 167px;
}

.similars__body p {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal;
  font-weight: 600;
}

.similars__more {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-block p + p {
  margin-top: 0.875em;
}

.text-block ul,
.text-block ol {
  line-height: 1.375;
}

.text-block ul:not(:first-child),
.text-block ol:not(:first-child) {
  margin-top: 0.875em;
}

.text-block ul:not(:last-child),
.text-block ol:not(:last-child) {
  margin-bottom: 0.875em;
}

.text-block li + li {
  margin-top: 0.5em;
}

.text-block ul {
  list-style-type: none;
  margin-left: 0.685em;
}

.text-block ul li {
  position: relative;
  padding-left: 17px;
}

.text-block ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--colorBlue);
  position: absolute;
  left: 0;
  top: 0.65em;
}

.text-block ol {
  margin-left: 1.5625em;
}

.text-block ol ::marker {
  font-weight: 700;
}

.text-block blockquote {
  line-height: 1.375;
  font-weight: 600;
  padding-left: 1em;
  border-left: 4px solid var(--colorBlue);
}

.text-block blockquote:not(:first-child) {
  margin-top: 1em;
}

.text-block blockquote:not(:last-child) {
  margin-bottom: 1em;
}

.text-block figure {
  line-height: 1.375;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 16px;
  background: #F2FCFF;
}

.text-block figure:not(:first-child) {
  margin-top: 1.25em;
}

.text-block figure:not(:last-child) {
  margin-bottom: 1.25em;
}

.text-block__cta {
  display: flex;
  justify-content: center;
  margin-top: 1.5em;
  margin-bottom: 48px;
}

.text-block__cta .main-banner__reg {
  margin-top: 0;
}

@media (min-width: 576px) {
  .comments .swiper-slide {
    width: 384px;
    padding: 32px;
  }

  .comments__header {
    flex-direction: row;
  }

  .comments__header img {
    order: 1;
    margin-left: auto;
  }

  .pain__grid {
    grid-template-columns: 1fr 1fr;
  }

  .diff__points {
    grid-template-columns: 1fr 1fr;
  }

  .features__grid {
    grid-template-columns: 1fr 1fr;
  }

  .demo__tabs {
    flex-wrap: nowrap;
  }

  .for-whom__grid {
    grid-template-columns: 1fr 1fr;
  }

  .tool-links__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-modules__body {
    grid-template-columns: 1fr 1fr;
  }

  .similars__item {
    width: 384px;
  }

  .similars__img {
    aspect-ratio: 1.75;
  }

  .similars__body {
    padding: 20px 24px 24px;
    height: 164px;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 0.75em;
  }

  * + h2 {
    margin-top: 1em;
  }

  h3 {
    font-size: 1.5rem;
  }

  * + h3 {
    margin-top: 1em;
  }

  h4 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 0.8em;
  }

  * + h4 {
    margin-top: 1em;
  }

  .margin-top {
    margin-top: 60px;
  }

  .bottom-grey {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .main-aside {
    grid-template-columns: 1fr 282px;
  }

  .article-banner {
    padding-bottom: 40px;
    margin-bottom: 64px;
  }

  .article-banner__body {
    display: grid;
    grid-template-columns: 1fr max-content;
    gap: 24px;
  }

  .article-banner__body h1 {
    margin-bottom: 24px;
  }

  .article-banner__img {
    width: 300px;
    aspect-ratio: 1.31;
    margin: 0;
    order: 1;
  }

  .section-pad {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
  }

  .section-lead {
    font-size: 1.125rem;
    margin-bottom: 56px;
  }

  .page-header__inner {
    height: 72px;
  }

  .page-header__logo img {
    width: 140px;
  }

  .page-header__actions {
    display: flex;
  }

  .page-header__burger {
    display: none;
  }

  .page-header__mobile {
    display: none !important;
  }

  .hero__title {
    font-size: 2.375rem;
    margin-bottom: 24px;
  }

  .hero__subtitle {
    font-size: 1.0625rem;
    margin-bottom: 32px;
  }

  .hero__btn-primary {
    height: 56px;
    padding: 0 32px;
    font-size: 1rem;
  }

  .hero__btn-demo {
    height: 56px;
    padding: 0 28px;
    font-size: 1rem;
  }

  .pain__bottom {
    font-size: 1.125rem;
  }

  .solution__text p {
    font-size: 1.0625rem;
  }

  .how__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .how__step {
    padding-left: 0;
    padding-top: 72px;
  }

  .how__step h3 {
    font-size: 1.25rem;
  }

  .how__num {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .how__note {
    font-size: 1rem;
  }

  .diff__content h2 {
    font-size: 2.5rem;
  }

  .diff__lead {
    font-size: 1.125rem;
  }

  .features__card h3 {
    font-size: 1.125rem;
  }

  .ai-trust__economy-title {
    font-size: 1.125rem;
  }

  .ai-trust__points {
    grid-template-columns: 1fr 1fr;
  }

  .ai-trust__point h3 {
    font-size: 1.125rem;
  }

  .ai-trust__note {
    font-size: 1.0625rem;
  }

  .demo__screen {
    padding: 32px;
    min-height: 280px;
  }

  .results__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .pricing__features {
    min-height: 260px;
  }

  .final-cta__inner h2 {
    font-size: 2.5rem;
  }

  .final-cta__inner p {
    font-size: 1.125rem;
  }

  .page-footer__inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .main-banner-bonus {
    font-size: 1.25rem;
  }

  .main-banner-bonus .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 0 24px;
    align-items: center;
  }

  .main-banner-bonus__img {
    grid-row: span 2;
    margin: 0;
  }

  .main-banner-bonus__reg {
    margin: 0;
  }

  .main-news .swiper {
    margin-right: 0;
  }

  .main-news .swiper-wrapper {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 1fr;
  }

  .main-news__item {
    margin: 0;
    width: 100%;
  }

  .main-news__item:not(.main-news__item--big) {
    display: grid;
    grid-template-columns: max-content 1fr;
    height: 144px;
  }

  .main-news__item:not(.main-news__item--big) .main-news__img {
    width: 184px;
    height: 100%;
  }

  .main-news__item:not(.main-news__item--big) .main-news__body {
    padding: 20px 24px 20px 20px;
  }

  .main-news__img {
    aspect-ratio: initial;
  }

  .main-news__body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .main-news__more {
    margin-top: auto;
  }

  .main-news__item--big {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    grid-row: span 3;
  }

  .main-news__item--big .main-news__img {
    height: 324px;
  }

  .main-news__item--big .main-news__body {
    padding: 20px 24px 24px;
    flex-grow: 1;
  }

  .main-top::before,
  .main-top::after {
    width: 600px;
    height: 600px;
  }

  .main-top::before {
    top: -209px;
    right: -164px;
  }

  .main-top::after {
    content: "";
    top: 278px;
    left: -275px;
  }

  .main-banner {
    margin-top: 36px;
    position: relative;
    padding-bottom: 40px;
  }

  .main-banner h1,
  .main-banner h2 {
    max-width: 68%;
    position: relative;
    z-index: 1;
  }

  .main-banner h2 {
    margin: 16px 0 32px;
    font-size: 2rem;
  }

  .main-banner__feature {
    max-width: 513px;
    font-size: 1.125rem;
  }

  .main-banner__feature + .main-banner__feature {
    font-size: 1rem;
    margin-top: 16px;
  }

  .main-banner__reg {
    margin-top: 40px;
  }

  .main-banner__img {
    margin: 0;
    position: absolute;
    right: -54px;
    top: 0;
    max-width: 55%;
  }

  .main-modules {
    padding-top: 64px;
  }

  .main-modules__item {
    padding: 28px 32px 24px;
  }

  .main-modules__item h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }

  .text-block__cta {
    margin-bottom: 64px;
  }
}

@media (min-width: 992px) {
  .margin-top {
    margin-top: 120px;
  }

  .bottom-grey {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .main-aside {
    -moz-column-gap: 64px;
    column-gap: 64px;
  }

  .article-banner__img {
    width: 446px;
  }

  .section-pad {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .section-title {
    font-size: 2.75rem;
  }

  .page-header__nav {
    display: flex;
  }

  .hero {
    padding-bottom: 100px;
  }

  .hero::before {
    width: 700px;
    height: 700px;
    top: -200px;
    right: -180px;
  }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding-top: 60px;
  }

  .hero__title {
    font-size: 2.75rem;
  }

  .chat-mock {
    min-height: 380px;
  }

  .pain__grid {
    gap: 24px;
  }

  .solution__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .solution__diagram {
    flex-wrap: nowrap;
  }

  .diff {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .diff__content h2 {
    font-size: 3rem;
  }

  .diff__badge {
    display: flex;
    font-size: 260px;
  }

  .features__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .for-whom__grid {
    gap: 24px;
  }

  .final-cta {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .tool-links__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 32px;
  }

  .page-footer__inner {
    grid-template-columns: 1.5fr 1fr;
  }

  .main-banner-bonus {
    padding: 0 24px;
  }

  .main-banner-bonus .container {
    grid-template-columns: 1fr max-content;
  }

  .main-plan {
    display: none;
  }

  .main-plan-desc {
    display: block;
  }

  .main-banner {
    padding-bottom: 80px;
  }

  .main-banner h1 {
    font-size: 2.5rem;
  }

  .main-modules__body {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 1232px) {
  .container {
    padding-left: calc(50% - 600px);
    padding-right: calc(50% - 600px);
  }

  .main-aside {
    -moz-column-gap: 126px;
    column-gap: 126px;
  }

  .swiper-nav-wrapper {
    margin-right: 0;
    padding: 0 24px;
  }

  .swiper-pagination,
  .swiper-button-prev,
  .swiper-button-next {
    display: flex;
  }

  .comments .swiper-pagination {
    display: flex;
  }

  .hero__grid {
    grid-template-columns: 1.1fr 1fr;
  }

  .diff__badge {
    font-size: 340px;
    right: -60px;
  }

  .main-banner-bonus {
    padding: 0;
  }

  .main-plan-desc th + th span {
    width: 204px;
  }

  .main-banner__img {
    max-width: none;
  }

  .main-modules__body {
    gap: 24px;
  }
}

@media (min-width: 1360px) {
  .main-modules {
    border-radius: 32px;
  }
}

@media (min-width: 1392px) {
  .swiper-nav-wrapper {
    padding: 0;
  }

  .swiper-button-prev {
    left: -24px;
  }

  .swiper-button-next {
    right: -24px;
  }

  .main-banner-bonus {
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

@media (max-width: 767px) {
  h2.h2-big {
    font-size: 1.5rem;
  }

  .chat-mock__sidebar {
    display: none;
  }

  .main-more h2 {
    margin-bottom: 1em;
  }
}