/* Загальний reset для input, textarea, select, button */
input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  box-sizing: border-box;
}
/* Для input і textarea — дозволити змінювати розміри лише вручну */
textarea {
  resize: vertical;
}
/* Для кнопок — прибрати курсор по замовчуванню та border radius */
button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  appearance: none;
}
/* Скидання autofill стилів в Chrome */
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, textarea:-webkit-autofill, select:-webkit-autofill {
  transition: background-color 9999s ease-in-out 0s;
}
/* Поле checkbox і radio часто мають свої стилі — скидаємо */
input[type='checkbox'], input[type='radio'] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
  padding: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}
/* Скидання стилів для placeholder */
::placeholder {
  color: #999;
  opacity: 1;
}
.errorMessage {
  padding: 0 16px;
  color: #f7553c;
}
/* Для disabled */
input:disabled, textarea:disabled, select:disabled, button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
body {
  font-family: 'Mulish', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  color: #000032;
  background-color: #fff;
  margin: 0;
  padding: 0;
}
*, ::after, ::before {
  box-sizing: border-box;
}
input, textarea {
  font-family: 'Mulish', sans-serif;
}
p {
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.2;
}
section {
  padding: 40px 16px;
  overflow: hidden;
}
@media only screen and (min-width: 721px) and (max-width: 1366px) and (orientation: landscape) {
  section {
    padding: 24px 40px;
  }
}
.approach, .services {
  padding: 40px 0;
  background-color: #f4f4f4;
}
.approach__container {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .approach__container {
    padding: 24px 16px;
  }
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}
.button {
  position: relative;
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  padding: 16px 24px;
  border-radius: 7px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none !important;
  background-color: #33f;
  color: #fff;
  min-width: 260px;
  overflow: hidden;
  perspective: 600px;
}
.button:active {
  background-color: #f0f0ff;
  color: #33f;
}
.button:disabled, .button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.button .button__inner {
  display: inline-block;
  position: relative;
  line-height: 1;
}
.button .button__row {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
}
.button .button__row:first-child {
  position: relative;
}
.button .button__char {
  display: inline-block;
  will-change: transform, opacity;
}
.button2 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  padding: 16px 24px;
  border-radius: 7px;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer;
  border: none !important;
  background-color: #33f;
  color: #fff;
  min-width: 260px;
}
.button2:hover {
  background-color: #f0f0ff;
  color: #33f;
  box-shadow: 0px -1px 6.3px 0px rgba(0, 0, 0, 0.1) inset;
}
.popup-add-btn input {
  display: none !important;
}
.text-primary {
  color: #33f;
}
.text-secondary {
  color: #99f;
}
.text-muted {
  color: #666869;
}
.badge {
  display: inline-flex;
  background-color: #fff;
  border-radius: 30px;
  border: 1px solid rgba(51, 51, 255, 0.3);
  overflow: hidden;
  width: max-content;
  margin-bottom: 16px;
}
.badge .sub-badge {
  padding: 12px 24px;
  color: #33f;
  background-color: rgba(153, 153, 255, 0.15);
  border: 3px solid white;
  text-align: center;
  user-select: none;
  line-height: 1;
  border-radius: 30px;
}
.consultation-overlay {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1280px;
  width: 100%;
  z-index: 900;
}
.consultation-float-button {
  position: fixed;
  right: 0;
  top: 34px;
  display: none;
  z-index: 800;
  box-shadow: 0 0 4px white;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.consultation-float-button.hide, .consultation-float-button.is-hidden-by-section {
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  pointer-events: none;
}
@media only screen and (min-width: 721px) and (max-width: 1080px) {
  .consultation-float-button {
    right: 40px;
  }
}
@media (max-width: 767px) {
  body {
    overflow: visible;
  }
  body .header {
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 500;
  }
  h1 {
    font-size: 28px;
    margin-bottom: 16px;
  }
  h2 {
    line-height: 1.2;
  }
  .btn-primary {
    font-size: 18px;
    padding: 14px 20px;
    width: 100%;
    text-align: center;
  }
  section {
    padding: 24px 16px;
  }
  .button {
    font-size: 16px;
  }
  .approach, .services {
    padding: 24px 16px;
  }
  .no-scroll {
    overflow: hidden;
  }
}
textarea.js-autogrow {
  box-sizing: border-box;
  min-height: 60px;
  height: 60px;
  line-height: 1.5;
  resize: none;
  overflow-y: hidden;
  transition: height 0.18s ease;
  will-change: height;
}
.c-cta.c-aicta__btn.w-inline-block {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 9999px;
  text-decoration: none;
  background: #5a5bff;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  will-change: transform;
}
.c-cta.c-aicta__btn.w-inline-block:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(34, 47, 255, .25);
}
.c-cta__target {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0));
  pointer-events: none;
  transform: scale(1);
  opacity: 0.65;
}
.c-cta__inner {
  position: relative;
  display: inline-block;
  line-height: 1;
}
.c-cta__inner .o-nhg18--ucase-semi {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
}
.c-cta__inner .o-nhg18--ucase-semi:first-child {
  position: relative;
}
.c-cta__inner .gs-char-split {
  display: inline-block;
  will-change: transform, opacity;
}
.c-cta__ico {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}
.c-cta__ico .ico-base, .c-cta__ico .ico-hover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.c-cta__ico .ico-hover {
  opacity: 0;
  transform: translate(-50%, 50%);
}
/* Accessibility: без анімацій */
@media (prefers-reduced-motion: reduce) {
  .c-cta.c-aicta__btn.w-inline-block, .c-cta__ico svg {
    transition: none !important;
  }
}
.header {
  background-color: #fff;
  margin-top: 40px;
  padding: 0 20px;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__container > .button {
  display: none;
}
.header__logo img {
  display: block;
  height: 36px;
}
.header__info {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__phone {
  font-weight: 600;
  font-size: 20px;
  color: #000032;
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__messengers {
  display: flex;
  gap: 16px;
}
.header .messenger {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.header .messenger:hover {
  opacity: 1;
}
.header .messenger--tg {
  background-image: url('/themes/basic/images/356/telegram.svg');
}
.header .messenger--viber {
  background-image: url('/themes/basic/images/356/viber.svg');
}
.header__btn {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  background-color: #f0f0ff;
  color: #33f;
  font-weight: 600;
  border-radius: 7px;
  font-size: 18px;
  text-decoration: none;
  overflow: hidden;
  perspective: 600px;
  transition: background-color 0.3s ease;
}
.header .button__inner, .header .header__btn__inner {
  display: inline-block;
  position: relative;
  line-height: 1;
}
.header .button__row, .header .header__btn__row {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
}
.header .button__row:first-child, .header .header__btn__row:first-child {
  position: relative;
}
.header .button__char, .header .header__btn__char {
  display: inline-block;
  will-change: transform, opacity;
}
.header__lang {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #000032;
  cursor: pointer;
  user-select: none;
}
.header__lang .active {
  color: #000032;
  padding: 4px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, background-color 0.2s;
}
.header__lang .active::after {
  content: '';
  display: block;
  background-image: url('/themes/basic/images/356/arrow.svg');
  width: 18px;
  height: 10px;
  transition: 0.3s;
}
.header__lang.is-open .active {
  color: #33f;
  background-color: rgba(51, 51, 255, 0.05);
}
.header__lang.is-open .active::after {
  background-image: url('/themes/basic/images/356/arrow-bl.svg');
  transform: rotate(180deg);
}
.header__lang.is-open ul {
  display: block;
}
.header__lang ul {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  min-width: 72px;
  background: #fff;
  border: 1px solid rgba(51, 51, 255, 0.15);
  border-radius: 7px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  z-index: 100;
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header__lang ul li {
  padding: 8px;
  background: #fff;
  color: #000032;
}
.header__lang ul li:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}
.header__lang ul li a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.header__lang ul li:hover {
  background-color: rgba(153, 153, 255, 0.07);
}
body.menu-open {
  overflow: hidden;
}
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, white, #e6e6ff);
  z-index: 9999;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 0.45s ease-in-out, transform 0.45s ease-in-out, visibility 0s linear 0.45s;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.45s ease-in-out, transform 0.45s ease-in-out;
}
.mobile-menu-overlay .mobile-menu-header, .mobile-menu-overlay .menu-block, .mobile-menu-overlay .mobile-phone, .mobile-menu-overlay .language-switcher, .mobile-menu-overlay .mobile-button {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease-in-out 0.1s, transform 0.55s ease-in-out 0.1s;
  will-change: opacity, transform;
}
.mobile-menu-overlay.active .mobile-menu-header, .mobile-menu-overlay.active .menu-block, .mobile-menu-overlay.active .mobile-phone, .mobile-menu-overlay.active .language-switcher, .mobile-menu-overlay.active .mobile-button {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-overlay .menu-block {
  display: flex;
  width: 100%;
}
.mobile-menu-overlay .mobile-phone {
  padding: 38px 0;
  border-bottom: 1px solid #e6e6ff;
  border-top: 1px solid #e6e6ff;
  width: 100%;
  margin-top: 20px;
  font-size: 18px;
  color: #006;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu-overlay .menu-lang {
  display: flex;
  gap: 24px;
}
.mobile-menu-overlay .menu-lang .active {
  color: #000032;
}
.mobile-menu-overlay .menu-lang ul {
  display: flex;
  gap: 24px;
  color: #666869;
}
.mobile-menu-overlay .mobile-menu-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu-overlay .mobile-menu-header .logo {
  max-width: 140px;
  margin-top: 8px;
}
.mobile-menu-overlay .mobile-menu-header .logo img {
  height: auto;
  max-width: 100%;
}
.mobile-menu-overlay .mobile-menu-header .close-menu {
  font-size: 24px;
  width: 24px;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu-overlay .language-switcher {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  font-size: 16px;
}
.mobile-menu-overlay .language-switcher span {
  cursor: pointer;
  color: #666;
}
.mobile-menu-overlay .language-switcher span.active {
  font-weight: bold;
  color: #006;
}
.mobile-menu-overlay .mobile-button {
  margin: auto;
  margin-top: 40px;
}
.mobile-menu-overlay .mobile-messengers {
  display: flex;
  gap: 24px;
}
.mobile-menu-overlay .mobile-messenger {
  width: 22px;
  height: 22px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.mobile-menu-overlay .mobile-messenger--tg {
  background-image: url('/themes/basic/images/356/telegram.svg');
}
.mobile-menu-overlay .mobile-messenger--viber {
  background-image: url('/themes/basic/images/356/viber.svg');
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu-overlay, .mobile-menu-overlay * {
    transition: none !important;
    transform: none !important;
  }
}
@media (max-width: 721px) {
  .header {
    padding: 16px;
    margin-top: 8px;
  }
  .header__container > .button {
    display: block;
    padding: 9px 14px;
    min-width: auto;
    font-size: 14px;
  }
  .header__logo {
    max-width: 140px;
  }
  .header__logo img {
    height: auto;
    max-width: 100%;
  }
  .header__info {
    display: none;
  }
  .header__toggle {
    display: flex;
  }
  .header .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: #000;
  }
  .header nav {
    display: none;
  }
}
@media (min-width: 721px) {
  .header__toggle {
    display: none;
  }
}
@media only screen and (min-width: 721px) and (max-width: 1080px) {
  .header {
    margin-top: 16px;
    padding: 0 40px;
  }
  .header__logo img {
    max-height: 24px;
    width: auto;
  }
  .header__info {
    gap: 16px;
    margin-right: 16px;
    margin-left: auto;
  }
  .header__phone {
    font-size: 14px;
  }
  .header__lang {
    font-size: 14px;
  }
  .header__btn {
    display: none;
  }
  .header__container > .button {
    display: inline-block;
    font-size: 14px;
    min-width: 150px;
    padding: 15px 24px;
  }
}
.hero-landing {
  position: relative;
  overflow: hidden;
}
.hero-landing__container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-landing__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.hero-landing__content h1 {
  font-size: 90px;
  font-weight: 800;
  line-height: 1.2;
  color: #000032;
  margin: 0 0 24px;
}
.hero-landing__content .hero-landing__subtitle {
  font-size: 34px;
  font-weight: 600;
  color: #000032;
  margin-bottom: 24px;
}
.hero-landing__content .hero-landing__title, .hero-landing__content .hero-landing__subtitle, .hero-landing__content ul, .hero-landing__content .hero-landing__messenger--tg, .hero-landing__content .hero-landing__messenger--viber, .hero-landing__content .button, .hero-landing__content .hero-landing__price {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
  will-change: opacity, transform;
}
.hero-landing__content .hero-landing__title, .hero-landing__content .hero-landing__subtitle, .hero-landing__content ul, .hero-landing__content .hero-landing__messenger--tg, .hero-landing__content .hero-landing__messenger--viber, .hero-landing__content .button, .hero-landing__content .hero-landing__price {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
  will-change: opacity, transform;
}
.hero-landing__content .hero-landing__title.is-visible, .hero-landing__content .hero-landing__subtitle.is-visible, .hero-landing__content ul.is-visible, .hero-landing__content .hero-landing__messenger--tg.is-visible, .hero-landing__content .hero-landing__messenger--viber.is-visible, .hero-landing__content .button.is-visible, .hero-landing__content .hero-landing__price.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .hero-landing__content .hero-landing__title, .hero-landing__content .hero-landing__subtitle {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.hero-landing__content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  max-width: 413px;
}
.hero-landing__content ul li {
  font-size: 16px;
  color: #000032;
  margin-bottom: 8px;
}
.hero-landing__content ul li span {
  color: #33f;
}
.hero-landing .button {
  z-index: 2;
  position: relative;
}
.hero-landing__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  position: relative;
}
.hero-landing__cta-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.hero-landing__price {
  position: absolute;
  top: -44px;
  left: 0;
  transform: translateX(0);
  font-size: 16px;
  font-weight: 700;
  color: #33f;
  white-space: nowrap;
  pointer-events: none;
  z-index: 3;
}
.hero-landing__price span {
  font-size: 28px;
}
.hero-landing__messenger {
  width: 36px;
  height: 36px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.hero-landing__messenger:hover {
  opacity: 1;
  transform: scale(1.05);
}
.hero-landing__messenger--tg {
  background-image: url('/themes/basic/images/356/telegram.svg');
}
.hero-landing__messenger--viber {
  background-image: url('/themes/basic/images/356/viber.svg');
}
.hero-landing__actions .button {
  margin: 0;
}
.hero-landing__image {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 630px;
  z-index: 1;
}
.hero-landing__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-left-radius: 40px;
}
.hero-landing__image img.hero-img {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
  will-change: opacity, transform;
}
.hero-landing__image img.hero-img.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .hero-landing__image img.hero-img {
    transition: none;
    opacity: 1 !important;
    transform: none !important;
  }
}
@keyframes hueShift {
  0% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(20deg);
  }
  100% {
    filter: hue-rotate(0deg);
  }
}
@media only screen and (min-width: 721px) and (max-width: 1080px) {
  .hero-landing {
    padding: 24px 0;
  }
  .hero-landing__container {
    padding: 0 40px;
  }
  .hero-landing__image {
    position: static;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 30px;
  }
  .hero-landing__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }
  .hero-landing__content {
    max-width: 100%;
  }
  .hero-landing__content h1 {
    font-size: 50px;
    margin-bottom: -50px;
    z-index: 1;
  }
  .hero-landing__content .hero-landing__subtitle {
    font-size: 24px;
    text-align: right;
    margin: -47px 12% 0 auto;
    z-index: 1;
  }
  .hero-landing__content ul {
    margin-top: 24px;
    max-width: none;
  }
  .hero-landing__content ul li {
    font-size: 16px;
  }
  .hero-landing__content .button {
    margin-right: auto;
  }
  .hero-landing__actions {
    justify-content: flex-start;
  }
  .hero-landing__price {
    font-size: 13px;
  }
  .hero-landing__image {
    order: 1;
  }
  .hero-landing__subtitle {
    order: 2;
  }
  .hero-landing .button, .hero-landing ul {
    order: 3;
  }
}
@media (max-width: 767px) {
  .hero-landing {
    padding: 24px 0;
  }
  .hero-landing__cta-wrap .button {
    min-width: 220px;
  }
  .hero-landing__container {
    padding: 0 16px;
  }
  .hero-landing__image {
    position: static;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 30px;
  }
  .hero-landing__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }
  .hero-landing__content {
    max-width: 100%;
  }
  .hero-landing__content h1 {
    font-size: 34px;
    margin-bottom: -50px;
    z-index: 1;
  }
  .hero-landing__content .hero-landing__subtitle {
    font-size: 16px;
    text-align: right;
    margin: -30px 4% 0 auto;
    z-index: 1;
  }
  .hero-landing__content ul {
    margin-top: 24px;
  }
  .hero-landing__content ul li {
    font-size: 16px;
  }
  .hero-landing__actions, .hero-landing ul {
    order: 3;
  }
  .hero-landing__actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
  }
  .hero-landing__actions .button {
    margin: 0;
  }
  .hero-landing__price {
    top: -50px;
  }
  .hero-landing__image {
    order: 1;
  }
  .hero-landing__subtitle {
    order: 2;
  }
}
.problems {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}
.problems__title {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  color: #000032;
  margin: auto;
  margin-bottom: 16px;
  max-width: 380px;
}
.problems__subtitle {
  font-size: 16px;
  color: #000032;
  margin-bottom: 40px;
  max-width: 412px;
  margin-left: auto;
  margin-right: auto;
}
.problems__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.problems__card {
  background: #fff;
  border: 1px solid #f2f2f2;
  border-radius: 24px;
  padding: 40px;
  text-align: left;
  cursor: default;
  transition: box-shadow 0.2s;
}
@media (min-width: 768px) {
  .problems__card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  }
}
.problems__card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000032;
  margin-bottom: 16px;
}
.problems__icon {
  width: 50px;
  height: 50px;
  background-color: #f0f0ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.problems__pagination {
  display: none;
}
.problems.js-problems .problems__title {
  max-width: 326px;
}
.problems__top {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s ease, transform 0.85s ease;
  will-change: opacity, transform;
}
.problems__top.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.problems__top > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.problems__top.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.problems__top.is-visible > *:nth-child(2) {
  transition-delay: 0.1s;
}
.problems__top.is-visible > *:nth-child(3) {
  transition-delay: 0.2s;
}
@media (prefers-reduced-motion: reduce) {
  .problems__top, .problems__top > * {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
@media only screen and (min-width: 721px) and (max-width: 1080px) {
  .problems {
    padding: 24px 40px;
  }
  .problems__card {
    padding: 24px;
  }
  .problems__title {
    font-size: 24px;
  }
  .problems.js-problems .problems__title {
    max-width: 228px;
  }
  [data-lang="ru"] .problems__subtitle br {
    display: none;
  }
}
@media (max-width: 721px) {
  .problems {
    padding: 24px 16px;
  }
  .problems.bg-silver {
    background-color: #f4f4f4;
  }
  .problems__subtitle {
    margin-bottom: 16px;
  }
  .problems__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 8px;
    padding-bottom: 10px;
    margin-right: -16px;
    padding-right: 16px;
    /* Firefox */
    scrollbar-width: none;
    /* IE і Edge Legacy */
    -ms-overflow-style: none;
  }
  .problems__grid::-webkit-scrollbar {
    display: none;
  }
  .problems__grid::-webkit-scrollbar {
    display: none;
  }
  .problems__card {
    padding: 24px;
    min-width: 95%;
    flex: 0 0 95%;
    scroll-snap-align: start;
  }
  .problems__pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
  }
  .problems__pagination .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #f0f0ff;
    cursor: pointer;
    border: 1px solid;
    transition: background-color 0.3s;
  }
  .problems__pagination .dot.active {
    background-color: #33f;
  }
  [data-lang="ru"] .problems__subtitle br {
    display: none;
  }
}
.approach__container {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
.approach__left {
  flex: 0 0 40%;
  margin-bottom: auto;
}
.approach__left .badge {
  margin-bottom: 20px;
}
.approach__left h2 {
  font-size: 34px;
  font-weight: 800;
  color: #000032;
  margin-bottom: 16px;
}
.approach__left p {
  font-size: 16px;
}
.approach__right {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 12px;
  max-width: 50%;
  scrollbar-width: thin;
  scrollbar-color: #99f transparent;
}
.approach__right::-webkit-scrollbar {
  width: 6px;
}
.approach__right::-webkit-scrollbar-thumb {
  background-color: #99f;
  border-radius: 10px;
}
.approach__item {
  display: flex;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f2f2f2;
}
.approach__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.approach__item h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000032;
  margin-bottom: 16px;
}
.approach__item p {
  margin-bottom: 0;
  max-width: 504px;
}
.approach__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: #f0f0ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1081px) {
  .approach {
    overflow: visible;
  }
  .approach__left {
    position: sticky;
    top: 36px;
  }
}
@media only screen and (min-width: 721px) and (max-width: 1080px) {
  .approach {
    padding: 24px 40px;
  }
  .approach__container {
    padding: 24px;
    gap: 20px;
  }
  .approach__left {
    flex: 0 0 33%;
  }
  .approach__left h2 {
    font-size: 24px;
  }
  .approach__right {
    flex: 0 0 52%;
    max-width: 52%;
    padding-right: 0;
  }
  .approach__item h3 {
    font-size: 18px;
  }
}
@media (max-width: 721px) {
  .approach__item h3 {
    max-width: 225px;
  }
  .approach__container {
    flex-direction: column;
    padding: 24px;
  }
  .approach__right {
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
    max-width: none;
  }
}
.functions {
  padding: 40px 0;
}
.functions__container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}
.functions__left {
  flex: 1 1 50%;
  max-width: 502px;
}
.functions__left .badge {
  margin-bottom: 20px;
}
.functions__left h2 {
  font-size: 34px;
  font-weight: 800;
  color: #000032;
  margin-bottom: 16px;
}
.functions__left p {
  font-size: 16px;
  margin: 24px 0;
  padding-bottom: 24px;
  border-bottom: 1px solid #f2f2f2;
}
.functions__list {
  list-style: none;
  padding: 0;
}
.functions__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #000032;
  margin-bottom: 24px;
}
.functions__list li img {
  width: 24px;
  height: 24px;
}
.functions__right {
  flex: 1 1 45%;
  text-align: center;
}
.functions__right img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 721px) {
  .functions {
    padding: 24px 16px;
    padding-top: 40px;
  }
  .functions__container {
    flex-direction: column;
  }
}
@media only screen and (min-width: 721px) and (max-width: 1080px) {
  .functions {
    padding: 24px 40px;
  }
  .functions__container {
    padding: 0;
  }
  .functions__left {
    max-width: none;
  }
  .functions__left h2 {
    font-size: 24px;
  }
  .functions__right img {
    max-width: 450px !important;
  }
}
.automation {
  padding: 40px 0;
}
.automation__container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}
.automation__left {
  flex: 1 1 50%;
}
.automation__left img {
  max-width: 574px;
  height: auto;
}
.automation__right {
  flex: 1 1 33%;
  max-width: 100%;
}
.automation__right .badge {
  margin-bottom: 20px;
}
.automation__right h2 {
  font-size: 34px;
  font-weight: 800;
  color: #000032;
  margin-bottom: 24px;
  max-width: 388px;
}
.automation__list {
  list-style: none;
  padding: 0;
}
.automation__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #000032;
  margin-bottom: 24px;
}
.automation__list li img {
  width: 24px;
  height: 24px;
}
@media (max-width: 1080px) {
  .automation {
    padding: 24px 16px;
  }
  .automation__container {
    flex-direction: column;
    gap: 40px;
  }
  .automation__left {
    order: 2;
  }
}
@media only screen and (min-width: 721px) and (max-width: 1080px) {
  .automation {
    padding: 24px 40px;
  }
  .automation__container {
    padding: 0;
  }
  .automation__left {
    text-align: center;
  }
  .automation__left img {
    max-width: 450px !important;
  }
}
.services__top {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
}
.services__top h2 {
  font-size: 34px;
  font-weight: 800;
  color: #000032;
  max-width: 298px;
}
.services__top p {
  max-width: 420px;
  margin: 0;
  font-weight: 500;
}
.services__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.services__grid .service-card {
  flex: 1 1 calc(33.33% - 20px);
  background: #fff;
}
.services__grid .services-double {
  display: flex;
  flex: 1 1 calc(66.66% - 60px);
  border-radius: 20px;
  overflow: hidden;
}
.services__grid .services-double .service-card {
  flex: 1;
  border-radius: 0;
}
.services__grid > .service-card p {
  max-width: 333px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  padding-top: 88px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.service-card .badge {
  margin-bottom: 24px;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000032;
  margin-bottom: 16px;
}
.service-card p {
  margin: 0;
}
.service-card.last {
  padding-right: 0;
}
.service-card--image {
  padding: 0;
  padding-top: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 315px;
}
.service-card--image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
.service-card--image.last {
  margin-right: -26px;
  padding-right: 0;
  max-width: 308px;
}
@media (max-width: 991px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 721px) and (max-width: 1080px) {
  .services {
    padding: 24px 40px;
  }
  .services__top {
    padding: 0;
  }
  .services__grid .services-double {
    min-width: 100%;
  }
  .services__grid .service-card {
    padding: 40px 24px;
  }
}
@media (max-width: 721px) {
  .services__top {
    flex-direction: column;
  }
  .services__top h2 {
    max-width: none;
    margin-bottom: 16px;
  }
  .services__top p {
    max-width: none;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .services__grid > .service-card {
    padding: 40px 24px;
  }
  .services__grid > .service-card.seo {
    order: 1;
  }
  .services__grid .services-double {
    flex-direction: column;
  }
  .services__grid .services-double .service-card {
    padding: 40px 24px 0;
  }
  .services__grid .services-double .service-card.service-card--image {
    padding-right: 0;
    padding-bottom: 0;
    padding-top: 8px;
    min-width: 100%;
  }
  .services__grid .services-double .service-card.service-card--image img {
    margin-left: auto;
    max-width: 214px;
  }
  .services__grid .services-double .service-card.service-card--image.last {
    margin-bottom: -32px;
  }
}
.clients {
  padding: 40px 0 80px;
  overflow: hidden;
}
.clients__top {
  text-align: center;
  margin-bottom: 40px;
}
.clients__top .badge {
  margin-bottom: 16px;
}
.clients__top h2 {
  font-size: 34px;
  font-weight: 800;
  color: #000032;
  margin-bottom: 16px;
}
.clients__top p {
  font-size: 16px;
}
.clients__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
  justify-items: center;
}
.client {
  position: relative;
  padding: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border 0.3s, box-shadow 0.3s;
  border: 1px solid transparent;
  max-height: 114px;
  min-width: 304px;
}
.client img {
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.client--with-info {
  cursor: pointer;
}
.client--with-info img {
  height: auto;
  max-height: inherit;
  width: 100%;
}
.client--with-info:hover {
  z-index: 2;
}
.client--with-info:hover img {
  filter: saturate(1);
}
.client--with-info:hover .client__hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.client--with-info.position-10 .client__overlay {
  max-height: 94px;
  margin: auto;
}
.client__hover {
  position: absolute;
  inset: 0;
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  gap: 24px;
  border: 1px solid #33f;
  height: fit-content;
}
.client__hover .client__desc {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.client__hover .client__desc a {
  display: inline-flex;
  align-items: center;
  color: #33f;
  font-weight: 500;
}
.client__hover .client__desc a span {
  margin-left: 6px;
}
.client__hover .client__desc p {
  margin: 0;
}
@media (min-width: 1081px) {
  .clients {
    overflow: visible;
  }
  .client--with-info img {
    filter: saturate(0);
  }
}
@media (max-width: 1080px), only screen and (min-width: 721px) and (max-width: 1366px) and (orientation: landscape) {
  .clients {
    padding: 24px 16px;
    padding-top: 40px;
  }
  .clients__top p {
    max-width: 343px;
    margin: auto;
  }
  .clients__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    justify-items: center;
  }
  .client {
    padding: 8px;
    min-width: auto;
    max-height: none;
  }
  .client--with-info > picture {
    display: none;
  }
  .client__hover {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    padding: 0;
    border: none;
    height: auto;
  }
}
@media (max-width: 720px) {
  .clients__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }
  .client__hover {
    text-align: center;
    color: #666869;
    font-size: 12px;
    min-height: 100%;
  }
  .client__hover .client__desc {
    font-size: 12px;
    margin-top: auto;
  }
  .client__hover .client__desc a {
    justify-content: center;
  }
  .client__hover .client__desc a span img {
    height: 16px;
    width: 16px;
  }
  .client__overlay {
    min-height: 78px;
    display: flex;
    align-items: center;
  }
  .client__overlay img {
    width: auto;
  }
  .client--with-info:nth-child(odd) {
    border-right: 1px solid #f2f2f2;
  }
}
@media only screen and (min-width: 721px) and (max-width: 1080px), only screen and (min-width: 721px) and (max-width: 1366px) and (orientation: landscape) {
  .clients__grid {
    gap: 24px 44px;
  }
  .client--with-info img {
    filter: none;
    max-width: 220px;
    margin: auto;
  }
  .client--with-info.position-1 .client__overlay {
    max-height: 90px;
    min-width: 200px;
  }
  .client--with-info.position-6 .client__overlay {
    max-height: 100px;
  }
  .client--with-info.position-6 .client__overlay img {
    max-width: 268px;
  }
  .client--with-info.position-7 .client__overlay {
    max-height: 100px;
  }
  .client--with-info.position-7 .client__overlay img {
    max-width: 268px;
  }
  .client--with-info.position-9 .client__overlay {
    max-height: 92px;
  }
  .client--with-info.position-9 .client__overlay img {
    max-width: 248px;
  }
  .client--with-info.position-10 .client__overlay {
    max-height: 93px;
  }
  .client--with-info.position-10 .client__overlay img {
    max-width: 250px;
  }
  .client--with-info.position-12 .client__overlay {
    max-height: 94px;
  }
  .client--with-info.position-12 .client__overlay img {
    max-width: 250px;
  }
  .client--with-info.position-13 .client__overlay {
    max-height: 94px;
  }
  .client--with-info.position-13 .client__overlay img {
    max-width: 252px;
  }
  .client--with-info.position-14 .client__overlay {
    max-height: 96px;
  }
  .client--with-info.position-14 .client__overlay img {
    max-width: 208px;
  }
}
@media only screen and (min-width: 721px) and (max-width: 1080px), only screen and (min-width: 721px) and (max-width: 1366px) and (orientation: landscape) {
  .clients {
    padding: 24px 40px;
  }
  .clients .container {
    max-width: 640px;
  }
  .clients__top h2 {
    font-size: 24px;
  }
  .clients .client__hover {
    text-align: center;
    gap: 8px;
  }
  .clients .client__hover .client__desc p {
    color: #666869;
    font-size: 12px;
  }
  .clients .client__hover .client__desc a {
    font-size: 12px;
    text-align: center;
    justify-content: center;
  }
  .clients .client__hover .client__desc a span img {
    max-height: 16px;
    max-width: 16px;
  }
  .clients .client__overlay {
    display: flex;
    max-height: 80px;
    min-height: 80px;
  }
}
.cta-banner {
  background: url('/themes/basic/images/356/cta-bg.webp') no-repeat center/cover;
  padding: 120px 0;
  display: flex;
  justify-content: center;
}
.cta-banner__inner {
  background: #fff;
  border-radius: 32px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 888px;
  width: 100%;
}
.cta-banner__inner h2 {
  font-size: 34px;
  font-weight: 700;
  color: #000032;
  margin: 0;
  margin-bottom: 24px;
}
@media only screen and (min-width: 721px) and (max-width: 1080px) {
  .cta-banner {
    padding: 40px;
  }
  .cta-banner__inner {
    max-width: 468px;
    width: 100%;
  }
}
@media (max-width: 721px) {
  .cta-banner {
    padding: 24px 16px;
  }
  .cta-banner__inner {
    padding: 40px 20px;
  }
}
.pricing {
  padding: 40px 0;
  background-color: #f4f4f4;
}
.pricing__top {
  text-align: center;
  margin-bottom: 44px;
}
.pricing__top h2 {
  font-size: 34px;
  font-weight: 800;
}
.pricing__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.pricing .pricing__pagination {
  display: none;
}
.pricing-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid transparent;
  position: relative;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: 0.3s;
  font-size: 20px;
  margin-bottom: auto;
}
.pricing-card h3 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 24px;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  padding-top: 16px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid #f2f2f2;
}
.pricing-card ul li {
  font-size: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f2f2f2;
}
.pricing-card ul li strong {
  font-weight: 700;
}
.pricing-card .term, .pricing-card .price {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}
.pricing-card .term span, .pricing-card .price span {
  color: #33f;
}
.pricing-card .price {
  margin-bottom: 40px;
}
.pricing-card .note {
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid #f2f2f2;
  border-top: 1px solid #f2f2f2;
  font-size: 16px;
  color: #33f;
  font-weight: 700;
}
.pricing-card .desc {
  margin-bottom: 53px;
  padding-top: 16px;
  font-size: 16px;
}
.pricing-card .button {
  margin-top: auto;
}
.pricing-card.popular {
  border: 1px solid rgba(51, 51, 255, 1);
  min-height: 100%;
}
.pricing-card.popular h3 {
  color: #33f;
}
.pricing-card.popular .label-popular {
  background: #ffdcd7;
  color: #f7553c;
  font-size: 16px;
  padding: 8px 24px;
  border-radius: 30px;
  position: absolute;
  top: -20px;
  transform: translateX(-50%);
  left: 50%;
}
.pricing-card.popular .term {
  margin-top: 24px;
}
.pricing-card:first-child {
  margin-bottom: 0;
}
.pricing-card:hover {
  box-shadow: 0 0 6.6px 0 rgba(51, 51, 255, 0.28);
}
@media (min-width: 1080px) {
  .pricing {
    overflow: visible;
  }
  .pricing .pricing-card.unique {
    position: sticky;
    top: 8px;
  }
}
@media only screen and (min-width: 721px) and (max-width: 1080px) {
  .pricing {
    padding: 24px 40px;
  }
  .pricing__cards {
    margin-right: -20px;
    margin-top: 24px;
    display: flex;
    padding-top: 20px;
    padding-bottom: 16px;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    /* Firefox */
    scrollbar-width: none;
    /* IE і Edge Legacy */
    -ms-overflow-style: none;
  }
  .pricing__cards::-webkit-scrollbar {
    display: none;
  }
  .pricing__cards .pricing-card {
    padding: 40px 24px;
    font-size: 16px;
    min-width: calc(50% - 10px);
    scroll-snap-align: start;
  }
  .pricing__cards .pricing-card.popular {
    padding: 24px;
  }
  .pricing__cards .pricing-card.popular ul {
    min-height: 424px;
  }
  .pricing__cards .pricing-card:hover {
    box-shadow: none;
  }
  .pricing .pricing-card.unique .price {
    margin-top: 24px;
  }
  .pricing .pricing__pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
  }
  .pricing .pricing__pagination .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #f0f0ff;
    cursor: pointer;
    border: 1px solid;
    transition: background-color 0.3s;
  }
  .pricing .pricing__pagination .dot.active {
    background-color: #33f;
  }
}
@media (max-width: 721px) {
  .pricing {
    padding: 24px 16px;
  }
  .pricing__top {
    margin-bottom: 24px;
  }
  .pricing__cards {
    margin-right: -20px;
    margin-top: 24px;
    display: flex;
    padding-top: 20px;
    padding-bottom: 16px;
    padding-right: 20px;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    /* Firefox */
    scrollbar-width: none;
    /* IE і Edge Legacy */
    -ms-overflow-style: none;
  }
  .pricing__cards::-webkit-scrollbar {
    display: none;
  }
  .pricing__cards .pricing-card {
    padding: 40px 24px;
    font-size: 16px;
    min-width: calc(100% - 8px);
    scroll-snap-align: start;
  }
  .pricing__cards .pricing-card.popular {
    padding: 24px;
  }
  .pricing__cards .pricing-card:hover {
    box-shadow: none;
  }
  .pricing .pricing-card.unique .price {
    margin-top: 24px;
  }
  .pricing .pricing__pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
  }
  .pricing .pricing__pagination .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #f0f0ff;
    cursor: pointer;
    border: 1px solid;
    transition: background-color 0.3s;
  }
  .pricing .pricing__pagination .dot.active {
    background-color: #33f;
  }
}
.process {
  padding: 40px 20px;
}
.process__top {
  text-align: center;
}
.process .container {
  max-width: 1120px;
  width: 100%;
}
.process .process-title {
  font-size: 34px;
  font-weight: 800;
  color: #000032;
  margin: auto;
  margin-bottom: 16px;
  max-width: 620px;
  text-align: center;
}
.process .process-subtitle {
  font-size: 16px;
  margin-bottom: 34px;
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.process .process-steps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.process .process-steps__s-svg, .process .process-steps__m-svg, .process .process-steps__b-svg {
  position: absolute;
  top: -58px;
  left: 0;
  z-index: -1;
  max-width: 100%;
}
.process .process-steps__s-svg, .process .process-steps__m-svg {
  display: none;
}
.process .process-steps .step {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(51, 51, 255, 0.3);
  position: relative;
  margin: auto;
  transition: 0.6s;
}
.process .process-steps .step[data-step="1"] {
  margin-top: 94px;
  margin-right: 25%;
}
@media (min-width: 769px) {
  .process .process-steps .step[data-step="1"] {
    max-width: 520px;
  }
}
.process .process-steps .step[data-step="2"] {
  margin-top: 250px;
  margin-left: 20%;
}
.process .process-steps .step[data-step="3"] {
  margin-top: 134px;
  margin-right: 25%;
}
.process .process-steps .step[data-step="4"] {
  margin-top: 197px;
  margin-left: 18%;
  max-width: 524px;
}
.process .process-steps .step[data-step="5"] {
  margin-top: 236px;
  margin-right: 17%;
}
.process .process-steps .step.active {
  border-color: #33f;
  box-shadow: 0 0 8px 4px rgba(51, 51, 255, 0.12);
}
.process .process-steps .step h3 {
  font-size: 22px;
  font-weight: 600;
  color: #000032;
  margin-bottom: 16px;
}
.process .process-steps .step ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 769px) {
  .process .process-steps .step ul li.bold {
    font-size: 20px;
    font-weight: 500;
  }
}
.process .process-cta {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 40px;
  margin-right: 33%;
  margin-left: auto;
}
.process #movingBlock {
  position: absolute;
  color: white;
  border-radius: 8px;
  height: 120px;
  width: 120px;
  transition: none !important;
  will-change: transform;
  transform: translate3d(-50%, -50%, 0);
  pointer-events: none;
}
.process #movingBlock svg {
  height: 120px;
  width: 120px;
}
[data-lang="ru"] .process .process-steps .step[data-step="1"] {
  margin-right: 18%;
}
[data-lang="ru"] .process .process-steps .step[data-step="2"] {
  margin-top: 189px;
  margin-left: 15%;
}
[data-lang="ru"] .process .process-steps .step[data-step="3"] {
  margin-top: 158px;
  margin-right: 25%;
}
[data-lang="ru"] .process .process-steps .step[data-step="4"] {
  margin-top: 209px;
}
[data-lang="ru"] .process .process-steps .step[data-step="5"] {
  margin-top: 225px;
}
@media only screen and (min-width: 721px) and (max-width: 1080px) {
  .process {
    padding: 20px 40px;
  }
  .process .process-title {
    font-size: 24px;
    max-width: 346px;
  }
  .process .process-subtitle {
    max-width: 346px;
  }
  .process .process-steps__s-svg, .process .process-steps__b-svg {
    display: none;
  }
  .process .process-steps__m-svg {
    display: block;
    top: 32px;
  }
  .process .process-steps .step {
    padding: 24px;
    max-width: 412px;
  }
  .process .process-steps .step[data-step="1"] {
    margin-top: 64px;
    margin-right: 0;
  }
  .process .process-steps .step[data-step="2"] {
    margin-top: 308px;
    margin-left: 0;
  }
  .process .process-steps .step[data-step="3"] {
    margin-top: 176px;
    margin-right: 0;
  }
  .process .process-steps .step[data-step="4"] {
    margin-top: 164px;
    margin-left: 0;
    max-width: 400px;
  }
  .process .process-steps .step[data-step="5"] {
    margin-top: 254px;
    margin-right: 0;
  }
  .process .process-steps .process-cta {
    margin-right: 33%;
  }
  .process #movingBlock {
    height: 76px;
    width: 76px;
    transition: none !important;
    will-change: transform;
    transform: translate3d(-50%, -50%, 0);
  }
  .process #movingBlock svg {
    height: 76px;
    width: 76px;
  }
}
@media (max-width: 720px) {
  .process {
    padding: 24px 16px;
  }
  .process .process-subtitle {
    max-width: 343px;
    margin-left: auto;
    margin-right: auto;
  }
  .process .process-steps__s-svg {
    display: block;
    margin-top: 174px;
    top: 0;
  }
  .process .process-steps__b-svg, .process .process-steps__m-svg {
    display: none;
  }
  .process .process-steps .step {
    padding: 24px;
    max-width: 292px;
  }
  .process .process-steps .step[data-step="1"] {
    margin-top: 0;
    margin-right: -6px;
  }
  .process .process-steps .step[data-step="2"] {
    margin-top: 72px;
    margin-left: -4px;
  }
  .process .process-steps .step[data-step="3"] {
    margin-top: 84px;
    margin-right: -6px;
  }
  .process .process-steps .step[data-step="4"] {
    margin-top: 66px;
    margin-left: -4px;
    max-width: 294px;
  }
  .process .process-steps .step[data-step="5"] {
    margin-top: 82px;
    margin-right: 5px;
  }
  .process .process-cta {
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
  }
  .process .process-cta .button {
    min-width: auto;
  }
  .process #movingBlock {
    height: 38px;
    width: 38px;
    transition: none !important;
    will-change: transform;
    transform: translate3d(-50%, -50%, 0);
  }
  .process #movingBlock svg {
    height: 38px;
    width: 38px;
  }
  [data-lang="ru"] .process .process-steps__s-svg, [data-lang="en"] .process .process-steps__s-svg {
    margin-top: 208px;
  }
  [data-lang="ru"] .process .process-steps .step, [data-lang="en"] .process .process-steps .step {
    max-width: 292px;
  }
  [data-lang="ru"] .process .process-steps .step[data-step="1"], [data-lang="en"] .process .process-steps .step[data-step="1"] {
    margin-top: 0;
    margin-right: -6px;
  }
  [data-lang="ru"] .process .process-steps .step[data-step="2"], [data-lang="en"] .process .process-steps .step[data-step="2"] {
    margin-top: 72px;
    margin-left: -4px;
  }
  [data-lang="ru"] .process .process-steps .step[data-step="3"], [data-lang="en"] .process .process-steps .step[data-step="3"] {
    margin-top: 84px;
    margin-right: -6px;
  }
  [data-lang="ru"] .process .process-steps .step[data-step="4"], [data-lang="en"] .process .process-steps .step[data-step="4"] {
    margin-top: 50px;
    margin-left: -4px;
  }
  [data-lang="ru"] .process .process-steps .step[data-step="5"], [data-lang="en"] .process .process-steps .step[data-step="5"] {
    margin-top: 82px;
    margin-right: 5px;
  }
  [data-lang="en"] .process .process-steps__s-svg {
    margin-top: 164px;
  }
  [data-lang="en"] .process .process-steps .step[data-step="4"] {
    margin-top: 104px;
    margin-left: -4px;
  }
  [data-lang="en"] .process .process-steps .step[data-step="5"] {
    margin-top: 124px;
    margin-right: 5px;
  }
}
.faq {
  padding: 40px 0;
  background-color: #f4f4f4;
}
.faq__top {
  text-align: center;
  margin-bottom: 24px;
}
.faq__top .badge {
  margin-bottom: 24px;
  display: flex;
  margin-right: auto;
}
.faq__top h2 {
  font-size: 34px;
  font-weight: 800;
  color: #000032;
  margin: 0;
  text-align: left;
  max-width: 600px;
}
.faq__list {
  background: #fff;
  border-radius: 20px;
  padding: 0 40px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 40px 0;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 22px;
  color: #000032;
  transition: color 0.3s ease;
}
.faq-item__answer {
  display: none;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: #000032;
  padding-top: 40px;
  max-width: 760px;
}
.faq-item.active .faq-item__question {
  color: #33f;
}
.faq-item.active .faq-item__answer {
  display: block;
}
.faq-item.active .faq-icon span:last-child {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  flex-shrink: 0;
}
.faq-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #666869;
  transition: transform 0.3s ease;
}
.faq-icon span:first-child {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq-icon span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}
@media only screen and (min-width: 721px) and (max-width: 1080px) {
  .faq {
    padding: 24px 40px;
  }
  .faq__top h2 {
    font-size: 24px;
  }
}
@media (max-width: 721px) {
  .faq-item {
    padding: 24px 0;
  }
  .faq {
    padding: 24px 16px;
  }
  .faq__list {
    padding: 24px;
  }
  .faq .faq__top h2 {
    font-size: 34px;
    text-align: left;
  }
  .faq .faq__top .badge {
    display: flex;
    margin-right: auto;
  }
  .faq-item__answer {
    padding-top: 24px;
  }
}
.reviews {
  padding: 40px 0 80px;
  background-color: #f4f4f4;
  --rv-dur: 0.4s;
  --rv-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reviews .badge {
  margin-bottom: 24px;
}
.reviews h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: #000032;
  display: flex;
  justify-content: space-between;
}
.reviews__list {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(51, 51, 255, 0.15);
}
.reviews__list .button2 {
  margin: auto;
  margin-top: 40px;
}
.reviews__card {
  display: flex;
  gap: 16px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #f2f2f2;
  transition: opacity var(--rv-dur) var(--rv-ease), transform var(--rv-dur) var(--rv-ease), max-height var(--rv-dur) var(--rv-ease), margin var(--rv-dur) var(--rv-ease), padding var(--rv-dur) var(--rv-ease), border-color var(--rv-dur) var(--rv-ease);
  will-change: opacity, transform, max-height;
}
.reviews__card p {
  color: #000032;
  margin-left: auto;
  margin-bottom: 12px;
}
.reviews__link {
  color: #33f;
  border-bottom: 1px solid;
  transition: 0.3s;
}
.reviews__link:hover {
  border-bottom-color: transparent;
}
.reviews__list .reviews__card:nth-child(3) {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.reviews__list .reviews__card:nth-child(n + 4) {
  max-height: 0;
  opacity: 0;
  transform: translateY(8px);
  overflow: hidden;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom-color: transparent;
}
.reviews__list.all .reviews__card:nth-child(n + 4) {
  max-height: 1000px;
  opacity: 1;
  transform: none;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom-color: #f2f2f2;
}
.reviews__list.all .reviews__card:nth-child(3) {
  border-bottom: 1px solid #f2f2f2;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
.reviews__list.all .reviews__card:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.reviews__list.all .reviews__card:nth-child(4) {
  transition-delay: 0.02s;
}
.reviews__list.all .reviews__card:nth-child(5) {
  transition-delay: 0.06s;
}
.reviews__list.all .reviews__card:nth-child(6) {
  transition-delay: 0.1s;
}
.reviews__list.all .reviews__card:nth-child(7) {
  transition-delay: 0.14s;
}
.reviews__list.all .reviews__card:nth-child(8) {
  transition-delay: 0.18s;
}
.reviews__list.all .reviews__card:nth-child(9) {
  transition-delay: 0.22s;
}
.reviews__footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 138px;
}
.reviews .close-site {
  color: #666869;
  min-width: 100%;
}
.reviews__logo {
  text-align: center;
}
.reviews__logo img {
  max-width: 100%;
  max-height: 56px;
}
.reviews__author {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  color: #000032;
  margin-bottom: 8px;
}
.reviews__author .reviews__avatar {
  background: rgba(51, 51, 255, 0.1);
  color: #33f;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 10px;
  flex: 0 0 48px;
}
.reviews__stars {
  margin-bottom: 8px;
}
.reviews__stars .star {
  font-size: 24px;
  line-height: 1;
  color: rgba(51, 51, 255, 0.3);
}
.reviews__stars .star.active {
  color: #33f;
}
.reviews__arrow {
  background: none;
  border: none;
  font-size: 24px;
  color: #000032;
  padding: 8px 16px;
  cursor: pointer;
}
.reviews__arrow--prev {
  margin-right: 12px;
}
.reviews__arrow--next {
  margin-left: 12px;
}
@media only screen and (min-width: 721px) and (max-width: 1080px) {
  .reviews {
    padding: 24px 40px;
  }
  .reviews h2 {
    font-size: 24px;
  }
}
@media (max-width: 721px) {
  .reviews {
    padding: 24px 16px;
  }
  .reviews h2 {
    text-align: left;
  }
  .reviews h2 div {
    display: none;
  }
  .reviews__list {
    padding: 24px;
  }
  .reviews__list .button2 {
    margin-top: 24px;
  }
  .reviews__card {
    flex-direction: column;
    margin-bottom: 24px;
    padding-bottom: 24px;
    gap: 8px;
    position: relative;
  }
  .reviews__stars {
    position: absolute;
    top: 4px;
    right: 0;
    margin-bottom: 0;
  }
  .reviews__link {
    font-size: 12px;
  }
  .reviews__footer {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 140px;
  }
  .reviews__list.all .reviews__card:nth-child(n + 4) {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
  .reviews__list.all .reviews__card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 722px) {
  .reviews__card.position-1 .reviews__logo {
    margin-top: 4px;
  }
  .reviews__card.position-3 .reviews__logo {
    margin-top: 10px;
  }
  .reviews__card.position-4 .reviews__logo {
    margin-top: 8px;
  }
  .reviews__card.position-6 .reviews__logo {
    margin-top: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reviews__card {
    transition: none;
  }
}
.reviews__slider {
  scroll-behavior: smooth;
}
.footer {
  padding: 40px 0;
  background-color: #fff;
}
.footer__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
.footer__info {
  flex: 1 1 40%;
  max-width: 495px;
}
.footer__info p {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 500;
  color: #000032;
}
.footer__info .footer__help {
  margin-bottom: 24px;
  font-size: 18px;
}
.footer__info .footer__note {
  margin-top: 80px;
}
.footer__info .footer__city {
  font-size: 30px;
  text-transform: uppercase;
}
.footer__form {
  flex: 1 1 50%;
  max-width: 564px;
}
.footer__form-description {
  margin-bottom: 24px;
  font-size: 20px;
  color: #000032;
}
.footer__form-description span {
  color: #33f;
  font-weight: 600;
}
.footer__form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 515px;
}
.footer__form form input, .footer__form form textarea {
  font-size: 18px;
  padding: 16px;
  border: none;
  border-bottom: 1px solid #666869;
  outline: none;
  resize: none;
  width: 100%;
  border-radius: 0;
}
.footer__form form input:focus, .footer__form form textarea:focus {
  border-color: #33f;
}
.footer__form form textarea {
  height: 50px;
}
.footer__form form .popup-add-btn {
  margin-right: auto;
}
.footer__form form .popup-add-btn input {
  border-radius: 7px;
}
.footer__form form .button {
  align-self: start;
  margin-top: 8px;
}
.footer__bottom {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #f4f4f4;
  gap: 10px;
}
.footer__notemob {
  display: none;
  margin-bottom: 16px;
}
.footer__phone {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__messengers {
  display: flex;
  gap: 16px;
}
.footer__messenger {
  width: 18px;
  height: 18px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.footer__messenger:hover {
  opacity: 1;
}
.footer__messenger--tg {
  background-image: url('/themes/basic/images/356/telegram.svg');
}
.footer__messenger--viber {
  background-image: url('/themes/basic/images/356/viber.svg');
}
.footer .popup-add-btn {
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer .popup-messenger {
  width: 44px;
  height: 44px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 8px;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
  margin-top: 8px;
}
.footer .popup-messenger:hover {
  opacity: 1;
  transform: scale(1.05);
}
.footer .popup-messenger--tg {
  background-image: url('/themes/basic/images/356/telegram.svg');
}
.footer .popup-messenger--viber {
  background-image: url('/themes/basic/images/356/viber.svg');
}
@media (max-width: 1080px) {
  .footer {
    padding: 24px 16px;
  }
  .footer__content {
    flex-direction: column-reverse;
  }
  .footer__info {
    order: 1;
    min-width: 100%;
    max-width: none;
  }
  .footer__info .footer__city {
    font-size: 28px;
  }
  .footer__info p {
    font-size: 18px;
  }
  .footer__info .footer__help {
    font-size: 14px;
  }
  .footer__note {
    display: none;
  }
  .footer__notemob {
    display: block;
    font-size: 19px;
    font-weight: 600;
  }
  .footer__form {
    order: 2;
    min-width: 100%;
    max-width: none;
    margin-right: 0;
  }
  .footer__form form .popup-add-btn {
    margin-right: 0;
    gap: 16px;
  }
  .footer__form form .popup-add-btn .button {
    min-width: 220px;
  }
  .footer__form-description {
    font-size: 16px;
  }
  .footer__form-description span {
    font-size: 16px;
  }
  .footer__copy {
    font-size: 14px;
  }
}
@media only screen and (min-width: 721px) and (max-width: 1080px) {
  .footer {
    padding: 24px 40px;
  }
  .footer__form form {
    max-width: none;
  }
  .footer__info {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
  }
  .footer__info .footer__city, .footer__info .footer__help {
    grid-column: 1;
  }
  .footer__info .footer__phone {
    grid-column: 2;
    grid-row: 1;
  }
  .footer__info .footer__address {
    grid-column: 2;
    grid-row: 2;
  }
  .footer__info .footer__email {
    grid-column: 2;
    grid-row: 3;
  }
}
.popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup.hidden {
  display: none;
}
.popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.popup__content {
  position: relative;
  background: #fff;
  padding: 24px 16px;
  width: 100%;
  height: 100%;
  z-index: 1001;
  color: #000032;
}
.popup__close {
  position: absolute;
  top: 14px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #000032;
}
.popup__phone {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.popup__phone a {
  text-decoration: none;
}
.popup h2 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 16px;
}
.popup p {
  margin-bottom: 40px;
}
.popup .blue {
  color: #33f;
}
.popup form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.popup form input, .popup form textarea {
  font-size: 18px;
  padding: 13px 16px;
  border: none;
  border-bottom: 1px solid #666869;
  outline: none;
  resize: none;
  width: 100%;
}
.popup form textarea {
  height: 50px;
}
.popup form .button {
  color: #fff;
  min-width: 260px;
  width: auto;
  padding: 16px 24px;
  margin: auto;
  display: flex;
}
@media (max-width: 768px) {
  .popup form .button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
@media (min-width: 769px) {
  .popup__phone {
    margin-bottom: 54px;
  }
  .popup h2, .popup p {
    max-width: 500px;
    margin: auto;
    margin-bottom: 24px;
    text-align: left;
  }
  .popup__content {
    padding: 40px;
    max-width: 846px;
    height: auto;
    border-radius: 24px;
    max-height: 100vh;
    overflow-y: scroll;
  }
  .popup__content .form-wrapper {
    max-width: 520px;
    margin: auto;
  }
  .popup__content .form-wrapper .popup-add-btn {
    margin-top: 40px;
  }
  .popup .button {
    max-width: 260px;
    justify-content: center;
  }
  .popup__close {
    top: 34px;
    right: 40px;
  }
}
@media only screen and (min-width: 721px) and (max-width: 1080px) {
  .popup__content {
    padding: 24px;
    max-width: 672px;
  }
  .popup__content h2, .popup__content p {
    max-width: none;
  }
  .popup__content .form-wrapper {
    max-width: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) {
  .popup__content {
    padding: 24px;
    max-width: 672px;
  }
  .popup__content h2, .popup__content p {
    max-width: none;
  }
  .popup__content .form-wrapper {
    max-width: none;
  }
}
.thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: url('/themes/basic/images/356/bg-thanks.png') center/cover no-repeat;
  padding: 16px;
}
.thank-you__content {
  border-radius: 24px;
  padding: 40px 16px;
  text-align: center;
  max-width: 846px;
  width: 100%;
  background: linear-gradient(239.68deg, rgba(51, 51, 255, 0.5) 61.16%, rgba(255, 255, 255, 0) 85.7%);
  backdrop-filter: blur(4px);
}
.thank-you__content::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff, #33f);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.thank-you__tag {
  display: inline-block;
  padding: 10px 24px;
  background: #fff;
  color: #33f;
  font-weight: 600;
  border-radius: 40px;
  margin-bottom: 24px;
}
.thank-you__title {
  font-size: 34px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 40px;
}
.thank-you__icon {
  margin-bottom: 40px;
}
.thank-you__icon svg {
  width: 70px;
  height: 70px;
  stroke: #fff;
}
.thank-you__text {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 40px;
}
.thank-you__button {
  display: inline-block;
  background: #fff;
  color: #33f;
  padding: 13px 24px;
  border-radius: 7px;
  font-weight: 600;
  transition: background 0.3s;
  width: 100%;
  max-width: 332px;
}
.thank-you__button:hover {
  background: #e6e6e6;
}
@media (min-width: 768px) {
  .thank-you__title {
    font-size: 32px;
  }
  .thank-you__text {
    font-size: 18px;
  }
  .thank-you__content {
    padding: 100px 200px;
  }
}
/* щоб не було артефактів за межами контейнера */
.functions__right, .automation__left {
  overflow: hidden;
  max-width: 100%;
}
/* стартовий стан: трохи менше + нижче */
.functions__right img, .automation__left img {
  opacity: 0;
  transform: scale(0.03) translateY(16px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  transform-origin: center center;
  will-change: opacity, transform;
  backface-visibility: hidden;
  max-width: 100%;
}
/* коли показуємо */
.functions__right img.is-visible, .automation__left img.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}
/* каскад (опційно) */
.functions__right img:nth-of-type(2), .automation__left img:nth-of-type(2) {
  transition-delay: 0.1s;
}
.functions__right img:nth-of-type(3), .automation__left img:nth-of-type(3) {
  transition-delay: 0.2s;
}
@media (prefers-reduced-motion: reduce) {
  .functions__right img, .automation__left img {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.problems__grid .problems__card {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}
.problems__grid .problems__card.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .problems__grid .problems__card {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/* стартовий стан */
.functions__left .badge, .functions__left h2, .functions__left p, .automation__right .badge, .automation__right h2 {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
/* коли секція готова — показуємо дітей */
.functions__left.__text-visible .badge, .functions__left.__text-visible h2, .functions__left.__text-visible p, .automation__right.__text-visible .badge, .automation__right.__text-visible h2 {
  opacity: 1;
  transform: none;
}
/* легкий стагер усередині кожної секції */
.functions__left.__text-visible .badge {
  transition-delay: 0s;
}
.functions__left.__text-visible h2 {
  transition-delay: 0.08s;
}
.functions__left.__text-visible p {
  transition-delay: 0.16s;
}
.automation__right.__text-visible .badge {
  transition-delay: 0s;
}
.automation__right.__text-visible h2 {
  transition-delay: 0.08s;
}
@media (prefers-reduced-motion: reduce) {
  .functions__left .badge, .functions__left h2, .functions__left p, .automation__right .badge, .automation__right h2 {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
ul.functions__list li, ul.automation__list li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}
ul.functions__list li.is-visible, ul.automation__list li.is-visible {
  opacity: 1;
  transform: none;
}
/* трохи більша затримка для плавного каскаду */
ul.functions__list li:nth-child(1), ul.automation__list li:nth-child(1) {
  transition-delay: 0s;
}
ul.functions__list li:nth-child(2), ul.automation__list li:nth-child(2) {
  transition-delay: 0.08s;
}
ul.functions__list li:nth-child(3), ul.automation__list li:nth-child(3) {
  transition-delay: 0.13s;
}
ul.functions__list li:nth-child(4), ul.automation__list li:nth-child(4) {
  transition-delay: 0.21s;
}
@media (prefers-reduced-motion: reduce) {
  ul.functions__list li, ul.automation__list li {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (max-width: 721px) {
  .js-problems-grid .problems__card:first-child, .pricing__cards .pricing-card:first-child {
    animation: moveIcon 5s ease-in-out infinite;
  }
}
@keyframes moveIcon {
  0%, 90%, 100% {
    transform: translateX(0);
  }
  93% {
    transform: translateX(-8px);
  }
  96% {
    transform: translateX(8px);
  }
}
