@font-face {
  font-family: "Gilroy";
  src:
    url("fonts/Gilroy wotf/Gilroy-Regular.woff2") format("woff2"),
    url("fonts/Gilroy wotf/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src:
    url("fonts/Gilroy wotf/Gilroy-Medium.woff2") format("woff2"),
    url("fonts/Gilroy wotf/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src:
    url("fonts/Gilroy wotf/Gilroy-Semibold.woff2") format("woff2"),
    url("fonts/Gilroy wotf/Gilroy-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src:
    url("fonts/Gilroy wotf/Gilroy-Bold.woff2") format("woff2"),
    url("fonts/Gilroy wotf/Gilroy-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --header-bg: #ffffff;
  --text-main: #141416;
  --accent: #853ef6;
  --menu-bg: #200c45;
  --stroke-soft: #d9ccff;
  --text-on-accent: #f5f3f8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Gilroy";
  color: var(--text-main);
  background: #ffffff;
}

input,
button,
textarea,
select {
  font-family: inherit;
}

.site-header {
  position: relative;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
  padding: 27px 150px;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
}

.logo {
  display: block;
  width: 155px;
  height: 28.918px;
}

.logo img {
  display: block;
  width: 100%;
  height: 100%;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 26px;
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-main);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 14px;
}

.nav-link--services::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--text-main);
  border-bottom: 1.5px solid var(--text-main);
  margin-top: -4px;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.nav-submenu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: min(486px, calc(100vw - 32px));
  padding: 8px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow:
    0 16px 32px rgba(17, 18, 21, 0.14),
    0 4px 12px rgba(17, 18, 21, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -14px, 0);
  transition:
    opacity 0.2s ease,
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.2s;
}

.nav-submenu__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  color: #141416;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  transition:
    opacity 0.18s ease;
}

.nav-submenu__link::before {
  content: "";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}

.nav-submenu__link--development::before {
  background-image: url("/assets/icons/menu-development.svg");
}

.nav-submenu__link--support::before {
  background-image: url("/assets/icons/menu-support.svg");
}

.nav-submenu__link:hover,
.nav-submenu__link:focus-visible {
  color: #141416;
  background: transparent;
  opacity: 0.5;
  transform: none;
  text-decoration: none;
}

.nav-dropdown:hover > .nav-submenu,
.nav-dropdown:focus-within > .nav-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

.nav-dropdown:hover > .nav-link,
.nav-dropdown:focus-within > .nav-link,
.nav-dropdown:hover ~ .nav-link,
.nav-dropdown:focus-within ~ .nav-link {
  opacity: 0.5;
}

.nav-dropdown:hover > .nav-link:hover,
.nav-dropdown:focus-within > .nav-link:hover,
.nav-dropdown:focus-within > .nav-link:focus-visible,
.nav-dropdown:hover ~ .nav-link:hover,
.nav-dropdown:focus-within ~ .nav-link:hover,
.nav-dropdown:hover ~ .nav-link:focus-visible,
.nav-dropdown:focus-within ~ .nav-link:focus-visible {
  opacity: 1;
}

.nav-dropdown:hover > .nav-link--services::after,
.nav-dropdown:focus-within > .nav-link--services::after {
  transform: rotate(-135deg);
}

.header-actions {
  display: flex;
  align-items: center;
}

.header-actions--desktop {
  gap: 8px;
}

.header-actions--tablet,
.menu-button {
  display: none;
}

.mobile-menu {
  display: none;
  pointer-events: none;
}

.mobile-menu.is-open {
  pointer-events: auto;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(20, 20, 22, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  max-height: calc(100dvh - 84px);
  overflow: auto;
  padding: 28px 24px 24px;
  border-radius: 0 0 20px 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translate3d(26px, 0, 0);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu__section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu__section--actions {
  margin-top: 8px;
  gap: 16px;
}

.mobile-menu__link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #141416;
  text-decoration: none;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease;
}

.mobile-menu__link--sub {
  gap: 12px;
  padding: 6px 8px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
  color: #2f127b;
}

.mobile-menu__link--sub::before {
  content: "";
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
}

.mobile-menu__link--development::before {
  background-image: url("/assets/icons/menu-development.svg");
}

.mobile-menu__link--support::before {
  background-image: url("/assets/icons/menu-support.svg");
}

.mobile-menu__phone {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #141416;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--menu-bg);
  color: var(--text-on-accent);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.mobile-menu__link:hover,
.mobile-menu__link:focus-visible,
.mobile-menu__phone:hover,
.mobile-menu__phone:focus-visible {
  color: #2f127b;
  transform: translateX(4px);
}

.mobile-menu__link--sub:hover,
.mobile-menu__link--sub:focus-visible {
  background: rgba(133, 62, 246, 0.08);
}

.mobile-menu__cta:hover,
.mobile-menu__cta:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu.is-open .mobile-menu__panel {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.phone-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  color: var(--text-main);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
}

.phone-popover {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.phone-popover__link {
  transition:
    opacity 0.2s ease,
    color 0.2s ease;
}

.phone-popover:hover .phone-popover__link,
.phone-popover:focus-within .phone-popover__link {
  opacity: 0.5;
}

.phone-popover__menu {
  position: absolute;
  top: calc(100% - 2px);
  right: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 306px;
  padding: 16px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow:
    0 -3px 7px rgba(133, 62, 246, 0.04),
    0 -12px 12px rgba(133, 62, 246, 0.03),
    0 76px 21px rgba(133, 62, 246, 0),
    0 49px 20px rgba(133, 62, 246, 0.01),
    0 27px 16px rgba(133, 62, 246, 0.02),
    0 12px 12px rgba(133, 62, 246, 0.03),
    0 3px 7px rgba(133, 62, 246, 0.04);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.phone-popover:hover .phone-popover__menu,
.phone-popover:focus-within .phone-popover__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.phone-popover--inline .phone-popover__menu,
.phone-popover--footer .phone-popover__menu {
  top: calc(100% + 8px);
  right: auto;
  left: 0;
}

.phone-popover__item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #141416;
  font: inherit;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
}

.phone-popover__item:hover,
.phone-popover__item:focus-visible {
  color: #853ef6;
  outline: none;
}

.phone-popover__icon {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: #853ef6;
}

.phone-popover__icon--copy::before,
.phone-popover__icon--copy::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
}

.phone-popover__icon--copy::before {
  left: 8px;
  top: 6px;
}

.phone-popover__icon--copy::after {
  left: 5px;
  top: 9px;
  background: #ffffff;
}

.phone-popover__icon--fullscreen::before,
.phone-popover__icon--fullscreen::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1.5px solid currentColor;
}

.phone-popover__icon--fullscreen::before {
  clip-path: polygon(0 0, 38% 0, 38% 12%, 12% 12%, 12% 38%, 0 38%, 0 0, 62% 0, 100% 0, 100% 38%, 88% 38%, 88% 12%, 62% 12%);
}

.phone-popover__icon--fullscreen::after {
  clip-path: polygon(0 62%, 12% 62%, 12% 88%, 38% 88%, 38% 100%, 0 100%, 0 62%, 62% 88%, 88% 88%, 88% 62%, 100% 62%, 100% 100%, 62% 100%);
}

.phone-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 1300;
}

.phone-fullscreen[hidden] {
  display: none;
}

.phone-fullscreen__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(28, 11, 55, 0.5);
  cursor: pointer;
}

.phone-fullscreen__panel {
  position: absolute;
  top: clamp(80px, 13.9vw, 150px);
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(260px, 32vw, 610px);
  padding: clamp(32px, 3.65vw, 70px);
  background: #ffffff;
  overflow: hidden;
}

.phone-fullscreen__number {
  margin: 0;
  color: #141416;
  font-size: clamp(64px, 11.7vw, 225px);
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
}

.phone-fullscreen__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #853ef6;
  cursor: pointer;
}

.phone-fullscreen__close span::before,
.phone-fullscreen__close span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.phone-fullscreen__close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.phone-toast {
  position: fixed;
  top: 134px;
  right: 23px;
  z-index: 1350;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 255px;
  min-height: 56px;
  padding: 16px;
  border-radius: 8px;
  background: #ede7ff;
  color: #141416;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.phone-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.phone-toast[hidden] {
  display: none;
}

@media (max-width: 767px) {
  .phone-popover__menu {
    display: none;
  }

  .phone-popover:hover .phone-popover__link,
  .phone-popover:focus-within .phone-popover__link {
    opacity: 1;
  }
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 40px;
  padding: 0 16px;
  color: var(--accent);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
}

.cta-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg) translateY(1px);
}

.hero-cta,
.service-card-button,
.case-cta,
.contact-button,
.phone-button,
.cta-link,
.development-hero__button,
.development-discuss__button,
.support-hero__button,
.support-discuss__button,
.support-model-card__cta,
.development-work-card__button {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.hero-cta:hover,
.service-card-button:hover,
.case-cta:hover,
.contact-button:hover,
.phone-button:hover,
.cta-link:hover,
.development-hero__button:hover,
.development-discuss__button:hover,
.support-hero__button:hover,
.support-discuss__button:hover,
.support-model-card__cta:hover,
.development-work-card__button:hover {
  transform: translateY(-2px);
}

.hero-cta:hover,
.service-card-button:hover,
.contact-button--primary:hover {
  box-shadow: 0 12px 24px rgba(133, 62, 246, 0.22);
}

.development-hero__button--primary:hover,
.development-discuss__button--primary:hover,
.support-hero__button:hover,
.support-discuss__button:hover,
.support-model-card__cta:hover,
.development-work-card__button:hover {
  box-shadow: 0 12px 24px rgba(133, 62, 246, 0.22);
}

.hero-cta:hover,
.service-card-button:hover,
.contact-button--primary:hover,
.case-cta--project:hover,
.feedback-form__button--submit:hover,
.cookie-banner__button:hover,
.development-hero__button--primary:hover,
.development-discuss__button--primary:hover,
.support-hero__button:hover,
.support-discuss__button:hover,
.support-model-card__cta:hover,
.development-work-card__button:hover {
  filter: brightness(1.08);
}

.development-hero__button--secondary:hover,
.development-discuss__button--secondary:hover {
  background: rgba(133, 62, 246, 0.08);
  border-color: #bca2f8;
  color: #853ef6;
}

.development-discuss__button--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(245, 243, 248, 0.8);
  color: #f5f3f8;
}

.case-cta--project:hover {
  box-shadow: 0 12px 28px rgba(133, 62, 246, 0.26);
}

.case-cta--more:hover {
  box-shadow: 0 12px 24px rgba(133, 62, 246, 0.12);
}

.contact-button--attach:hover {
  color: #853ef6;
}

.nav-link,
.nav-submenu__link,
.review-link,
.blog-link,
.iso-doc-link,
.contact-policy-link,
.contact-phone,
.site-footer-nav-link,
.site-footer-subnav a,
.site-footer-download,
.site-footer-contact-link,
.site-footer-legal-links a {
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.12em;
  text-decoration-color: transparent;
  transition:
    opacity 0.22s ease,
    color 0.22s ease,
    text-decoration-color 0.22s ease;
}

.nav-link:hover,
.nav-submenu__link:hover,
.review-link:hover,
.blog-link:hover,
.iso-doc-link:hover,
.contact-policy-link:hover,
.contact-phone:hover,
.site-footer-nav-link:hover,
.site-footer-subnav a:hover,
.site-footer-download:hover,
.site-footer-contact-link:hover,
.site-footer-legal-links a:hover {
  color: #853ef6;
  text-decoration-line: underline;
  text-decoration-color: currentColor;
}

.nav-submenu .nav-submenu__link:hover,
.nav-submenu .nav-submenu__link:focus-visible {
  text-decoration-line: none;
  text-decoration-color: transparent;
}

.page-main {
  width: 100%;
}

.js-reveal {
  transition:
    opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

body.js-scroll-ready .js-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
}

body.js-scroll-ready .js-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    transition: none;
  }

  body.js-scroll-ready .js-reveal,
  body.js-scroll-ready .js-reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  margin-top: 120px;
  padding: 0 150px;
}

.hero-title {
  width: 100%;
  max-width: 1346px;
  margin: 0;
  color: var(--text-main);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
}

.hero-sub-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.hero-lead {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-lead-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-lead-emoji {
  flex: 0 0 auto;
  font-size: 32px;
  line-height: 1.3;
}

.hero-lead-row p {
  margin: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
}

.hero-lead-row strong {
  font-weight: 700;
}

.hero-description {
  width: 100%;
  max-width: 798px;
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 12px;
  background: var(--accent);
  color: #f5f3f8;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.hero-cta::after {
  content: "";
  width: 11px;
  height: 11px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg) translateY(1px);
}

.hero-cta--desktop {
  min-height: 53px;
  padding: 11px 32px;
  font-size: 24px;
  line-height: 1.3;
}

.hero-cta--compact {
  display: none;
}

.showreel-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
  margin-top: 120px;
  padding: 0 150px;
}

.stats {
  width: 100%;
}

.stats--desktop {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.stats--mobile {
  display: none;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 24px;
  border-left: 1px solid #141416;
}

.stat-value {
  display: inline-flex;
  align-items: flex-start;
  gap: 3px;
  margin: 0;
  color: #141416;
  line-height: 1.1;
  white-space: nowrap;
}

.stat-value span {
  font-size: 72px;
  font-weight: 600;
}

.stat-value small {
  padding-top: 8px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.stat-label {
  margin: 0;
  color: #141416;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.showreel-video {
  position: relative;
  width: 100%;
  aspect-ratio: 1620 / 844;
  border-radius: 12px;
  overflow: hidden;
  background: #04003d;
}

.showreel-video__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.showreel-video__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clients {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  margin-top: 120px;
  padding: 0 150px;
}

.clients-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 661px;
}

.clients-title {
  margin: 0;
  color: #141416;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.clients-description {
  margin: 0;
  color: #141416;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.clients-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: clamp(20px, 2.5vw, 48px) clamp(24px, 2.5vw, 48px);
  justify-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0.6;
}

.clients-logo-item {
  position: relative;
  width: min(100%, 190px);
  min-height: 0;
  aspect-ratio: 19 / 15;
  overflow: hidden;
}

.clients-logo-box {
  position: absolute;
  inset: var(--logo-box);
}

.clients-logo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.clients-logo-img--rostelecom {
  transform: scaleY(-1);
  transform-origin: center;
}

.services {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  margin-top: 120px;
  padding: 0 150px;
}

.services-title {
  margin: 0;
  color: #141416;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 298px;
  min-width: 0;
  padding: 24px 32px;
  border: 1px solid var(--stroke-soft);
  border-radius: 16px;
  overflow: hidden;
}

.service-card[data-service-url] {
  cursor: pointer;
}

.service-card-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  min-width: 0;
}

.service-card-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: #f3ebfe;
}

.service-card-icon {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.service-card-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  min-width: 0;
}

.service-card-title {
  position: relative;
  margin: 0;
  color: #141416;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  transition: padding-left 0.25s ease;
}

.service-card-title::before {
  content: "\2192";
  position: absolute;
  top: 0;
  left: 0;
  color: currentColor;
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.service-card:hover .service-card-title,
.service-card:focus-visible .service-card-title,
.service-card:focus-within .service-card-title {
  padding-left: 28px;
}

.service-card:hover .service-card-title::before,
.service-card:focus-visible .service-card-title::before,
.service-card:focus-within .service-card-title::before {
  opacity: 1;
  transform: translateX(0);
}

.service-card-description {
  margin: 0;
  color: #141416;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  max-width: 100%;
}

.service-card-button {
  align-self: flex-start;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 250px;
  height: 44px;
  padding: 0 16px 0 24px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--text-on-accent);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
}

.service-card-button::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.cases {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  margin-top: 120px;
  padding: 0 150px;
}

.cases-title {
  margin: 0;
  color: #141416;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.cases-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.cases-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.case-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.case-card-link {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: inherit;
  text-decoration: none;
}

.case-card-link:focus-visible {
  outline: 2px solid #853ef6;
  outline-offset: 4px;
  border-radius: 12px;
}

.case-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 798 / 445;
  overflow: hidden;
  border-radius: 12px;
}

.case-card-image-frame {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  overflow: hidden;
}

.case-card-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.case-card-image--robot {
  width: 104.97%;
  margin-left: -2.48%;
}

.case-card-image--sportmaster {
  width: 162.82%;
  height: 166.54%;
  margin-left: -6.22%;
  margin-top: -12.77%;
  max-width: none;
}

.case-card-media--horeca {
  background:
    radial-gradient(circle at 10% 72%, rgba(255, 255, 255, 0.85) 0 2%, rgba(255, 255, 255, 0.1) 9%, transparent 18%),
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.35) 0 8%, transparent 17%),
    radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.28) 0 5%, transparent 13%),
    linear-gradient(145deg, #413850 0%, #1d1829 58%, #110d19 100%);
}

.case-card-media--horeca::before {
  content: "";
  position: absolute;
  inset: 8% 12% 4% 44%;
  background:
    linear-gradient(160deg, rgba(255, 172, 145, 0.35) 0%, rgba(255, 80, 48, 0.92) 26%, rgba(255, 53, 20, 0.98) 100%);
  clip-path: polygon(12% 10%, 100% 0%, 83% 100%, 0% 82%);
  filter: drop-shadow(-12px 8px 24px rgba(10, 7, 15, 0.28));
}

.case-card-media--horeca::after {
  content: "";
  position: absolute;
  left: -8%;
  bottom: 8%;
  width: 34%;
  height: 38%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 18%, rgba(255, 255, 255, 0.45) 30%, transparent 62%);
  filter: blur(14px);
  opacity: 0.92;
}

.case-card-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.case-card-title {
  margin: 0;
  color: #141416;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  transition: color 0.28s ease;
}

.case-card-image,
.case-card-media--horeca::before,
.case-card-media--horeca::after {
  transform-origin: center;
  transition: transform 0.45s ease;
}

.case-card-link:hover .case-card-title,
.case-card-link:focus-visible .case-card-title {
  color: #605a73;
}

.case-card-link:hover .case-card-image,
.case-card-link:focus-visible .case-card-image,
.case-card-link:hover .case-card-media--horeca::before,
.case-card-link:focus-visible .case-card-media--horeca::before,
.case-card-link:hover .case-card-media--horeca::after,
.case-card-link:focus-visible .case-card-media--horeca::after {
  transform: scale(1.1);
}

.case-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 24px;
  background: #f5f3f8;
  color: #141416;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}

.case-card-tag--accent {
  background: #e4dbff;
}

.case-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 798 / 445;
  min-height: 0;
  padding: 9px;
  border-radius: 12px;
  text-decoration: none;
}

.case-cta--project {
  background: linear-gradient(135deg, #7b33f4 0%, #9e63ff 100%);
}

.case-cta--more {
  background: #ffffff;
}

.case-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.case-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
}

.case-cta-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.case-cta-icon--outlined {
  border: 1.5px solid #853ef6;
  border-radius: 999px;
}

.case-cta-icon--outlined img {
  width: 36px;
  height: 36px;
}

.case-cta-label {
  margin: 0;
  color: #f5f3f8;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.case-cta-label--accent {
  color: #853ef6;
}

.advantages {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  margin-top: 120px;
  padding: 0 150px;
}

.advantages-title {
  width: 100%;
  margin: 0;
  color: #141416;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.advantage-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  min-height: 116px;
  padding: 24px 32px;
  border: 1px solid #a99fc1;
  border-radius: 12px;
}

.advantage-icon {
  flex: 0 0 auto;
  margin: 0;
  color: #141416;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.3;
}

.advantage-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.advantage-heading {
  margin: 0;
  color: #141416;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.advantage-description {
  margin: 0;
  color: #9999a4;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.iso-doc-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: from-font;
  text-underline-offset: 0.08em;
}

.iso-doc-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  border-radius: 4px;
}

.iso-doc-link--lang {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.72em;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  vertical-align: baseline;
}

.platforms {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  margin-top: 120px;
  padding: 0 150px;
}

.platforms-title {
  margin: 0;
  color: #141416;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.platforms-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}

.platform-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 64px;
  height: 56px;
  border-radius: 14px;
  background: #f3ebfe;
}

.platform-icon-image {
  display: block;
  width: 28px;
  height: 28px;
}

.platform-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.platform-heading {
  margin: 0;
  color: #141416;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.platform-description {
  margin: 0;
  color: #141416;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.reviews {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  margin-top: 120px;
  padding: 0 150px;
}

.reviews-title {
  margin: 0;
  color: #141416;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
  min-height: 464px;
  padding: 24px 24px 32px;
  border-radius: 12px;
  background: #faf9fb;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatar {
  position: relative;
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 999px;
}

.review-avatar-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
}

.review-avatar-image--citymobil {
  top: -4.14%;
  left: -85.21%;
  width: 261.13%;
  height: 375.13%;
  max-width: none;
}

.review-author-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-author-name,
.review-author-company,
.review-quote {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.review-author-name {
  color: #141416;
}

.review-author-company {
  color: #9999a4;
}

.review-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.review-quote {
  color: #141416;
}

.review-link {
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
  align-self: flex-start;
  color: #853ef6;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

.review-link-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.blog {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  margin-top: 120px;
  padding: 0 150px;
}

.blog-title {
  width: 100%;
  margin: 0;
  color: #141416;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.blog-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.blog-card-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 524 / 364;
}

.blog-card-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.blog-card-date,
.blog-card-title,
.blog-link-label {
  margin: 0;
}

.blog-card-date {
  color: #9999a4;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.blog-card-title {
  color: #141416;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.blog-card-link:hover .blog-card-title {
  color: #605a73;
}

.blog-card-link:hover .blog-card-image,
.blog-card-link:focus-visible .blog-card-image {
  transform: scale(1.08);
}

.blog-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #853ef6;
  text-decoration: none;
}

.blog-link-label {
  color: inherit;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.blog-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.2px solid currentColor;
  border-radius: 999px;
  flex: 0 0 auto;
}

.blog-link-icon-image {
  display: block;
  width: 19.2px;
  height: 19.2px;
}

.blog-page-main {
  width: 100%;
}

.blog-page {
  padding: 128px 150px 0;
}

.blog-page-shell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(100%, 1620px);
}

.blog-page-title,
.blog-entry-date,
.blog-entry-title,
.blog-entry-author-name {
  margin: 0;
}

.blog-page-title {
  color: #101828;
  font-size: 72px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 80px;
}

.blog-page-blocks {
  display: flex;
  flex-direction: column;
  gap: 100px;
  width: 100%;
}

.blog-page-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.blog-page-primary-grid,
.blog-page-secondary-grid {
  display: grid;
  grid-template-columns: minmax(0, 661fr) minmax(0, 798fr);
  column-gap: clamp(40px, 8.385vw, 161px);
  align-items: start;
  width: 100%;
}

.blog-page-side-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.blog-page-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.blog-page-compact-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.blog-entry-divider {
  width: 100%;
  border-top: 1px solid #d9ccff;
}

.blog-entry {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.blog-entry-date {
  color: #b7afc6;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.blog-entry-title {
  color: #0b0415;
  font-weight: 600;
}

.blog-entry-title--lead {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.blog-entry-title--card {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.blog-entry-title--compact {
  font-size: 24px;
  line-height: 1.3;
}

.blog-entry-title--feature {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 501px;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.blog-entry-title--feature span {
  background: #ffffff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding-right: 8px;
}

.development-page-main {
  background: #fafafc;
}

.support-page-main {
  background: #fafafc;
}

.support-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 150px;
  background: #fafafc;
}

.support-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 33px;
  width: 100%;
}

.support-hero__title {
  width: 100%;
  margin: 0;
  color: #101828;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

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

.support-hero__line {
  margin: 0;
  color: #4a5565;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.35;
}

.support-hero__line strong {
  font-weight: 700;
  color: #6c5ce7;
}

.support-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 4px;
  width: 250px;
  height: 56px;
  padding: 0 56px;
  border-radius: 12px;
  background: linear-gradient(90deg, #6c5ce7 0%, #8e7cff 100%);
  color: #f5f3f8;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}

.support-hero__button img {
  position: absolute;
  right: 24px;
  top: 50%;
  display: block;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
}

.support-to-whom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 150px;
  background: #ffffff;
}

.support-to-whom__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}

.support-to-whom__title {
  margin: 0;
  color: #101828;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.support-to-whom__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.support-to-whom__card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 100px;
  padding: 24px;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  background: #fafafc;
}

.support-to-whom__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 47.995px;
  height: 47.995px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgb(0 0 0 / 10%), 0 1px 2px rgb(0 0 0 / 10%);
}

.support-to-whom__icon {
  display: block;
  width: 24px;
  height: 24px;
}

.support-to-whom__text {
  margin: 0;
  color: #101828;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.625;
}

.support-today {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 150px;
  background: #fafafc;
}

.support-today__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
}

.support-today__title {
  margin: 0;
  color: #101828;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.support-today__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.support-today-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-height: 300px;
  padding: 32px 24px;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgb(0 0 0 / 10%), 0 1px 2px rgb(0 0 0 / 10%);
}

.support-today-card__head-icon {
  display: block;
  width: 32px;
  height: 32px;
}

.support-today-card__title {
  margin: 0;
  color: #101828;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3333333333;
}

.support-today-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-today-card__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #4a5565;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.support-today-card__item-icon {
  display: block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.support-today__result {
  width: 100%;
  margin: 0;
  border-radius: 16px;
  background: #f3f0ff;
  color: #141416;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2083333333;
  text-align: center;
  padding: 24px 48px;
}

.support-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 150px;
  background: #fafafc;
}

.support-method__inner {
  width: 100%;
  display: grid;
  grid-template-columns: 394.667px minmax(0, 1fr);
  column-gap: 24px;
  align-items: start;
}

.support-method__title {
  margin: 0;
  color: #101828;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.support-method__card {
  grid-column: 2;
  width: 100%;
  margin: 0;
  padding: 48px 32px;
  border: 1px solid #f3f4f6;
  border-radius: 40px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgb(0 0 0 / 10%), 0 1px 2px rgb(0 0 0 / 10%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 31.993px;
}

.support-method__card-title {
  margin: 0;
  color: #101828;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.support-method__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.support-method__lead {
  margin: 0;
  color: #101828;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5555555556;
}

.support-method__list {
  margin: 0;
  padding-left: 27px;
  color: #4a5565;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.support-method__list li + li {
  margin-top: 2px;
}

.support-method__note {
  width: 100%;
  margin: 0;
  padding: 16px 24px;
  border: 1px solid #e5e0ff;
  border-radius: 16px;
  background: #f3f0ff;
  color: #101828;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5555555556;
}

.support-outcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 150px;
  background: #fafafc;
}

.support-outcome__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
}

.support-outcome__title {
  margin: 0;
  color: #101828;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
}

.support-outcome__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.support-outcome-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 32px 24px;
  border: 1px solid #d9ccff;
  border-radius: 16px;
}

.support-outcome-card__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 63.997px;
  height: 63.997px;
  border-radius: 9999px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgb(0 0 0 / 10%), 0 1px 2px rgb(0 0 0 / 10%);
}

.support-outcome-card__icon {
  display: block;
  width: 31.993px;
  height: 31.993px;
}

.support-outcome-card__title {
  margin: 0;
  width: 100%;
  color: #101828;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.support-outcome-card__list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #4a5565;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.support-models {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 150px;
  background: #fafafc;
}

.support-models__inner {
  width: 100%;
  display: grid;
  grid-template-columns: 394.667px minmax(0, 1fr);
  column-gap: 24px;
  align-items: start;
}

.support-models__title {
  margin: 0;
  color: #101828;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
}

.support-models__grid {
  grid-column: 2;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.support-model-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  gap: 23.997px;
  padding: 32px 24px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgb(108 92 231 / 30%), 0 1px 2px rgb(108 92 231 / 30%);
}

.support-model-card__head {
  display: flex;
  align-items: center;
  gap: 15.992px;
  width: 100%;
  min-height: 47.985px;
}

.support-model-card__icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 47.985px;
  height: 47.985px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: #f3f0ff;
}

.support-model-card__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.support-model-card__icon svg {
  display: block;
  width: 28px;
  height: 28px;
}

.support-model-card__icon path,
.support-model-card__icon circle,
.support-model-card__icon polyline {
  fill: none;
  stroke: #6c5ce7;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-model-card__icon img {
  position: absolute;
  display: block;
}

.support-model-card__icon--tm img:first-child {
  inset: 0;
}

.support-model-card__icon--tm img:last-child {
  top: 6px;
  left: 12px;
}

.support-model-card__icon--fixed img:nth-child(1) {
  inset: 0;
}

.support-model-card__icon--fixed img:nth-child(2) {
  top: 6px;
  left: 6px;
}

.support-model-card__icon--fixed img:nth-child(3) {
  top: 10px;
  left: 10px;
}

.support-model-card__icon--fixed img:nth-child(4) {
  top: 10px;
  left: 10px;
}

.support-model-card__title {
  margin: 0;
  color: #101828;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.support-model-card__text {
  margin: 0;
  color: #4a5565;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
}

.support-model-card__hint {
  width: 100%;
  margin: 0;
  padding: 16px;
  border-radius: 14px;
  background: #fafafc;
  color: #364153;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4285714286;
}

.support-model-card__cta {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: auto;
  gap: 4px;
  height: 56px;
  padding: 0 56px;
  border-radius: 12px;
  background: linear-gradient(90deg, #6c5ce7 0%, #8e7cff 100%);
  color: #f5f3f8;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}

.support-model-card__cta img {
  position: absolute;
  right: 24px;
  top: 50%;
  display: block;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
}

.support-control {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 150px;
  background: #fafafc;
}

.support-control__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 63.997px;
}

.support-control__title {
  margin: 0;
  color: #101828;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
}

.support-control__card {
  width: 100%;
  margin: 0;
  padding: 49px 32px;
  border: 0.636px solid #f3f4f6;
  border-radius: 40px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgb(0 0 0 / 10%), 0 1px 2px rgb(0 0 0 / 10%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.support-control__lead {
  width: 768px;
  max-width: 100%;
  margin: 0;
  color: #101828;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.support-control__list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 23px 24px;
}

.support-control__item {
  min-height: 73.27px;
  display: flex;
  align-items: flex-start;
  gap: 15.992px;
  padding: 24.636px 16.636px;
  border: 0.636px solid #f9fafb;
  border-radius: 16px;
  background: #fafafc;
  color: #364153;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.support-control__item:nth-child(n + 3) {
  min-height: 95.273px;
}

.support-control__item-icon {
  display: block;
  width: 23.997px;
  height: 23.997px;
  flex: 0 0 auto;
}

.support-control__note {
  width: 100%;
  margin: 0;
  padding: 16px 23.997px;
  border-radius: 16px;
  background: #e3e0fa;
  display: flex;
  align-items: center;
  gap: 23.997px;
  color: #6c5ce7;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.support-control__note-icon {
  display: block;
  width: 31.993px;
  height: 31.993px;
  flex: 0 0 auto;
}

.support-control__note-underline {
  text-decoration: underline;
  text-decoration-thickness: from-font;
}

.support-onboarding {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 150px;
  background: #fafafc;
}

.support-onboarding__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 63.996px;
}

.support-onboarding__head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
}

.support-onboarding__title {
  width: 100%;
  margin: 0;
  color: #101828;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
}

.support-onboarding__subtitle {
  width: 100%;
  margin: 0;
  color: #4a5565;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.support-onboarding__steps {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.support-onboarding-step {
  min-width: 0;
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.support-onboarding-step__index {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: #6c5ce7;
  color: #f5f3f8;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.support-onboarding-step__text {
  flex: 1 1 auto;
  min-width: 0;
  color: #0b0415;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.support-cases {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 150px;
  background: #fafafc;
}

.support-cases__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
}

.support-cases__head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.support-cases__title-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.support-cases__title {
  margin: 0;
  color: #101828;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.2px;
}

.support-cases__link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #853ef6;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}

.support-cases__link-icon {
  width: 40px;
  height: 40px;
  border: 1.2px solid currentColor;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.support-cases__link-icon img {
  display: block;
  width: 19.2px;
  height: 19.2px;
}

.support-cases__subtitle {
  margin: 0;
  color: #4a5565;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.support-cases__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.support-case-card {
  min-width: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 1px 3px rgb(0 0 0 / 10%), 0 1px 2px rgb(0 0 0 / 10%);
  display: flex;
  flex-direction: column;
}

.support-case-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.support-case-card__link:focus-visible {
  outline: 2px solid #853ef6;
  outline-offset: -2px;
}

.support-case-card__media {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.support-case-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.support-case-card__image--sportmaster {
  position: absolute;
  inset: -15.23% 0 -39.1%;
  width: 100%;
  height: auto;
  max-width: none;
}

.support-case-card__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
}

.support-case-card__title {
  margin: 0;
  color: #101828;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3333333333;
  transition: color 0.28s ease;
}

.support-case-card__link:hover .support-case-card__title,
.support-case-card__link:focus-visible .support-case-card__title {
  color: #605a73;
}

.support-case-card__link:hover .support-case-card__image,
.support-case-card__link:focus-visible .support-case-card__image {
  transform: scale(1.08);
}

.support-case-card__tags {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.support-case-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 24px;
  background: #f5f3f8;
  color: #141416;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.support-case-card__tag--accent {
  background: #e4dbff;
}

.support-faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 150px;
  background: #fafafc;
}

.support-faq__inner {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 64px;
}

.support-faq__title,
.support-faq__question,
.support-faq__answer p {
  margin: 0;
}

.support-faq__title {
  flex: 1 1 0;
  min-width: 275px;
  color: #101828;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
}

.support-faq__accordion {
  width: 767.998px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15.992px;
}

.support-faq__item {
  border: 0.636px solid #f3f4f6;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgb(0 0 0 / 10%), 0 1px 2px rgb(0 0 0 / 10%);
  overflow: hidden;
}

.support-faq__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 67.994px;
  padding: 20px 24px;
}

.support-faq__summary::-webkit-details-marker {
  display: none;
}

.support-faq__question {
  flex: 1 1 auto;
  color: #101828;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  transition: color 0.22s ease;
}

.support-faq__item:not([open]) .support-faq__summary:hover .support-faq__question {
  color: #853ef6;
}

.support-faq__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.support-faq__icon::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #98a2b3;
  border-bottom: 1.5px solid #98a2b3;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s ease;
}

.support-faq__item[open] .support-faq__icon::before {
  transform: translateY(2px) rotate(225deg);
}

.support-faq__summary:focus-visible {
  outline: 2px solid #6c5ce7;
  outline-offset: -2px;
}

.support-faq__answer {
  padding: 0 24px 20px;
  display: grid;
  gap: 8px;
}

.support-faq__answer p {
  color: #4a5565;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  white-space: pre-wrap;
}

.support-discuss {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 150px;
  background: #fafafc;
}

.support-discuss__inner {
  width: 100%;
}

.support-discuss__card {
  position: relative;
  width: 100%;
  min-height: 397.236px;
  padding: 99.409px 24px 99px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 25%);
  background: linear-gradient(90deg, #6c5ce7 0%, #8e7cff 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.support-discuss__decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.support-discuss__blob {
  position: absolute;
  border-radius: 9999px;
  background: rgb(255 255 255 / 10%);
  filter: blur(64px);
}

.support-discuss__blob--left {
  width: 255.996px;
  height: 255.996px;
  top: -95.999px;
  left: -95.999px;
}

.support-discuss__blob--right {
  width: 384px;
  height: 384px;
  top: 141.236px;
  left: 848.003px;
}

.support-discuss__title {
  margin: 0;
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  position: relative;
}

.support-discuss__subtitle {
  width: 768px;
  max-width: 100%;
  margin: 31px 0 30.503px;
  color: rgb(255 255 255 / 90%);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  position: relative;
}

.support-discuss__button {
  width: 210.06px;
  height: 61.252px;
  border-radius: 14px;
  background: #ffffff;
  color: #6c5ce7;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.development-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 592.252px;
  padding: 120px 150px;
  background: #fafafc;
}

.development-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  width: 100%;
}

.development-hero__title {
  width: 100%;
  margin: 0;
  color: #101828;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.development-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
}

.development-hero__subtitle {
  margin: 0;
  color: #4a5565;
  font-size: 32px;
  font-weight: 400;
  line-height: 32.5px;
  letter-spacing: 0;
}

.development-hero__actions {
  display: flex;
  align-items: flex-start;
  gap: 15.992px;
  width: 583.995px;
}

.development-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 61.252px;
  border-radius: 14px;
  color: #101828;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.development-hero__button--primary {
  width: 209.483px;
  background: linear-gradient(90deg, #6c5ce7 0%, #8e7cff 100%);
  color: #ffffff;
}

.development-hero__button--secondary {
  width: 267.403px;
  border: 0.636px solid #e5e7eb;
  background: #ffffff;
}

.development-fields {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 557.969px;
  padding: 120px 150px;
  background: #ffffff;
}

.development-fields__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
}

.development-fields__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
}

.development-fields__title,
.development-fields__description,
.development-fields__list {
  margin: 0;
}

.development-fields__title {
  color: #101828;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.development-fields__title--mobile {
  display: none;
}

.development-fields__description {
  width: 654px;
  color: #4a5565;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
}

.development-fields__list {
  display: flex;
  flex-direction: column;
  gap: 15.992px;
  width: 583.995px;
  padding: 0;
  list-style: none;
}

.development-fields__item {
  display: flex;
  align-items: center;
  gap: 11.994px;
  min-height: 27.995px;
  color: #1e2939;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0;
}

.development-fields__item-icon {
  display: block;
  flex: 0 0 auto;
  width: 23.997px;
  height: 23.997px;
}

.development-fields__webinar {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 40px;
  color: #853ef6;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.22s ease,
    text-decoration-color 0.22s ease,
    filter 0.22s ease;
}

.development-fields__webinar:hover {
  color: #9f6cff;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 0.14em;
  filter: brightness(1.06);
}

.development-fields__webinar-icon {
  display: block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

.development-expertise {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 709.199px;
  padding: 120px 150px;
  background: #fafafc;
}

.development-expertise__inner {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(0, 1023.994px);
  align-items: flex-start;
  justify-content: center;
  gap: 64px;
  width: 100%;
}

.development-expertise__head {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
  min-width: 0;
}

.development-expertise__title,
.development-expertise__description,
.development-expertise-card__header h3,
.development-expertise-card__list,
.development-expertise-card__item strong,
.development-expertise-card__item span span {
  margin: 0;
}

.development-expertise__title {
  width: 100%;
  color: #101828;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.development-expertise__description {
  width: 100%;
  color: #4a5565;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
}

.development-expertise__comparison {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  max-width: 1023.994px;
  min-width: 0;
  min-height: 469.199px;
  border-radius: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.development-expertise-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(24px, 1.7vw, 31.993px);
  min-height: 469.199px;
  padding: clamp(32px, 2.95vw, 56.627px);
}

.development-expertise-card--ai {
  border: 0.636px solid #e5e0ff;
  border-right: 0;
  border-radius: 24px 0 0 24px;
  background: linear-gradient(137deg, #f3f0ff 0%, #ffffff 100%);
}

.development-expertise-card--engineers {
  border: 0.636px solid #e5e7eb;
  border-radius: 0 24px 24px 0;
  background: #ffffff;
}

.development-expertise-card__header {
  display: flex;
  align-items: center;
  gap: 15.992px;
  min-height: 47.985px;
  width: 100%;
}

.development-expertise-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 47.985px;
  height: 47.985px;
  border-radius: 14px;
}

.development-expertise-card__badge svg {
  display: block;
  width: 32px;
  height: 32px;
}

.development-expertise-card__badge path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.development-expertise-card__badge--ai {
  background: #6c5ce7;
  color: #ffffff;
}

.development-expertise-card__badge--engineers {
  background: #101828;
  color: #ffffff;
}

.development-expertise-card__header h3 {
  color: #101828;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
}

.development-expertise-card__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 0;
  list-style: none;
}

.development-expertise-card__item {
  display: flex;
  align-items: flex-start;
  gap: 15.992px;
  min-height: 49px;
}

.development-expertise-card__item-icon {
  display: block;
  flex: 0 0 auto;
  width: 23.997px;
  height: 23.997px;
  margin-top: 3.998px;
}

.development-expertise-card__item > span {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.development-expertise-card__item strong {
  color: #101828;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0;
}

.development-expertise-card__item span span {
  width: 100%;
  max-width: 360px;
  color: #4a5565;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0;
}

.development-expertise__plus {
  position: absolute;
  top: 202.594px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 3.819px solid #fafafc;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #6c5ce7;
  font-size: 0;
  font-weight: 700;
  line-height: 1;
  transform: translateX(-50%);
}

.development-expertise__plus::before,
.development-expertise__plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.development-expertise__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.development-guarantees {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  min-height: 872.99px;
  padding: 120px 150px;
  background: #ffffff;
}

.development-guarantees__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.development-guarantees__title,
.development-guarantees__subtitle,
.development-guarantees-card__content h3,
.development-guarantees-card__content p {
  margin: 0;
}

.development-guarantees__title {
  width: 100%;
  color: #101828;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.development-guarantees__subtitle {
  color: #4a5565;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
}

.development-guarantees__subtitle strong {
  color: #6c5ce7;
  font-weight: 700;
}

.development-guarantees__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 24px;
  width: 100%;
}

.development-guarantees-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
  width: 100%;
  padding: 32px 24px;
  border: 0.636px solid #f3f4f6;
  border-radius: 16px;
  background: #fafafc;
}

.development-guarantees-card:first-child {
  gap: 24px;
}

.development-guarantees-card__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 47.995px;
  height: 47.995px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.development-guarantees-card__icon {
  display: block;
  width: 23.997px;
  height: 23.997px;
}

.development-guarantees-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  width: 100%;
}

.development-guarantees-card:first-child .development-guarantees-card__content {
  gap: 12px;
}

.development-guarantees-card__content h3 {
  width: 100%;
  color: #101828;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0;
}

.development-guarantees-card__content p {
  width: 100%;
  color: #4a5565;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0;
}

.development-cases {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 808.997px;
  padding: 120px 150px;
  background: #ffffff;
}

.development-cases__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 63.997px;
  width: 100%;
}

.development-cases__title,
.development-case-card__title,
.development-case-card__tags {
  margin: 0;
}

.development-cases__title {
  color: #101828;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.development-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
}

.development-case-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  height: 452px;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.development-case-card__link {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.development-case-card__link:focus-visible {
  outline: 2px solid #853ef6;
  outline-offset: -2px;
}

.development-case-card__media {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f3f4f6;
}

.development-case-card__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.development-case-card__image--sportmaster {
  top: -15.23%;
  height: 154.33%;
}

.development-case-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  padding: 32px;
}

.development-case-card__title {
  margin: 0;
  width: 100%;
  color: #101828;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
  transition: color 0.28s ease;
}

.development-case-card__link:hover .development-case-card__title,
.development-case-card__link:focus-visible .development-case-card__title {
  color: #605a73;
}

.development-case-card__link:hover .development-case-card__image,
.development-case-card__link:focus-visible .development-case-card__image {
  transform: scale(1.08);
}

.development-case-card__tags {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4px;
  max-width: none;
  padding: 0;
  list-style: none;
}

.development-case-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 8px 16px;
  border-radius: 24px;
  background: #f5f3f8;
  color: #141416;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  white-space: nowrap;
}

.development-case-card__tag--accent {
  background: #e4dbff;
}

.development-cooperation {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 729.208px;
  padding: 120px 150px;
  background: #fafafc;
}

.development-cooperation__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 63.996px;
  width: 100%;
}

.development-cooperation__title,
.development-work-card__header h3,
.development-work-card__description,
.development-work-card__fit,
.development-stacks__title,
.development-stack-card__content h3,
.development-stack-card__content p {
  margin: 0;
}

.development-cooperation__title {
  color: #101828;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.development-cooperation__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 32px;
  width: 100%;
}

.development-work-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23.997px;
  min-width: 0;
  min-height: 363.982px;
  padding: 32px 32.63px;
  border: 0.636px solid #e5e7eb;
  border-radius: 24px;
  background: #ffffff;
}

.development-work-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.development-work-card__header {
  display: flex;
  align-items: center;
  gap: 15.992px;
  width: 100%;
  min-height: 47.985px;
}

.development-work-card__icon,
.development-stack-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: #f3f0ff;
  color: #705cf6;
}

.development-work-card__icon {
  width: 47.985px;
  height: 47.985px;
  border-radius: 14px;
}

.development-work-card__icon svg {
  width: 23.997px;
  height: 23.997px;
}

.development-work-card__icon svg,
.development-stack-card__icon svg {
  display: block;
}

.development-work-card__icon path,
.development-work-card__icon circle,
.development-stack-card__icon path,
.development-stack-card__icon rect,
.development-stack-card__icon circle,
.development-stack-card__icon ellipse {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.development-work-card__header h3 {
  min-width: 0;
  color: #101828;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0;
}

.development-work-card__description {
  width: 100%;
  color: #4a5565;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0;
}

.development-work-card__fit {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 16px;
  border-radius: 14px;
  background: #fafafc;
  color: #364153;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0;
}

.development-work-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 0 0 auto;
  width: 100%;
  height: 56px;
  margin-top: auto;
  border-radius: 12px;
  background: linear-gradient(90deg, #6c5ce7 0%, #8e7cff 100%);
  color: #f5f3f8;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
}

.development-work-card__button svg {
  display: block;
  width: 24px;
  height: 24px;
}

.development-work-card__button path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.development-stacks {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 646.546px;
  padding: 120px 150px;
  background: #ffffff;
}

.development-stacks__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  width: 100%;
}

.development-stacks__title {
  color: #101828;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.development-stacks__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 31px 32px;
  width: 100%;
}

.development-stack-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
  min-height: 129.273px;
  padding: 32.636px;
  border: 0.636px solid #f3f4f6;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.development-stack-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}

.development-stack-card__icon svg {
  width: 32px;
  height: 32px;
}

.development-stack-card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.development-stack-card__content h3 {
  width: 100%;
  color: #101828;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0;
}

.development-stack-card__content p {
  width: 100%;
  color: #4a5565;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0;
}

.development-faq {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 120px 150px;
  background: #fafafc;
}

.development-faq__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  width: 100%;
}

.development-faq__title,
.development-faq__question,
.development-faq__answer p {
  margin: 0;
}

.development-faq__title {
  flex: 0 0 auto;
  color: #101828;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.development-faq__accordion {
  display: flex;
  flex: 0 0 767.998px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15.992px;
  max-width: 100%;
}

.development-faq__item {
  width: 100%;
  border: 0.636px solid #f3f4f6;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
  overflow: clip;
}

.development-faq__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 67.994px;
  padding: 20px 23.997px;
  list-style: none;
  cursor: pointer;
}

.development-faq__summary::-webkit-details-marker {
  display: none;
}

.development-faq__question {
  flex: 1 1 auto;
  min-width: 0;
  color: #101828;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0;
  transition: color 0.22s ease;
}

.development-faq__item:not([open]) .development-faq__summary:hover .development-faq__question {
  color: #853ef6;
}

.development-faq__icon {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
}

.development-faq__icon::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #98a2b3;
  border-bottom: 1.5px solid #98a2b3;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s ease;
}

.development-faq__item[open] .development-faq__icon::before {
  transform: translateY(2px) rotate(225deg);
}

.development-faq__summary:focus-visible {
  outline: 2px solid #705cf6;
  outline-offset: -4px;
}

.development-faq__answer {
  width: 100%;
  padding: 0 23.997px 20px;
  color: #4a5565;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0;
}

.development-faq__answer p {
  white-space: pre-wrap;
}

.development-discuss {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 120px 150px;
  background: #ffffff;
}

.development-discuss__panel {
  position: relative;
  width: 100%;
  min-height: 397.236px;
  overflow: clip;
  border-radius: 40px;
  background: linear-gradient(90deg, #6c5ce7 0%, #8e7cff 100%);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.development-discuss__decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.development-discuss__glow {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.1;
  filter: blur(64px);
}

.development-discuss__glow--left {
  top: -95.999px;
  left: -95.999px;
  width: 255.996px;
  height: 255.996px;
}

.development-discuss__glow--right {
  top: 141.236px;
  left: 52.35%;
  width: 384px;
  height: 384px;
}

.development-discuss__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 767.998px;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 80px;
}

.development-discuss__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  text-align: center;
}

.development-discuss__title,
.development-discuss__description {
  margin: 0;
}

.development-discuss__title {
  width: 100%;
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0;
}

.development-discuss__description {
  width: 100%;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
}

.development-discuss__actions {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 15.992px;
  width: 100%;
  margin-top: 40px;
}

.development-discuss__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 61.252px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.development-discuss__button--primary {
  width: 210.06px;
  background: #ffffff;
  color: #6c5ce7;
}

.development-discuss__button--secondary {
  width: 209.443px;
  border: 0.636px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.blog-entry--card {
  min-width: 0;
}

.blog-entry--lead .blog-entry-divider,
.blog-entry--compact .blog-entry-divider,
.blog-entry--feature .blog-entry-divider {
  margin-bottom: 32px;
}

.blog-page-card-grid {
  align-items: stretch;
}

.blog-entry--card,
.blog-entry--card .blog-entry-link {
  height: 100%;
}

.blog-entry--card .blog-entry-media {
  margin-top: auto;
}

.blog-entry-compact-layout {
  display: grid;
  grid-template-columns: minmax(0, 387fr) minmax(160px, 250fr);
  column-gap: 24px;
  align-items: start;
}

.blog-entry-compact-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 250px;
}

.blog-entry-author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.blog-entry-author-avatar {
  position: relative;
  width: 24px;
  height: 24px;
  overflow: hidden;
  border-radius: 999px;
  flex: 0 0 auto;
}

.blog-entry-author-avatar-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-entry-author-name {
  color: #0b0415;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.blog-entry-media {
  position: relative;
  overflow: hidden;
  background: #f2f2f2;
}

.blog-entry-media--lead {
  aspect-ratio: 661 / 348;
}

.blog-entry-media--card {
  aspect-ratio: 1 / 1;
}

.blog-entry-media--compact {
  aspect-ratio: 1 / 1;
}

.blog-entry-media--feature {
  aspect-ratio: 798 / 564;
}

.blog-entry-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  transition: transform 0.35s ease;
}

.blog-article-main {
  width: 100%;
}

.blog-article-page {
  padding: 128px 150px 0;
}

.blog-article-shell {
  display: flex;
  flex-direction: column;
  width: min(100%, 1324px);
  margin-inline: auto;
}

.blog-article-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 64px;
}

.blog-article-back-link,
.blog-article-title,
.blog-article-source,
.blog-article-author-name,
.blog-article-author-role,
.blog-article-section-title,
.blog-article-note-title,
.blog-article-related-title,
.related-article-title {
  margin: 0;
}

.blog-article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #6025bf;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

.blog-article-back-link::before {
  content: "";
  width: 10px;
  height: 10px;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.blog-article-title {
  width: 100%;
  max-width: 1180px;
  text-align: left;
  color: #141416;
  font-size: 72px;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.blog-article-meta {
  display: grid;
  align-items: start;
  grid-template-columns: 280px minmax(0, 1fr);
  column-gap: 64px;
  row-gap: 16px;
  width: 100%;
  margin-left: 0;
}

.blog-article-date-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  white-space: nowrap;
}

.blog-article-date-part {
  color: #9999a4;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

.blog-article-date-part--day {
  color: #141416;
}

.blog-article-source-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 980px;
  min-width: 0;
  margin-left: 0;
}

.blog-article-source {
  justify-self: end;
  color: #9999a4;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  width: fit-content;
  min-width: 0;
  max-width: 100%;
  text-align: right;
  white-space: normal;
  overflow-wrap: anywhere;
}

.blog-article-source a {
  color: #6025bf;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.blog-article-share {
  grid-column: 2;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  padding-top: 0;
}

.blog-article-share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #d9ccff;
  border-radius: 999px;
  color: #6025bf;
  background: #fff;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease,
    transform 0.2s ease;
}

.blog-article-share-link svg {
  display: block;
  width: 20px;
  height: 20px;
}

.blog-article-share-link:hover {
  border-color: #6025bf;
  background: #f7f2ff;
  transform: translateY(-1px);
}

.blog-article-content {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  column-gap: 64px;
  align-items: start;
}

.blog-article-author-card {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.blog-article-author-photo {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  object-fit: cover;
}

.blog-article-author-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.blog-article-author-name {
  color: #141416;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.blog-article-author-role {
  color: #6f6680;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.blog-article-body {
  min-width: 0;
  max-width: 980px;
}

.blog-article-hero {
  overflow: hidden;
  border-radius: 24px;
  background: #f5f1fd;
  aspect-ratio: 1080 / 560;
  margin-bottom: 40px;
}

.blog-article-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-article-richtext {
  max-width: 860px;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.blog-article-richtext :where(p, li, blockquote, figcaption, h2, h3, h4, a) {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.blog-article-richtext--html {
  max-width: 100%;
}

.blog-article-richtext--html img,
.blog-article-richtext--html video {
  max-width: 100%;
  height: auto;
}

.blog-article-lead {
  margin: 0 0 48px;
  padding-left: 24px;
  border-left: 2px solid #d9ccff;
  color: #3f3552;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
}

.blog-article-section {
  margin-top: 40px;
}

.blog-article-section:first-of-type {
  margin-top: 0;
}

.blog-article-section-title,
.blog-article-note-title {
  color: #141416;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.blog-article-richtext p {
  margin: 0 0 20px;
  color: #2d2733;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
}

.blog-article-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding-left: 28px;
  color: #2d2733;
}

.blog-article-list li {
  font-size: 22px;
  line-height: 1.6;
}

.blog-article-note {
  margin-top: 48px;
  padding: 32px;
  border: 1px solid #e2d8f6;
  border-radius: 24px;
  background: #faf8fe;
}

.blog-article-list--note {
  gap: 12px;
}

.blog-article-related {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 120px;
}

.blog-article-related-title {
  color: #141416;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.blog-article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.related-article-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: inherit;
  text-decoration: none;
}

.related-article-media {
  overflow: hidden;
  border-radius: 20px;
  background: #f5f1fd;
  aspect-ratio: 459 / 314;
}

.related-article-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.related-article-copy {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.related-article-date {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 90px;
  color: #9999a4;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.related-article-title {
  color: #141416;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
  transition: color 0.2s ease;
}

.related-article-card:hover .related-article-title {
  color: #6025bf;
}

.related-article-card:hover .related-article-media img {
  transform: scale(1.02);
}

.page-blog .site-footer {
  margin-top: 155px;
}

.blog-page-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}

.blog-page-submit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid #d9ccff;
  border-radius: 999px;
  color: #6025bf;
  background: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.blog-page-submit-link:hover {
  border-color: #6025bf;
  background: #f7f2ff;
}

.blog-entry-link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.blog-entry-link:hover .blog-entry-title {
  color: #6025bf;
}

.blog-entry-link:hover .blog-entry-image {
  transform: scale(1.02);
}

.blog-entry-image--empty,
.blog-article-hero-empty,
.blog-article-author-photo--empty,
.blog-entry-author-avatar-image--empty {
  background:
    linear-gradient(135deg, rgba(96, 37, 191, 0.18), rgba(51, 126, 103, 0.14)),
    #f5f1fd;
}

.blog-entry-image--empty {
  width: 100%;
  height: 100%;
}

.blog-article-hero-empty {
  width: 100%;
  height: 100%;
}

.blog-article-author-photo--empty {
  border: 1px solid #e2d8f6;
}

.blog-entry-author-avatar-image--empty {
  display: block;
  width: 100%;
  height: 100%;
}

.blog-page-empty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 720px;
  color: #3f3552;
  font-size: 22px;
  line-height: 1.5;
}

.blog-page-empty p {
  margin: 0;
}

.cms-main {
  width: 100%;
  background: #fafafc;
}

.cms-page {
  width: min(100%, 1320px);
  min-height: 720px;
  padding: 128px 64px 0;
}

.cms-page--public {
  width: min(100%, 980px);
}

.cms-auth-panel,
.cms-section {
  width: 100%;
  padding: 40px;
  border: 1px solid #e2d8f6;
  border-radius: 8px;
  background: #ffffff;
}

.cms-auth-panel {
  max-width: 560px;
}

.cms-auth-panel--wide {
  max-width: 980px;
}

.cms-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.cms-header-actions,
.cms-actions,
.cms-post-row-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cms-kicker,
.cms-title,
.cms-copy,
.cms-section-heading h2,
.cms-post-row h3,
.cms-post-row p,
.cms-alert,
.cms-empty,
.cms-field span,
.cms-field small,
.cms-field-error {
  margin: 0;
}

.cms-kicker {
  margin-bottom: 10px;
  color: #6025bf;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}

.cms-title {
  color: #141416;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.cms-copy {
  margin-top: 18px;
  color: #4f465f;
  font-size: 18px;
  line-height: 1.55;
}

.cms-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cms-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #e2d8f6;
  border-radius: 999px;
  color: #3f3552;
  background: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.cms-tab span {
  color: #9999a4;
}

.cms-tab.is-active {
  border-color: #6025bf;
  color: #6025bf;
  background: #f7f2ff;
}

.cms-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.cms-stat {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border: 1px solid #e8e3f2;
  border-radius: 8px;
  color: #3f3552;
  background: #ffffff;
  text-decoration: none;
}

.cms-stat span {
  font-size: 14px;
  line-height: 1.35;
}

.cms-stat strong {
  color: #141416;
  font-size: 24px;
  line-height: 1;
}

.cms-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cms-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cms-section-heading h2 {
  color: #141416;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

.cms-section-heading a {
  color: #6025bf;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.cms-section-heading-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cms-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.cms-auth-panel .cms-form {
  margin-top: 28px;
}

.cms-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.cms-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  color: #141416;
}

.cms-field--wide {
  grid-column: 1 / -1;
}

.cms-field span {
  color: #6f6680;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.cms-field input,
.cms-field select,
.cms-field textarea {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid #d9ccff;
  border-radius: 8px;
  color: #141416;
  background: #ffffff;
  font: inherit;
  font-size: 16px;
  line-height: 1.45;
  outline: none;
}

.cms-field textarea {
  resize: vertical;
}

.cms-field input:focus,
.cms-field select:focus,
.cms-field textarea:focus {
  border-color: #6025bf;
  box-shadow: 0 0 0 3px rgba(96, 37, 191, 0.12);
}

.cms-field small {
  color: #867b98;
  font-size: 13px;
  line-height: 1.45;
}

.cms-field small a {
  color: #6025bf;
}

.cms-image-field {
  gap: 14px;
}

.cms-subfield {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cms-subfield span {
  color: #867b98;
  font-size: 13px;
  font-weight: 500;
}

.cms-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.cms-check input {
  width: 18px;
  height: 18px;
}

.cms-check span {
  color: #6f6680;
  font-size: 14px;
  font-weight: 500;
}

.cms-image-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  border: 1px dashed #d9ccff;
  border-radius: 8px;
  background: #f8f5ff;
  overflow: hidden;
}

.cms-image-preview img {
  display: block;
  width: 100%;
  max-height: 340px;
  object-fit: contain;
}

.cms-image-preview p {
  margin: 0;
  padding: 16px;
  color: #867b98;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.cms-editor-field {
  gap: 12px;
}

.cms-editor-field-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cms-editor-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid #d9ccff;
  border-radius: 999px;
  background: #f8f5ff;
}

.cms-editor-switch-button {
  min-height: 32px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: #5f5572;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.cms-editor-switch-button.is-active {
  color: #6025bf;
  background: #ffffff;
}

.cms-article-preview {
  min-height: 240px;
  padding: 16px;
  border: 1px solid #d9ccff;
  border-radius: 8px;
  background: #ffffff;
}

.cms-article-preview .blog-article-richtext {
  margin: 0;
}

.cms-article-preview .blog-article-richtext p:first-child {
  margin-top: 0;
}

.cms-field-error {
  color: #b42318;
  font-size: 14px;
  line-height: 1.4;
}

.cms-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.cms-button--primary {
  color: #ffffff;
  background: #6025bf;
}

.cms-button--ghost {
  color: #6025bf;
  border-color: #d9ccff;
  background: #ffffff;
}

.cms-button--danger {
  color: #b42318;
  border-color: #f6c7c3;
  background: #fff7f6;
}

.cms-alert {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.45;
}

.cms-alert--success {
  color: #175b45;
  background: #ecf8f3;
}

.cms-alert--error {
  color: #b42318;
  background: #fff0ee;
}

.cms-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cms-author-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cms-author-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid #e8e3f2;
  border-radius: 8px;
  background: #ffffff;
}

.cms-author-card-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cms-author-card-main h3 {
  margin: 0;
  color: #141416;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
}

.cms-author-card-main p {
  margin: 0;
  color: #4f465f;
  font-size: 16px;
  line-height: 1.5;
}

.cms-author-card-meta {
  margin-top: 6px;
  color: #867b98;
  font-size: 14px;
}

.cms-author-card-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  background: #f7f2ff;
}

.cms-author-card-photo--empty {
  background:
    linear-gradient(135deg, rgba(96, 37, 191, 0.18), rgba(51, 126, 103, 0.14)),
    #f5f1fd;
}

.cms-post-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 20px;
  border: 1px solid #e8e3f2;
  border-radius: 8px;
  background: #ffffff;
}

.cms-post-row-main {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  min-width: 0;
}

.cms-post-row-thumb {
  width: 112px;
  height: 84px;
  border-radius: 8px;
  border: 1px solid #e8e3f2;
  background: #f7f2ff;
  overflow: hidden;
}

.cms-post-row-thumb img,
.cms-post-row-thumb-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.cms-post-row-thumb img {
  object-fit: cover;
}

.cms-post-row-thumb-placeholder {
  background:
    linear-gradient(135deg, rgba(96, 37, 191, 0.18), rgba(51, 126, 103, 0.14)),
    #f5f1fd;
}

.cms-post-row-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.cms-post-row-top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cms-post-row-top time {
  color: #9999a4;
  font-size: 14px;
  line-height: 1.4;
}

.cms-post-row h3 {
  color: #141416;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
}

.cms-post-row p {
  color: #4f465f;
  font-size: 16px;
  line-height: 1.5;
}

.cms-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #3f3552;
  background: #f0ecf7;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.cms-status--published {
  color: #175b45;
  background: #dff5ec;
}

.cms-status--pending {
  color: #855700;
  background: #fff2cc;
}

.cms-status--rejected {
  color: #b42318;
  background: #ffe1de;
}

.cms-status--archived {
  color: #4f465f;
  background: #ece8f2;
}

.cms-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cms-tags span {
  padding: 5px 10px;
  border-radius: 999px;
  color: #3f3552;
  background: #f7f2ff;
  font-size: 13px;
  line-height: 1.2;
}

.cms-empty {
  color: #4f465f;
  font-size: 18px;
  line-height: 1.5;
}

.contact {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 120px;
  padding: 0 150px;
}

.contact-info {
  display: flex;
  flex: 1 1 420px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  min-width: 0;
  max-width: 620px;
}

.contact-title,
.contact-description,
.contact-field-label,
.contact-policy-text,
.contact-button {
  margin: 0;
}

.contact-title {
  max-width: 1105px;
  color: #141416;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
}

.contact-description {
  max-width: 485px;
  color: #141416;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.contact-phone {
  color: #853ef6;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1 1 720px;
  width: 100%;
  min-width: 0;
  max-width: 720px;
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 -3px 7px 0 rgba(133, 62, 246, 0.04),
    0 -12px 12px 0 rgba(133, 62, 246, 0.03),
    0 76px 21px 0 rgba(133, 62, 246, 0),
    0 49px 20px 0 rgba(133, 62, 246, 0.01),
    0 27px 16px 0 rgba(133, 62, 246, 0.02),
    0 12px 12px 0 rgba(133, 62, 246, 0.03),
    0 3px 7px 0 rgba(133, 62, 246, 0.04);
}

.contact-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.contact-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  min-height: 76px;
  padding-top: 18px;
  padding-bottom: 22px;
  border-bottom: 2px solid #d9ccff;
  color: #141416;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  transition: border-bottom-color 0.22s ease;
}

.contact-field--message {
  min-height: 76px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.contact-field-label {
  position: absolute;
  left: 0;
  top: 32px;
  pointer-events: none;
  color: #9999a4;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  transform: translateY(-50%);
  transform-origin: left top;
  transition:
    top 0.18s ease,
    transform 0.18s ease,
    font-size 0.18s ease,
    color 0.18s ease;
}

.contact-field .form-field-control {
  margin-top: 20px;
}

.contact-field:focus-within .contact-field-label,
.contact-field.is-filled .contact-field-label {
  top: 0;
  font-size: 14px;
  transform: translateY(0);
}

.contact-field-input {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #141416;
  font: inherit;
  line-height: 1.4;
  outline: none;
}

.form-field-clear-host {
  position: relative;
}

.form-field-clear-host .form-field-control {
  position: relative;
  display: block;
  width: 100%;
}

.form-field-clear-host .form-field-control > input,
.form-field-clear-host .form-field-control > textarea {
  padding-right: 32px;
}

.form-field-clear {
  position: absolute;
  right: 0;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #a99fc1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition:
    opacity 0.18s ease,
    color 0.18s ease,
    background-color 0.18s ease;
}

.form-field-clear--textarea {
  top: 14px;
  transform: none;
}

.form-field-clear::before,
.form-field-clear::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 1.8px;
  border-radius: 2px;
  background: currentColor;
}

.form-field-clear::before {
  transform: rotate(45deg);
}

.form-field-clear::after {
  transform: rotate(-45deg);
}

.form-field-clear-host.is-clear-focused .form-field-clear {
  opacity: 1;
  pointer-events: auto;
}

.form-field-clear-host.is-clear-focused .form-field-clear:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.form-field-clear:hover,
.form-field-clear:focus-visible {
  color: #7b33f4;
  background: rgba(123, 51, 244, 0.08);
  outline: none;
}

.contact-field-input::placeholder {
  color: transparent;
}

.contact-field-input--message {
  min-height: 28px;
  resize: none;
}

.contact-field:focus-within {
  border-bottom-color: #7b33f4;
}

.contact-field:not(.is-error).is-filled {
  border-bottom-color: #7b33f4;
}

.contact-field:not(.is-error):hover {
  border-bottom-color: #9f6cff;
}

.contact-policy {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  cursor: pointer;
}

.contact-policy-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-policy-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 90px;
  background: #853ef6;
  color: #f5f3f8;
  font-size: 16px;
  line-height: 1;
  transition:
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease;
}

.contact-policy-input:not(:checked) + .contact-policy-box {
  background: #ede7ff;
  color: transparent;
}

.contact-policy:hover .contact-policy-box,
.contact-policy:focus-within .contact-policy-box {
  box-shadow: 0 0 0 4px rgba(133, 62, 246, 0.12);
}

.contact-policy:hover .contact-policy-input:not(:checked) + .contact-policy-box,
.contact-policy:focus-within .contact-policy-input:not(:checked) + .contact-policy-box {
  background: #dfd3ff;
}

.contact-policy-text {
  color: #9999a4;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.contact-policy-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.contact-form__file-input {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.contact-form__files,
.contact-form__success,
.contact-form__error {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.contact-form__files {
  color: #706388;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-form__files.has-file {
  display: flex;
  width: 100%;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid #d8ccf7;
  border-radius: 8px;
  background: #f4f0ff;
  color: #141416;
  overflow-wrap: anywhere;
}

.form-file-chip__name {
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: anywhere;
}

.form-file-chip__detach {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #853ef6;
  cursor: pointer;
  padding: 0;
}

.form-file-chip__detach svg {
  display: block;
  width: 15px;
  height: 17px;
}

.form-file-chip__detach:hover {
  background: #ede7ff;
  color: #6c2fd0;
}

.form-file-chip__detach:focus-visible {
  outline: 2px solid #853ef6;
  outline-offset: 2px;
  border-radius: 4px;
}

.contact-form__success {
  color: #2f7d4a;
}

.contact-form__error {
  color: #f15b50;
}

.contact-form__error:empty {
  display: none;
}

.contact-field .contact-form__error:not(:empty) {
  display: block;
}

.contact-form > .contact-form__error:not(:empty) {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 24px;
  padding: 3px 8px;
  background: #f15b50;
  color: #f5f3f8;
}

.contact-form > [data-contact-error-for="policy"]:not(:empty) {
  max-width: calc(100% - 40px);
  margin-left: 40px;
}

.contact-field.is-error,
.contact-policy.is-error {
  border-color: #f15b50;
}

.contact-field.is-error .contact-field-label {
  color: #f15b50;
}

.contact-form.is-success .contact-fields,
.contact-form.is-success .contact-policy,
.contact-form.is-success [data-contact-error-for="policy"],
.contact-form.is-success .contact-actions,
.contact-form.is-success .contact-form__files {
  display: none;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 54px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
}

.contact-button--attach {
  flex: 0 0 auto;
  justify-content: flex-start;
  background: transparent;
  color: #a99fc1;
}

.contact-button--primary {
  width: 230px;
  background: #853ef6;
  color: #f5f3f8;
}

.contact-button-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 60px;
  padding: 60px 150px 80px;
  background: #f7f5ff;
}

.site-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer-logo {
  display: block;
  flex: 0 0 auto;
  width: 155px;
  height: 28.918px;
}

.site-footer-logo img {
  display: block;
  width: 100%;
  height: 100%;
}

.site-footer-motto,
.site-footer-nav-title,
.site-footer-nav-link,
.site-footer-subnav a,
.site-footer-download,
.site-footer-contact-link,
.site-footer-legal-links p,
.site-footer-legal-links a,
.site-footer-company p {
  margin: 0;
}

.site-footer-motto {
  color: #141416;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
}

.site-footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
}

.site-footer-navs {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  flex: 1 1 auto;
  min-width: 0;
  opacity: 0.95;
}

.site-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.site-footer-nav-title,
.site-footer-nav-link,
.site-footer-download {
  color: #141416;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}

.site-footer-nav-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer-nav-chevron {
  display: none;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.site-footer-subnav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-subnav a {
  color: #141416;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

.site-footer-download {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
}

.site-footer-download-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.site-footer-download-icon img {
  display: block;
  width: 15px;
  height: 16.603px;
}

.site-footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 251px;
  font-style: normal;
  opacity: 0.95;
}

.site-footer-contacts-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer-contact-link {
  color: #141416;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}

.site-footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.site-footer-social img {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.18s ease;
}

.site-footer-social:hover img,
.site-footer-social:focus-visible img {
  opacity: 0.5;
}

.site-footer-legal {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
}

.site-footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 0 214px;
  color: #a99fc1;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.site-footer-legal-links a {
  color: inherit;
  text-decoration: none;
}

.site-footer-company {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 1 798px;
  color: #a99fc1;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.site-footer-company-meta {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

@media (min-width: 1921px) {
  :root {
    --ultrawide-content-max: clamp(922px, 49.378vw, 1201px);
    --ultrawide-gutter: calc((100vw - var(--ultrawide-content-max)) / 2);
    --ultra-fluid-gap-md: clamp(16px, 0.8194vw, 24px);
    --ultra-fluid-gap-lg: clamp(23px, 1.1315vw, 37px);
    --ultra-fluid-gap-xl: clamp(31px, 1.6777vw, 56px);
    --ultra-fluid-gap-2xl: clamp(44px, 2.224vw, 76px);
    --ultra-fluid-title-xl: clamp(31px, 1.5606vw, 37px);
    --ultra-fluid-title-2xl: clamp(42px, 2.224vw, 53px);
    --ultra-fluid-text-md: clamp(14px, 0.7414vw, 17px);
  }

  .site-header,
  .hero,
  .showreel-block,
  .clients,
  .services,
  .cases,
  .advantages,
  .platforms,
  .reviews,
  .blog,
  .contact,
  .site-footer,
  .blog-page,
  .blog-article-page,
  .development-hero,
  .development-fields,
  .development-expertise,
  .development-guarantees,
  .development-cases,
  .development-cooperation,
  .development-stacks,
  .development-faq,
  .development-discuss,
  .support-hero,
  .support-to-whom,
  .support-today,
  .support-method,
  .support-outcome,
  .support-models,
  .support-control,
  .support-onboarding,
  .support-cases,
  .support-faq,
  .support-discuss {
    padding-left: max(49px, var(--ultrawide-gutter));
    padding-right: max(49px, var(--ultrawide-gutter));
  }

  .site-header,
  .hero,
  .showreel-block,
  .clients,
  .services,
  .cases,
  .advantages,
  .platforms,
  .reviews,
  .blog,
  .contact,
  .blog-page,
  .blog-article-page,
  .development-hero,
  .development-fields,
  .development-expertise,
  .development-guarantees,
  .development-cases,
  .development-cooperation,
  .development-stacks,
  .development-faq,
  .development-discuss {
    padding-left: max(115px, var(--ultrawide-gutter));
    padding-right: max(115px, var(--ultrawide-gutter));
  }

  .blog-page-shell,
  .blog-article-shell,
  .cms-page {
    margin-left: auto;
    margin-right: auto;
  }

  .development-expertise {
    min-height: auto;
    padding-top: var(--ultra-fluid-gap-2xl);
    padding-bottom: var(--ultra-fluid-gap-2xl);
  }

  .development-expertise__inner {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(780px, 1.35fr);
    align-items: start;
    gap: clamp(48px, 3.33vw, 96px);
  }

  .development-expertise__head {
    gap: var(--ultra-fluid-gap-md);
  }

  .development-expertise__title {
    font-size: var(--ultra-fluid-title-xl);
  }

  .development-expertise__description {
    max-width: 540px;
    font-size: var(--ultra-fluid-text-md);
    line-height: 1.4;
  }

  .development-expertise__comparison {
    flex: 0 1 auto;
    width: 100%;
    min-height: clamp(469px, 26vw, 620px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .development-expertise-card {
    min-height: auto;
    padding: clamp(36px, 2.7vw, 56px);
    gap: clamp(24px, 1.67vw, 36px);
  }

  .development-expertise-card__item span span {
    max-width: none;
  }

  .development-expertise__plus {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .blog-page {
    padding-top: var(--ultra-fluid-gap-2xl);
  }

  .blog-page-shell {
    width: min(100%, var(--ultrawide-content-max));
  }

  .blog-page-title {
    font-size: var(--ultra-fluid-title-2xl);
    margin-bottom: clamp(64px, 4.17vw, 104px);
  }

  .blog-page-blocks {
    gap: clamp(72px, 4.17vw, 112px);
  }

  .blog-page-block {
    gap: var(--ultra-fluid-gap-lg);
  }

  .blog-page-primary-grid,
  .blog-page-secondary-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    column-gap: clamp(48px, 5vw, 120px);
  }

  .blog-page-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: var(--ultra-fluid-gap-md);
  }

  .blog-entry-compact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
    column-gap: var(--ultra-fluid-gap-md);
  }

  .blog-entry-title--feature {
    max-width: min(100%, 620px);
    font-size: clamp(36px, 1.88vw, 44px);
  }
}

@media (max-width: 1279px) {
  .blog-article-page {
    padding: 120px 64px 0;
  }

  .blog-article-content {
    grid-template-columns: 240px minmax(0, 1fr);
    column-gap: 48px;
  }

  .blog-article-title {
    font-size: 60px;
  }

  .blog-article-lead {
    font-size: 24px;
  }

  .blog-article-section-title,
  .blog-article-note-title {
    font-size: 36px;
  }

  .blog-article-richtext p,
  .blog-article-list li {
    font-size: 20px;
  }

  .blog-article-related-title {
    font-size: 40px;
  }

  .related-article-title {
    font-size: 24px;
  }

  .blog-page {
    padding: 120px 64px 0;
  }

  .blog-page-shell {
    width: 100%;
  }

  .blog-page-primary-grid,
  .blog-page-secondary-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 40px;
  }

  .blog-page-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .blog-entry-compact-layout {
    grid-template-columns: minmax(0, 1fr) 220px;
    column-gap: 20px;
  }

  .blog-entry-compact-copy {
    min-height: 220px;
  }

  .blog-entry-title--feature {
    max-width: 420px;
    font-size: 30px;
  }

  .site-header {
    padding: 27px 64px;
  }

  .hero {
    padding: 0 64px;
  }

  .hero-title {
    max-width: 1040px;
    font-size: 64px;
  }

  .development-hero {
    min-height: 518.252px;
    padding: 100px 64px;
  }

  .support-hero {
    padding: 100px 64px;
  }

  .support-to-whom,
  .support-today,
  .support-method,
  .support-outcome,
  .support-models,
  .support-control,
  .support-onboarding,
  .support-cases,
  .support-faq,
  .support-discuss {
    padding-left: 64px;
    padding-right: 64px;
  }

  .support-hero__title {
    font-size: 56px;
  }

  .support-hero__line {
    font-size: 24px;
  }

  .development-hero__title {
    font-size: 56px;
  }

  .development-fields {
    padding: 100px 64px;
  }

  .development-expertise {
    min-height: 901.173px;
    padding: 100px 40.407px;
  }

  .development-expertise__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
  }

  .development-expertise__head {
    align-items: center;
    width: 100%;
    text-align: center;
  }

  .development-expertise__comparison {
    flex: 0 0 auto;
  }

  .development-guarantees {
    min-height: 924.99px;
    padding: 120px 64px;
  }

  .development-cases {
    min-height: 768.997px;
    padding: 100px 64px;
  }

  .development-cases__grid {
    gap: 16px;
  }

  .development-cooperation {
    min-height: 708.975px;
    padding: 100px 40.407px;
  }

  .development-work-card {
    min-height: 383.982px;
  }

  .development-work-card__fit {
    min-height: 72px;
  }

  .development-stacks {
    min-height: 617.521px;
    padding: 100px 64px;
  }

  .development-stacks__inner {
    gap: 64px;
  }

  .development-faq {
    padding: 100px 64px;
  }

  .development-faq__inner {
    gap: 48px;
  }

  .development-discuss {
    padding: 100px 64px;
  }

  .development-stack-card {
    min-height: 131.26px;
    gap: 23.997px;
    padding: 32.63px;
  }

  .development-stack-card__content {
    gap: 11.994px;
  }

  .showreel-block {
    padding: 0 64px;
  }

  .clients {
    padding: 0 64px;
  }

  .services {
    padding: 0 64px;
  }

  .services-title {
    font-size: 32px;
  }

  .service-card {
    min-height: 310px;
  }

  .cases {
    padding: 0 64px;
  }

  .advantages {
    padding: 0 64px;
  }

  .platforms {
    padding: 0 64px;
  }

  .reviews {
    padding: 0 64px;
  }

  .blog {
    padding: 0 64px;
  }

  .contact {
    padding: 0 64px;
  }

  .contact-info {
    max-width: 487px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-description {
    max-width: 387px;
    font-size: 16px;
  }

  .contact-form {
    flex-basis: 709px;
    max-width: 709px;
  }

  .site-footer {
    padding: 60px 64px 80px;
  }

  .site-footer-navs {
    gap: 48px;
  }

  .site-footer-motto {
    font-size: 28px;
  }

  .site-footer-contact-link {
    font-size: 22px;
  }

  .site-footer-legal-links,
  .site-footer-company,
  .site-footer-subnav a {
    font-size: 18px;
  }
}

@media (max-width: 1279px) {
  .blog-article-page {
    padding: 80px 40px 0;
  }

  .blog-article-shell {
    width: min(100%, 688px);
  }

  .blog-article-header {
    gap: 24px;
    margin-bottom: 40px;
  }

  .blog-article-title {
    font-size: 48px;
    line-height: 1.1;
  }

  .blog-article-meta {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    margin-left: 0;
  }

  .blog-article-date-part,
  .blog-article-source {
    font-size: 18px;
  }

  .blog-article-source-row {
    margin-left: 0;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .blog-article-share-link {
    width: 36px;
    height: 36px;
  }

  .blog-article-share-link svg {
    width: 18px;
    height: 18px;
  }

  .blog-article-content {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .blog-article-author-card {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .blog-article-author-photo {
    width: 72px;
    height: 72px;
  }

  .blog-article-author-name {
    font-size: 20px;
  }

  .blog-article-author-role {
    font-size: 16px;
  }

  .blog-article-hero {
    margin-bottom: 32px;
  }

  .blog-article-richtext {
    max-width: 688px;
  }

  .blog-article-lead {
    margin-bottom: 40px;
    font-size: 22px;
    line-height: 1.45;
  }

  .blog-article-section {
    margin-top: 32px;
  }

  .blog-article-section-title,
  .blog-article-note-title {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .blog-article-richtext p,
  .blog-article-list li {
    font-size: 18px;
    line-height: 1.55;
  }

  .blog-article-note {
    margin-top: 40px;
    padding: 24px;
    border-radius: 20px;
  }

  .blog-article-related {
    gap: 32px;
    margin-top: 100px;
  }

  .blog-article-related-title {
    font-size: 36px;
  }

  .blog-article-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .related-article-copy {
    flex-direction: column;
    gap: 12px;
  }

  .related-article-date {
    gap: 2px;
    min-width: 0;
    font-size: 16px;
  }

  .related-article-title {
    font-size: 20px;
  }

  .blog-page {
    padding: 80px 40px 0;
  }

  .blog-page-shell {
    width: min(100%, 688px);
  }

  .blog-page-title {
    font-size: 48px;
    margin-bottom: 64px;
  }

  .blog-page-blocks {
    gap: 60px;
  }

  .blog-page-primary-grid,
  .blog-page-secondary-grid {
    grid-template-columns: 688px;
    row-gap: 40px;
  }

  .blog-page-card-grid {
    grid-template-columns: repeat(2, 336px);
    gap: 16px;
    width: 688px;
  }

  .blog-page-side-column {
    gap: 32px;
  }

  .blog-entry--lead,
  .blog-entry--feature,
  .blog-entry--compact {
    width: 688px;
  }

  .blog-entry-compact-layout {
    grid-template-columns: 453px 219px;
    column-gap: 16px;
  }

  .blog-entry-compact-copy {
    min-height: 219px;
  }

  .blog-entry-title--lead,
  .blog-entry-title--feature {
    font-size: 36px;
  }

  .blog-entry-title--card,
  .blog-entry-title--compact {
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0;
  }

  .blog-entry-media--lead {
    aspect-ratio: 688 / 362;
  }

  .blog-entry-media--compact {
    aspect-ratio: 219 / 219;
  }

  .blog-entry-media--feature {
    aspect-ratio: 688 / 486;
  }

  .blog-entry-title--feature {
    left: 18px;
    right: 18px;
    bottom: 22px;
    max-width: 507px;
  }

  .page-blog .site-footer {
    gap: 40px;
    margin-top: 100px;
    padding: 32px 16px 48px;
  }

  .page-blog .site-footer-brand {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .page-blog .site-footer-logo {
    width: 107.2px;
    height: 20px;
  }

  .page-blog .site-footer-motto {
    max-width: none;
    font-size: 18px;
  }

  .page-blog .site-footer-top {
    flex-direction: row;
    gap: 16px;
  }

  .page-blog .site-footer-navs {
    flex: 1 1 0;
    flex-direction: row;
    gap: 16px;
  }

  .page-blog .site-footer-nav,
  .page-blog .site-footer-download,
  .page-blog .site-footer-contacts {
    flex: 1 1 0;
    width: auto;
  }

  .page-blog .site-footer-nav-title,
  .page-blog .site-footer-nav-link,
  .page-blog .site-footer-subnav a,
  .page-blog .site-footer-download {
    font-size: 24px;
  }

  .page-blog .site-footer-contacts {
    gap: 16px;
  }

  .page-blog .site-footer-contact-link {
    font-size: 24px;
  }

  .page-blog .site-footer-social {
    width: 40px;
    height: 40px;
  }

  .page-blog .site-footer-legal {
    gap: 32px;
  }

  .page-blog .site-footer-legal-links,
  .page-blog .site-footer-company {
    font-size: 16px;
  }

  .site-header {
    height: 64px;
    padding: 12px 16px;
  }

  .logo {
    width: 107.2px;
    height: 20px;
  }

  .header-nav,
  .header-actions--desktop {
    display: none;
  }

  .header-actions--tablet {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
  }

  .phone-button--tablet,
  .cta-link--tablet {
    height: 40px;
    padding: 0 8px;
    font-size: 16px;
  }

  .menu-button {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: 32px;
    padding: 8px;
    border: 0;
    border-radius: 24px;
    background: var(--menu-bg);
    cursor: pointer;
  }

  .menu-button span {
    position: absolute;
    width: 18px;
    height: 1.5px;
    background: #ffffff;
    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }

  .menu-button span:first-child {
    transform: translateY(-4px);
  }

  .menu-button span:last-child {
    transform: translateY(4px);
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-menu {
    display: block;
    position: fixed;
    inset: 64px 0 0;
    z-index: 1000;
    visibility: hidden;
  }

  .mobile-menu.is-open {
    visibility: visible;
  }

  .hero {
    gap: 36px;
    margin-top: 88px;
    padding: 0 16px;
  }

  .hero-title {
    max-width: 760px;
    font-size: 48px;
  }

  .hero-sub-info {
    gap: 24px;
  }

  .hero-lead {
    gap: 16px;
  }

  .hero-lead-emoji {
    font-size: 24px;
  }

  .hero-lead-row p {
    font-size: 24px;
  }

  .hero-description {
    max-width: 100%;
    font-size: 18px;
  }

  .hero-cta--desktop {
    display: none;
  }

  .hero-cta--compact {
    display: inline-flex;
    min-height: 48px;
    padding: 11px 20px 11px 32px;
    font-size: 20px;
    line-height: 1.3;
  }

  .hero-cta--compact::after {
    width: 9px;
    height: 9px;
    border-width: 1.75px;
  }

  .development-hero {
    align-items: flex-start;
    min-height: 476.252px;
    padding: 80px 16px;
  }

  .support-hero {
    align-items: flex-start;
    padding: 80px 16px;
  }

  .support-hero__title {
    font-size: 48px;
  }

  .support-hero__line {
    font-size: 20px;
  }

  .support-to-whom {
    padding: 80px 16px;
  }

  .support-to-whom__inner {
    gap: 40px;
  }

  .support-to-whom__title {
    font-size: 48px;
  }

  .support-to-whom__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-today {
    padding: 100px 64px;
  }

  .support-today__title {
    font-size: 48px;
  }

  .support-today__grid {
    grid-template-columns: 1fr;
  }

  .support-today-card {
    min-height: 0;
  }

  .support-today__result {
    font-size: 20px;
    line-height: 1.3;
    padding: 20px 24px;
  }

  .support-method {
    padding: 100px 64px;
  }

  .support-method__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
  }

  .support-method__card {
    grid-column: auto;
  }

  .support-method__card-title {
    font-size: 28px;
    line-height: 1.2857142857;
  }

  .support-method__lead,
  .support-method__list,
  .support-method__note {
    font-size: 18px;
  }

  .support-outcome {
    padding: 100px 64px;
  }

  .support-outcome__title {
    font-size: 48px;
  }

  .support-outcome__grid {
    grid-template-columns: 1fr;
  }

  .support-models {
    padding: 100px 64px;
  }

  .support-models__title {
    font-size: 48px;
  }

  .support-models__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
  }

  .support-models__grid {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .support-control {
    padding: 100px 64px;
  }

  .support-control__inner {
    gap: 48px;
  }

  .support-control__title {
    font-size: 48px;
  }

  .support-control__lead {
    width: 100%;
  }

  .support-control__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .support-onboarding {
    padding: 100px 64px;
  }

  .support-onboarding__inner {
    gap: 48px;
  }

  .support-onboarding__title {
    font-size: 48px;
  }

  .support-onboarding__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .support-cases {
    padding: 100px 64px;
  }

  .support-cases__inner {
    gap: 48px;
  }

  .support-cases__title {
    font-size: 48px;
  }

  .support-cases__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-case-card:last-child {
    grid-column: 1 / -1;
  }

  .support-faq {
    padding: 100px 64px;
  }

  .support-faq__inner {
    flex-direction: column;
    gap: 48px;
  }

  .support-faq__title {
    min-width: 0;
    width: 100%;
  }

  .support-faq__accordion {
    width: 100%;
  }

  .support-discuss {
    padding: 100px 64px;
  }

  .support-discuss__card {
    min-height: 360px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .support-discuss__blob--right {
    left: auto;
    right: -96px;
    top: 120px;
  }

  .development-hero__inner {
    gap: 48px;
  }

  .development-hero__title {
    font-size: 48px;
  }

  .development-hero__content,
  .development-hero__actions {
    width: 100%;
  }

  .development-hero__actions {
    gap: 15.992px;
  }

  .development-hero__button {
    flex: 1 1 0;
    min-width: 1px;
    width: auto;
  }

  .development-fields {
    min-height: 554.221px;
    padding: 80px 16px;
  }

  .development-fields__content {
    width: 100%;
  }

  .development-fields__title {
    width: 100%;
    font-size: 36px;
  }

  .development-fields__description,
  .development-fields__list {
    width: 100%;
  }

  .development-fields__webinar {
    width: 100%;
  }

  .development-expertise {
    min-height: 809.195px;
    padding: 80px 0;
  }

  .development-expertise__inner {
    align-items: flex-start;
    gap: 48px;
    padding: 0 23.997px;
  }

  .development-expertise__head {
    align-items: flex-start;
    text-align: left;
  }

  .development-expertise__title {
    font-size: 36px;
  }

  .development-expertise__comparison {
    flex: 0 0 auto;
    width: 100%;
    min-height: 509.198px;
  }

  .development-expertise-card {
    min-height: 509.198px;
    padding: 56.627px;
  }

  .development-expertise-card__header {
    min-height: 63.987px;
  }

  .development-expertise-card__header h3 {
    max-width: 201px;
  }

  .development-expertise-card__item span span {
    max-width: 225px;
  }

  .development-expertise__plus {
    top: 222.594px;
    font-size: 32px;
  }

  .development-guarantees {
    min-height: 1109.985px;
    padding: 80px 16px;
  }

  .development-guarantees__title {
    font-size: 36px;
  }

  .development-guarantees__subtitle {
    max-width: 686px;
  }

  .development-guarantees__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .development-cases {
    min-height: 1116px;
    padding: 80px 16px;
  }

  .development-cases__inner {
    gap: 48px;
  }

  .development-cases__title {
    font-size: 36px;
  }

  .development-cases__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .development-case-card {
    height: auto;
  }

  .development-case-card__body {
    padding: 32px 24px;
  }

  .development-case-card__title {
    font-size: 20px;
    line-height: 1.4;
  }

  .development-cooperation {
    min-height: 1395.983px;
    padding: 80px 0;
  }

  .development-cooperation__inner {
    gap: 48px;
    padding: 0 23.997px;
  }

  .development-cooperation__title {
    width: 300px;
    max-width: 100%;
    font-size: 36px;
  }

  .development-cooperation__grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .development-work-card {
    width: 100%;
    min-height: 343.982px;
  }

  .development-work-card:first-child {
    min-height: 317.982px;
  }

  .development-work-card:nth-child(2) {
    min-height: 317.982px;
  }

  .development-work-card:nth-child(3) {
    min-height: 343.982px;
  }

  .development-work-card__fit {
    min-height: 52px;
  }

  .development-stacks {
    min-height: 909.041px;
    padding: 100px 16px;
  }

  .development-stacks__inner {
    gap: 48px;
  }

  .development-stacks__title {
    font-size: 36px;
  }

  .development-stacks__grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .development-faq {
    padding: 80px 0;
  }

  .development-faq__inner {
    flex-direction: column;
    gap: 48px;
    padding: 0 23.997px;
  }

  .development-faq__title {
    font-size: 36px;
  }

  .development-faq__accordion {
    flex: 0 1 auto;
    width: 100%;
  }

  .development-discuss {
    padding: 80px 23.997px;
  }

  .development-discuss__panel {
    min-height: 425.231px;
  }

  .development-discuss__glow--right {
    top: 169.231px;
    left: 66%;
  }

  .development-discuss__content {
    width: 592.706px;
  }

  .development-discuss__description {
    max-width: 592.706px;
  }

  .showreel-block {
    gap: 56px;
    margin-top: 96px;
    padding: 0 16px;
  }

  .stats--desktop {
    gap: 16px;
  }

  .stat-item {
    padding-left: 12px;
  }

  .stat-value span {
    font-size: 48px;
  }

  .stat-value small {
    font-size: 30.96px;
  }

  .stat-label {
    font-size: 12px;
  }

  .clients {
    gap: 40px;
    margin-top: 96px;
    padding: 0 16px;
  }

  .clients-head {
    gap: 20px;
    max-width: 100%;
  }

  .clients-title {
    font-size: 34px;
  }

  .clients-description {
    font-size: 18px;
  }

  .clients-logos {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px 24px;
  }

  .clients-logo-item {
    width: min(100%, 190px);
    min-height: 0;
    aspect-ratio: 19 / 15;
  }

  .services {
    gap: 40px;
    margin-top: 96px;
    padding: 0 16px;
  }

  .services-title {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card {
    gap: 24px;
    min-height: 298px;
    padding: 24px 32px;
  }

  .service-card-text {
    gap: 8px;
  }

  .service-card-title {
    font-size: 18px;
  }

  .service-card-description {
    font-size: 14px;
  }

  .service-card-button {
    width: 250px;
  }

  .cases {
    gap: 40px;
    margin-top: 96px;
    padding: 0 16px;
  }

  .cases-title {
    font-size: 34px;
  }

  .cases-layout {
    gap: 24px;
  }

  .cases-row {
    gap: 24px;
  }

  .case-card {
    gap: 12px;
  }

  .case-card-title {
    font-size: 18px;
  }

  .case-card-tag {
    padding: 4px 8px;
    font-size: 10px;
  }

  .case-cta-content {
    gap: 12px;
  }

  .case-cta--more .case-cta-content {
    flex-direction: row-reverse;
  }

  .case-cta-icon {
    width: 48px;
    height: 48px;
  }

  .case-cta-icon--outlined img {
    width: 21.6px;
    height: 21.6px;
  }

  .case-cta-label {
    font-size: 18px;
  }

  .advantages {
    gap: 40px;
    margin-top: 96px;
    padding: 0 16px;
  }

  .advantages-title {
    font-size: 34px;
  }

  .advantages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .advantage-card {
    min-height: 108px;
    padding: 20px 24px;
  }

  .advantage-card:last-child {
    grid-column: 1 / -1;
  }

  .advantage-icon {
    font-size: 44px;
  }

  .advantage-heading {
    font-size: 20px;
  }

  .advantage-description {
    font-size: 16px;
  }

  .platforms {
    gap: 40px;
    margin-top: 96px;
    padding: 0 16px;
  }

  .platforms-title {
    font-size: 34px;
  }

  .platforms-list {
    gap: 20px 16px;
  }

  .platform-icon-box {
    width: 56px;
    height: 48px;
    border-radius: 12px;
  }

  .platform-icon-image {
    width: 24px;
    height: 24px;
  }

  .platform-heading {
    font-size: 18px;
  }

  .platform-description {
    font-size: 14px;
  }

  .reviews {
    gap: 40px;
    margin-top: 96px;
    padding: 0 16px;
  }

  .reviews-title {
    font-size: 34px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .review-card {
    min-height: 420px;
    padding: 20px;
  }

  .review-card:last-child {
    grid-column: 1 / -1;
  }

  .review-author-name,
  .review-author-company,
  .review-quote,
  .review-link {
    font-size: 16px;
  }

  .blog {
    gap: 40px;
    margin-top: 96px;
    padding: 0 16px;
  }

  .blog-title {
    font-size: 34px;
  }

  .blog-content {
    gap: 32px;
  }

  .blog-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-card {
    gap: 24px;
  }

  .blog-card:last-child {
    grid-column: 1 / -1;
  }

  .blog-card-copy {
    gap: 12px;
  }

  .blog-card-date {
    font-size: 16px;
  }

  .blog-card-title {
    font-size: 20px;
  }

  .contact {
    flex-direction: column;
    gap: 24px;
    margin-top: 96px;
    padding: 0 16px;
  }

  .contact-info {
    flex: 0 0 auto;
    gap: 16px;
    max-width: 100%;
  }

  .contact-title {
    max-width: 100%;
    font-size: 26px;
  }

  .contact-description {
    max-width: 100%;
    font-size: 12px;
  }

  .contact-form {
    gap: 32px;
    flex-basis: auto;
    max-width: none;
    padding: 24px 32px;
  }

  .contact-field,
  .contact-field--message {
    min-height: 54px;
    padding-top: 14px;
    padding-bottom: 15px;
  }

  .contact-field {
    font-size: 12px;
  }

  .contact-field-label {
    font-size: 12px;
  }

  .contact-field-input--message {
    min-height: 17px;
  }

  .contact-policy-text {
    font-size: 10px;
  }

  .contact-actions {
    justify-content: flex-start;
    gap: 12px;
  }

  .contact-button {
    height: 48px;
    gap: 8px;
    font-size: 16px;
  }

  .contact-button--attach {
    width: 200px;
  }

  .contact-button--primary {
    width: 200px;
  }

  .contact-button-icon {
    width: 20px;
    height: 20px;
  }

  .site-footer {
    gap: 48px;
    margin-top: 48px;
    padding: 48px 16px 64px;
  }

  .site-footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .site-footer-logo {
    width: 132px;
    height: 24.635px;
  }

  .site-footer-motto {
    max-width: 560px;
    font-size: 24px;
  }

  .site-footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .site-footer-navs {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .site-footer-nav,
  .site-footer-contacts {
    width: 100%;
  }

  .site-footer-nav-title,
  .site-footer-nav-link,
  .site-footer-subnav a,
  .site-footer-download {
    font-size: 18px;
  }

  .site-footer-contacts {
    gap: 16px;
  }

  .site-footer-contact-link {
    font-size: 20px;
  }

  .site-footer-social {
    width: 40px;
    height: 40px;
  }

  .site-footer-legal {
    flex-direction: column;
    gap: 24px;
  }

  .site-footer-legal-links,
  .site-footer-company {
    flex-basis: auto;
    width: 100%;
    font-size: 16px;
  }

  .site-footer-company-meta {
    flex-wrap: wrap;
    gap: 8px 20px;
  }
}

@media (max-width: 767px) {
  .blog-article-page {
    padding: 64px 16px 0;
  }

  .blog-article-shell {
    width: min(100%, 288px);
  }

  .blog-article-header {
    gap: 20px;
    margin-bottom: 32px;
  }

  .blog-article-back-link {
    gap: 8px;
    font-size: 14px;
  }

  .blog-article-back-link::before {
    width: 8px;
    height: 8px;
  }

  .blog-article-title {
    font-size: 36px;
    line-height: 1.11;
    min-height: 0;
  }

  .blog-article-meta {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
  }

  .blog-article-date-line {
    gap: 6px;
    flex-wrap: wrap;
    white-space: normal;
  }

  .blog-article-date-part,
  .blog-article-source {
    font-size: 14px;
    line-height: 1.4;
  }

  .blog-article-source-row {
    display: flex;
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .blog-article-source {
    justify-self: start;
    text-align: left;
    white-space: normal;
  }

  .blog-article-share {
    gap: 10px;
  }

  .blog-article-share-link {
    width: 32px;
    height: 32px;
  }

  .blog-article-share-link svg {
    width: 16px;
    height: 16px;
  }

  .blog-article-content {
    row-gap: 20px;
  }

  .blog-article-author-card {
    gap: 12px;
  }

  .blog-article-author-photo {
    width: 56px;
    height: 56px;
  }

  .blog-article-author-name {
    font-size: 16px;
  }

  .blog-article-author-role {
    font-size: 14px;
  }

  .blog-article-hero {
    margin-bottom: 24px;
    border-radius: 16px;
  }

  .blog-article-lead {
    margin-bottom: 32px;
    padding-left: 16px;
    font-size: 18px;
    line-height: 1.45;
  }

  .blog-article-section {
    margin-top: 28px;
  }

  .blog-article-section-title,
  .blog-article-note-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .blog-article-richtext p,
  .blog-article-list li {
    font-size: 16px;
    line-height: 1.5;
  }

  .blog-article-list {
    gap: 10px;
    padding-left: 20px;
  }

  .blog-article-note {
    margin-top: 32px;
    padding: 20px 16px;
    border-radius: 16px;
  }

  .blog-article-related {
    gap: 24px;
    margin-top: 80px;
  }

  .blog-article-related-title {
    font-size: 32px;
    line-height: 1.1;
  }

  .blog-article-related-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .related-article-card {
    gap: 16px;
  }

  .related-article-copy {
    gap: 10px;
  }

  .related-article-date {
    font-size: 14px;
  }

  .related-article-title {
    font-size: 18px;
    line-height: 1.3;
  }

  .blog-page {
    padding: 64px 16px 0;
  }

  .blog-page-shell {
    width: min(100%, 288px);
  }

  .blog-page-title {
    font-size: 36px;
    line-height: 1.1111111111;
    margin-bottom: 40px;
  }

  .blog-page-blocks {
    gap: 0;
  }

  .blog-page-block,
  .blog-page-primary-grid,
  .blog-page-secondary-grid {
    gap: 24px;
  }

  .blog-page-block--desktop-tablet-only {
    display: none;
  }

  .blog-page-primary-grid,
  .blog-page-secondary-grid {
    grid-template-columns: 288px;
  }

  .blog-page-side-column,
  .blog-page-compact-stack {
    gap: 24px;
  }

  .blog-entry--lead,
  .blog-entry--feature,
  .blog-entry--compact {
    width: 288px;
  }

  .blog-entry--lead > .blog-entry-divider,
  .blog-entry--compact > .blog-entry-divider,
  .blog-entry--feature > .blog-entry-divider {
    margin-bottom: 24px;
  }

  .blog-entry-date {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0;
  }

  .blog-entry-title--lead {
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 0;
  }

  .blog-page-card-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 288px;
  }

  .blog-entry-title--card,
  .blog-entry-title--compact {
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0;
  }

  .blog-entry-compact-layout {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .blog-entry-compact-copy {
    min-height: 0;
  }

  .blog-entry-author {
    gap: 8px;
  }

  .blog-entry-author-name {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0;
  }

  .blog-entry-media--lead {
    aspect-ratio: 288 / 151;
  }

  .blog-entry-media--feature {
    aspect-ratio: 1 / 1;
  }

  .blog-entry-title--feature {
    left: 12px;
    right: 12px;
    bottom: 16px;
    max-width: 233px;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0;
  }

  .blog-entry-title--feature span {
    padding-right: 6px;
  }

  .page-blog .site-footer {
    margin-top: 80px;
  }

  .page-blog .site-footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .page-blog .site-footer-motto {
    max-width: 260px;
    font-size: 18px;
  }

  .page-blog .site-footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .page-blog .site-footer-navs {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .page-blog .site-footer-nav,
  .page-blog .site-footer-download,
  .page-blog .site-footer-contacts {
    flex: 0 0 auto;
    width: 100%;
  }

  .page-blog .site-footer-nav-title,
  .page-blog .site-footer-nav-link,
  .page-blog .site-footer-subnav a,
  .page-blog .site-footer-download,
  .page-blog .site-footer-contact-link {
    font-size: 18px;
  }

  .page-blog .site-footer-legal {
    flex-direction: column;
    gap: 24px;
  }

  .page-blog .site-footer-legal-links {
    flex-direction: row;
    gap: 16px;
    flex-wrap: nowrap;
    width: 100%;
    font-size: 12px;
  }

  .page-blog .site-footer-company,
  .page-blog .site-footer-company-meta {
    gap: 12px;
  }

  .page-blog .site-footer-company {
    width: 100%;
    font-size: 12px;
  }

  .page-blog .site-footer-company-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-actions--tablet {
    display: none;
  }

  .menu-button {
    margin-left: 0;
  }

  .mobile-menu__panel {
    width: min(420px, calc(100vw - 16px));
    padding: 24px 16px 20px;
    right: 8px;
  }

  .mobile-menu__link {
    font-size: 26px;
  }

  .mobile-menu__link--sub {
    font-size: 18px;
  }

  .mobile-menu__phone {
    font-size: 20px;
  }

  .hero {
    gap: 24px;
    margin-top: 48px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-lead-row {
    align-items: flex-start;
  }

  .hero-lead-row p {
    font-size: 20px;
  }

  .hero-description {
    font-size: 17px;
  }

  .hero-cta--compact {
    min-height: 40px;
    padding: 7px 16px;
    font-size: 16px;
  }

  .hero-cta--compact::after {
    width: 8px;
    height: 8px;
  }

  .development-hero {
    min-height: 593.222px;
    padding: 64px 16px;
  }

  .support-hero {
    padding: 64px 16px;
  }

  .support-hero__title {
    font-size: 36px;
  }

  .support-hero__line {
    font-size: 20px;
    line-height: 1.4;
  }

  .support-hero__button {
    width: 100%;
  }

  .support-to-whom {
    padding: 64px 16px;
  }

  .support-to-whom__inner {
    gap: 32px;
  }

  .support-to-whom__title {
    font-size: 40px;
  }

  .support-to-whom__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .support-to-whom__card {
    padding: 20px;
  }

  .support-to-whom__text {
    line-height: 1.4;
  }

  .support-today {
    padding: 64px 16px;
  }

  .support-today__inner {
    gap: 32px;
  }

  .support-today__title {
    font-size: 40px;
  }

  .support-today__grid {
    gap: 16px;
  }

  .support-today-card {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .support-today-card__title {
    font-size: 28px;
    line-height: 1.15;
  }

  .support-today-card__item {
    font-size: 18px;
    line-height: 1.4;
  }

  .support-today__result {
    padding: 16px;
    font-size: 28px;
    line-height: 1.25;
  }

  .support-method {
    padding: 64px 16px;
  }

  .support-method__inner {
    gap: 32px;
  }

  .support-method__title {
    font-size: 40px;
  }

  .support-method__card {
    gap: 24px;
    padding: 24px 16px;
    border-radius: 24px;
  }

  .support-method__card-title {
    font-size: 30px;
    line-height: 1.2;
  }

  .support-method__lead,
  .support-method__list,
  .support-method__note {
    font-size: 20px;
    line-height: 1.4;
  }

  .support-method__list {
    padding-left: 22px;
  }

  .support-method__note {
    padding: 16px;
  }

  .support-outcome {
    padding: 64px 16px;
  }

  .support-outcome__inner {
    gap: 32px;
  }

  .support-outcome__title {
    font-size: 40px;
  }

  .support-outcome__grid {
    gap: 16px;
  }

  .support-outcome-card {
    padding: 24px 16px;
  }

  .support-outcome-card__title {
    font-size: 30px;
    line-height: 1.2;
  }

  .support-outcome-card__list {
    font-size: 20px;
    line-height: 1.4;
  }

  .support-models {
    padding: 64px 16px;
  }

  .support-models__inner {
    gap: 32px;
  }

  .support-models__title {
    font-size: 40px;
  }

  .support-models__grid {
    gap: 16px;
  }

  .support-model-card {
    gap: 20px;
    padding: 24px 16px;
    border-radius: 16px;
  }

  .support-model-card__title {
    font-size: 28px;
    line-height: 1.15;
  }

  .support-model-card__text {
    font-size: 20px;
    line-height: 1.4;
  }

  .support-model-card__hint {
    font-size: 16px;
    line-height: 1.4;
  }

  .support-control {
    padding: 64px 16px;
  }

  .support-control__inner {
    gap: 32px;
  }

  .support-control__title {
    font-size: 40px;
  }

  .support-control__card {
    gap: 24px;
    padding: 24px 16px;
    border-radius: 24px;
  }

  .support-control__lead {
    font-size: 20px;
    line-height: 1.4;
  }

  .support-control__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .support-control__item {
    min-height: 0;
    gap: 12px;
    padding: 16px;
    font-size: 20px;
    line-height: 1.4;
  }

  .support-control__item:nth-child(n + 3) {
    min-height: 0;
  }

  .support-control__item-icon {
    width: 20px;
    height: 20px;
    margin-top: 4px;
  }

  .support-control__note {
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    font-size: 16px;
    line-height: 1.4;
  }

  .support-control__note-icon {
    width: 24px;
    height: 24px;
  }

  .support-onboarding {
    padding: 64px 16px;
  }

  .support-onboarding__inner {
    gap: 48px;
  }

  .support-onboarding__head {
    gap: 23px;
  }

  .support-onboarding__title {
    font-size: 40px;
  }

  .support-onboarding__subtitle {
    font-size: 20px;
    line-height: 1.4;
  }

  .support-onboarding__steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .support-onboarding-step {
    gap: 24px;
    min-height: 48px;
    align-items: flex-start;
  }

  .support-onboarding-step__index {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .support-onboarding-step__text {
    font-size: 20px;
    line-height: 1.4;
    padding-top: 10px;
  }

  .support-cases {
    padding: 64px 16px;
  }

  .support-cases__inner {
    gap: 32px;
  }

  .support-cases__head {
    gap: 16px;
  }

  .support-cases__title-row {
    align-items: flex-start;
  }

  .support-cases__title {
    font-size: 40px;
    letter-spacing: 0;
  }

  .support-cases__link {
    display: none;
  }

  .support-cases__subtitle {
    font-size: 20px;
    line-height: 1.4;
  }

  .support-cases__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .support-case-card:last-child {
    grid-column: auto;
  }

  .support-case-card {
    border-radius: 16px;
  }

  .support-case-card__body {
    gap: 18px;
    padding: 24px 20px;
  }

  .support-case-card__title {
    font-size: 40px;
    line-height: 1.1;
  }

  .support-case-card__tag {
    font-size: 14px;
  }

  .support-faq {
    padding: 64px 16px;
  }

  .support-faq__inner {
    gap: 32px;
  }

  .support-faq__title {
    width: 328px;
    max-width: 100%;
    font-size: 40px;
    line-height: 1.05;
  }

  .support-faq__accordion {
    gap: 16px;
  }

  .support-faq__summary {
    min-height: 60px;
    align-items: center;
    padding: 16px;
  }

  .support-faq__question {
    font-size: 20px;
    line-height: 1.4;
  }

  .support-faq__icon {
    margin-top: 0;
  }

  .support-faq__answer {
    padding: 0 16px 16px;
  }

  .support-faq__answer p {
    font-size: 16px;
    line-height: 1.5;
  }

  .support-discuss {
    padding: 64px 16px;
  }

  .support-discuss__card {
    min-height: 303.979px;
    padding: 32px 16px 40px;
    border-radius: 24px;
  }

  .support-discuss__blob--left {
    width: 255.996px;
    height: 255.996px;
    top: -95.999px;
    left: -95.999px;
  }

  .support-discuss__blob--right {
    width: 384px;
    height: 384px;
    top: 325.171px;
    right: -128px;
    left: auto;
  }

  .support-discuss__title {
    width: 295.005px;
    max-width: 100%;
    font-size: 48px;
    line-height: 1.05;
  }

  .support-discuss__subtitle {
    width: 295.005px;
    margin: 24px 0 32px;
    font-size: 16px;
    line-height: 1.5;
  }

  .support-discuss__button {
    width: 295.005px;
    max-width: 100%;
    height: 59.979px;
  }

  .development-hero__title {
    font-size: 36px;
  }

  .development-hero__subtitle {
    font-size: 20px;
    line-height: 28px;
  }

  .development-hero__actions {
    flex-direction: column;
    gap: 15.992px;
  }

  .development-hero__button {
    flex: 0 0 auto;
    width: 100%;
  }

  .development-hero__button--primary {
    height: 59.979px;
  }

  .development-fields {
    min-height: 542.522px;
    padding: 64px 16px;
  }

  .development-fields__title {
    font-size: 28px;
  }

  .development-fields__title--desktop {
    display: none;
  }

  .development-fields__title--mobile {
    display: block;
  }

  .development-fields__item {
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.4;
  }

  .development-fields__item-icon {
    margin-top: 0;
  }

  .development-fields__webinar {
    align-items: center;
    gap: 12px;
    min-height: 78px;
    height: auto;
    white-space: normal;
  }

  .development-fields__webinar span {
    flex: 1 1 auto;
    min-width: 0;
  }

  .development-expertise {
    min-height: 1368.409px;
    padding: 64px 0;
  }

  .development-expertise__inner {
    gap: 63.997px;
    padding: 0 16px;
  }

  .development-expertise__title {
    width: 328px;
    max-width: 100%;
    font-size: 28px;
  }

  .development-expertise__description {
    font-size: 20px;
    line-height: 28px;
  }

  .development-expertise__comparison {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .development-expertise-card {
    width: 100%;
    padding: 32px 24px;
    border-radius: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .development-expertise-card--ai {
    min-height: 453.217px;
    border-right: 0.636px solid #e5e0ff;
  }

  .development-expertise-card--engineers {
    min-height: 501.212px;
  }

  .development-expertise-card__header h3 {
    max-width: 183px;
  }

  .development-expertise-card__item {
    gap: 16px;
  }

  .development-expertise-card__item span span {
    max-width: 207px;
  }

  .development-expertise__plus {
    display: none;
  }

  .development-guarantees {
    min-height: 1853.97px;
    padding: 80px 16px;
  }

  .development-guarantees__title {
    font-size: 36px;
  }

  .development-guarantees__subtitle {
    max-width: 100%;
  }

  .development-guarantees__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .development-cases {
    min-height: 1496px;
    padding: 64px 0;
    background: #fafafc;
  }

  .development-cases__inner {
    gap: 48px;
    padding: 0 23.997px;
  }

  .development-cases__title {
    font-size: 40px;
  }

  .development-cases__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .development-case-card__body {
    padding: 24px 20px;
  }

  .development-cooperation {
    min-height: 1482.984px;
    padding: 64px 0;
    background: #ffffff;
  }

  .development-cooperation__inner {
    gap: 63.997px;
    padding: 0 23.997px;
  }

  .development-cooperation__title {
    width: 328px;
    max-width: 100%;
    font-size: 28px;
  }

  .development-cooperation__grid {
    gap: 16px;
  }

  .development-work-card {
    width: 100%;
    min-height: 417.997px;
    padding: 32px 16px;
  }

  .development-work-card:first-child {
    min-height: 391.997px;
  }

  .development-work-card:nth-child(3) {
    min-height: 397.992px;
  }

  .development-work-card__header {
    align-items: flex-start;
  }

  .development-work-card__icon {
    margin-top: 4px;
  }

  .development-work-card__header h3 {
    flex: 1 1 auto;
  }

  .development-work-card__fit,
  .development-work-card:first-child .development-work-card__fit {
    min-height: 92px;
  }

  .development-stacks {
    min-height: 962.041px;
    padding: 64px 16px;
  }

  .development-stacks__title {
    width: 100%;
    font-size: 28px;
  }

  .development-faq {
    padding: 64px 0;
  }

  .development-faq__inner {
    gap: 63.997px;
    padding: 0 16px;
  }

  .development-faq__title {
    width: 100%;
    font-size: 36px;
    line-height: 45px;
    text-align: center;
  }

  .development-faq__summary {
    align-items: center;
    min-height: 60px;
    padding: 16px;
  }

  .development-faq__question {
    font-size: 18px;
    line-height: 28px;
  }

  .development-faq__answer {
    padding: 0 16px 16px;
  }

  .development-discuss {
    padding: 64px 24px;
  }

  .development-discuss__panel {
    min-height: 0;
  }

  .development-discuss__glow--right {
    top: 325.171px;
    left: 71.531px;
  }

  .development-discuss__content {
    width: 100%;
    padding: 32px 16px;
  }

  .development-discuss__copy {
    gap: 24px;
  }

  .development-discuss__title {
    font-size: 28px;
    line-height: 1.2;
  }

  .development-discuss__description {
    font-size: 17px;
    line-height: 1.4;
  }

  .development-discuss__actions {
    flex-direction: column;
    gap: 15.992px;
    margin-top: 32px;
  }

  .development-discuss__button {
    width: 100%;
  }

  .development-discuss__button--primary {
    height: 59.979px;
  }

  .development-discuss__button--secondary {
    height: 61.252px;
  }

  .development-stack-card {
    min-height: 157.26px;
    gap: 23.997px;
    padding: 32.63px 16.636px;
  }

  .development-stack-card:nth-child(2) {
    min-height: 159.26px;
  }

  .development-stack-card:nth-child(4) {
    min-height: 185.26px;
  }

  .development-stack-card__content h3,
  .development-stack-card__content p {
    white-space: normal;
  }

  .showreel-block {
    gap: 28px;
    margin-top: 64px;
  }

  .stats--desktop {
    display: none;
  }

  .stats--mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 40px;
    max-width: 343px;
  }

  .stat-item--mobile {
    width: calc((100% - 40px) / 2);
    padding-left: 12px;
    border-left-width: 1px;
  }

  .stat-value--mobile span {
    font-size: 48px;
  }

  .stat-value--mobile small {
    font-size: 30.96px;
  }

  .stat-label--mobile {
    font-size: 12px;
    line-height: 1.4;
  }

  .showreel-video {
    border-radius: 10px;
  }

  .clients {
    gap: 24px;
    margin-top: 64px;
  }

  .clients-head {
    gap: 16px;
  }

  .clients-title {
    font-size: 31px;
  }

  .clients-description {
    font-size: 16px;
  }

  .clients-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 16px;
  }

  .clients-logo-item {
    width: 100%;
    max-width: 190px;
    min-height: 0;
    aspect-ratio: 19 / 15;
  }

  .services {
    gap: 24px;
    margin-top: 64px;
  }

  .services-title {
    font-size: 24px;
  }

  .service-card {
    gap: 24px;
    min-height: 0;
    padding: 20px 16px 24px;
  }

  .service-card-copy {
    gap: 16px;
  }

  .service-card-text {
    gap: 8px;
  }

  .service-card-title {
    font-size: 16px;
  }

  .service-card-description {
    font-size: 12px;
  }

  .service-card-button {
    width: auto;
    height: 40px;
    padding: 0 20px 0 28px;
    gap: 2px;
    font-size: 12px;
  }

  .service-card-button::after {
    width: 5.5px;
    height: 5.5px;
  }

  .cases {
    gap: 24px;
    margin-top: 64px;
  }

  .cases-title {
    font-size: 31px;
  }

  .cases-layout {
    gap: 20px;
  }

  .cases-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .case-card {
    gap: 10px;
  }

  .case-card-title {
    font-size: 18px;
  }

  .case-card-tags {
    gap: 4px;
  }

  .case-card-tag {
    padding: 4px 8px;
    font-size: 10px;
  }

  .case-cta-content {
    gap: 10px;
  }

  .case-cta--more .case-cta-content {
    flex-direction: row-reverse;
  }

  .case-cta-label {
    font-size: 18px;
  }

  .advantages {
    gap: 24px;
    margin-top: 64px;
  }

  .advantages-title {
    font-size: 31px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .advantage-card,
  .advantage-card:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 18px 20px;
  }

  .advantage-icon {
    font-size: 36px;
  }

  .advantage-copy {
    gap: 6px;
  }

  .advantage-heading {
    font-size: 18px;
  }

  .advantage-description {
    font-size: 14px;
  }

  .platforms {
    gap: 24px;
    margin-top: 64px;
  }

  .platforms-title {
    font-size: 31px;
  }

  .platforms-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .platform-item {
    gap: 12px;
  }

  .platform-icon-box {
    width: 48px;
    height: 40px;
    border-radius: 10px;
  }

  .platform-icon-image {
    width: 21px;
    height: 21px;
  }

  .platform-copy {
    gap: 6px;
  }

  .platform-heading {
    font-size: 18px;
  }

  .platform-description {
    font-size: 14px;
  }

  .reviews {
    gap: 24px;
    margin-top: 64px;
  }

  .reviews-title {
    font-size: 31px;
  }

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

  .review-card,
  .review-card:last-child {
    grid-column: auto;
    gap: 24px;
    min-height: 0;
    padding: 18px;
  }

  .review-author {
    gap: 12px;
  }

  .review-avatar {
    width: 56px;
    height: 56px;
  }

  .review-author-name,
  .review-author-company,
  .review-quote,
  .review-link {
    font-size: 14px;
  }

  .review-body {
    gap: 20px;
  }

  .review-link-icon {
    width: 20px;
    height: 20px;
  }

  .blog {
    gap: 24px;
    margin-top: 64px;
  }

  .blog-title {
    font-size: 24px;
  }

  .blog-content {
    gap: 24px;
  }

  .blog-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-card,
  .blog-card:last-child {
    grid-column: auto;
    gap: 16px;
  }

  .blog-card-copy {
    gap: 8px;
  }

  .blog-card-date {
    font-size: 12px;
  }

  .blog-card-title {
    font-size: 18px;
  }

  .contact {
    gap: 20px;
    margin-top: 60px;
  }

  .contact-info {
    flex: 0 0 auto;
    gap: 16px;
  }

  .contact-title {
    font-size: 26px;
  }

  .contact-description {
    font-size: 12px;
  }

  .contact-fields {
    gap: 8px;
  }

  .contact-policy {
    align-items: center;
  }

  .contact-actions {
    justify-content: flex-start;
    gap: 12px;
  }

  .contact-form {
    padding: 24px 16px;
  }

  .contact-button--attach {
    width: 140px;
    height: 40px;
    font-size: 12px;
  }

  .contact-button--primary {
    flex: 1 1 auto;
    width: auto;
    height: 40px;
    font-size: 12px;
  }

  .contact-button-icon {
    width: 16px;
    height: 16px;
  }

  .site-footer {
    gap: 32px;
    margin-top: 60px;
    padding: 32px 16px 48px;
  }

  .site-footer-logo {
    width: 107.2px;
    height: 20px;
  }

  .site-footer-motto {
    max-width: 260px;
    font-size: 18px;
  }

  .site-footer-top {
    gap: 40px;
  }

  .site-footer-navs {
    gap: 24px;
  }

  .site-footer-nav {
    gap: 0;
  }

  .site-footer-nav-title,
  .site-footer-nav-link,
  .site-footer-download,
  .site-footer-contact-link {
    font-size: 18px;
  }

  .site-footer-nav-chevron {
    display: inline-block;
  }

  .site-footer-subnav {
    display: none;
  }

  .site-footer-download-icon {
    width: 24px;
    height: 24px;
  }

  .site-footer-contacts {
    gap: 16px;
  }

  .site-footer-social {
    width: 40px;
    height: 40px;
  }

  .site-footer-legal {
    gap: 24px;
  }

  .site-footer-legal-links {
    flex-direction: row;
    gap: 16px;
    flex-wrap: nowrap;
    font-size: 12px;
  }

  .site-footer-company,
  .site-footer-company-meta {
    gap: 12px;
  }

  .site-footer-company {
    font-size: 12px;
  }

  .site-footer-company p,
  .site-footer-company-meta p {
    max-width: 288px;
  }

  .site-footer-company-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1279px) {
  .cms-page {
    width: min(100%, 768px);
    padding: 96px 24px 0;
  }

  .cms-title {
    font-size: 44px;
  }

  .cms-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cms-post-row {
    grid-template-columns: 1fr;
  }

  .cms-author-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .blog-page-heading {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
  }

  .blog-page-heading .blog-page-title {
    margin-bottom: 0;
  }

  .blog-page-submit-link {
    min-height: 42px;
    padding: 0 16px;
    font-size: 14px;
  }

  .cms-page,
  .cms-page--public {
    width: min(100%, 375px);
    min-height: 0;
    padding: 64px 16px 0;
  }

  .cms-auth-panel,
  .cms-section {
    padding: 24px 16px;
  }

  .cms-header,
  .cms-section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .cms-section-heading-actions {
    width: 100%;
  }

  .cms-title {
    font-size: 34px;
    line-height: 1.12;
  }

  .cms-copy,
  .cms-empty {
    font-size: 16px;
  }

  .cms-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    width: 100%;
    padding-bottom: 4px;
  }

  .cms-tab {
    flex: 0 0 auto;
  }

  .cms-stats,
  .cms-form-grid {
    grid-template-columns: 1fr;
  }

  .cms-field--wide {
    grid-column: auto;
  }

  .cms-stat {
    padding: 14px;
  }

  .cms-section-heading h2 {
    font-size: 26px;
  }

  .cms-post-row {
    padding: 16px;
  }

  .cms-post-row h3 {
    font-size: 20px;
  }

  .cms-post-row-main {
    grid-template-columns: 1fr;
  }

  .cms-post-row-thumb {
    width: 100%;
    max-width: 112px;
    height: 84px;
  }

  .cms-post-row-actions,
  .cms-actions,
  .cms-header-actions {
    width: 100%;
  }

  .cms-post-row-actions form,
  .cms-header-actions form {
    width: 100%;
  }

  .cms-author-card {
    padding: 16px;
  }

  .cms-author-card-main {
    align-items: flex-start;
  }

  .cms-author-card-photo {
    width: 64px;
    height: 64px;
  }

  .cms-button {
    width: 100%;
  }

  .cms-editor-field-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .cms-editor-switch {
    width: 100%;
  }

  .cms-editor-switch-button {
    flex: 1 1 0;
  }
}

/* Cases page (24:5392) */
.cases-page-main {
  padding: 0;
}
.cases-page-main--snapshot {
  overflow: visible;
}

.cases-page {
  padding: 128px 150px 80px;
}
.cases-page--snapshot {
  padding: 0;
}

.cases-page-shell {
  margin: 0 auto;
  max-width: 1620px;
}
.cases-page-shell--snapshot {
  margin: 0;
  max-width: none;
}

.cases-page-title {
  margin: 0;
  color: #101828;
  font-size: 72px;
  font-weight: 600;
  line-height: 1.1;
  max-width: 1240px;
}

.cases-page-list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 24px;
}

.cases-page-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cases-page-card__link {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-decoration: none;
}

.cases-page-empty {
  margin-top: 32px;
  color: #625d6f;
  font-size: 18px;
}

.case-detail {
  margin-top: 24px;
}

.page-case-detail .blog-article-back-link,
.page-case-detail .cases-page-title,
.page-case-detail .case-detail {
  width: min(100%, 1180px);
  margin-left: auto;
  margin-right: auto;
}

.page-case-detail .blog-article-back-link {
  display: flex;
}

.page-case-detail .case-detail {
  margin-top: 24px;
}

.case-detail-tags {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-detail-tag {
  padding: 8px 14px;
  border-radius: 999px;
  background: #f5f3f8;
  color: #73707f;
  font-size: 14px;
  line-height: 1.2;
}

.case-detail-summary {
  margin-top: 48px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-detail-col-title {
  margin: 0 0 14px;
  color: #8d8a98;
  font-size: 28px;
  line-height: 1.2;
}

.case-detail-col-value {
  margin: 0;
  color: #141416;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
}

.case-detail-awards {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.case-detail-award {
  margin: 0;
}

.case-detail-award-title {
  margin: 0;
  color: #8d8a98;
  font-size: 28px;
  line-height: 1.2;
}

.case-detail-award-text {
  margin: 8px 0 0;
  color: #1b1b1e;
  font-size: 34px;
  line-height: 1.2;
}

.case-detail-image {
  margin-top: 48px;
  border-radius: 18px;
  overflow: hidden;
}

.case-detail-image img {
  display: block;
  width: 100%;
  height: auto;
}

.case-detail-content {
  margin-top: 32px;
}

.case-detail-content img,
.case-detail-content video {
  max-width: 100%;
  height: auto;
}

.case-detail-content p,
.case-detail-content li {
  color: #1c1a22;
  font-size: 20px;
  line-height: 1.5;
}

.case-detail-content h2,
.case-detail-content h3 {
  color: #101828;
  line-height: 1.2;
}

.case-mirror-wrapper {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8e2f2;
}

.case-mirror-frame {
  display: block;
  width: 100%;
  min-height: 80vh;
  border: 0;
}

.case-snapshot {
  margin-top: 0;
  position: relative;
  min-height: 100vh;
  background: #f8f7fa;
}

.case-snapshot-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f7fa;
  color: #767281;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  transition: opacity 0.24s ease, visibility 0.24s ease;
  z-index: 1;
  pointer-events: none;
}

.case-snapshot-loader__text {
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(245, 243, 248, 0.9);
}

.case-snapshot-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.case-snapshot-frame {
  display: block;
  width: 100%;
  min-height: 100vh;
  border: 0;
  background: transparent;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.24s ease;
}

.case-snapshot-frame.is-loading {
  opacity: 0;
}

@media (max-width: 767px) {
  .case-detail-summary {
    grid-template-columns: 1fr;
  }

  .case-detail-col-title {
    font-size: 22px;
  }

  .case-detail-col-value {
    font-size: 34px;
  }

  .case-detail-award-title {
    font-size: 22px;
  }

  .case-detail-award-text {
    font-size: 26px;
  }
}

.cases-page-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 798 / 445;
  border-radius: 12px;
  overflow: hidden;
}

.cases-page-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.cases-page-card__image--empty {
  background: linear-gradient(135deg, #efe9ff 0%, #f7f4ff 100%);
}

.cases-page-card__image--robot {
  width: 104.97%;
  margin-left: -2.48%;
}

.cases-page-card__image--sportmaster {
  width: 162.82%;
  height: 166.54%;
  margin-left: -6.22%;
  margin-top: -12.77%;
  max-width: none;
}

.cases-page-card__media--horeca {
  background:
    radial-gradient(circle at 10% 72%, rgba(255, 255, 255, 0.85) 0 2%, rgba(255, 255, 255, 0.1) 9%, transparent 18%),
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.35) 0 8%, transparent 17%),
    radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.28) 0 5%, transparent 13%),
    linear-gradient(145deg, #413850 0%, #1d1829 58%, #110d19 100%);
}

.cases-page-card__media--horeca::before {
  content: "";
  position: absolute;
  inset: 8% 12% 4% 44%;
  background: linear-gradient(160deg, rgba(255, 172, 145, 0.35) 0%, rgba(255, 80, 48, 0.92) 26%, rgba(255, 53, 20, 0.98) 100%);
  clip-path: polygon(12% 10%, 100% 0%, 83% 100%, 0% 82%);
  filter: drop-shadow(-12px 8px 24px rgba(10, 7, 15, 0.28));
}

.cases-page-card__media--horeca::after {
  content: "";
  position: absolute;
  left: -8%;
  bottom: 8%;
  width: 34%;
  height: 38%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 18%, rgba(255, 255, 255, 0.45) 30%, transparent 62%);
  filter: blur(14px);
  opacity: 0.92;
}

.cases-page-card__media--horeca::before,
.cases-page-card__media--horeca::after {
  transition: transform 0.45s ease;
}

.cases-page-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cases-page-card__title {
  margin: 0;
  color: #141416;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  transition: color 0.28s ease;
}

.cases-page-card__link:hover .cases-page-card__title,
.cases-page-card__link:focus-visible .cases-page-card__title {
  color: #605a73;
}

.cases-page-card__link:hover .cases-page-card__image,
.cases-page-card__link:focus-visible .cases-page-card__image,
.cases-page-card__link:hover .cases-page-card__media--horeca::before,
.cases-page-card__link:focus-visible .cases-page-card__media--horeca::before,
.cases-page-card__link:hover .cases-page-card__media--horeca::after,
.cases-page-card__link:focus-visible .cases-page-card__media--horeca::after {
  transform: scale(1.1);
}

.cases-page-card__tags {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.cases-page-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 24px;
  background: #f5f3f8;
  color: #141416;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}

.cases-page-card__tag--accent {
  background: #e4dbff;
}

@media (max-width: 1279px) {
  .cases-page {
    padding: 100px 64px 120px;
  }

  .cases-page-shell {
    max-width: 1232px;
  }

  .cases-page-title {
    font-size: 56px;
  }

  .cases-page-list {
    margin-top: 64px;
    row-gap: 40px;
  }

  .cases-page-card__title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .cases-page {
    padding: 80px 16px;
  }

  .cases-page-shell {
    max-width: 768px;
  }

  .cases-page-title {
    font-size: 40px;
  }

  .cases-page-list {
    margin-top: 48px;
    column-gap: 16px;
    row-gap: 24px;
  }

  .cases-page-card__title {
    font-size: 18px;
  }

  .cases-page-card__tag {
    padding: 4px 8px;
    font-size: 10px;
  }
}

@media (max-width: 767px) {
  .cases-page {
    padding: 64px 16px;
  }

  .cases-page-shell {
    max-width: 343px;
  }

  .cases-page-title {
    font-size: 36px;
  }

  .cases-page-list {
    margin-top: 48px;
    grid-template-columns: minmax(0, 1fr);
  }

  .cases-page-card__title {
    font-size: 18px;
  }
}

@media (min-width: 1921px) {
  :root {
    --ultrawide-content-max: clamp(922px, 49.378vw, 1201px);
    --ultrawide-gutter: calc((100vw - var(--ultrawide-content-max)) / 2);
    --ultra-fluid-gap-md: clamp(16px, 0.8194vw, 24px);
    --ultra-fluid-gap-lg: clamp(23px, 1.1315vw, 37px);
    --ultra-fluid-gap-xl: clamp(31px, 1.6777vw, 56px);
    --ultra-fluid-gap-2xl: clamp(44px, 2.224vw, 76px);
    --ultra-fluid-title-xl: clamp(31px, 1.5606vw, 37px);
    --ultra-fluid-title-2xl: clamp(42px, 2.224vw, 53px);
    --ultra-fluid-text-md: clamp(14px, 0.7414vw, 17px);
  }

  .site-header,
  .hero,
  .showreel-block,
  .clients,
  .services,
  .cases,
  .advantages,
  .platforms,
  .reviews,
  .blog,
  .contact,
  .blog-page,
  .blog-article-page,
  .cases-page,
  .development-hero,
  .development-fields,
  .development-expertise,
  .development-guarantees,
  .development-cases,
  .development-cooperation,
  .development-stacks,
  .development-faq,
  .development-discuss,
  .support-hero,
  .support-to-whom,
  .support-today,
  .support-method,
  .support-outcome,
  .support-models,
  .support-control,
  .support-onboarding,
  .support-cases,
  .support-faq,
  .support-discuss {
    padding-left: max(92px, var(--ultrawide-gutter));
    padding-right: max(92px, var(--ultrawide-gutter));
  }

  .site-header {
    height: clamp(76px, 4.2vw, 88px);
    padding-top: clamp(20px, 1.1vw, 25px);
    padding-bottom: clamp(20px, 1.1vw, 25px);
  }

  .logo {
    width: clamp(128px, 6.8vw, 145px);
    height: clamp(24px, 1.27vw, 27px);
  }

  .nav-link,
  .nav-submenu__link,
  .phone-button,
  .cta-link,
  .site-footer-nav-title,
  .site-footer-nav-link,
  .site-footer-subnav a,
  .site-footer-download {
    font-size: clamp(16px, 0.9vw, 18px);
  }

  .site-footer {
    gap: clamp(44px, 2.5vw, 56px);
    margin-top: clamp(44px, 2.5vw, 56px);
    padding-top: clamp(48px, 2.7vw, 56px);
    padding-bottom: clamp(60px, 3.35vw, 72px);
  }

  .site-footer-logo {
    width: clamp(128px, 6.8vw, 145px);
    height: clamp(24px, 1.27vw, 27px);
  }

  .site-footer-motto {
    font-size: clamp(24px, 1.45vw, 30px);
  }

  .site-footer-top,
  .site-footer-legal {
    gap: var(--ultra-fluid-gap-lg);
  }

  .site-footer-navs {
    gap: clamp(48px, 3.1vw, 72px);
  }

  .site-footer-contact-link {
    font-size: clamp(20px, 1.1vw, 22px);
  }

  .site-footer-social {
    width: clamp(40px, 2.3vw, 46px);
    height: clamp(40px, 2.3vw, 46px);
  }

  .site-footer-legal-links,
  .site-footer-company {
    font-size: clamp(16px, 0.9vw, 18px);
  }

  .hero,
  .showreel-block,
  .clients,
  .services,
  .cases,
  .advantages,
  .platforms,
  .reviews,
  .blog {
    margin-top: var(--ultra-fluid-gap-2xl);
  }

  .hero,
  .showreel-block {
    gap: var(--ultra-fluid-gap-xl);
  }

  .hero-title,
  .development-hero__title,
  .blog-page-title,
  .cases-page-title,
  .blog-article-title {
    font-size: var(--ultra-fluid-title-2xl);
  }

  .hero-lead-row p,
  .development-hero__subtitle {
    font-size: clamp(24px, 1.45vw, 30px);
    line-height: 1.28;
  }

  .hero-lead-emoji {
    font-size: clamp(24px, 1.45vw, 30px);
  }

  .hero-description,
  .clients-description,
  .support-cases__subtitle,
  .development-guarantees__subtitle {
    font-size: var(--ultra-fluid-text-md);
  }

  .clients-title,
  .services-title,
  .cases-title,
  .advantages-title,
  .platforms-title,
  .reviews-title,
  .blog-title,
  .support-hero__title,
  .support-to-whom__title,
  .support-today__title,
  .support-method__title,
  .support-outcome__title,
  .support-models__title,
  .support-control__title,
  .support-onboarding__title,
  .support-cases__title,
  .support-faq__title,
  .support-discuss__title,
  .development-fields__title,
  .development-expertise__title,
  .development-guarantees__title,
  .development-cases__title,
  .development-cooperation__title,
  .development-stacks__title,
  .development-faq__title,
  .development-discuss__title {
    font-size: var(--ultra-fluid-title-xl);
  }

  .stat-value span {
    font-size: clamp(54px, 2.85vw, 68px);
  }

  .stat-value small {
    font-size: clamp(34px, 1.85vw, 44px);
  }

  .stat-label {
    font-size: clamp(16px, 0.95vw, 18px);
  }

  .cases-layout,
  .development-cases__inner,
  .development-cooperation__inner,
  .development-stacks__inner,
  .support-cases__inner {
    gap: var(--ultra-fluid-gap-lg);
  }

  .cases-row,
  .services-grid,
  .advantages-grid,
  .reviews-grid,
  .development-cases__grid,
  .development-cooperation__grid,
  .support-cases__grid {
    gap: clamp(16px, 1vw, 24px);
  }

  .case-card,
  .case-card-link,
  .cases-page-card,
  .cases-page-card__link {
    gap: clamp(16px, 1vw, 20px);
  }

  .case-card-title,
  .cases-page-card__title,
  .development-case-card__title,
  .support-case-card__title {
    font-size: clamp(18px, 1vw, 22px);
  }

  .case-card-tag,
  .cases-page-card__tag,
  .development-case-card__tag,
  .support-case-card__tag {
    padding: clamp(5px, 0.35vw, 7px) clamp(10px, 0.65vw, 14px);
    font-size: clamp(11px, 0.62vw, 13px);
  }

  .case-card-media,
  .case-card-image-frame,
  .case-cta,
  .cases-page-card__media {
    border-radius: 8px;
  }

  .case-cta-icon {
    width: clamp(56px, 3.2vw, 72px);
    height: clamp(56px, 3.2vw, 72px);
  }

  .case-cta-label {
    font-size: clamp(18px, 1vw, 22px);
  }

  .development-case-card,
  .support-case-card {
    border-radius: clamp(16px, 1vw, 22px);
  }

  .development-case-card {
    height: clamp(392px, 20.5vw, 440px);
  }

  .development-case-card__media,
  .support-case-card__media {
    height: clamp(198px, 10.7vw, 232px);
  }

  .development-case-card__body,
  .support-case-card__body {
    gap: clamp(14px, 0.85vw, 18px);
    padding: clamp(24px, 1.45vw, 30px);
  }

  .cases-page {
    padding: clamp(82px, 4.25vw, 109px) max(102px, var(--ultrawide-gutter)) clamp(61px, 3.57vw, 82px);
  }

  .cases-page-shell {
    max-width: min(100%, clamp(932px, 47.6vw, 1122px));
  }

  .cases-page-title {
    max-width: 100%;
  }

  .cases-page-list {
    margin-top: clamp(48px, 2.83vw, 54px);
    column-gap: 12px;
    row-gap: 20px;
  }

  .cases-page-card,
  .cases-page-card__link {
    gap: clamp(16px, 1vw, 20px);
  }

  .cases-page-card__media {
    border-radius: 8px;
  }

  .cases-page-card__body {
    gap: 10px;
  }

  .cases-page-card__title {
    font-size: clamp(18px, 1vw, 22px);
  }

  .cases-page-card__tag {
    padding: clamp(5px, 0.35vw, 7px) clamp(10px, 0.65vw, 14px);
    font-size: clamp(11px, 0.62vw, 13px);
  }
}

body.modal-open {
  overflow: hidden;
}

body.mobile-menu-open {
  overflow: hidden;
}

.feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.feedback-modal[hidden] {
  display: none;
}

.feedback-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 22, 0.32);
}

.feedback-modal__drawer {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 690px;
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 24px;
  background: #ffffff;
  padding: 40px;
}

.feedback-modal__close {
  position: absolute;
  top: 4px;
  right: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #2f127b;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.feedback-modal__title {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
}

.feedback-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feedback-form__fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feedback-form__field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 2px solid #d9ccff;
  padding-top: 18px;
  padding-bottom: 22px;
  transition: border-bottom-color 0.22s ease;
}

.feedback-form__field:not(.is-error):hover {
  border-bottom-color: #9f6cff;
}

.feedback-form__field:not(.is-error).is-filled {
  border-bottom-color: #7b33f4;
}

.feedback-form__field--message {
  padding-top: 20px;
  padding-bottom: 20px;
}

.feedback-form__label {
  position: absolute;
  left: 0;
  top: 32px;
  pointer-events: none;
  color: #9999a4;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  transform: translateY(-50%);
  transform-origin: left top;
  transition:
    top 0.18s ease,
    transform 0.18s ease,
    font-size 0.18s ease,
    color 0.18s ease;
}

.feedback-form__field .form-field-control {
  margin-top: 20px;
}

.feedback-form__field:focus-within .feedback-form__label,
.feedback-form__field.is-filled .feedback-form__label {
  top: 0;
  font-size: 14px;
  transform: translateY(0);
}

.feedback-form__input {
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  background: transparent;
  color: #141416;
  font: inherit;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  outline: none;
}

.feedback-form__input--textarea {
  min-height: 28px;
  resize: vertical;
}

.feedback-form__policy {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feedback-form__policy-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.feedback-form__policy-mark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 90px;
  background: #853ef6;
  color: #f5f3f8;
  font-size: 16px;
  line-height: 1;
  transition:
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease;
}

.feedback-form__policy-input:not(:checked) + .feedback-form__policy-mark {
  background: #ede7ff;
  color: transparent;
}

.feedback-form__policy:hover .feedback-form__policy-mark,
.feedback-form__policy:focus-within .feedback-form__policy-mark {
  box-shadow: 0 0 0 4px rgba(133, 62, 246, 0.12);
}

.feedback-form__policy:hover .feedback-form__policy-input:not(:checked) + .feedback-form__policy-mark,
.feedback-form__policy:focus-within .feedback-form__policy-input:not(:checked) + .feedback-form__policy-mark {
  background: #dfd3ff;
}

.feedback-form__policy-text {
  color: #9999a4;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.feedback-form__policy-link {
  color: inherit;
  text-decoration: underline;
}

.feedback-form__actions {
  display: flex;
  gap: 24px;
}

.feedback-form__button {
  border: 0;
  border-radius: 12px;
  height: 54px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
}

.feedback-form__button--attach {
  width: 229px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  background: transparent;
  color: #a99fc1;
  padding: 0 12px 0 0;
}

.feedback-form__attach-icon {
  width: 24px;
  height: 24px;
}

.feedback-form__button--submit {
  flex: 1 1 auto;
  min-width: 0;
  background: #853ef6;
  color: #f5f3f8;
}

.feedback-form__file-input {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

.feedback-form__files,
.feedback-form__success-title,
.feedback-form__success-text,
.feedback-form__error {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.feedback-form__files {
  color: #706388;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.feedback-form__files.has-file {
  display: flex;
  width: 100%;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid #d8ccf7;
  border-radius: 8px;
  background: #f4f0ff;
  color: #141416;
  overflow-wrap: anywhere;
}

.feedback-form__success-state {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 12px;
  background: #f1ebff;
  padding: 16px;
}

.feedback-form__success-state[hidden] {
  display: none;
}

.feedback-form__success-title {
  color: #2f7d4a;
}

.feedback-form__success-text {
  color: #4f4568;
}

.feedback-form__error {
  color: #f15b50;
}

.feedback-form__error:empty {
  display: none;
}

.feedback-form__field .feedback-form__error:not(:empty) {
  display: block;
}

.feedback-form > .feedback-form__error:not(:empty) {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 24px;
  padding: 3px 8px;
  background: #f15b50;
  color: #f5f3f8;
}

.feedback-form > [data-feedback-error-for="policy"]:not(:empty) {
  max-width: calc(100% - 40px);
  margin-left: 40px;
}

.feedback-form__field.is-error,
.feedback-form__policy.is-error {
  border-color: #f15b50;
}

.feedback-form__field.is-error .feedback-form__label {
  color: #f15b50;
}

.feedback-form.is-success .feedback-form__fields,
.feedback-form.is-success .feedback-form__policy,
.feedback-form.is-success [data-feedback-error-for="policy"],
.feedback-form.is-success .feedback-form__actions,
.feedback-form.is-success .feedback-form__files {
  display: none;
}

.showreel-modal {
  position: fixed;
  inset: 0;
  z-index: 1250;
}

.showreel-modal[hidden] {
  display: none;
}

.showreel-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(20, 20, 22, 0.6);
}

.showreel-modal__dialog {
  position: relative;
  width: min(1280px, calc(100vw - 32px));
  margin: 16px auto;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.showreel-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.showreel-modal__video {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 32px);
}

.cookie-banner {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 1100;
  width: 255px;
  border-radius: 8px;
  background: #ede7ff;
  padding: 16px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__text {
  margin: 0;
  color: #141416;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.cookie-banner__text a {
  color: inherit;
  text-decoration: underline;
}

.cookie-banner__button {
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  color: #2f127b;
  width: 94px;
  height: 36px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
}

@media (max-width: 1279px) {
  .feedback-modal__drawer {
    top: 24px;
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none;
    max-height: calc(100vh - 48px);
    padding: 40px 24px;
  }

  .feedback-modal__title {
    font-size: 26px;
    line-height: 1.1;
  }

  .feedback-form__fields {
    gap: 12px;
  }

  .feedback-form__field {
    padding-top: 14px;
    padding-bottom: 15px;
  }

  .feedback-form__field--message {
    padding-top: 12px;
    padding-bottom: 13px;
  }

  .feedback-form__label,
  .feedback-form__input {
    font-size: 12px;
  }

  .feedback-form__input--textarea {
    min-height: 17px;
  }

  .feedback-form__policy-text {
    font-size: 10px;
  }

  .feedback-form__actions {
    flex-direction: column-reverse;
    gap: 12px;
  }

  .feedback-form__button {
    width: 100%;
    height: 40px;
    font-size: 12px;
  }

  .feedback-form__button--attach {
    justify-content: center;
    padding: 0 12px;
  }

  .feedback-form__attach-icon {
    width: 16px;
    height: 16px;
  }

  .feedback-form__files,
  .feedback-form__success-title,
  .feedback-form__success-text,
  .feedback-form__error {
    font-size: 10px;
  }

  .contact-form__files,
  .contact-form__success,
  .contact-form__error {
    font-size: 10px;
  }

  .feedback-form__files.has-file,
  .contact-form__files.has-file {
    font-size: 12px;
  }

  .feedback-form > .feedback-form__error:not(:empty),
  .contact-form > .contact-form__error:not(:empty) {
    min-height: 34px;
    padding: 4px 8px;
  }

  .showreel-modal__dialog {
    width: calc(100vw - 24px);
    margin: 12px auto;
  }

  .showreel-modal__video {
    max-height: calc(100vh - 24px);
  }

  .cookie-banner {
    right: 24px;
    bottom: 24px;
  }
}

@media (max-width: 767px) {
  .feedback-modal__drawer {
    top: 121px;
    right: 16px;
    left: 16px;
    border-radius: 24px;
  }

  .showreel-modal__dialog {
    width: calc(100vw - 16px);
    margin: 8px auto;
    border-radius: 12px;
  }

  .showreel-modal__video {
    max-height: calc(100vh - 16px);
  }

  .cookie-banner {
    left: 50%;
    right: auto;
    bottom: 16px;
    transform: translateX(-50%);
    width: 255px;
  }
}

/* Site-wide fluid density follows the old Webflow rem-scaling principle without body zoom. */
@media (min-width: 1280px) and (max-width: 1919px) {
  :root {
    --site-fluid-base-width: 1920px;
    --site-fluid-scale: calc(100vw / 1920px);
  }

  body {
    overflow-x: hidden;
  }

  .page-main {
    overflow: hidden;
  }

  .site-header,
  .page-main > section,
  .site-footer {
    width: var(--site-fluid-base-width);
    max-width: none;
    zoom: var(--site-fluid-scale);
    transform-origin: top left;
  }

  .site-header,
  .hero,
  .showreel-block,
  .clients,
  .services,
  .cases,
  .advantages,
  .platforms,
  .reviews,
  .blog,
  .contact,
  .site-footer,
  .blog-page,
  .blog-article-page,
  .cases-page,
  .development-hero,
  .development-fields,
  .development-expertise,
  .development-guarantees,
  .development-cases,
  .development-cooperation,
  .development-stacks,
  .development-faq,
  .development-discuss,
  .support-hero,
  .support-to-whom,
  .support-today,
  .support-method,
  .support-outcome,
  .support-models,
  .support-control,
  .support-onboarding,
  .support-cases,
  .support-faq,
  .support-discuss {
    padding-left: 150px;
    padding-right: 150px;
  }

  .site-header {
    height: 94px;
    padding-top: 27px;
    padding-bottom: 27px;
  }

  .logo,
  .site-footer-logo {
    width: 155px;
    height: 28.918px;
  }

  .nav-link,
  .nav-submenu__link,
  .phone-button,
  .cta-link,
  .mobile-menu__link--sub,
  .site-footer-nav-title,
  .site-footer-nav-link,
  .site-footer-subnav a,
  .site-footer-download,
  .site-footer-legal-links,
  .site-footer-company,
  .site-footer-company-meta {
    font-size: 20px;
  }

  .hero,
  .showreel-block,
  .clients,
  .services,
  .cases,
  .advantages,
  .platforms,
  .reviews,
  .blog,
  .development-fields,
  .development-expertise,
  .development-guarantees,
  .development-cases,
  .development-cooperation,
  .development-stacks,
  .development-faq,
  .development-discuss,
  .support-to-whom,
  .support-today,
  .support-method,
  .support-outcome,
  .support-models,
  .support-control,
  .support-onboarding,
  .support-cases,
  .support-faq,
  .support-discuss {
    margin-top: 120px;
  }

  .development-hero,
  .support-hero,
  .blog-page,
  .blog-article-page,
  .cases-page {
    padding-top: 120px;
  }

  .blog-page-shell,
  .blog-article-shell,
  .cases-page-shell {
    width: min(100%, 1620px);
    max-width: min(100%, 1620px);
  }

  .hero-title,
  .development-hero__title,
  .support-hero__title,
  .blog-page-title,
  .cases-page-title,
  .blog-article-title {
    font-size: 72px;
    line-height: 1.05;
  }

  .clients-title,
  .services-title,
  .cases-title,
  .advantages-title,
  .platforms-title,
  .reviews-title,
  .blog-title,
  .support-to-whom__title,
  .support-today__title,
  .support-method__title,
  .support-outcome__title,
  .support-models__title,
  .support-control__title,
  .support-onboarding__title,
  .support-cases__title,
  .support-faq__title,
  .support-discuss__title,
  .development-fields__title,
  .development-expertise__title,
  .development-guarantees__title,
  .development-cases__title,
  .development-cooperation__title,
  .development-stacks__title,
  .development-faq__title,
  .development-discuss__title,
  .contact-title,
  .blog-article-related-title {
    font-size: 48px;
    line-height: 1.1;
  }

  .hero-lead-row p,
  .hero-lead-emoji,
  .development-hero__subtitle,
  .support-hero__line,
  .site-footer-motto {
    font-size: 32px;
  }

  .hero-description,
  .clients-description,
  .service-card-description,
  .platforms-description,
  .review-text,
  .blog-article-lead,
  .blog-article-richtext p,
  .blog-article-list li,
  .support-cases__subtitle,
  .development-guarantees__subtitle,
  .contact-description,
  .feedback-form__input,
  .contact-field-input {
    font-size: 20px;
  }

  .service-card-title,
  .case-card-title,
  .cases-page-card__title,
  .development-case-card__title,
  .support-case-card__title,
  .blog-entry-title--compact,
  .related-article-title,
  .site-footer-contact-link {
    font-size: 24px;
  }

  .blog-entry-title--lead,
  .blog-entry-title--feature,
  .blog-article-section-title,
  .blog-article-note-title {
    font-size: 36px;
  }

  .stat-value span {
    font-size: 72px;
  }

  .stat-value small {
    font-size: 46.44px;
  }

  .stat-label,
  .case-card-tag,
  .cases-page-card__tag,
  .development-case-card__tag,
  .support-case-card__tag,
  .blog-entry-meta,
  .blog-article-meta,
  .contact-policy,
  .feedback-form__policy-text {
    font-size: 16px;
  }

  .services-grid,
  .cases-row,
  .advantages-grid,
  .reviews-grid,
  .blog-page-card-grid,
  .development-cases__grid,
  .development-cooperation__grid,
  .support-cases__grid {
    gap: 24px;
  }

  .blog-page-blocks,
  .development-stacks__inner,
  .development-faq__inner,
  .support-faq__inner {
    gap: 80px;
  }

  .service-card,
  .contact-form,
  .feedback-modal__drawer,
  .development-expertise-card,
  .support-model-card,
  .development-work-card {
    padding: 48px;
  }

  .showreel-video,
  .case-card-media,
  .cases-page-card__media,
  .blog-entry-media {
    border-radius: 8px;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  :root {
    --site-fluid-base-width: 1280px;
    --site-fluid-scale: calc(100vw / 1280px);
  }

  body {
    overflow-x: hidden;
  }

  .page-main {
    overflow: hidden;
  }

  .site-header,
  .page-main > section,
  .site-footer {
    width: var(--site-fluid-base-width);
    max-width: none;
    zoom: var(--site-fluid-scale);
    transform-origin: top left;
  }

  .hero-title,
  .development-hero__title,
  .support-hero__title,
  .blog-page-title,
  .cases-page-title,
  .blog-article-title {
    font-size: 48px;
    line-height: 1.08;
  }

  .clients-title,
  .services-title,
  .cases-title,
  .advantages-title,
  .platforms-title,
  .reviews-title,
  .blog-title,
  .support-to-whom__title,
  .support-today__title,
  .support-method__title,
  .support-outcome__title,
  .support-models__title,
  .support-control__title,
  .support-onboarding__title,
  .support-cases__title,
  .support-faq__title,
  .support-discuss__title,
  .development-fields__title,
  .development-expertise__title,
  .development-guarantees__title,
  .development-cases__title,
  .development-cooperation__title,
  .development-stacks__title,
  .development-faq__title,
  .development-discuss__title,
  .contact-title,
  .blog-article-related-title {
    font-size: 40px;
    line-height: 1.12;
  }

  .hero-lead-row p,
  .hero-lead-emoji,
  .development-hero__subtitle,
  .support-hero__line,
  .site-footer-motto {
    font-size: 24px;
  }

  .hero-description,
  .clients-description,
  .service-card-description,
  .platforms-description,
  .review-text,
  .blog-article-lead,
  .blog-article-richtext p,
  .blog-article-list li,
  .support-cases__subtitle,
  .development-guarantees__subtitle,
  .contact-description {
    font-size: 18px;
  }

  .service-card-title,
  .case-card-title,
  .cases-page-card__title,
  .development-case-card__title,
  .support-case-card__title,
  .blog-entry-title--compact,
  .related-article-title,
  .site-footer-contact-link {
    font-size: 24px;
  }

  .blog-entry-title--lead,
  .blog-entry-title--feature,
  .blog-article-section-title,
  .blog-article-note-title {
    font-size: 30px;
  }

  .site-header,
  .hero,
  .showreel-block,
  .clients,
  .services,
  .cases,
  .advantages,
  .platforms,
  .reviews,
  .blog,
  .contact,
  .site-footer,
  .blog-page,
  .blog-article-page,
  .cases-page,
  .development-hero,
  .development-fields,
  .development-expertise,
  .development-guarantees,
  .development-cases,
  .development-cooperation,
  .development-stacks,
  .development-faq,
  .development-discuss,
  .support-hero,
  .support-to-whom,
  .support-today,
  .support-method,
  .support-outcome,
  .support-models,
  .support-control,
  .support-onboarding,
  .support-cases,
  .support-faq,
  .support-discuss {
    padding-left: 64px;
    padding-right: 64px;
  }
}

@media (min-width: 1921px) {
  .cases-page-shell {
    max-width: min(100%, clamp(1118px, 57.12vw, 1346px));
  }

  .cases-page {
    padding-left: max(122px, var(--ultrawide-gutter));
    padding-right: max(122px, var(--ultrawide-gutter));
  }
}

@media (min-width: 1920px) {
  :root {
    --site-fluid-base-width: 1920px;
    --site-fluid-scale: min(calc(100vw / 1920px), 1.2);
  }

  body {
    overflow-x: hidden;
  }

  .page-main {
    overflow: hidden;
  }

  .site-header,
  .page-main > section,
  .site-footer {
    width: var(--site-fluid-base-width);
    max-width: none;
    margin-left: 0;
    zoom: var(--site-fluid-scale);
    transform-origin: top left;
  }

  .site-header,
  .hero,
  .showreel-block,
  .clients,
  .services,
  .cases,
  .advantages,
  .platforms,
  .reviews,
  .blog,
  .contact,
  .site-footer,
  .blog-page,
  .blog-article-page,
  .cases-page,
  .development-hero,
  .development-fields,
  .development-expertise,
  .development-guarantees,
  .development-cases,
  .development-cooperation,
  .development-stacks,
  .development-faq,
  .development-discuss,
  .support-hero,
  .support-to-whom,
  .support-today,
  .support-method,
  .support-outcome,
  .support-models,
  .support-control,
  .support-onboarding,
  .support-cases,
  .support-faq,
  .support-discuss {
    padding-left: 150px;
    padding-right: 150px;
  }

  .site-header {
    height: 94px;
    padding-top: 27px;
    padding-bottom: 27px;
  }

  .logo,
  .site-footer-logo {
    width: 155px;
    height: 28.918px;
  }

  .nav-link,
  .nav-submenu__link,
  .phone-button,
  .cta-link,
  .site-footer-nav-title,
  .site-footer-nav-link,
  .site-footer-subnav a,
  .site-footer-download,
  .site-footer-legal-links,
  .site-footer-company,
  .site-footer-company-meta {
    font-size: 20px;
  }

  .site-footer {
    gap: 80px;
    margin-top: 80px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .site-footer-motto {
    font-size: 32px;
  }

  .site-footer-contact-link {
    font-size: 24px;
  }

  .hero,
  .showreel-block,
  .clients,
  .services,
  .cases,
  .advantages,
  .platforms,
  .reviews,
  .blog,
  .development-fields,
  .development-expertise,
  .development-guarantees,
  .development-cases,
  .development-cooperation,
  .development-stacks,
  .development-faq,
  .development-discuss,
  .support-to-whom,
  .support-today,
  .support-method,
  .support-outcome,
  .support-models,
  .support-control,
  .support-onboarding,
  .support-cases,
  .support-faq,
  .support-discuss {
    margin-top: 120px;
  }

  .hero,
  .showreel-block {
    gap: 48px;
  }

  .development-hero,
  .support-hero,
  .blog-page,
  .blog-article-page,
  .cases-page {
    padding-top: 120px;
  }

  .blog-page-shell,
  .blog-article-shell,
  .cases-page-shell,
  .cms-page {
    width: min(100%, 1620px);
    max-width: min(100%, 1620px);
  }

  .hero-title,
  .development-hero__title,
  .support-hero__title,
  .blog-page-title,
  .cases-page-title,
  .blog-article-title {
    font-size: 72px;
    line-height: 1.05;
  }

  .clients-title,
  .services-title,
  .cases-title,
  .advantages-title,
  .platforms-title,
  .reviews-title,
  .blog-title,
  .support-to-whom__title,
  .support-today__title,
  .support-method__title,
  .support-outcome__title,
  .support-models__title,
  .support-control__title,
  .support-onboarding__title,
  .support-cases__title,
  .support-faq__title,
  .support-discuss__title,
  .development-fields__title,
  .development-expertise__title,
  .development-guarantees__title,
  .development-cases__title,
  .development-cooperation__title,
  .development-stacks__title,
  .development-faq__title,
  .development-discuss__title,
  .contact-title,
  .blog-article-related-title {
    font-size: 48px;
    line-height: 1.1;
  }

  .hero-lead-row p,
  .hero-lead-emoji,
  .development-hero__subtitle,
  .support-hero__line,
  .site-footer-motto {
    font-size: 32px;
  }

  .hero-description,
  .clients-description,
  .service-card-description,
  .platforms-description,
  .review-text,
  .blog-article-lead,
  .blog-article-richtext p,
  .blog-article-list li,
  .support-cases__subtitle,
  .development-guarantees__subtitle,
  .contact-description,
  .feedback-form__input,
  .contact-field-input {
    font-size: 20px;
  }

  .service-card-title,
  .case-card-title,
  .cases-page-card__title,
  .development-case-card__title,
  .support-case-card__title,
  .blog-entry-title--compact,
  .related-article-title {
    font-size: 24px;
  }

  .blog-entry-title--lead,
  .blog-entry-title--feature,
  .blog-article-section-title,
  .blog-article-note-title {
    font-size: 36px;
  }

  .stat-value span {
    font-size: 72px;
  }

  .stat-value small {
    font-size: 46.44px;
  }

  .stat-label,
  .case-card-tag,
  .cases-page-card__tag,
  .development-case-card__tag,
  .support-case-card__tag,
  .blog-entry-meta,
  .blog-article-meta,
  .contact-policy,
  .feedback-form__policy-text {
    font-size: 16px;
  }

  .services-grid,
  .cases-row,
  .advantages-grid,
  .reviews-grid,
  .blog-page-card-grid,
  .development-cases__grid,
  .development-cooperation__grid,
  .support-cases__grid {
    gap: 24px;
  }

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

  .advantage-card {
    gap: 16px;
    min-height: 116px;
    padding: 24px 32px;
  }

  .advantage-icon {
    font-size: 52px;
  }

  .advantage-heading {
    font-size: 24px;
  }

  .advantage-description {
    font-size: 20px;
  }

  .platforms-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .platform-item {
    gap: 16px;
  }

  .platform-icon-box {
    width: 64px;
    height: 56px;
  }

  .platform-heading {
    font-size: 20px;
  }

  .platform-description {
    font-size: 16px;
  }

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

  .blog-page-title {
    margin-bottom: 80px;
  }

  .blog-page-blocks {
    gap: 100px;
  }

  .blog-page-block {
    gap: 32px;
  }

  .blog-page-primary-grid,
  .blog-page-secondary-grid {
    grid-template-columns: minmax(0, 661fr) minmax(0, 798fr);
    column-gap: 161px;
  }

  .blog-entry-compact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
    column-gap: 24px;
  }

  .cases-page {
    padding-top: 128px;
    padding-bottom: 80px;
  }

  .cases-page-list {
    margin-top: 80px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 24px;
  }

  .case-card,
  .case-card-link,
  .cases-page-card,
  .cases-page-card__link {
    gap: 24px;
  }

  .case-card-media,
  .case-card-image-frame,
  .case-cta,
  .cases-page-card__media,
  .blog-entry-media,
  .showreel-video {
    border-radius: 8px;
  }

  .development-expertise {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 0;
  }

  .development-expertise__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
    gap: 96px;
    align-items: start;
  }

  .development-expertise__description {
    max-width: 540px;
    font-size: 20px;
  }

  .development-expertise__comparison {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 620px;
  }

  .development-expertise-card,
  .support-model-card,
  .development-work-card,
  .service-card,
  .contact-form,
  .feedback-modal__drawer {
    padding: 48px;
  }
}

@media (min-width: 2305px) {
  .site-header,
  .page-main > section,
  .site-footer {
    margin-left: calc((100vw - 2304px) * 0.416667);
  }
}

@media (min-width: 768px) {
  .site-header,
  .page-main,
  .site-footer {
    width: var(--site-fluid-base-width);
    max-width: none;
    zoom: var(--site-fluid-scale);
    transform-origin: top left;
  }

  .page-main {
    overflow: visible;
  }

  .page-main > section {
    width: auto;
    max-width: none;
    margin-left: 0;
    zoom: 1;
  }
}

@media (min-width: 2305px) {
  .site-header,
  .page-main,
  .site-footer {
    margin-left: calc((100vw - 2304px) * 0.416667);
  }

  .page-main > section {
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .hero-title {
    max-width: none;
  }

  .hero-title__line {
    display: block;
    white-space: nowrap;
  }
}

@media (min-width: 1280px) and (max-width: 1919px) {
  :root {
    --site-fluid-scale: calc((100vw / 1920px) * 0.85);
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  :root {
    --site-fluid-scale: calc((100vw / 1280px) * 0.85);
  }
}

@media (min-width: 1920px) {
  :root {
    --site-fluid-scale: min(calc((100vw / 1920px) * 0.85), 1.02);
  }
}

@media (min-width: 768px) {
  .site-header {
    width: 100%;
    max-width: none;
    margin-left: 0;
    zoom: 1;
    transform: none;
  }

  .page-main,
  .site-footer {
    margin-left: var(--site-fluid-inline-offset, 0);
  }

  .page-main > section:first-child.js-reveal,
  body.js-scroll-ready .page-main > section:first-child.js-reveal,
  body.js-scroll-ready .page-main > section:first-child.js-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .blog-article-source-row {
    max-width: 980px;
  }

  .blog-article-source {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    text-wrap: pretty;
  }

  .blog-article-source a {
    overflow-wrap: anywhere;
  }

  .blog-article-share {
    flex: 0 0 auto;
  }
}

@media (min-width: 1280px) {
  .blog-article-shell {
    width: min(100%, 1324px);
    max-width: min(100%, 1324px);
  }
}

@media (min-width: 1280px) and (max-width: 1919px) {
  :root {
    --site-fluid-scale: calc((100vw / 1920px) * 0.9326625);
    --site-fluid-inline-offset: 66.738px;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  :root {
    --site-fluid-scale: calc((100vw / 1280px) * 0.9326625);
    --site-fluid-inline-offset: 44.492px;
  }
}

@media (min-width: 1920px) and (max-width: 2304px) {
  :root {
    --site-fluid-scale: calc((100vw / 1920px) * 0.8075);
    --site-fluid-inline-offset: 169.412px;
  }
}

@media (min-width: 2305px) {
  :root {
    --site-fluid-scale: 1.02;
    --site-fluid-inline-offset: calc(49.0196vw - 960px);
  }

  .site-header {
    margin-left: 0;
  }

  .page-main,
  .site-footer {
    margin-left: var(--site-fluid-inline-offset);
  }
}

@media (min-width: 768px) {
  .site-footer {
    width: 100%;
    max-width: none;
    margin-left: 0;
    zoom: 1;
    transform: none;
  }
}

@media (min-width: 1280px) {
  :root {
    --site-fluid-visual-width: calc(var(--site-fluid-base-width) * var(--site-fluid-scale));
    --site-fluid-visual-offset: max(0px, calc((100vw - var(--site-fluid-visual-width)) / 2));
    --site-header-fluid-padding: calc(
      var(--site-fluid-visual-offset) + (150px * var(--site-fluid-scale))
    );
  }

  .site-header {
    width: 100%;
    max-width: none;
    margin-left: 0;
    padding-left: var(--site-header-fluid-padding);
    padding-right: var(--site-header-fluid-padding);
  }

  .logo {
    transform: translateX(-32px);
  }

  .hero,
  .hero-title,
  .hero-lead,
  .hero-description,
  .stats--desktop {
    backface-visibility: hidden;
    transform: translateZ(0);
  }

  .hero-title,
  .hero-lead-row p,
  .hero-description,
  .stat-value,
  .stat-label {
    transition: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
  }
}

@media (min-width: 2305px) {
  .site-header {
    margin-left: 0;
  }

  .site-footer {
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .development-page-main,
  .support-page-main {
    background: transparent;
  }

  .development-hero,
  .development-expertise,
  .development-cooperation,
  .development-faq,
  .support-hero,
  .support-method,
  .support-models,
  .support-onboarding,
  .support-faq {
    --service-section-bg: #fafafc;
  }

  .development-fields,
  .development-guarantees,
  .development-cases,
  .development-stacks,
  .development-discuss,
  .support-to-whom,
  .support-today,
  .support-outcome,
  .support-control,
  .support-cases,
  .support-discuss {
    --service-section-bg: #ffffff;
  }

  .page-development .page-main > section,
  .page-support .page-main > section {
    position: relative;
    background: var(--service-section-bg);
    box-shadow: 0 0 0 100vmax var(--service-section-bg);
    clip-path: inset(0 -100vmax);
  }
}

/* MicroTest correction layer. Keep it last because the project has virtual-frame overrides above. */
.nav-submenu .nav-submenu__link:hover,
.nav-submenu .nav-submenu__link:focus-visible {
  color: #141416;
  background: transparent;
  opacity: 0.5;
  transform: none;
  text-decoration-line: none;
}

.stat-value small {
  padding-top: 8px;
  font-size: 28px;
  line-height: 1;
}

.blog-card-link:hover .blog-card-title,
.blog-card-link:focus-visible .blog-card-title {
  color: #605a73;
}

.blog-card-link:hover .blog-card-image,
.blog-card-link:focus-visible .blog-card-image {
  transform: scale(1.08);
}

.contact-form {
  flex-basis: 720px;
  max-width: 720px;
  gap: 32px;
  padding: 32px;
}

.contact-field .form-field-control,
.feedback-form__field .form-field-control {
  margin-top: 20px;
}

.contact-field:focus-within .contact-field-label,
.contact-field.is-filled .contact-field-label,
.feedback-form__field:focus-within .feedback-form__label,
.feedback-form__field.is-filled .feedback-form__label {
  top: 0;
  font-size: 14px;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .stat-value small {
    padding-top: 4px;
    font-size: 18px;
  }

  .contact-form {
    flex-basis: auto;
    max-width: none;
    gap: 32px;
    padding: 24px 16px;
  }

  .contact-field-label,
  .feedback-form__label {
    top: 24px;
    font-size: 12px;
  }

  .contact-field .form-field-control,
  .feedback-form__field .form-field-control {
    margin-top: 14px;
  }

  .contact-field:focus-within .contact-field-label,
  .contact-field.is-filled .contact-field-label,
  .feedback-form__field:focus-within .feedback-form__label,
  .feedback-form__field.is-filled .feedback-form__label {
    font-size: 10px;
  }
}

@media (max-width: 1279px) {
  .blog-article-source-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    gap: 12px;
    margin-left: 0;
  }

  .blog-article-source {
    flex: 0 1 auto;
    justify-self: start;
    width: auto;
    max-width: 100%;
    text-align: left;
  }

  .blog-article-share {
    grid-column: auto;
    justify-self: start;
  }
}

@media (max-width: 767px) {
  .blog-article-source-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* MicroTest second pass: exact Figma assets and fixed Development desktop geometry. */
.nav-submenu__link::before {
  flex-basis: 28px;
  width: 28px;
  height: 28px;
  background-size: 28px 28px;
}

.review-link-icon {
  width: 8.051px;
  height: 14px;
  margin-bottom: 7px;
  transform: rotate(180deg);
}

.development-expertise-card__badge img,
.development-work-card__icon img {
  display: block;
  max-width: none;
  pointer-events: none;
}

.development-expertise-card__badge img {
  width: 24px;
  height: 24px;
}

.development-work-card__icon-asset {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
}

.development-work-card__icon-layer {
  position: absolute;
}

.development-work-card__icon-layer--target-base {
  left: 1px;
  top: 1px;
  width: 21.998px;
  height: 21.998px;
}

.development-work-card__icon-layer--target-ring {
  left: 5px;
  top: 5px;
  width: 13.999px;
  height: 13.999px;
}

.development-work-card__icon-layer--target-dot {
  left: 9px;
  top: 9px;
  width: 6px;
  height: 6px;
}

.development-work-card__icon-layer--clock-hand {
  left: 11px;
  top: 6px;
  width: 6px;
  height: 10px;
}

.development-work-card__icon-layer--team-base {
  left: 4px;
  top: 14px;
  width: 15.998px;
  height: 7.999px;
}

.development-work-card__icon-layer--team-head {
  left: 7px;
  top: 3px;
  width: 10px;
  height: 10px;
}

.development-work-card__icon-layer--team-body {
  left: 16px;
  top: 14px;
  width: 5px;
  height: 7.87px;
}

.development-work-card__icon-layer--team-dot {
  left: 17px;
  top: 4px;
  width: 5.008px;
  height: 9.75px;
}

@media (min-width: 1280px) {
  .development-expertise {
    min-height: 709.199px;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .development-expertise__inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 64px;
  }

  .development-expertise__head {
    flex: 1 1 0;
    gap: 24px;
    max-width: none;
  }

  .development-expertise__comparison {
    display: flex;
    align-items: stretch;
    gap: 16px;
    width: auto;
    max-width: none;
    min-height: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .development-expertise-card {
    flex: 0 0 356px;
    width: 356px;
    min-height: 462px;
    height: auto;
    gap: 32px;
    padding: 48px 40px;
  }

  .development-expertise-card--ai {
    border: 0.636px solid #e5e0ff;
    border-radius: 24px;
  }

  .development-expertise-card--engineers {
    border: 0.636px solid #e5e7eb;
    border-radius: 24px;
  }

  .development-expertise-card__header {
    gap: 16px;
    min-height: 48px;
  }

  .development-expertise-card__badge {
    width: 48px;
    height: 48px;
  }

  .development-expertise-card__list {
    gap: 16px;
  }

  .development-expertise-card__item {
    gap: 16px;
    min-height: 0;
  }

  .development-expertise-card__item-icon {
    display: block;
    width: 24px;
    height: 24px;
  }

  .development-expertise-card__item span span {
    max-width: 224px;
  }

  .development-expertise__plus {
    position: relative;
    inset: auto;
    flex: 0 0 64px;
    align-self: center;
    transform: none;
  }
}

@media (max-width: 767px) {
  .nav-submenu__link::before {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
  }
}

/* Fluid stability correction: freeze only text rhythm, not the page scale. */
.hero-nowrap {
  white-space: nowrap;
}

.hero-title__line--mobile,
.hero-title__line--narrow,
.hero-description__line--mobile,
.hero-description__line--narrow {
  display: none;
}

@media (min-width: 768px) {
  .hero-description {
    max-width: none;
  }

  .hero-description__line--desktop {
    display: block;
    white-space: nowrap;
  }
}

@media (min-width: 768px) and (max-width: 1919px) {
  :root {
    --site-fluid-inline-offset: max(
      0px,
      calc((100vw - (var(--site-fluid-base-width) * var(--site-fluid-scale))) / 2)
    );
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .site-header {
    width: 100%;
    max-width: none;
    height: 64px;
    margin-left: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: calc(var(--site-fluid-inline-offset) + (64px * var(--site-fluid-scale)));
    padding-right: calc(var(--site-fluid-inline-offset) + (64px * var(--site-fluid-scale)));
    zoom: 1;
    transform: none;
  }

  .logo {
    width: 107.2px;
    height: 20px;
  }

  .header-nav,
  .header-actions--desktop {
    display: none;
  }

  .header-actions--tablet {
    display: flex;
  }

  .menu-button {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .hero-title__line--desktop,
  .hero-title__line--narrow,
  .hero-description__line--desktop,
  .hero-description__line--narrow {
    display: none;
  }

  .hero-title__line--mobile,
  .hero-description__line--mobile {
    display: block;
    white-space: nowrap;
  }
}

@media (max-width: 639px) {
  .logo {
    transform: none;
  }

  .hero-title__line--desktop,
  .hero-title__line--mobile,
  .hero-description__line--desktop,
  .hero-description__line--mobile {
    display: none;
  }

  .hero-title__line--narrow,
  .hero-description__line--narrow {
    display: block;
    white-space: nowrap;
  }
}

/* Shared chrome/frame alignment QA fix. Keep after fluid stability layers. */
@media (min-width: 1280px) and (max-width: 1919px) {
  :root {
    --site-fluid-inline-offset: 69.311px;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  :root {
    --site-fluid-inline-offset: 46.207px;
  }
}

@media (min-width: 1920px) and (max-width: 2304px) {
  :root {
    --site-fluid-inline-offset: 228.978px;
  }
}

@media (min-width: 768px) {
  .page-main {
    margin-left: var(--site-fluid-inline-offset);
  }

  .logo {
    transform: none;
  }

  .site-footer {
    width: 100%;
    max-width: none;
    margin-left: 0;
    zoom: 1;
    transform: none;
  }

  .page-development .development-fields,
  .page-development .development-expertise,
  .page-development .development-guarantees,
  .page-development .development-cases,
  .page-development .development-cooperation,
  .page-development .development-stacks,
  .page-development .development-faq,
  .page-development .development-discuss,
  .page-support .support-to-whom,
  .page-support .support-today,
  .page-support .support-method,
  .page-support .support-outcome,
  .page-support .support-models,
  .page-support .support-control,
  .page-support .support-onboarding,
  .page-support .support-cases,
  .page-support .support-faq,
  .page-support .support-discuss,
  .page-development .site-footer,
  .page-support .site-footer {
    margin-top: 0;
  }
}

@media (min-width: 1280px) {
  :root {
    --site-chrome-inline-padding: calc((var(--site-fluid-inline-offset) + 150px) * var(--site-fluid-scale));
  }

  .site-header,
  .site-footer {
    padding-left: var(--site-chrome-inline-padding);
    padding-right: var(--site-chrome-inline-padding);
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  :root {
    --site-chrome-inline-padding: calc((var(--site-fluid-inline-offset) + 64px) * var(--site-fluid-scale));
  }

  .site-header,
  .site-footer {
    padding-left: var(--site-chrome-inline-padding);
    padding-right: var(--site-chrome-inline-padding);
  }
}

/* Unified container contract for header, footer and page sections. */
:root {
  --site-container-max: 1620px;
  --site-container-inline: 150px;
  --site-container-offset: var(--site-fluid-inline-offset, 0px);
}

@media (max-width: 1279px) {
  :root {
    --site-container-inline: 64px;
  }
}

@media (max-width: 767px) {
  :root {
    --site-container-inline: 16px;
    --site-container-offset: 0px;
  }
}

.hero,
.showreel-block,
.clients,
.services,
.cases,
.advantages,
.platforms,
.reviews,
.blog,
.contact,
.blog-page,
.blog-article-page,
.cases-page,
.cms-page,
.development-hero,
.development-fields,
.development-expertise,
.development-guarantees,
.development-cases,
.development-cooperation,
.development-stacks,
.development-faq,
.development-discuss,
.support-hero,
.support-to-whom,
.support-today,
.support-method,
.support-outcome,
.support-models,
.support-control,
.support-onboarding,
.support-cases,
.support-faq,
.support-discuss {
  padding-left: var(--site-container-inline);
  padding-right: var(--site-container-inline);
}

.blog-page-shell,
.cases-page-shell,
.cms-page {
  max-width: min(100%, var(--site-container-max));
}

@media (min-width: 768px) {
  .site-header,
  .site-footer,
  .page-blog .site-footer {
    padding-left: calc((var(--site-container-offset) + var(--site-container-inline)) * var(--site-fluid-scale, 1));
    padding-right: calc((var(--site-container-offset) + var(--site-container-inline)) * var(--site-fluid-scale, 1));
  }
}

@media (max-width: 767px) {
  .site-header,
  .site-footer,
  .page-blog .site-footer {
    padding-left: var(--site-container-inline);
    padding-right: var(--site-container-inline);
  }
}

/* Local media/assets and interaction polish pass. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 600;
}

.nav-link--services {
  align-items: center;
  gap: 0;
}

.nav-link--services::after {
  display: block;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin: 0;
  border: 0;
  background: url("/assets/figma/header/services-arrow-right.svg") center / 24px 24px no-repeat;
  transform: rotate(90deg);
  transform-origin: center;
}

.nav-dropdown:hover > .nav-link--services::after,
.nav-dropdown:focus-within > .nav-link--services::after {
  transform: rotate(-90deg);
}

.service-card {
  transition:
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.service-card:hover,
.service-card:focus-visible,
.service-card:focus-within {
  border-color: #6c5ce7;
  box-shadow: inset 0 0 0 1px #6c5ce7;
}

.service-card-title::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background: url("/assets/figma/home/service-hover-arrow.png") center / 26px 26px no-repeat;
}

.service-card:hover .service-card-title,
.service-card:focus-visible .service-card-title,
.service-card:focus-within .service-card-title {
  padding-left: 34px;
}

.case-card-video,
.cases-page-card__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform 0.45s ease;
}

.case-card-link:hover .case-card-video,
.case-card-link:focus-visible .case-card-video,
.cases-page-card__link:hover .cases-page-card__video,
.cases-page-card__link:focus-visible .cases-page-card__video {
  transform: scale(1.1);
}

@media (min-width: 1280px) {
  .contact {
    gap: 80px;
  }
}

.contact-field,
.contact-field--message {
  padding-top: 30px;
  padding-bottom: 18px;
}

.contact-field-label {
  top: 30px;
}

.contact-field .form-field-control {
  margin-top: 0;
}

.contact-field-input {
  opacity: 0;
  transition: opacity 0.14s ease;
}

.contact-field:focus-within .contact-field-input,
.contact-field.is-filled .contact-field-input {
  opacity: 1;
}

.contact-field-input::placeholder {
  color: transparent;
}

.development-work-card__icon-img,
.development-stack-card__icon-img,
.support-model-card__icon img {
  position: static;
  display: block;
  max-width: none;
  object-fit: contain;
}

.development-work-card__icon-img,
.support-model-card__icon img {
  width: 24px;
  height: 24px;
}

.development-stack-card__icon-img {
  width: 33px;
  height: 32px;
}

@media (max-width: 767px) {
  .contact-field,
  .contact-field--message {
    padding-top: 24px;
    padding-bottom: 16px;
  }

  .contact-field-label {
    top: 24px;
  }

  .contact-field .form-field-control {
    margin-top: 0;
  }
}

/* Floating placeholders: the label starts inside the input line, then moves up. */
.contact-field,
.contact-field--message,
.feedback-form__field,
.feedback-form__field--message {
  padding-top: 28px;
  padding-bottom: 18px;
}

.contact-field .form-field-control,
.feedback-form__field .form-field-control {
  margin-top: 0;
}

.contact-field-label,
.feedback-form__label {
  position: absolute;
  left: 0;
  top: 28px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  border: 0;
  color: #9999a4;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  pointer-events: none;
  transform: none;
  transform-origin: left top;
  transition:
    top 0.18s ease,
    font-size 0.18s ease,
    color 0.18s ease;
}

.contact-field-input,
.feedback-form__input {
  opacity: 1;
}

.contact-field-input::placeholder,
.feedback-form__input::placeholder {
  color: transparent;
  opacity: 0;
}

.contact-field:focus-within .contact-field-label,
.contact-field.is-filled .contact-field-label,
.feedback-form__field:focus-within .feedback-form__label,
.feedback-form__field.is-filled .feedback-form__label {
  top: 0;
  font-size: 14px;
  transform: none;
}

/* Figma 2678:3189 tablet/mobile menu. */
@media (max-width: 1279px) {
  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1400;
    visibility: hidden;
    pointer-events: none;
  }

  .mobile-menu.is-open {
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu__backdrop {
    display: none;
  }

  .mobile-menu__panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 100%;
    height: 100dvh;
    max-height: none;
    padding: 32px 16px 80px;
    border-radius: 0;
    background: #ffffff;
    opacity: 0;
    overflow: auto;
    pointer-events: none;
    transform: translate3d(0, -12px, 0);
    transition:
      opacity 0.24s ease,
      transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-menu.is-open .mobile-menu__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .mobile-menu__close {
    position: absolute;
    top: 24px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 8px;
    border: 0;
    border-radius: 24px;
    background: #200c45;
    cursor: pointer;
  }

  .mobile-menu__close img {
    display: block;
    width: 14.5px;
    height: 14.5px;
  }

  .mobile-menu__moto {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    padding-right: 56px;
  }

  .mobile-menu__brandline {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }

  .mobile-menu__logo {
    display: block;
    flex: 0 0 auto;
    width: 96px;
    height: 18px;
  }

  .mobile-menu__logo img {
    display: block;
    width: 100%;
    height: 100%;
  }

  .mobile-menu__motto {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    color: #141416;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
  }

  .mobile-menu__request {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 189px;
    min-height: 43px;
    padding: 11px 16px 11px 24px;
    border-radius: 12px;
    background: #853ef6;
    color: #f5f3f8;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    white-space: nowrap;
  }

  .mobile-menu__request img {
    display: block;
    width: 6.753px;
    height: 11.742px;
    transform: rotate(180deg);
  }

  .mobile-menu__main {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
  }

  .mobile-menu__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
  }

  .mobile-menu__link,
  .mobile-menu__download,
  .mobile-menu__phone,
  .mobile-menu__email {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: #141416;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    white-space: nowrap;
  }

  .mobile-menu__link {
    padding: 5px 0;
  }

  .mobile-menu__link--services,
  .mobile-menu__download {
    gap: 4px;
  }

  .mobile-menu__download {
    align-self: start;
  }

  .mobile-menu__link--services::after {
    content: "";
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    background: url("/assets/figma/mobile-menu/arrow-right.svg") center / 28px 28px no-repeat;
    transform: rotate(90deg);
  }

  .mobile-menu__download img {
    display: block;
    width: 15px;
    height: 16.603px;
  }

  .mobile-menu__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin: 0;
    font-style: normal;
  }

  .mobile-menu__contacts-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .mobile-menu__tg {
    display: block;
    width: 40px;
    height: 40px;
  }

  .mobile-menu__tg img {
    display: block;
    width: 100%;
    height: 100%;
  }

  .mobile-menu__legal {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    color: #a99fc1;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
  }

  .mobile-menu__legal p {
    margin: 0;
  }

  .mobile-menu__legal a {
    color: inherit;
    text-decoration: none;
  }

  .mobile-menu__legal-links {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
  }

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

  .mobile-menu__link:hover,
  .mobile-menu__link:focus-visible,
  .mobile-menu__download:hover,
  .mobile-menu__download:focus-visible,
  .mobile-menu__phone:hover,
  .mobile-menu__phone:focus-visible,
  .mobile-menu__email:hover,
  .mobile-menu__email:focus-visible {
    color: #853ef6;
    transform: none;
    text-decoration: none;
  }
}

@media (max-width: 767px) {
  .mobile-menu__panel {
    gap: 32px;
    padding: 24px 16px 48px;
  }

  .mobile-menu__moto {
    width: 260px;
    padding-right: 0;
  }

  .mobile-menu__brandline {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-menu__motto-dash {
    display: none;
  }

  .mobile-menu__request {
    min-width: 140px;
    min-height: 40px;
    padding: 12px 12px 12px 16px;
    font-size: 12px;
    gap: 2px;
  }

  .mobile-menu__request img {
    width: 5.368px;
    height: 9.333px;
  }

  .mobile-menu__main {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .mobile-menu__links {
    gap: 16px;
  }

  .mobile-menu__link,
  .mobile-menu__download,
  .mobile-menu__phone,
  .mobile-menu__email {
    font-size: 18px;
  }

  .mobile-menu__link--services::after {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
  }

  .mobile-menu__legal {
    gap: 24px;
    font-size: 12px;
  }

  .mobile-menu__legal-links {
    gap: 16px;
  }
}
