@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-extrabold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Commons";
  src: url("../fonts/TTCommons-DemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-accent: #d72528;
  --color-dark: #161616;
  --color-light: #ffffff;
  --color-gray-10: #f1f1f1;
  --color-gray-20: #d3d3d3;
  --color-gray-30: #878787;
  --color-bg: #f8f8f8;
  --font-family-base: "Montserrat", sans-serif;
  --font-family-accent: "Unbounded", sans-serif;
  --font-family-bold: "TT Commons", sans-serif;
  --container-width: 80rem;
  --container-padding-x: 1rem;
  --transition-duration: 0.2s;
}
@media (width <= 47.99875rem) {
  :root {
    --container-padding-x: 1.5625rem;
  }
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
  width: 100%;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

html.is-lock {
  overflow: hidden;
}

body {
  font-size: clamp(0.875rem, 0.7654494382rem + 0.4494382022vw, 1.125rem);
  font-family: var(--font-family-base);
  display: flex;
  flex-direction: column;
  color: var(--color-dark);
  overflow-x: hidden;
  line-height: 1.6;
  background-color: var(--color-bg);
}

main {
  flex-grow: 1;
}

h1,
strong {
  font-weight: 500;
}

h1 .h1,
h2 .h2,
h3 .h3,
h4 .h4,
h5 .h5,
h6 .h6 {
  font-family: var(--font-family-accent);
  color: var(--color-dark);
  font-weight: 500;
}

h3,
h4 {
  font-weight: 500;
}

.title--h1 {
  font-size: clamp(1.875rem, 1.1903089888rem + 2.808988764vw, 3.4375rem);
  font-family: var(--font-family-accent);
  font-weight: 400;
  color: var(--color-accent);
  line-height: 1.3;
}

.title--h2 {
  font-size: clamp(1.875rem, 1.1903089888rem + 2.808988764vw, 3.4375rem);
  font-family: var(--font-family-accent);
  font-weight: 400;
  line-height: 1.3;
}

.bold {
  font-weight: 500;
}

a,
button,
label,
input,
textarea,
select,
svg * {
  transition-duration: var(--transition-duration);
}

a {
  color: inherit;
}
a[class] {
  text-decoration: none;
}
a :focus-visible {
  outline: 0.125rem dashed var(--color-gray-20);
  outline-offset: 0.25rem;
  transition-duration: 0s !important;
}

a,
button {
  background: none;
}
a[aria-label],
button[aria-label] {
  position: relative;
}
a[aria-label]::before,
button[aria-label]::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 2.75rem;
  height: 2.75rem;
  content: "";
}

.mt-60 {
  margin-top: 4.0625rem;
}

.icon {
  display: inline-flex;
  align-items: center;
  column-gap: 0.3125rem;
}
.icon::after {
  --size: 1.25rem;
  width: var(--size);
  height: var(--size);
  content: "";
  flex-shrink: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.icon--arrow::after {
  background-image: url("../../../assets/images/icons/arrow-45.svg");
}

.logo {
  max-width: 18.4375rem;
}
@media (width <= 90.06125rem) {
  .logo__desktop {
    display: contents;
  }
}
@media (width > 90.06125rem) {
  .logo__mobile {
    display: contents;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 0.0625rem solid var(--color-gray-20);
  background-color: var(--color-light);
  animation-name: scrolling-header;
  animation-fill-mode: both;
  animation-timeline: scroll();
  animation-range: 6.25rem 12.5rem;
}
@keyframes scrolling-header {
  to {
    box-shadow: 0 0 1rem 0 var(--color-dark-gray);
  }
}
.header__body {
  padding-top: 0.625rem;
  padding-bottom: 0.875rem;
}
.header__body-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1rem;
}
.header__overlay {
  background-color: #fff;
}
@media (width > 47.99875rem) {
  .header__overlay {
    display: contents;
  }
}
@media (width <= 63.99875rem) {
  .header__overlay {
    margin-left: auto;
    position: fixed;
    inset: 0;
    padding: 0.0625rem;
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
    padding: 1rem;
    justify-content: center;
  }
  .header__overlay:not(.is-active) {
    opacity: 0;
    visibility: hidden;
    translate: 100%;
  }
  .header__overlay.is-active .submenu {
    display: none;
  }
}
.header__menu-list {
  display: flex;
  align-items: center;
  column-gap: 1.875rem;
}
@media (width <= 47.99875rem) {
  .header__menu-list {
    flex-direction: column;
    row-gap: 1rem;
  }
}
.header__menu-link {
  padding: 0rem 0.3125rem;
  font-weight: 400;
  font-size: 0.875rem;
}
.header__menu-link.is-active {
  color: var(--color-accent);
  font-weight: 500;
  pointer-events: none;
}
.header__menu-link:hover {
  color: var(--color-accent);
}
.header__contact-us-link {
  max-width: 7.25rem;
  padding: 0.5rem 1.25rem;
}
@media (width <= 47.99875rem) {
  .header__contact-us-link {
    width: 100%;
    max-width: 6.25rem;
    align-self: center;
    margin-left: auto;
  }
}

.button {
  display: inline-flex;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--color-light);
  white-space: nowrap;
  text-align: center;
  border: var(--border);
  border: 0.125rem solid transparent;
}
@media (any-hover: hover) {
  .button:hover {
    color: var(--color-accent);
    background: var(--color-white);
    border: 0.125rem solid var(--color-accent);
  }
}
@media (any-hover: none) {
  .button:active {
    color: var(--color-accent);
    background: var(--color-white);
    border: 0.125rem solid var(--color-accent);
  }
}
.button--accent {
  font-weight: 500;
  background-color: var(--color-accent);
  border-radius: 0.625rem;
}
.button-arrow {
  font-size: clamp(1rem, 0.8904494382rem + 0.4494382022vw, 1.25rem);
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: var(--color-dark);
  text-decoration: none;
  transition: color 0.3s;
  gap: 0.625rem;
}
.button-arrow__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
  transition: fill 0.3s;
}
.button-arrow:hover {
  color: var(--color-accent);
}
.button-arrow:hover .button-arrow__icon {
  fill: currentColor;
}
.button-arrow--news {
  font-size: clamp(1rem, 0.8904494382rem + 0.4494382022vw, 1.25rem);
}
.button-arrow--cases {
  display: flex;
  font-size: clamp(0.625rem, 0.5154494382rem + 0.4494382022vw, 0.875rem);
  background: var(--color-dark);
  color: var(--color-light);
  max-width: 8.125rem;
  justify-content: center;
  padding: 0.3125rem 0.9375rem;
  border-radius: 0.3125rem;
}

.back-to-archive {
  margin-top: 1.875rem;
  position: relative;
  font-size: clamp(0.625rem, 0.3511235955rem + 1.1235955056vw, 1.25rem);
  font-weight: 500;
  padding-left: 3.75rem;
  display: flex;
  align-items: center;
}
.back-to-archive::before {
  content: "";
  left: 0;
  height: 0.125rem;
  width: 3.125rem;
  position: absolute;
  background: var(--color-dark);
}

.burger-button {
  width: 2.125rem;
  height: 2.125rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.6875rem 0.3125rem;
  color: var(--color-white);
  background-color: transparent;
  border: none;
}
@media (any-hover: hover) {
  .burger-button:hover {
    color: var(--color-black);
  }
}
@media (any-hover: none) {
  .burger-button:active {
    color: var(--color-black);
  }
}
.burger-button.is-active .burger-button__line:first-child {
  transform: rotate(45deg);
  transform-origin: 0;
  translate: 0.22em -0.22em;
}
.burger-button.is-active .burger-button__line:nth-child(2) {
  transform: rotate(-45deg);
  translate: 0em -0.2em;
}
.burger-button__line {
  background-color: var(--color-accent);
  width: 100%;
  height: 0.1875rem;
  border-radius: 0.0625rem;
  transition-duration: var(--transition-duration);
}

.submenu {
  position: absolute;
  min-width: 10rem;
  padding: 0.625rem 0.625rem;
  z-index: 5;
  transform-origin: 0 0;
  transform: rotateX(-90deg);
  transition: 0.2s linear;
  opacity: 0;
  visibility: hidden;
}

.header__menu-item--has-submenu {
  position: relative;
  display: inline-block;
}
.header__menu-item--has-submenu::after {
  content: "";
  position: absolute;
  background: url(../icons/triangle.svg) no-repeat;
  transform: rotate(180deg);
  top: 45%;
  bottom: 55%;
  width: 0.75rem;
  height: 0.375rem;
}
.header__menu-item--has-submenu:hover > .submenu {
  transform: none;
  transform-origin: unset;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.625rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  opacity: 1;
  visibility: visible;
}
.header__menu-item--has-submenu:hover::after {
  transform: rotate(0deg);
}

.footer {
  margin-top: 11.25rem;
}
.footer__top {
  padding: 0.625rem 0;
}
.footer__top-row {
  display: grid;
  grid-template-columns: 18.75rem 1fr;
}
.footer__logo {
  max-height: 2.5rem;
}
.footer__bottom-row {
  display: flex;
  border-top: 0.0625rem solid var(--color-gray-20);
  padding: 2.1875rem 0 3.125rem 0;
  gap: clamp(0.625rem, -4.0308988764rem + 19.1011235955vw, 11.25rem);
}
@media (width <= 63.99875rem) {
  .footer__bottom-row {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
  }
}
.footer__copyright {
  font-size: clamp(0.75rem, 0.6952247191rem + 0.2247191011vw, 0.875rem);
  color: var(--color-gray-30);
  flex: 1;
  max-width: 18.75rem;
}
.footer__legal {
  font-size: clamp(0.75rem, 0.6952247191rem + 0.2247191011vw, 0.875rem);
  color: var(--color-gray-30);
  flex: 1;
  max-width: 24.375rem;
}
.footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 3.125rem;
}
.footer-nav__link {
  font-size: clamp(0.625rem, 0.5154494382rem + 0.4494382022vw, 0.875rem);
}

.hero {
  padding-block: 4.5625rem 3.75rem;
  position: relative;
}
@media (width <= 47.99875rem) {
  .hero {
    overflow: hidden;
  }
}
.hero__container {
  position: relative;
  z-index: 3;
}
.hero__decor {
  position: absolute;
  top: -11.25rem;
  right: -28.125rem;
  height: 50.9375rem;
  width: 50.9375rem;
  background-repeat: no-repeat;
  background-image: url("../images/elements/el-white-ring.svg");
  background-position: right;
  background-size: contain;
  z-index: 2;
}
@media (width <= 63.99875rem) {
  .hero__decor {
    height: 22.5rem;
    width: 22.5rem;
    right: -9.375rem;
    top: -23.125rem;
  }
}
@media (width <= 47.99875rem) {
  .hero__decor {
    display: contents;
  }
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}
.hero__title {
  max-width: clamp(18.75rem, 7.7949438202rem + 44.9438202247vw, 43.75rem);
  margin-bottom: clamp(1.25rem, 0.702247191rem + 2.2471910112vw, 2.5rem);
}
.hero__content {
  position: relative;
  background-color: var(--color-light);
  padding: 2.5rem 2.5rem;
  border-radius: 1.25rem;
  margin-bottom: 0.75rem;
  z-index: 2;
}
@media (width <= 30.06125rem) {
  .hero__content {
    padding: 1.25rem 1.25rem;
  }
}
.hero__lead {
  font-size: clamp(0.875rem, 0.7106741573rem + 0.6741573034vw, 1.25rem);
  font-weight: 500;
  max-width: 31.875rem;
  margin-bottom: 2.1875rem;
  color: inherit;
}
.hero__text {
  max-width: 38.75rem;
  font-size: clamp(0.875rem, 0.7654494382rem + 0.4494382022vw, 1.125rem);
  line-height: 1.5;
}
.hero__logo {
  position: absolute;
  z-index: 4;
  top: 4.8rem;
  width: 48.75rem;
  left: 43.3rem;
  height: auto;
}
@media (width <= 47.99875rem) {
  .hero__logo {
    top: 0rem;
    width: 60vw;
    height: auto;
    left: unset;
    right: -5rem;
  }
}
@media (width <= 30.06125rem) {
  .hero__logo {
    top: 0rem;
    width: 60vw;
    height: auto;
    left: unset;
    right: -5rem;
  }
}
.hero__logo-img {
  display: block;
  max-width: 100%;
}
.hero__button {
  margin-top: 1.875rem;
  position: relative;
  z-index: 3;
}

.technologies {
  padding-top: clamp(0rem, -2.0540730337rem + 8.4269662921vw, 4.6875rem);
}
.technologies__categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9.375rem, 20.625rem));
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: clamp(1.25rem, -0.8040730337rem + 8.4269662921vw, 5.9375rem);
  margin-top: clamp(1.25rem, 0.9761235955rem + 1.1235955056vw, 1.875rem);
}
.technologies__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(0.3125rem, 0.2303370787rem + 0.3370786517vw, 0.5rem);
}
.technologies__category-title {
  font-size: clamp(1.125rem, 0.8511235955rem + 1.1235955056vw, 1.75rem);
}
.technologies__item {
  overflow: hidden;
}
.technologies__item-title {
  font-size: clamp(0.875rem, 0.7654494382rem + 0.4494382022vw, 1.125rem);
}
.technologies__item-description {
  font-size: clamp(0.75rem, 0.6952247191rem + 0.2247191011vw, 0.875rem);
  color: var(--color-gray-30);
  line-height: 160%;
}
.technologies__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(1.25rem, -0.1193820225rem + 5.6179775281vw, 4.375rem);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 1.875rem;
}
.technologies__link {
  background-color: var(--color-dark);
  padding: 1.25rem 0;
  font-size: clamp(1.25rem, 1.0308988764rem + 0.8988764045vw, 1.75rem);
  border-radius: 1.25rem;
  font-weight: 500;
  color: var(--color-light);
}

.card {
  position: relative;
  background: var(--color-light);
  border-radius: 1.25rem;
  overflow: hidden;
}
.card__overlay-link {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  text-decoration: none;
  cursor: pointer;
}
.card__overlay-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.card__text {
  background: var(--color-light);
  padding: 0.9375rem 1.25rem 1.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.625rem;
  min-height: 17.8125rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: clamp(0.9375rem, 0.8553370787rem + 0.3370786517vw, 1.125rem);
}
.card__info {
  grid-area: info;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.card__tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 1.25rem;
  color: #777;
}
.card__date {
  font-size: 14px;
  color: #777;
}
.card__title {
  grid-area: title;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-size: clamp(1rem, 0.8904494382rem + 0.4494382022vw, 1.25rem);
  font-weight: 500;
}
.card__description {
  grid-area: description;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.card__image-wrapper {
  grid-area: image;
}
.card__image {
  width: 100%;
  height: auto;
  display: block;
}

.card--news .card__content {
  grid-template-areas: "image" "info" "title" "description" "button";
  grid-template-columns: 1fr;
}
.card--news .card__content .card__image-wrapper {
  height: 25.375rem;
  overflow: hidden;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}
@media (width <= 30.06125rem) {
  .card--news .card__content .card__image-wrapper {
    max-height: 13.375rem;
  }
}
.card--news .card__content .card__image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.card--news .card__content .card__description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.card--cases {
  background: var(--color-light);
  height: 25rem;
  position: relative;
  overflow: hidden;
  padding: 1.25rem 1.25rem 2.1875rem;
}
@media (width <= 47.99875rem) {
  .card--cases {
    height: 15.625rem;
  }
}
.card--cases .card__content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto 2fr 1.875rem;
  height: 100%;
  overflow: hidden;
  grid-template-areas: "title title title" "description description image" "button button image";
  gap: 1.25rem;
}
@media (width <= 30.06125rem) {
  .card--cases .card__content {
    grid-template-rows: 3.75rem auto 1.875rem;
  }
}
.card--cases .card__title {
  grid-area: title;
}
.card--cases .card__description {
  grid-area: description;
  max-width: 19.375rem;
}
.card--cases .button-arrow {
  grid-area: button;
}
.card--cases .button-arrow:hover {
  background-color: var(--color-accent);
  color: var(--color-light);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.card--cases .card__image-wrapper {
  grid-area: image;
  position: absolute;
  right: -5rem;
  bottom: -4.375rem;
  grid-area: image;
  width: 23rem;
  height: 23rem;
  border-radius: 50%;
  overflow: hidden;
}
@media (width <= 30.06125rem) {
  .card--cases .card__image-wrapper {
    height: 16.75rem;
    width: 16.75rem;
    right: unset;
    left: 12.5rem;
  }
}

.slider {
  position: relative;
}
.slider__list {
  display: flex;
  padding-bottom: 1.5625rem;
}
.slider__item {
  flex: 1 1 auto;
  min-width: 0;
  flex-shrink: 0;
  width: 100%;
}
.slider__controls {
  margin-top: 20px;
}
.slider__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}
.slider__controls .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
  padding: 0;
  margin: 0 !important;
}
.slider__controls .swiper-pagination-bullet-active {
  background: var(--color-accent) !important;
  width: 16px !important;
  height: 16px !important;
}
.slider--cases {
  margin-bottom: 1.25rem;
}
.patents__slider-controls .swiper-button-next:before {
  display: none !important;
}

.news {
  padding-bottom: 3.75rem;
  padding-top: 3.4375rem;
  position: relative;
}
.news-section {
  padding-block: clamp(1.25rem, -0.1193820225rem + 5.6179775281vw, 4.375rem);
}
.news--body include mobile-above {
  max-width: clamp(0.625rem, -20.4634831461rem + 86.5168539326vw, 48.75rem);
}
.news::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  pointer-events: none;
  right: -20rem;
  bottom: -10rem;
  width: 41.875rem;
  height: 41.875rem;
  background-image: url(../images/elements/el-red.svg);
}
@media (width <= 30.06125rem) {
  .news::before {
    display: none;
  }
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (width <= 63.99875rem) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 47.99875rem) {
  .news-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.news-post__cover {
  border-radius: 1.25rem;
  overflow: hidden;
  height: 31.25rem;
  margin: 1.25rem 0 1.25rem 0;
}
.news-post__cover img {
  width: 100%;
}

.post__content p {
  margin-bottom: clamp(0.625rem, 0.077247191rem + 2.2471910112vw, 1.875rem);
  font-size: clamp(0.75rem, 0.6952247191rem + 0.2247191011vw, 0.875rem);
}
.post__content blockquote {
  font-size: clamp(0.75rem, 0.6952247191rem + 0.2247191011vw, 0.875rem);
}

.cases {
  position: relative;
  margin-top: 4.375rem;
  padding-bottom: 8.125rem;
}
.cases::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  pointer-events: none;
  top: 3.125rem;
  left: -13.75rem;
  width: 28.125rem;
  height: 28.125rem;
  background-image: url(../images/elements/el-white-ring.svg);
}
@media (width <= 47.99875rem) {
  .cases::before {
    display: none;
  }
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (width <= 63.99875rem) {
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 47.99875rem) {
  .cases-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.event-block {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 1.875rem;
  margin-bottom: 2.5rem;
}
.event-block .event-main,
.event-block .event-image {
  width: 50%;
  border-radius: 1.25rem;
  padding: 1.25rem 1.875rem;
  background-color: var(--color-dark);
  color: var(--color-light);
  box-sizing: border-box;
}
.event-block .event-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  padding: 0;
}
.event-block .event-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.3);
}

.event-results {
  background-color: var(--color-dark);
  color: var(--color-light);
  border-radius: 1.25rem;
  padding: 1.875rem;
  margin-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.875rem;
}
.event-results .event-summary {
  max-width: 60%;
  font-size: clamp(0.625rem, 0.4058988764rem + 0.8988764045vw, 1.125rem);
  line-height: 1.5;
  color: var(--color-gray-20);
}
.event-results .event-stats {
  display: flex;
  gap: 2.5rem;
}
.event-results .event-stats .event-metric {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.event-results .event-stats .event-metric .event-metric__value {
  font-size: clamp(0.625rem, -0.2514044944rem + 3.595505618vw, 2.625rem);
  font-weight: 700;
  color: var(--color-light);
  line-height: 1;
}
.event-results .event-stats .event-metric .event-metric__label {
  font-size: clamp(0.625rem, 0.5154494382rem + 0.4494382022vw, 0.875rem);
  color: var(--color-gray-40);
  margin-top: 0.3125rem;
}

.hero--case {
  background-color: var(--color-light);
  padding-block: 4rem 2rem;
  text-align: center;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--color-gray-60);
  max-width: 40rem;
  margin-inline: auto;
}

.case-block {
  display: grid;
  grid-template-columns: 30.625rem 1fr; /* Ширина изображения + оставшееся пространство */
  gap: 1.875rem;
  align-items: start;
}

.case-block__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.case-block__text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-gray-80);
}

.case-gallery {
  padding-block: 4rem;
  background-color: var(--color-light);
}

.case-gallery__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.case-gallery__swiper img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.05);
}

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

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

.glossary {
  padding-bottom: 3.75rem;
}
@media (width <= 30.06125rem) {
  .glossary {
    padding-bottom: clamp(0.625rem, -1.2921348315rem + 7.8651685393vw, 5rem);
  }
}
.glossary__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 1;
  margin-top: 0.75rem;
  margin-bottom: 1.875rem;
  flex-grow: 1;
}
.glossary__list--main {
  max-width: 22.8125rem;
}
@media (width <= 63.99875rem) {
  .glossary__list {
    flex-direction: column;
  }
}
@media (width <= 63.99875rem) {
  .glossary__item {
    width: 100%;
  }
}
@media (width <= 63.99875rem) {
  .glossary--row {
    min-width: 100%;
    flex-wrap: nowrap;
    overflow-x: scroll;
    scrollbar-width: none;
  }
  .glossary--row::-webkit-scrollbar {
    display: none;
  }
}
.glossary__link {
  background: var(--color-dark);
  font-size: clamp(1.25rem, 1.0308988764rem + 0.8988764045vw, 1.75rem);
  font-weight: 500;
  padding: 0.625rem 2.5rem;
  border-radius: 3.125rem;
  border: 0.125rem solid transparent;
}
@media (width <= 47.99875rem) {
  .glossary__link {
    padding: 0.9375rem 1.25rem;
    width: 100%;
  }
}
.glossary__link.active {
  color: var(--color-accent);
}
.glossary--main {
  padding-top: 4.375rem;
}
.glossary--main .section__title {
  margin-bottom: 1.5625rem;
}
.glossary--main .section__subtitle {
  max-width: 37.5rem;
}

.glossary-layout {
  display: flex;
  justify-content: space-between;
  margin-top: 1.875rem;
  gap: 2.5rem;
}
@media (width <= 63.99875rem) {
  .glossary-layout {
    flex-direction: column;
  }
}
.glossary-layout .glossary__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex-grow: 1;
}
@media (width <= 63.99875rem) {
  .glossary-layout .glossary__list {
    flex-direction: row;
  }
}
.glossary-layout .glossary__item {
  border-bottom: 0.0625rem solid #000;
  width: 100%;
}
.glossary-layout .glossary__link {
  background-color: unset;
}

.glossary-content {
  display: flex;
  justify-content: flex-end;
  max-width: 54.6875rem;
}
.glossary-content__item {
  width: 100%;
}

.accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 0.625rem;
  gap: 1.25rem;
}
.accordion__button {
  background: var(--color-light);
  font-size: clamp(1.125rem, 1.0702247191rem + 0.2247191011vw, 1.25rem);
  padding: 1.5625rem;
  font-weight: 500;
  width: 100%;
  text-align: left;
  border: none;
  border-radius: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.accordion__button.active {
  border-radius: 1.25rem 1.25rem 0 0;
  background: var(--color-light);
}
.accordion__button.active::after {
  content: "↘";
}
.accordion__content {
  background: var(--color-light);
  font-size: clamp(1.125rem, 1.1797752809rem + -0.2247191011vw, 1rem);
  font-weight: 400;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  border-radius: 0 0 1.25rem 1.25rem;
  margin-top: -1.25rem;
  position: relative;
  z-index: 1;
  flex-grow: 3;
}
.accordion__content p {
  padding: 0 1.5625rem 1.5625rem;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}
.accordion__content.active {
  padding: 0.625rem 0 0;
}
.accordion__content.active p {
  opacity: 1;
}

#feedback-title {
  max-width: 56.25rem;
}

.feedback {
  padding-top: 3.75rem;
  position: relative;
  z-index: 1;
}
.feedback .section__title {
  line-height: 1.3;
  margin-bottom: 1.5625rem;
}
.feedback::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  pointer-events: none;
  top: 0;
  right: -20rem;
  bottom: 0rem;
  width: 29.375rem;
  height: 29.375rem;
  background-image: url(../images/elements/el-red.svg);
}
@media (width <= 63.99875rem) {
  .feedback::before {
    top: 34.375rem;
    right: -7.5rem;
    width: 13.75rem;
    height: 13.75rem;
  }
}
@media (width <= 47.99875rem) {
  .feedback::before {
    display: none;
  }
}
.feedback .section__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (width <= 63.99875rem) {
  .feedback .section__body {
    grid-template-columns: 100%;
    gap: 1.875rem;
  }
}
.feedback .section__body .contacts__form-title {
  margin-bottom: 1.25rem;
  font-weight: 500;
  font-size: clamp(0.875rem, 0.7106741573rem + 0.6741573034vw, 1.25rem);
  max-width: 37.5rem;
}
.feedback .section__body .contacts__form form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (width <= 63.99875rem) {
  .feedback .section__body .contacts__form form {
    justify-content: flex-start;
  }
}
.feedback .section__body .contacts__form form .form-btn {
  display: flex;
  justify-content: center;
  margin-top: 2.1875rem;
}
@media (width <= 63.99875rem) {
  .feedback .section__body .contacts__form form .form-btn {
    width: 100%;
  }
}
.feedback .section__body .contacts__form form .form-btn button {
  border: 0.125rem solid;
}
@media (width <= 63.99875rem) {
  .feedback .section__body .contacts__form form .form-btn button {
    width: 100%;
    font-size: 1rem;
  }
}
.feedback .section__body .contacts__form form button {
  margin: 0 auto;
  font-size: clamp(0.625rem, 0.3511235955rem + 1.1235955056vw, 1.25rem);
  padding: 0.625rem 6.875rem;
}
.feedback .section__body .contacts__form input {
  border: none;
  width: 100%;
  padding: 0.9375rem 1.25rem;
  border-radius: 1.25rem;
}
.feedback .section__body .contacts__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 15rem;
}
@media (width <= 63.99875rem) {
  .feedback .section__body .contacts__info {
    padding-left: 0;
  }
}

.about {
  padding-top: clamp(1.875rem, -0.0421348315rem + 7.8651685393vw, 6.25rem);
  padding-bottom: 6.25rem;
  position: relative;
}
@media (width <= 30.06125rem) {
  .about {
    padding-bottom: 1.875rem;
  }
}
.about .section__title {
  margin-bottom: 2.8125rem;
}
.about::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  pointer-events: none;
  top: -9.375rem;
  right: -16.875rem;
  width: 42.5rem;
  height: 42.5rem;
  background-image: url(../images/elements/el-white-ring.svg);
}
@media (width <= 63.99875rem) {
  .about::before {
    right: unset;
    top: 0;
    width: 28.75rem;
    height: 28.75rem;
    left: -12.5rem;
  }
}
.about__text {
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
@media (width <= 30.06125rem) {
  .about__text {
    margin-bottom: 0rem;
  }
}
.about__section {
  max-width: 45.625rem;
}

.partners {
  padding-bottom: 3.125rem;
}
.partners__title {
  text-align: center;
  font-size: clamp(1.25rem, 1.0308988764rem + 0.8988764045vw, 1.75rem);
  margin-bottom: 2.1875rem;
}
.partners__inner {
  padding-block: 1.75rem;
  overflow: hidden;
}
.partners__slider {
  display: flex;
  align-items: center;
}
.partners__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.partners .section__body {
  background-color: var(--color-light);
}
.partners .swiper-wrapper {
  display: flex;
  align-items: center;
}
.partners .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
}

.solutions {
  padding: 60px 0;
  background-color: #f5f5f5;
}
.solutions .section__title {
  max-width: 62.5rem;
  margin-bottom: 2.5rem;
}
.solutions__title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}
.solutions__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.125rem, 1fr));
  gap: 1.25rem;
}
.solutions__card {
  position: relative;
  background-size: auto 110%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
  min-height: 39.375rem;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}
.solutions__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 16px;
}
.solutions__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.solutions__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.solutions__tag {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
}
.solutions__content {
  margin-top: auto;
}
.solutions__card-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}
.solutions__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--color-dark);
  background: var(--color-light);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
  width: 100%;
  border-radius: 1.25rem;
  padding: 0.625rem 1.25rem;
  font-size: clamp(1rem, 0.9452247191rem + 0.2247191011vw, 1.125rem);
}
.solutions__button .icon {
  transition: transform 0.3s;
}
.solutions__button:hover {
  outline: none;
  background: var(--color-accent);
  color: var(--color-light);
}
.solutions__button:hover .icon {
  transform: translateX(4px) translateY(-4px);
}

.programmatic {
  padding-block: clamp(1.25rem, -0.1193820225rem + 5.6179775281vw, 4.375rem);
}
.programmatic .section__header {
  padding-bottom: 1.5625rem;
}
.programmatic__inner {
  display: grid;
  grid-template-columns: 40.9375rem 1fr;
  gap: 6.25rem;
}
@media (width <= 63.99875rem) {
  .programmatic__inner {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}
.programmatic__text h3 {
  font-size: clamp(1.25rem, 1.0308988764rem + 0.8988764045vw, 1.75rem);
  margin: 0rem;
  padding: 0;
}
.programmatic__text p {
  margin-top: 1.25rem;
}
.differences__title {
  font-size: clamp(1.125rem, 1.0702247191rem + 0.2247191011vw, 1.25rem);
  font-weight: 500;
  margin-bottom: 1.875rem;
}
.differences__item {
  position: relative;
  padding-left: 3.75rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid #000;
}
.differences__item:last-child {
  border-bottom: none;
}
.differences__item::before {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  background-size: cover;
  background-image: url(../icons/check.svg);
  width: 1.6875rem;
  height: 1.6875rem;
}

.dooh {
  padding-bottom: 3.125rem;
  margin: 0 auto;
}
.dooh__intro {
  display: grid;
  grid-template-columns: 23.875rem 2fr;
  gap: 3.125rem;
  align-items: center;
  margin-bottom: 5rem;
  padding-top: 1.5625rem;
}
@media (width <= 63.99875rem) {
  .dooh__intro {
    grid-template-columns: 1fr;
  }
}
.dooh__intro-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 23.6875rem;
}
.dooh__intro-text h3 {
  font-size: clamp(1.25rem, 1.0308988764rem + 0.8988764045vw, 1.75rem);
}
.dooh__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
}
@media (width <= 63.99875rem) {
  .dooh__grid {
    grid-template-columns: 1fr;
  }
}

.dooh__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-height: 36.75rem;
  border-radius: 1.25rem;
  overflow: hidden;
  background-color: var(--color-light);
}
.dooh__card .dooh__image {
  min-height: 25rem;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.dooh__card--wide {
  flex-direction: row;
  max-height: 17.1875rem;
  min-height: unset;
  align-items: center;
  gap: 1.875rem;
}
@media (width <= 63.99875rem) {
  .dooh__card--wide {
    flex-direction: column;
    max-height: unset;
    gap: unset;
    align-items: flex-start;
  }
}
.dooh__card-text {
  padding: 1.6875rem 1.25rem;
}
.dooh__card-title {
  font-size: clamp(1.125rem, 1.0702247191rem + 0.2247191011vw, 1.25rem);
  margin-bottom: 0.625rem;
}

.bigdata {
  padding-top: 4.0625rem;
  padding-bottom: 2.5rem;
}
.bigdata .section__title {
  margin-bottom: 1.875rem;
}
.bigdata__content {
  margin: 0 auto;
}
.bigdata__title {
  font-size: clamp(1.375rem, 1.2106741573rem + 0.6741573034vw, 1.75rem);
  margin-bottom: 0.9375rem;
}
.bigdata__subtitle {
  display: block;
  max-width: 53.125rem;
  margin-bottom: 1.875rem;
  font-size: clamp(1rem, 0.9452247191rem + 0.2247191011vw, 1.125rem);
  line-height: 1.4;
}
.bigdata__grid {
  display: grid;
  gap: 1.5625rem;
  grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
  margin: 2.5rem 0;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .bigdata__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .bigdata__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.bigdata__card {
  background: var(--color-light);
  border-radius: 1.25rem;
  padding: clamp(2.5rem, 1.8153089888rem + 2.808988764vw, 4.0625rem) clamp(1.25rem, 0.702247191rem + 2.2471910112vw, 2.5rem) clamp(2.5rem, 2.9108146067rem + -1.6853932584vw, 1.5625rem) clamp(1.25rem, 0.702247191rem + 2.2471910112vw, 2.5rem);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bigdata__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.bigdata__card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bigdata__icon {
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 1.5625rem;
}
.bigdata__card-title {
  font-size: clamp(1.125rem, 1.0702247191rem + 0.2247191011vw, 1.25rem);
  margin-bottom: 0.9375rem;
  font-weight: 500;
}
.bigdata__card-text {
  font-size: clamp(0.875rem, 0.8202247191rem + 0.2247191011vw, 1rem);
  line-height: 1.5;
  color: var(--color-gray);
}

.patents {
  padding: 60px 0;
}
.patents__wrapper {
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: flex-end;
  gap: 40px;
}
.patents__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  padding-top: 5rem;
  gap: 2.5rem;
  min-height: 25rem;
  grid-template-areas: "patents-decor patents-slider";
}
@media (width <= 47.99875rem) {
  .patents__content {
    grid-template-areas: "patents-decor" "patents-slider";
    grid-template-columns: minmax(0, 1fr);
  }
}
.patents__slider {
  grid-area: patents-slider;
  position: relative;
}
@media (width <= 63.99875rem) {
  .patents__slider {
    margin-top: 5rem;
  }
}
.patents__slider-controls {
  display: flex;
  justify-content: flex-end;
  right: 0;
  position: absolute;
  gap: 10px;
  top: -5rem;
}
.patents__slider-controls button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  width: 3.75rem;
  height: 3.75rem;
}
@media (width <= 47.99875rem) {
  .patents__slider-controls button {
    width: 2.8125rem;
    height: 2.8125rem;
  }
}
.patents__slider-controls button:hover .circle-outline {
  stroke: var(--color-accent) !important;
  transition: stroke 0.3s ease;
}
.patents__slider-controls button:hover .arrow-head {
  fill: var(--color-accent) !important;
  transition: stroke 0.3s ease;
}
.patents__slider-controls button .circle-outline {
  fill: none;
  stroke: var(--color-gray-20);
}
.patents__slider-controls button .arrow-head {
  fill: var(--color-gray-20);
}
.patents .swiper {
  width: 100%;
  overflow: hidden !important;
}
.patents .swiper-wrapper {
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
}
.patents .swiper-slide {
  height: auto !important;
  display: flex;
  justify-content: flex-end;
  width: auto;
  box-sizing: border-box;
}
.patents__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom right, #f8f8f8 15%, #f0f0f0 100%);
  border-radius: 1.25rem;
  padding: 1.25rem 1.875rem 0.625rem;
  width: 25rem;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.04);
  flex: 1;
  justify-content: space-between;
}
.patents__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  background: linear-gradient(to bottom right, #efefef 0%, #dedede 100%) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  border-radius: 1.25rem;
}
@media (width <= 47.99875rem) {
  .patents__card {
    padding: 1.25rem 0.9375rem;
    width: 18.75rem;
  }
}
.patents__card-title {
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  word-wrap: break-word;
  white-space: normal;
}
.patents__card-desc {
  font-size: clamp(0.75rem, 0.6952247191rem + 0.2247191011vw, 0.875rem);
  margin-bottom: 1.75rem;
  line-height: 1.5;
  word-wrap: break-word;
  white-space: normal;
  flex: 1;
}
@media (width <= 47.99875rem) {
  .patents__card-desc {
    margin-bottom: 0.9375rem;
  }
}
.patents__card-number {
  font-size: 0.875rem;
  letter-spacing: 0.25rem;
  color: #999;
  display: block;
  margin-top: auto;
}
.patents__decor {
  grid-area: patents-decor;
  display: grid;
  height: 100%;
  grid-template-columns: minmax(0, 24.375rem) minmax(0, 12.5rem);
  gap: 2.5rem;
  flex-shrink: 1;
  position: relative;
}
.patents__decor img {
  height: 100%;
}
@media (width <= 62.49875rem) {
  .patents__decor {
    grid-template-columns: minmax(0, 17.5rem) minmax(0, 9.375rem);
    gap: 1.25rem;
  }
}
.patents__numbers {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (width <= 62.49875rem) {
  .patents__numbers {
    padding: 1.25rem 0;
  }
}
.patents__item {
  display: flex;
  justify-content: space-between;
}
.patents__num {
  display: flex;
  flex-direction: column;
}
.patents__num p {
  font-weight: 600;
  font-size: clamp(0.875rem, 0.7106741573rem + 0.6741573034vw, 1.25rem);
}
.patents__num span {
  display: flex;
  font-family: var(--font-family-bold);
  font-size: clamp(5.625rem, 3.8448033708rem + 7.3033707865vw, 9.6875rem);
  padding: 0;
  line-height: normal;
  margin-bottom: -2.5rem;
}
@media (width <= 47.99875rem) {
  .patents__num span {
    margin-bottom: -1.25rem;
  }
}
.patents__num--gray {
  background: linear-gradient(to bottom, #d3d3d3 0%, #bdbaba 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.patents__num--red {
  background: linear-gradient(to bottom, #ff2d35 0%, #eb1921 50%, #d40109 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.filters__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9375rem;
  margin-bottom: 0.9375rem;
  padding-left: 0;
  list-style: none;
}
.filters__button {
  border: 0.0625rem solid var(--color-gray-20);
  background-color: var(--color-bg);
  color: var(--color-dark);
  padding: 0.125rem 0.5rem;
  border-radius: 1.25rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.filters__button:hover {
  background-color: var(--color-accent);
  color: var(--color-light);
}
.filters__button--active {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-light);
}

.tech-block {
  padding-block: 60px 30px;
}
.tech-block .section__title {
  margin-bottom: 20px;
}
.tech-content {
  display: flex;
  justify-content: space-between;
}
.tech-list {
  display: flex;
  justify-content: flex-start;
  gap: 110px;
  flex-wrap: wrap;
}
.tech-category {
  max-width: 320px;
}
.tech-category__title {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 500;
}
.tech-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.tech-link {
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s;
}
.tech-link:hover, .tech-link:focus {
  outline: none;
}
.tech-desc {
  font-size: 14px;
  color: var(--color-gray-30, #6b6b6b);
  margin-top: 4px;
  line-height: 1.4;
}

/* Адаптивность */
@media (max-width: 900px) {
  .tech-content {
    flex-direction: column;
  }
  .tech-list {
    gap: 40px;
  }
  .tech-category {
    max-width: 100%;
  }
}
.pagination {
  display: flex;
  justify-content: flex-start;
  margin-top: 32px;
}

.pagination__list {
  display: flex;
  gap: 0.9375rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination__link {
  border: none;
  background: transparent;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.2s;
  font-size: clamp(0.625rem, 0.5428370787rem + 0.3370786517vw, 0.8125rem);
  font-weight: 400;
  border-radius: 50%;
  width: 1.5625rem;
  height: 1.5625rem;
}

.pagination__link:hover {
  background: var(--color-accent);
  color: var(--color-light);
}

.pagination__link.is-current {
  background: var(--color-accent);
  color: #fff;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: top;
  margin-top: clamp(1.875rem, 1.0533707865rem + 3.3707865169vw, 3.75rem);
  margin-bottom: clamp(0.625rem, 0.3511235955rem + 1.1235955056vw, 1.25rem);
  gap: 1.75rem;
  font-size: clamp(0.875rem, 0.7106741573rem + 0.6741573034vw, 1.25rem);
  font-weight: 500;
}
.breadcrumbs__item {
  position: relative;
}
.breadcrumbs__item:not(:last-child)::before {
  content: "/";
  position: absolute;
  right: -1rem;
}
.breadcrumbs__item:last-child {
  color: var(--color-accent);
}
.breadcrumbs__inner {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 100%;
  overflow-x: auto;
}
.breadcrumbs__link a {
  text-decoration: none;
}
.breadcrumbs__title {
  color: var(--color-accent);
}

.error-404 {
  padding-block: clamp(1.875rem, 0.9164325843rem + 3.9325842697vw, 4.0625rem);
  position: relative;
}
.error-404__container {
  position: relative;
  z-index: 3;
}
.error-404__decor {
  position: absolute;
  top: -11.25rem;
  right: -28.125rem;
  height: 50.9375rem;
  width: 50.9375rem;
  background-repeat: no-repeat;
  background-image: url("../images/elements/el-white-ring.svg");
  background-position: right;
  z-index: 2;
}
.error-404::before, .error-404::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}
.error-404__title {
  max-width: 31.25rem;
  margin-bottom: 2.5rem;
}
.error-404__content {
  position: relative;
  background-color: var(--color-light);
  padding: 2.5rem 2.5rem;
  border-radius: 1.25rem;
  margin-bottom: 0.75rem;
  z-index: 2;
}
.error-404__lead {
  font-size: clamp(0.625rem, 0.3511235955rem + 1.1235955056vw, 1.25rem);
  font-weight: 500;
  max-width: 31.875rem;
  margin-bottom: 2.1875rem;
  color: inherit;
}
.error-404__text {
  max-width: 38.75rem;
  font-size: clamp(0.625rem, 0.4058988764rem + 0.8988764045vw, 1.125rem);
  line-height: 1.5;
}
.error-404__logo {
  position: absolute;
  z-index: 4;
  top: 0rem;
  width: 48.75rem;
  left: 43.3rem;
  height: auto;
}
.error-404__logo-img {
  display: block;
  max-width: 100%;
}
.error-404__button {
  margin-top: 1.875rem;
  position: relative;
  z-index: 3;
  background: var(--color-accent);
  font-size: clamp(0.625rem, 0.3511235955rem + 1.1235955056vw, 1.25rem);
  font-weight: 500;
  border-radius: 0.625rem;
  border: 2px solid;
  padding: 0.625rem 1.875rem;
}

.post {
  position: relative;
  margin-top: clamp(1.25rem, -0.393258427rem + 6.7415730337vw, 5rem);
  padding-top: clamp(0.625rem, 0.077247191rem + 2.2471910112vw, 1.875rem);
}
.post__inner {
  background-color: var(--color-light);
  border-radius: 1.25rem;
}
.post__sidebar {
  width: 18.125rem;
  grid-area: sidebar;
}
@media (width <= 47.99875rem) {
  .post__sidebar {
    width: 100%;
  }
}
.post__body {
  grid-area: postbody;
  margin-top: clamp(0rem, 0.9311797753rem + -3.8202247191vw, -2.125rem);
}
.post__title {
  font-size: clamp(0.875rem, 0.4915730337rem + 1.5730337079vw, 1.75rem);
  margin-bottom: clamp(0.625rem, 0.077247191rem + 2.2471910112vw, 1.875rem);
}
.post__content img {
  max-width: 100%;
  height: auto;
  border-radius: 1.25rem;
  margin: 1.25rem 0;
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
}
.post__content blockquote {
  padding-left: clamp(2.5rem, 0.5828651685rem + 7.8651685393vw, 6.875rem);
  position: relative;
  margin: 0;
}
.post__content blockquote::before {
  content: "";
  position: absolute;
  background: url(../icons/blockquote.svg) center center no-repeat;
  background-size: contain;
  display: block;
  height: 2.6875rem;
  width: 3.75rem;
  left: 0;
}
@media (width <= 47.99875rem) {
  .post__content blockquote::before {
    height: 0.9375rem;
    width: 1.5625rem;
  }
}

.case--body {
  display: grid;
  grid-template-areas: "title" "image" "details";
}
.case--header {
  display: grid;
  grid-area: title;
}
.case--image {
  grid-area: image;
}
.case-block {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.case-image {
  grid-area: image;
  flex: 1;
}
.case-image img {
  border-radius: 1.25rem;
}
.case-details {
  grid-area: details;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}
.case-text {
  margin: 2.5rem 0;
  line-height: 1.6;
}
.case-result {
  display: grid;
  grid-template-columns: 13.125rem 1fr;
  margin: 2.5rem 0;
}
.case-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.75rem;
  margin-top: 4.375rem;
}

.detail-item {
  display: flex;
  gap: 1.875rem;
}
.detail-title {
  flex: 0 0 12.5rem;
  margin: 0;
  font-size: 1.125rem;
}
.detail-content {
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
}
.detail-content ol,
.detail-content ul {
  padding-left: 1.5625rem;
  margin: 0;
}
.detail-content li {
  margin-bottom: 0.3125rem;
}
.detail-content li:last-child {
  margin-bottom: 0;
}

.result-title {
  margin: 0;
  font-size: 1.25rem;
}
.result-content {
  margin: 0;
  line-height: 1.6;
}

.case-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 11.25rem;
}
.case-stat__title {
  font-size: clamp(0.625rem, 0.5154494382rem + 0.4494382022vw, 0.875rem);
  color: var(--color-gray-30);
}
.case-stat__value {
  font-size: clamp(0.625rem, -0.8539325843rem + 6.0674157303vw, 4rem);
  font-weight: 500;
  line-height: 1;
  margin: 0.625rem 0;
}
.case-stat__subtitle {
  font-size: clamp(0.625rem, 0.5154494382rem + 0.4494382022vw, 0.875rem);
  font-weight: 500;
}

.post__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  grid-area: postmeta;
}
@media (width <= 47.99875rem) {
  .post__meta {
    justify-content: space-between;
    padding-bottom: 1.25rem;
  }
}

.post__tag {
  font-size: clamp(0.625rem, 0.5154494382rem + 0.4494382022vw, 0.875rem);
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 1.25rem;
  padding: 0.3125rem 0.625rem;
}
@media (width <= 47.99875rem) {
  .post__tag {
    padding: 0.2rem 0.4rem;
  }
}

.post__date {
  font-size: clamp(0.625rem, 0.5154494382rem + 0.4494382022vw, 0.875rem);
}

.news--inner {
  display: grid;
  grid-template-areas: "postmeta postmeta" "sidebar postbody";
  padding: clamp(1.25rem, 0.4283707865rem + 3.3707865169vw, 3.125rem) 1.25rem 1.25rem clamp(1.25rem, 0.154494382rem + 4.4943820225vw, 3.75rem);
}
@media (width <= 47.99875rem) {
  .news--inner {
    grid-template-areas: "postmeta" "postbody" "sidebar";
  }
}

.advantages {
  padding-block: clamp(1.875rem, 0.9164325843rem + 3.9325842697vw, 4.0625rem);
}
.advantages .section__title {
  max-width: 49.375rem;
  text-align: center;
}
.advantages .section__subtitle {
  font-size: clamp(1.125rem, 0.8511235955rem + 1.1235955056vw, 1.75rem);
  margin-bottom: 1.25rem;
}
.advantages .section__header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.125rem;
}
.advantages__number {
  margin-bottom: 2.5rem;
}
.advantages__title {
  font-size: clamp(1.125rem, 0.8511235955rem + 1.1235955056vw, 1.75rem);
  max-width: 18.75rem;
  text-align: left;
  margin-bottom: 0.625rem;
}
.advantages__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.875rem;
  margin-top: 1.875rem;
}
@media (width <= 63.99875rem) {
  .advantages__list {
    grid-template-columns: 1fr;
  }
}
.advantages__item {
  background-color: var(--color-accent);
  border-radius: 1.25rem;
  padding: 2.1875rem 3.125rem;
  color: var(--color-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.advantages__text {
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup {
  background-color: white;
  border-radius: 0.625rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 1.875rem 4.375rem;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.popup h4 {
  font-size: clamp(1.125rem, 1.0702247191rem + 0.2247191011vw, 1.25rem);
  margin-bottom: 0.625rem;
}
.popup h4, .popup p {
  margin: 0;
}

.pop-ap-close-btn {
  margin-top: 1.875rem;
  border-radius: 0.625rem;
  font-size: clamp(1rem, 0.9452247191rem + 0.2247191011vw, 1.125rem);
  background-color: var(--color-accent);
  color: var(--color-light);
  max-width: 7.8125rem;
  font-weight: 500;
}

.contacts {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: start;
  justify-content: center;
}
.contacts__social {
  display: flex;
  gap: 0.625rem;
}
.contacts__social-link {
  background: var(--color-light);
  display: flex;
  border-radius: 100%;
}
.contacts__social-link svg path {
  fill: var(--color-accent);
}
.contacts--big {
  margin-left: 15rem;
}
@media (width <= 63.99875rem) {
  .contacts--big {
    margin-left: 0;
  }
}
.contacts--big .contacts__phone {
  font-size: clamp(0.875rem, 0.7106741573rem + 0.6741573034vw, 1.25rem);
  font-weight: 500;
}
.contacts--big .contacts__email {
  font-size: clamp(1.125rem, 0.8511235955rem + 1.1235955056vw, 1.75rem);
  color: var(--color-accent);
  font-weight: 500;
}
.contacts--big .contacts__address {
  font-size: clamp(0.75rem, 0.6952247191rem + 0.2247191011vw, 0.875rem);
  line-height: 160%;
}
.contacts--big .contacts__social {
  display: flex;
  gap: 1.25rem;
}
.contacts--big .contacts__social-link {
  width: 3.75rem;
  height: 3.75rem;
}
.contacts--big .contacts__social-link:hover {
  background: var(--color-accent);
}
.contacts--big .contacts__social-link:hover svg path {
  fill: var(--color-light);
}
.contacts--big .contacts__social-link--whatsapp svg {
  padding: 0.6875rem;
}
.contacts--big .contacts__social-link--telegram svg {
  padding: 0.6875rem;
}
.contacts--small {
  margin-top: 2.5rem;
  margin-left: 1.25rem;
  margin-bottom: 2.1875rem;
}
@media (width <= 63.99875rem) {
  .contacts--small {
    display: none;
  }
}
.contacts--small .contacts__phone {
  color: var(--color-gray-30);
  font-size: clamp(0.625rem, 0.5702247191rem + 0.2247191011vw, 0.75rem);
  font-weight: 500;
}
.contacts--small .contacts__email {
  color: var(--color-accent);
  font-weight: 500;
}
.contacts--small .contacts__address {
  color: var(--color-gray-30);
  font-size: clamp(0.625rem, 0.5702247191rem + 0.2247191011vw, 0.75rem);
  font-weight: 500;
}
.contacts--small .contacts__social-link {
  width: 1.875rem;
  height: 1.875rem;
}
.contacts--small .contacts__social-link--whatsapp svg {
  padding: 0.375rem;
}
.contacts--small .contacts__social-link:hover {
  background: var(--color-accent);
}
.contacts--small .contacts__social-link:hover svg path {
  fill: var(--color-light);
}
.contacts--small .contacts__social-link--telegram svg {
  padding: 0.375rem;
}

.section__header {
  position: relative;
}
.section__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.875rem;
}
.section__title {
  font-size: clamp(1.875rem, 1.1903089888rem + 2.808988764vw, 3.4375rem);
  font-family: var(--font-family-accent);
  font-weight: 400;
  max-width: 59.6875rem;
  line-height: 1.2;
}
.section__description {
  max-width: 56.25rem;
}
.section--post {
  padding-top: 3.75rem;
}

.features {
  padding-top: 5rem;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.5rem 2.5rem;
}
@media (width <= 63.99875rem) {
  .features__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width <= 47.99875rem) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--color-light);
  border-radius: 1.25rem;
  padding: 1.875rem 3.125rem;
}
.feature-card--transparent {
  background: none;
}

.application-content .accordion__button {
  padding: 1.875rem 3.125rem;
}
.application-content .accordion__content p {
  padding: 0;
}

.accordeon__content-inner {
  padding: 0 3.125rem 1.875rem 3.125rem;
}

.article__row {
  display: flex;
}
.article-container {
  background-color: var(--color-light);
  border-radius: 1.25rem;
}
.article-container--news {
  display: grid;
  grid-template-columns: clamp(12.5rem, 20vw, 15.625rem) minmax(0, 1fr) clamp(8.75rem, 15vw, 10.625rem);
  grid-template-areas: "sidebar article-content";
  padding: clamp(1.25rem, 0.4831460674rem + 3.1460674157vw, 3rem) clamp(0.9375rem, 0.2528089888rem + 2.808988764vw, 2.5rem);
}
@media (width <= 90.06125rem) {
  .article-container--news {
    grid-template-columns: 1fr;
    grid-template-areas: "sidebar" "article-content";
    gap: 1.25rem;
  }
}
.article-sidebar {
  position: relative;
  grid-area: sidebar;
  padding-top: 0.875rem;
  margin-right: 2.5rem;
}
.article-content {
  grid-area: article-content;
}
.article-meta {
  font-size: clamp(0.625rem, 0.5154494382rem + 0.4494382022vw, 0.875rem);
}
.article-meta__tag {
  border: 1px solid var(--color-accent);
  border-radius: 1.25rem;
  padding: 0.1875rem 0.5rem;
  color: var(--color-accent);
  margin-right: 0.625rem;
}

.news-article__title {
  font-size: clamp(1.125rem, 0.8511235955rem + 1.1235955056vw, 1.75rem);
  margin-bottom: clamp(0.9375rem, 0.5266853933rem + 1.6853932584vw, 1.875rem);
}
.news-article__body img {
  max-width: 100%;
  height: auto;
  border-radius: 1.25rem;
  margin: 1.875rem 0;
  -webkit-box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
}

.back-to-articles {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-block: 1.75rem;
  padding-left: 3.9375rem;
  font-size: clamp(0.875rem, 0.7106741573rem + 0.6741573034vw, 1.25rem);
  font-weight: 500;
}
.back-to-articles:hover {
  color: var(--color-accent);
  -webkit-transition: 0.1s ease;
  -o-transition: 0.1s ease;
  transition: 0.1s ease;
}
.back-to-articles::before {
  content: "";
  left: 0;
  height: 0.125rem;
  width: 3.125rem;
  position: absolute;
  background: var(--color-dark);
}

.case-article__header {
  grid-area: case-header;
  margin-bottom: clamp(0.625rem, 0.4880617978rem + 0.5617977528vw, 0.9375rem);
}
.case-article__title {
  font-size: clamp(1.25rem, 1.0308988764rem + 0.8988764045vw, 1.75rem);
}
.case-article__main {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (width <= 63.99875rem) {
  .case-article__main {
    flex-direction: column;
  }
}
.case-article__img {
  flex: 0 0 45%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: clamp(25rem, 15.9620786517rem + 37.0786516854vw, 45.625rem);
  border-radius: 1.25rem;
  margin: 1.25rem 0;
  -webkit-box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.case-article__img img {
  width: 100%;
}
@media (width <= 63.99875rem) {
  .case-article__img {
    flex: unset;
    width: 100%;
  }
}
.case-article__details {
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 1.0625rem;
  grid-area: case-details;
  gap: 0.625rem;
}
.case-article__details .detail {
  display: grid;
  grid-template: "detail-title detail-content";
  grid-template-columns: 12.5rem 1fr;
  margin-bottom: clamp(1.25rem, 0.702247191rem + 2.2471910112vw, 2.5rem);
  gap: clamp(1.25rem, 0.154494382rem + 4.4943820225vw, 3.75rem);
}
@media (width <= 63.99875rem) {
  .case-article__details .detail {
    grid-template: "detail-title" "detail-content";
    gap: 0.3125rem;
  }
}
.case-article__details .detail__list-item {
  margin-bottom: 1.875rem;
}
.case-article__details .detail__title {
  grid-area: detail-title;
  font-size: clamp(0.875rem, 0.7106741573rem + 0.6741573034vw, 1.25rem);
}
.case-article__details .detail__content {
  grid-area: detail-content;
  font-size: clamp(0.75rem, 0.5856741573rem + 0.6741573034vw, 1.125rem);
}
.case-article__text {
  grid-area: case-text;
  margin-top: 2.5rem;
}
.case-article__result {
  grid-area: case-result;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.75rem;
  margin-top: 2.5rem;
}
@media (width <= 47.99875rem) {
  .case-article__result {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.625rem;
  }
}
.case-article__stats {
  grid-area: case-stats;
  display: grid;
  margin: 2.5rem 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  justify-items: center;
}
@media (width <= 63.99875rem) {
  .case-article__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 47.99875rem) {
  .case-article__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.case-article__stat-item {
  max-width: 18.75rem;
  width: 100%;
}
.case-article__stat-item:nth-child(3n+1):last-child, .case-article__stat-item:nth-child(3n+2):last-child {
  grid-column: 2/3;
}
@media (width <= 63.99875rem) {
  .case-article__stat-item:nth-child(2n+1):last-child {
    grid-column: 1/-1;
    justify-self: center;
    max-width: 25rem;
  }
}
.case-article__stat-title {
  font-size: clamp(0.75rem, 0.6952247191rem + 0.2247191011vw, 0.875rem);
  color: var(--color-gray-30);
}
.case-article__stat-suptitle {
  font-size: clamp(0.75rem, 0.6952247191rem + 0.2247191011vw, 0.875rem);
  font-weight: 500;
}
.case-article__stat-value {
  font-size: clamp(1.5rem, 0.404494382rem + 4.4943820225vw, 4rem);
  white-space: nowrap;
  font-weight: 500;
  line-height: 100%;
}
.case-article__stat-subtitle {
  font-size: clamp(0.75rem, 0.6952247191rem + 0.2247191011vw, 0.875rem);
  font-weight: 500;
}

.case-article__container {
  background-color: #fff;
  padding: clamp(1.25rem, 0.702247191rem + 2.2471910112vw, 2.5rem) clamp(1.875rem, 1.0533707865rem + 3.3707865169vw, 3.75rem);
  border-radius: 1.25rem;
}

blockquote {
  padding-block: 0.625rem clamp(1.25rem, 0.9761235955rem + 1.1235955056vw, 1.875rem);
  position: relative;
  margin: 0;
  padding-left: clamp(2.5rem, 0.5828651685rem + 7.8651685393vw, 6.875rem);
}
blockquote::before {
  content: "";
  position: absolute;
  background: url(../icons/blockquote.svg) center center no-repeat;
  background-size: contain;
  display: block;
  height: clamp(0.9375rem, 0.1706460674rem + 3.1460674157vw, 2.6875rem);
  width: clamp(1.5625rem, 0.6039325843rem + 3.9325842697vw, 3.75rem);
  left: 0;
}

.related-widget {
  padding: 1.25rem;
  background-color: var(--color-gray-10);
  border-radius: 1.25rem;
}
.related-widget--desktop {
  height: min-content;
  position: absolute;
  position: sticky;
  left: -5rem;
  top: 45vh;
  width: calc(100% + 5rem);
  margin-left: -5rem;
}
@media (width <= 90.06125rem) {
  .related-widget--desktop {
    display: none;
  }
}
@media (width > 90.06125rem) {
  .related-widget--mobile {
    display: none;
  }
}
.related-widget__title {
  font-size: clamp(1rem, 0.8904494382rem + 0.4494382022vw, 1.25rem);
  margin-bottom: clamp(0.625rem, 0.3511235955rem + 1.1235955056vw, 1.25rem);
}
.related-widget__link {
  display: flex;
  flex-direction: column;
}
.related-widget__list {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
.related-widget__item {
  margin-left: clamp(0.625rem, 0.3511235955rem + 1.1235955056vw, 1.25rem);
  padding-bottom: 0.9375rem;
}
.related-widget__item:not(:last-child) {
  border-bottom: 1px solid var(--color-gray-30);
}
.related-widget__item-title {
  font-size: clamp(0.75rem, 0.6952247191rem + 0.2247191011vw, 0.875rem);
  line-height: 130%;
  margin-bottom: 0.3125rem;
}
.related-widget__item-title:hover {
  color: var(--color-accent);
}
.related-widget__item-date {
  font-size: clamp(0.75rem, 0.6952247191rem + 0.2247191011vw, 0.875rem);
}

.online__heading {
  background-color: var(--color-light);
  padding: 3.125rem 3.75rem;
  border-radius: 1.25rem;
}
.online .heading {
  display: flex;
}
.online .heading__content {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  max-width: 38.4375rem;
  align-items: flex-start;
}
@media (width <= 47.99875rem) {
  .online .heading__content .btn {
    width: 100%;
    max-width: 17.5rem;
    margin: 0 auto;
  }
}
.online .heading__image {
  position: relative;
  display: flex;
  flex-shrink: 1;
  flex-grow: 1;
  z-index: 1;
}
.online .heading__image img {
  position: absolute;
  top: -1.25rem;
  right: -1.25rem;
  z-index: 22;
  width: 33.75rem;
  height: 25.8125rem;
}
.online .heading__title {
  margin-bottom: 0.625rem;
}
.online .heading__subtitle {
  font-size: clamp(0.875rem, 0.7106741573rem + 0.6741573034vw, 1.25rem);
  font-weight: 500;
  max-width: 27.8125rem;
}
.online .heading__text {
  font-size: clamp(0.875rem, 0.7654494382rem + 0.4494382022vw, 1.125rem);
  max-width: 27.8125rem;
}
.online-features {
  padding-top: 2.5rem;
}
.online-features__inner {
  background-color: var(--color-accent);
  padding: 1.875rem 3.75rem;
  border-radius: 1.25rem;
  color: var(--color-light);
}
@media (width <= 47.99875rem) {
  .online-features__inner {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    color: var(--color-dark);
  }
}
.online-features__list {
  display: grid;
  grid-template-columns: repeat(3, 15.3125rem);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.9375rem 0;
  justify-content: space-between;
}
@media (width <= 47.99875rem) {
  .online-features__list {
    display: none;
  }
}
.online-features__item {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.online-features__slider {
  display: none;
}
@media (width <= 47.99875rem) {
  .online-features__slider {
    display: block;
  }
}
.online-features__title {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: clamp(0.875rem, 0.7106741573rem + 0.6741573034vw, 1.25rem);
  font-weight: 500;
}
.online-features__title--bold {
  text-transform: uppercase;
  font-size: clamp(1.125rem, 0.878511236rem + 1.0112359551vw, 1.6875rem);
  font-weight: 800;
}
.online-features__title img {
  max-width: 2.1875rem;
  max-height: 1.875rem;
  margin-right: 0.9375rem;
}
.online-features__desc {
  font-size: clamp(0.75rem, 0.6952247191rem + 0.2247191011vw, 0.875rem);
  margin-top: 0.625rem;
  line-height: 120%;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.3125rem;
  padding: 0.1875rem 1.875rem;
  font-size: clamp(0.75rem, 0.6952247191rem + 0.2247191011vw, 0.875rem);
  font-weight: 500;
  color: var(--color-light);
  background: var(--color-dark);
}
.btn--accent {
  background-color: var(--color-accent);
}

.main-block {
  position: relative;
  padding: 3.125rem 3.75rem;
  display: flex;
  border-radius: 1.25rem;
  background-color: var(--color-light);
  min-height: 29.25rem;
  margin-top: 2.1875rem;
}
@media (width <= 47.99875rem) {
  .main-block {
    padding: 2rem 1.5rem;
    min-height: 25.625rem;
  }
}
.main-block__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.875rem;
  backdrop-filter: blur(100px);
  max-width: 38.3125rem;
  width: 100%;
}
.main-block__subtitle {
  font-size: clamp(0.875rem, 0.7106741573rem + 0.6741573034vw, 1.25rem);
  font-weight: 500;
  line-height: 1.6;
  max-width: 27.5rem;
}
.main-block__descr {
  font-size: clamp(0.875rem, 0.7654494382rem + 0.4494382022vw, 1.125rem);
  line-height: 1.6;
  max-width: 27.5rem;
}
.main-block__pic {
  position: absolute;
  top: 2.125rem;
  right: 2.3125rem;
  z-index: 1;
}
@media (width <= 90.06125rem) {
  .main-block__pic {
    display: contents;
  }
}
.main-block__pic img {
  width: 33.75rem;
  height: 25.8125rem;
  display: block;
}
@media (width <= 90.06125rem) {
  .main-block__pic img {
    display: contents;
  }
}

.platform-advantages {
  margin-top: 2.1875rem;
}
.platform-advantages-slider {
  background-color: var(--color-accent);
  border-radius: 1.25rem;
  color: var(--color-light);
}
.platform-advantages-slider .swiper-wrapper {
  padding: 1.875rem 3.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.875rem;
}
@media (width <= 47.99875rem) {
  .platform-advantages-slider .swiper-wrapper {
    display: contents;
  }
}
@media (width <= 47.99875rem) {
  .platform-advantages-slider .swiper-wrapper {
    display: flex;
  }
}
.platform-advantages__header {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.platform-advantages__item {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  max-width: 17.5rem;
}
.platform-advantages__item:last-child .platform-advantages__title {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.75rem;
}
.platform-advantages__desc {
  font-size: clamp(0.75rem, 0.6952247191rem + 0.2247191011vw, 0.875rem);
  line-height: 120%;
  margin-top: 0.625rem;
}

.application {
  margin-top: 5rem;
}

.spoller-block {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.spoller__item {
  background-color: var(--color-light);
  border-radius: 1.25rem;
  padding: 1.875rem 3.125rem;
  cursor: pointer;
}
.spoller__item.active .spoller__inner {
  max-height: 100%;
  margin-top: 2.5rem;
}
.spoller__item.active .spoller__header {
  color: var(--color-accent);
}
.spoller__item.active .spoller__header .spoller-icon {
  transform: rotate(-90deg);
}
.spoller__header {
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
  user-select: none; /* запрещает выделение текста */
  -webkit-user-select: none; /* для Safari */
  -moz-user-select: none; /* для Firefox */
  font-size: clamp(1.125rem, 0.8511235955rem + 1.1235955056vw, 1.75rem);
  font-weight: 500;
  line-height: 160%;
}
.spoller__header:hover {
  color: var(--color-accent);
}
.spoller__header .spoller-icon {
  margin-left: auto; /* отодвигает иконку вправо */
  flex-shrink: 0; /* предотвращает сжатие иконки */
  transition: transform 0.3s ease;
  transform-origin: center center;
  display: flex; /* для лучшего выравнивания */
}
.spoller__inner {
  max-height: 0;
  overflow: hidden;
  background-color: var(--color-light);
}

.howworks {
  margin-top: 5rem;
}

.swiper-wrapper {
  gap: 1.875rem;
}

.integration-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media (width <= 47.99875rem) {
  .integration-block {
    grid-template-columns: 1fr;
  }
}

.platforms {
  margin-bottom: 1.25rem;
}
.platforms__title {
  font-size: 0.875rem;
  color: var(--color-accent);
  font-weight: 500;
  text-align: center;
}
.platforms__wrap {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 0.625rem;
  flex-wrap: wrap;
}
.platforms__item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d8d7d7;
  width: clamp(6.25rem, 10vw, 7.5rem);
  height: clamp(3.125rem, 10vw, 4.375rem);
  padding: clamp(0.75rem, 3vw, 1.25rem);
  border-radius: 0.625rem;
}
.platforms__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 100%;
}

.adv {
  background-color: var(--color-accent);
  color: var(--color-light);
  padding: 1.875rem;
  border-radius: 1.25rem;
}
.adv__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.adv__header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.adv__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 1.875rem 3.75rem;
}
@media (width <= 47.99875rem) {
  .adv__list {
    grid-template-columns: 1fr;
  }
}
.adv__title {
  font-size: clamp(1rem, 0.8904494382rem + 0.4494382022vw, 1.25rem);
}
.adv__text {
  font-size: clamp(0.75rem, 0.6952247191rem + 0.2247191011vw, 0.875rem);
}

/* ===== O2O Targeting Section ===== */
.o2o {
  max-width: 50rem;
  margin: 0 auto;
  color: #222;
}

.o2o__title {
  font-size: clamp(1rem, 0.8904494382rem + 0.4494382022vw, 1.25rem);
  font-weight: 500;
  margin-bottom: 32px;
}

.o2o__list {
  list-style: none;
  counter-reset: o2o-counter;
  padding: 0;
  margin: 0;
}

.o2o__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}

.o2o__step {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.o2o__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #d32f2f;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
}

.o2o__subtitle {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

.o2o__text {
  font-size: 16px;
  line-height: 1.6;
  margin: 8px 0 12px;
}

.o2o__sublist {
  list-style: disc;
  margin: 0 0 0 52px;
  padding: 0;
}

.o2o__subitem {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 6px;
  color: #444;
}

.formats {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
.formats__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
}
.formats__info-top {
  grid-area: format-top;
}
.formats__info-bottom {
  grid-area: format-bottom;
}

.formats__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
}

.formats__content {
  display: grid;
  gap: 1.875rem;
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.5rem 3.125rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  grid-template-areas: "format-top format-image" "format-bottom format-image";
}
@media (width <= 47.99875rem) {
  .formats__content {
    grid-template-areas: "format-top" "format-image" "format-bottom";
    align-items: center;
  }
}

.formats__name {
  color: var(--color-accent);
  font-size: clamp(1.125rem, 0.8511235955rem + 1.1235955056vw, 1.75rem);
  font-weight: 500;
}

.formats__tag {
  display: inline-block;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  border-radius: 9999px;
  padding: 0.1875rem 1.875rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.formats__subtitle {
  font-size: clamp(1.125rem, 1.0702247191rem + 0.2247191011vw, 1.25rem);
  font-weight: 500;
  margin-top: 0.9375rem;
}

.formats__text,
.formats__item {
  font-size: clamp(0.75rem, 0.6952247191rem + 0.2247191011vw, 0.875rem);
  line-height: 1.6;
}

.formats__item {
  margin-bottom: 1.5625rem;
}

.formats__image {
  grid-area: format-image;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
@media (width <= 47.99875rem) {
  .formats__image {
    align-items: center;
  }
}

.formats__image img {
  max-width: 13.125rem;
  margin-bottom: 1.25rem;
}

.formats__tech-btn {
  background: none;
  border: none;
  color: var(--color-accent);
  cursor: pointer;
  font-size: clamp(0.75rem, 0.6952247191rem + 0.2247191011vw, 0.875rem);
  font-weight: 500;
}

.formats__popup {
  position: absolute;
  bottom: 20px;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  width: 300px;
  padding: 16px;
  display: none;
}

.formats__popup.active {
  display: block;
}

.formats__popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
}

.formats__popup-title {
  color: #d32f2f;
  font-weight: 700;
  margin-bottom: 8px;
}

.formats__nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.formats__prev,
.formats__next {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  width: 3.75rem;
  height: 3.75rem;
}
.formats__prev:hover .circle-outline,
.formats__next:hover .circle-outline {
  stroke: var(--color-accent) !important;
  transition: stroke 0.3s ease;
}
.formats__prev:hover .arrow-head,
.formats__next:hover .arrow-head {
  fill: var(--color-accent) !important;
  transition: stroke 0.3s ease;
}
.formats__prev .circle-outline,
.formats__next .circle-outline {
  fill: none;
  stroke: var(--color-gray-20);
}
.formats__prev .arrow-head,
.formats__next .arrow-head {
  fill: var(--color-gray-20);
}

/*# sourceMappingURL=main.css.map */
