:root {
  --color-text: #dddddd;
  --color-dark: #080e12;
  --color-accent-start: #9be1dd;
  --color-accent-end: #01a9e2;
  --color-stats-text: #ffe6c8;
  --color-body-muted: #80999e;
  --color-btn-dark: #2b2b2b;
  --gradient-text: linear-gradient(180deg, var(--color-accent-start) 0%, var(--color-accent-end) 100%);
  --gradient-border: linear-gradient(180deg, var(--color-accent-start) 0%, var(--color-accent-end) 100%);
  --gradient-btn: linear-gradient(180deg, #9be1dd 0%, #01a9e2 100%);
  --gradient-btn-hover: linear-gradient(180deg, #b5fffb 0%, #25c8ff 100%);
  --gradient-stats: linear-gradient(180deg, #00519d 0%, #001b33 100%);
  --font-base: 'Montserrat', sans-serif;
  --design-width: 1920;
  --header-height: 2.604vw;
  --container-padding: 9.375vw;
  --shadow-btn: 0 0.208vw 0.208vw rgba(0, 0, 0, 0.25);
  --outline-hover-border: #dddddd;
  --outline-hover-text: linear-gradient(180deg, #dddddd 0%, #dddddd 100%);
  --outline-icon-filter: brightness(0) saturate(100%) invert(68%) sepia(42%) saturate(1180%) hue-rotate(152deg) brightness(96%) contrast(101%);
  --outline-hover-icon-filter: brightness(0) saturate(100%) invert(87%);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-btn: 0.18s ease;
  --transition-outline: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  background: var(--color-dark);
  color: var(--color-text);
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* ===== Header ===== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.site-header__inner {
  max-width: 98.958vw;
  margin: 0 auto;
  min-height: var(--header-height);
  padding: 0.26vw var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8.646vw;
}

.site-header__logo {
  flex-shrink: 0;
  width: 8.854vw;
  height: 2.083vw;
}

.site-header__logo img {
  width: 8.854vw;
  height: 2.083vw;
}

/* ===== Navigation ===== */

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 5.208vw;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.521vw;
  font-size: 0.833vw;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.25;
  transition: color 0.25s ease;
  position: relative;
}

.site-nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--gradient-text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after {
  transform: scaleX(1);
}

.site-nav__link--dropdown::after {
  display: none;
}

.site-nav__link--external::after {
  width: calc(100% - 20px);
}

.site-nav__chevron {
  width: 1.042vw;
  height: 1.042vw;
  transition: transform 0.3s ease;
}

.site-nav__item--dropdown.is-open .site-nav__chevron,
.site-nav__item--dropdown:hover .site-nav__chevron {
  transform: rotate(180deg);
}

.site-nav__item--dropdown.is-open .site-nav__link--dropdown,
.site-nav__item--dropdown:hover .site-nav__link--dropdown {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav__arrow {
  width: 0.521vw;
  height: 0.521vw;
  flex-shrink: 0;
}

/* ===== Dropdown ===== */

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.625vw);
  left: 50%;
  transform: translateX(-50%);
  width: 23.021vw;
  padding-top: 0.417vw;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.site-nav__item--dropdown.is-open .site-nav__dropdown,
.site-nav__item--dropdown:hover .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-nav__dropdown[hidden] {
  display: block;
}

.site-nav__dropdown-inner {
  background: var(--color-dark);
  border-radius: 0 0 1.042vw 1.042vw;
  backdrop-filter: blur(0.208vw);
  -webkit-backdrop-filter: blur(0.208vw);
  padding: 1.563vw 2.083vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.083vw 1.875vw;
  box-shadow: 0 0.625vw 2.083vw rgba(0, 0, 0, 0.45);
}

.site-nav__dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 0.833vw;
}

.site-nav__dropdown-link {
  font-size: 0.833vw;
  font-weight: 500;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.site-nav__dropdown-link:hover,
.site-nav__dropdown-link:focus-visible {
  opacity: 0.75;
}

/* ===== CTA Button ===== */

.site-header__cta,
.hero__btn--secondary,
.cases__filter,
.cases__more,
.error-page__link {
  isolation: isolate;
}

.site-header__cta::before,
.hero__btn--secondary::before,
.cases__filter::before,
.cases__more::before,
.error-page__link::before,
.site-header__cta::after,
.hero__btn--secondary::after,
.cases__filter::after,
.cases__more::after,
.error-page__link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  padding: 1px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity var(--transition-outline);
}

.site-header__cta::before,
.hero__btn--secondary::before,
.cases__filter::before,
.cases__more::before,
.error-page__link::before {
  background: var(--gradient-border);
  opacity: 1;
}

.site-header__cta::after,
.hero__btn--secondary::after,
.cases__filter::after,
.cases__more::after,
.error-page__link::after {
  background: var(--outline-hover-border);
  opacity: 0;
}

.site-header__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.521vw;
  min-width: 13.542vw;
  padding: 0.625vw 0.729vw;
  border: none;
  border-radius: 1.563vw;
  box-shadow: var(--shadow-btn);
  position: relative;
  background: transparent;
  text-decoration: none;
  transition:
    background-color var(--transition-outline),
    box-shadow var(--transition-outline);
}

.site-header__cta span {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 0.833vw;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.site-header__cta span::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--outline-hover-border);
  -webkit-text-fill-color: var(--outline-hover-border);
  background: none;
  opacity: 0;
  transition: opacity var(--transition-outline);
  pointer-events: none;
}

.site-header__cta-icon {
  position: relative;
  z-index: 1;
  width: 0.885vw;
  height: 0.885vw;
  flex-shrink: 0;
  filter: var(--outline-icon-filter);
  transition: filter var(--transition-outline);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* ===== Hero ===== */

.site-main {
  padding-top: var(--header-height);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 36.875vw;
  background-color: #000814;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 36.875vw;
  padding: 7.5vw 9.375vw 4.167vw 10.104vw;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 39.583vw;
  flex-shrink: 0;
}

.hero__title {
  width: 39.583vw;
  min-height: 6.146vw;
  margin-bottom: 1.25vw;
  font-size: 2.5vw;
  font-weight: 600;
  line-height: 1.22;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  width: 39.583vw;
  min-height: 3.854vw;
  margin-bottom: 2.083vw;
  font-size: 0.833vw;
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-body-muted);
}

.hero__subtitle-services {
  white-space: nowrap;
}

.hero__stats {
  position: relative;
  width: 29.063vw;
  height: 3.646vw;
  margin-bottom: 4.167vw;
  border-radius: 1.042vw;
  background: var(--gradient-stats);
  box-shadow: var(--shadow-btn);
  isolation: isolate;
}

.hero__stats::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 0.052vw;
  background: linear-gradient(
    155deg,
    rgba(155, 225, 221, 0.7) 0%,
    rgba(1, 169, 226, 0.35) 28%,
    rgba(0, 81, 157, 0.2) 55%,
    rgba(0, 27, 51, 0.45) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero__stats::after {
  content: '';
  position: absolute;
  inset: 0.052vw;
  border-radius: calc(1.042vw - 0.052vw);
  box-shadow: inset 0 0.052vw 0.104vw rgba(155, 225, 221, 0.18);
  pointer-events: none;
}

.hero__stats-item {
  position: absolute;
  top: 0;
  width: 8.854vw;
  height: 3.646vw;
  border-radius: 1.042vw;
  z-index: 1;
}

.hero__stats-item--first {
  left: 0.625vw;
}

.hero__stats-item--second {
  left: 10.104vw;
}

.hero__stats-item--third {
  left: 19.583vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 0.521vw;
  box-sizing: border-box;
}

.hero__stats-value {
  position: absolute;
  font-family: var(--font-base);
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-stats-text);
}

.hero__stats-item--first .hero__stats-value {
  left: 0.521vw;
  top: 1.094vw;
  width: 1.51vw;
}

.hero__stats-item--second .hero__stats-value {
  left: 1.198vw;
  top: 1.094vw;
  width: 2.344vw;
}

.hero__stats-label {
  position: absolute;
  font-family: var(--font-base);
  font-size: 0.677vw;
  font-weight: 500;
  line-height: 1.23;
  color: var(--color-stats-text);
}

.hero__stats-item--first .hero__stats-label {
  left: 2.552vw;
  top: 0.99vw;
  width: 5.781vw;
}

.hero__stats-item--second .hero__stats-label {
  left: 4.063vw;
  top: 0.99vw;
  width: 3.646vw;
}

.hero__stats-label--solo {
  position: relative;
  left: auto;
  top: auto;
  width: 7.292vw;
  text-align: center;
}

.hero__stats-divider {
  position: absolute;
  top: 0.521vw;
  width: 0.052vw;
  height: 2.604vw;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 230, 200, 0.08) 0%,
    rgba(255, 230, 200, 0.42) 50%,
    rgba(255, 230, 200, 0.08) 100%
  );
}

.hero__stats-divider--first {
  left: 9.792vw;
}

.hero__stats-divider--second {
  left: 19.271vw;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 0.521vw;
  width: 35.208vw;
  min-height: 2.292vw;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.521vw;
  width: 17.344vw;
  min-height: 2.292vw;
  padding: 0.625vw 0.729vw;
  border-radius: 1.563vw;
  box-shadow: var(--shadow-btn);
  font-family: var(--font-base);
  font-size: 0.833vw;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.hero__btn--primary {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: var(--gradient-btn);
  color: var(--color-btn-dark);
}

.hero__btn--primary span {
  position: relative;
  z-index: 1;
}

.hero__btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: var(--gradient-btn-hover);
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .hero__btn--primary:hover::before,
  .hero__btn--primary:focus-visible::before {
    opacity: 1;
  }
}

.hero__btn--primary:active::before {
  opacity: 0;
}

.hero__btn--secondary {
  position: relative;
  z-index: 0;
  background: transparent;
  transition:
    background-color var(--transition-outline),
    box-shadow var(--transition-outline);
}

.hero__btn-content {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.521vw;
}

.hero__btn-label {
  position: relative;
  display: inline-block;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__btn-label::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--outline-hover-border);
  -webkit-text-fill-color: var(--outline-hover-border);
  background: none;
  opacity: 0;
  transition: opacity var(--transition-outline);
  pointer-events: none;
}

.hero__btn--secondary .hero__btn-icon {
  width: 0.729vw;
  height: 0.729vw;
  flex-shrink: 0;
  filter: var(--outline-icon-filter);
  transition: filter var(--transition-outline);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media (hover: hover) and (pointer: fine) {
  .site-header__cta:hover,
  .site-header__cta:focus-visible,
  .hero__btn--secondary:hover,
  .hero__btn--secondary:focus-visible,
  .cases__filter:hover,
  .cases__filter:focus-visible,
  .cases__more:hover,
  .cases__more:focus-visible,
  .error-page__link:hover,
  .error-page__link:focus-visible {
    background-color: transparent;
    box-shadow: var(--shadow-btn);
  }

  .site-header__cta:hover::before,
  .site-header__cta:focus-visible::before,
  .hero__btn--secondary:hover::before,
  .hero__btn--secondary:focus-visible::before,
  .cases__filter:hover::before,
  .cases__filter:focus-visible::before,
  .cases__more:hover::before,
  .cases__more:focus-visible::before,
  .error-page__link:hover::before,
  .error-page__link:focus-visible::before {
    opacity: 0;
  }

  .site-header__cta:hover::after,
  .site-header__cta:focus-visible::after,
  .hero__btn--secondary:hover::after,
  .hero__btn--secondary:focus-visible::after,
  .cases__filter:hover::after,
  .cases__filter:focus-visible::after,
  .cases__more:hover::after,
  .cases__more:focus-visible::after,
  .error-page__link:hover::after,
  .error-page__link:focus-visible::after {
    opacity: 1;
  }

  .site-header__cta:hover span::after,
  .site-header__cta:focus-visible span::after,
  .hero__btn--secondary:hover .hero__btn-label::after,
  .hero__btn--secondary:focus-visible .hero__btn-label::after,
  .cases__filter:hover span::after,
  .cases__filter:focus-visible span::after,
  .cases__more:hover span::after,
  .cases__more:focus-visible span::after,
  .error-page__link:hover span::after,
  .error-page__link:focus-visible span::after {
    opacity: 1;
  }

  .site-header__cta:hover .site-header__cta-icon,
  .site-header__cta:focus-visible .site-header__cta-icon,
  .hero__btn--secondary:hover .hero__btn-icon,
  .hero__btn--secondary:focus-visible .hero__btn-icon,
  .cases__filter:hover .cases__filter-icon,
  .cases__filter:focus-visible .cases__filter-icon,
  .cases__more:hover .cases__more-icon,
  .cases__more:focus-visible .cases__more-icon,
  .error-page__link:hover .error-page__link-icon,
  .error-page__link:focus-visible .error-page__link-icon {
    filter: var(--outline-hover-icon-filter);
  }
}

.hero__btn--secondary:active {
  background-color: transparent;
  box-shadow: none;
}

.hero__btn--secondary:active .hero__btn-content {
  filter: none;
}

.hero__btn--secondary:active .hero__btn-label {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__btn--secondary:active .hero__btn-label::after {
  opacity: 0;
}

.hero__btn--secondary:active .hero__btn-icon {
  filter: var(--outline-icon-filter);
}

/* ===== Service hero ===== */

.service-hero {
  position: relative;
  width: 100%;
  min-height: 31.053vw;
  background-color: #000814;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  overflow: hidden;
}

.service-hero--seo {
  background-image: url('../img/services/seo/hero.webp');
  background-position: center -3.125vw;
}

.service-hero--google {
  background-image: url('../img/services/google/hero.webp');
  background-position: center -3.125vw;
}

.service-hero--target {
  background-image: url('../img/services/target/hero.webp');
  background-position: center -3.125vw;
}

.service-hero--smm {
  background-image: url('../img/services/smm/hero.webp');
  background-position: center -3.125vw;
}

.service-hero--youtube {
  background-image: url('../img/services/youtube/hero.webp');
  background-position: center -3.125vw;
}

.service-hero--youtube .service-hero__actions {
  margin-top: 7.006vw;
}

.service-hero--web {
  background-image: url('../img/services/web/hero.webp');
  background-position: center -3.125vw;
}

.service-hero--marketing {
  background-image: url('../img/services/marketing/hero.webp');
  background-position: center -3.125vw;
}

.service-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 31.053vw;
  padding: 1.563vw 9.375vw 4.167vw 10.104vw;
}

.service-hero__content {
  width: 39.583vw;
  max-width: 100%;
}

.service-hero__breadcrumb {
  margin: 0 0 2.083vw;
  font-size: 0.677vw;
  font-weight: 500;
  line-height: 1.4;
  color: #80999e;
}

.service-hero__breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .service-hero__breadcrumb a:hover,
  .service-hero__breadcrumb a:focus-visible {
    color: #dddddd;
  }
}

.service-hero__title {
  width: 39.583vw;
  max-width: 100%;
  margin: 0 0 2.083vw;
  font-size: 2.5vw;
  font-weight: 600;
  line-height: 1.22;
}

.service-hero__title-mobile,
.service-hero__lead-mobile {
  display: none;
}

.service-hero__title-main {
  color: #dddddd;
}

.service-hero__title-accent {
  background: linear-gradient(90deg, #9be1dd 0%, #01a9e2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.service-hero__lead {
  width: 32.813vw;
  max-width: 100%;
  margin: 0 0 3.073vw;
  font-size: 0.833vw;
  font-weight: 500;
  line-height: 1.45;
  color: #dddddd;
}

.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.521vw;
}

/* ===== Service includes ===== */

.service-includes {
  padding: 0 var(--container-padding) 5.208vw;
}

.service-includes__container {
  width: 80.208vw;
  max-width: 100%;
  margin: 0 auto;
}

.service-includes__title {
  margin: 0;
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 1.2;
  color: #dddddd;
}

.service-includes__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.042vw;
  align-items: stretch;
  margin-top: 1.25vw;
}

.service-includes__card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.667vw;
  flex: 0 0 calc((100% - 2 * 1.042vw) / 3);
  width: calc((100% - 2 * 1.042vw) / 3);
  min-height: 16.667vw;
  padding: 1.354vw;
  border-radius: 1.042vw;
  background: rgba(8, 14, 18, 0.5);
  border: 0.052vw solid rgba(1, 169, 226, 0.28);
  backdrop-filter: blur(0.104vw);
  -webkit-backdrop-filter: blur(0.104vw);
  overflow: hidden;
}

.service-includes__card > * {
  position: relative;
  z-index: 1;
}

.service-includes__card-body {
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
}

.service-includes__card-head {
  display: flex;
  align-items: center;
  gap: 0.521vw;
}

.service-includes__card-icon {
  width: auto;
  height: 2.604vw;
  max-width: 3.021vw;
  flex-shrink: 0;
}

.service-includes__card-title {
  margin: 0;
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 1.2;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.service-includes__card-copy {
  display: flex;
  flex-direction: column;
  gap: 0.417vw;
}

.service-includes__card-intro,
.service-includes__card-list {
  margin: 0;
  font-size: 0.833vw;
  font-weight: 500;
  line-height: 1.45;
  color: #dddddd;
}

.service-includes__card-list {
  padding-left: 1.042vw;
  list-style: disc;
}

.service-includes__card-list li + li {
  margin-top: 0.104vw;
}

.service-includes__card-note {
  margin: 0;
  font-size: 0.833vw;
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-stats-text);
}

.service-includes__card-note--accent {
  color: var(--color-stats-text);
}

.service-includes__card--wide {
  flex: 0 0 calc(((100% - 2 * 1.042vw) / 3) * 2 + 1.042vw);
  width: calc(((100% - 2 * 1.042vw) / 3) * 2 + 1.042vw);
  min-height: 14.583vw;
}

.service-includes__card--wide::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: url('../img/services/seo/includes/cro-card-bg.webp') right center / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

.service-includes__card--wide .service-includes__card-body,
.service-includes__card--wide .service-includes__card-note {
  max-width: 33.594vw;
}

.service-includes__card--highlight::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: url('../img/services/target/includes/vazhlyvo-bg.webp') right center / auto 100% no-repeat;
  pointer-events: none;
  z-index: 0;
}

.service-includes__card--highlight {
  justify-content: center;
}

.service-includes__card--highlight .service-includes__card-body {
  gap: 1.25vw;
}

.service-includes__card--highlight .service-includes__card-intro {
  max-width: none;
  margin: 0;
  color: var(--color-stats-text);
  white-space: nowrap;
}

body.service-page--smm .service-includes__card--wide,
body.service-page--youtube .service-includes__card--wide,
body.service-page--web .service-includes__card--wide,
body.service-page--marketing .service-includes__card--wide {
  justify-content: center;
}

body.service-page--smm .service-includes__card--wide .service-includes__card-intro,
body.service-page--youtube .service-includes__card--wide .service-includes__card-intro,
body.service-page--web .service-includes__card--wide .service-includes__card-intro,
body.service-page--marketing .service-includes:not(.service-includes--consultations) .service-includes__card--wide .service-includes__card-intro {
  color: var(--color-stats-text);
}

body.service-page--marketing .service-includes--consultations .service-includes__card--wide {
  justify-content: flex-start;
}

body.service-page--marketing .service-includes--consultations .service-includes__card--wide .service-includes__card-intro {
  color: #dddddd;
}

.service-includes__card--cta {
  justify-content: space-between;
}

.service-includes__card--cta .service-includes__card-head {
  margin-bottom: 0.417vw;
}

.service-includes__card-cta {
  align-self: flex-start;
  width: 16.51vw; /* 317px */
  max-width: 100%;
  height: 2.292vw;
  margin-top: auto;
}

.service-includes__card-cta-icon {
  width: 0.833vw;
  height: 0.833vw;
  flex-shrink: 0;
}

body.service-page--web .service-includes--studios {
  padding-top: 2.083vw;
}

/* ===== Service page layout ===== */

body.service-page {
  background: #080e12;
}

body.service-page .site-main {
  position: relative;
  overflow-x: clip;
  background:
    radial-gradient(ellipse 120% 36% at 50% 0%, rgba(0, 81, 157, 0.16) 0%, transparent 58%),
    linear-gradient(180deg, #000814 0%, #060b10 14%, #080e12 36%, #080e12 74%, #020814 92%, #010408 100%);
}

body.service-page .service-hero,
body.service-page .service-includes,
body.service-page .process,
body.service-page .cta {
  background-color: transparent;
}

body.service-page .service-hero {
  position: relative;
  z-index: 1;
}

body.service-page .service-hero::after {
  display: none;
}

body.service-page .service-hero__inner {
  padding-bottom: 2.917vw;
}

body.service-page .service-includes {
  position: relative;
  z-index: 2;
  padding-top: 3.646vw;
}

body.service-page .process {
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 5.208vw;
}

body.service-page .cta {
  position: relative;
  z-index: 2;
  padding-bottom: 5.208vw;
}

body.service-page .cta::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: 5.208vw;
  background: linear-gradient(180deg, rgba(8, 14, 18, 0) 0%, #010408 100%);
  pointer-events: none;
}

body.service-page .cta__container {
  position: relative;
  z-index: 1;
}

body.service-page--marketing .cta::after {
  display: none;
}

body.service-page--marketing .cta {
  padding-bottom: 3.646vw;
}

body.service-page .site-footer {
  position: relative;
  z-index: 1;
}

/* ===== Trust brands marquee ===== */

.trust {
  padding-bottom: 5.208vw;
  overflow: hidden;
}

.trust__inner {
  padding: 0 var(--container-padding);
}

.trust__title {
  margin: 0 0 0.833vw;
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 1.2;
  color: #dddddd;
}

.trust__marquee {
  width: 100vw;
  overflow: hidden;
  opacity: 0.8;
}

.trust__track {
  display: flex;
  width: max-content;
  animation: trust-marquee 50s linear infinite;
  will-change: transform;
}

.trust__set {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.625vw;
}

.trust__pill {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  height: 3.646vw;
  padding: 0 1.563vw;
  background: rgba(8, 14, 18, 0.9);
  border-radius: 2.083vw;
  box-shadow: inset 0 0 0 0.052vw #000;
}

.trust__pill img {
  display: block;
  width: auto;
  height: auto;
  max-width: 10.417vw;
  max-height: 1.979vw;
}

@keyframes trust-marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust__track {
    animation: none;
  }
}

/* ===== Services grid ===== */

.services {
  padding: 0 var(--container-padding) 5.208vw;
}

.services__inner {
  width: 80.208vw;
  max-width: 100%;
}

.services__title {
  margin: 0 0 1.042vw;
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 1.2;
  color: #dddddd;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 19.271vw);
  gap: 1.042vw;
}

.services__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 13.75vw;
  padding: 1.563vw;
  border: 0.052vw solid rgba(0, 81, 157, 0.22);
  border-radius: 1.042vw;
  background: rgba(8, 14, 18, 0.5);
  box-shadow: 0 0.208vw 0.208vw rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(1.042vw);
  -webkit-backdrop-filter: blur(1.042vw);
  text-decoration: none;
  transition:
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.services__card:hover,
.services__card:focus-visible {
  border-color: rgba(1, 169, 226, 0.55);
  box-shadow:
    0 0.208vw 0.208vw rgba(0, 0, 0, 0.25),
    0 0 0.833vw rgba(1, 169, 226, 0.18);
}

.services__card--wide {
  grid-column: span 2;
  background:
    linear-gradient(rgba(8, 14, 18, 0.5) 0%, rgba(8, 14, 18, 0.5) 100%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.2) 0%, rgba(0, 1, 63, 0.2) 70%, rgba(0, 4, 255, 0.2) 100%),
    #080e12;
  background-size: 100% 100%, 100% 100%, 100% 100%;
  background-position: 0% 0%, 0% 0%, 0% 0%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.services__card-arrow {
  position: absolute;
  top: 1.563vw;
  right: 1.563vw;
  width: 1.146vw;
  height: 1.146vw;
  flex-shrink: 0;
}

.services__card-icon-wrap {
  position: relative;
  width: 5.469vw;
  height: 4.375vw;
  flex-shrink: 0;
}

.services__card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.services__card-icon {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
  transition: opacity var(--transition-smooth);
}

.services__card-icon--default {
  opacity: 1;
}

.services__card-icon--hover {
  opacity: 0;
}

.services__card:hover .services__card-icon--default,
.services__card:focus-visible .services__card-icon--default {
  opacity: 0;
}

.services__card:hover .services__card-icon--hover,
.services__card:focus-visible .services__card-icon--hover {
  opacity: 1;
}

.services__card-title {
  margin-top: 1.562vw;
  font-size: 1.146vw;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.services__card-text {
  margin-top: 0.625vw;
  max-width: 16.146vw;
  font-size: 0.833vw;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-body-muted);
  transition: color var(--transition-smooth);
}

.services__card:hover .services__card-text,
.services__card:focus-visible .services__card-text {
  color: var(--color-text);
}

.services__card--wide .services__card-text {
  max-width: 30.208vw;
}

/* ===== System flow ===== */

.system {
  padding: 0 var(--container-padding) 5.208vw;
}

.system__inner {
  width: 80.208vw;
  max-width: 100%;
}

.system__panel {
  position: relative;
  display: grid;
  grid-template-columns: 23.906vw 1fr;
  column-gap: 2.083vw;
  align-items: end;
  min-height: 13.021vw;
  padding: 0 2.135vw 1.615vw;
  border-radius: 1.042vw;
  background: url('../img/system/decor.webp') center / 100% 100% no-repeat;
  overflow: hidden;
}

.system__intro {
  align-self: start;
  padding-top: 3.333vw;
}

.system__title {
  margin: 0;
  max-width: 15.365vw;
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 1.2;
  color: #dddddd;
}

.system__text {
  margin: 1.042vw 0 0;
  max-width: 16.406vw;
  font-size: 0.833vw;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-body-muted);
}

.system__text-accent {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.system__text-break {
  display: inline;
}

.system__flow {
  display: flex;
  align-items: flex-end;
  min-width: 0;
  padding-top: 1.615vw;
}

.system__step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.521vw;
  flex-shrink: 0;
}

.system__step-icon {
  display: block;
  width: auto;
  height: 2.865vw;
  max-width: 3.229vw;
  object-fit: contain;
  object-position: left top;
}

.system__step-card {
  display: flex;
  flex-direction: column;
  gap: 0.313vw;
  width: 12.5vw;
  min-height: 6.146vw;
  padding: 0.833vw 1.042vw;
  border-radius: 1.042vw;
  background: rgba(1, 3, 16, 0.5);
}

.system__step-card--highlight {
  background:
    linear-gradient(rgba(1, 3, 16, 0.5), rgba(1, 3, 16, 0.5)),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 39%, rgba(8, 0, 238, 0.3) 89%),
    rgba(1, 3, 16, 0.5);
}

.system__step-label {
  font-size: 0.833vw;
  font-weight: 700;
  line-height: 1.25;
  color: #dddddd;
  text-transform: uppercase;
}

.system__step-label--gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.system__step-text {
  font-size: 0.833vw;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-body-muted);
}

.system__step-text--accent {
  color: var(--color-stats-text);
}

.system__arrow {
  flex-shrink: 0;
  align-self: flex-end;
  width: 2.083vw;
  height: 0.625vw;
  margin: 0 0.781vw calc(3.073vw - 0.3125vw);
}

.system__arrow-cell {
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
}

/* ===== Cases grid ===== */

.cases {
  padding: 0 var(--container-padding) 5.208vw;
}

.cases__inner {
  width: 80.208vw;
  max-width: 100%;
}

.cases__heading {
  display: flex;
  align-items: center;
  gap: 0.417vw;
}

.cases__logo {
  width: 2.292vw;
  height: 2.292vw;
  flex-shrink: 0;
  object-fit: contain;
}

.cases__title {
  margin: 0;
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 1.2;
  color: #dddddd;
}

.cases__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.042vw;
  margin-top: 0.573vw;
}

.cases__filters-wrap {
  position: relative;
  flex: 1;
  max-width: 39.583vw;
  overflow: hidden;
}

.cases__filters {
  display: flex;
  gap: 0.521vw;
  overflow-x: auto;
  scrollbar-width: none;
}

.cases__filters::-webkit-scrollbar {
  display: none;
}

.cases__filters-fade {
  position: absolute;
  top: 0;
  right: 0;
  width: 3.75vw;
  height: 100%;
  background: linear-gradient(90deg, rgba(8, 14, 18, 0) 0%, #080e12 100%);
  pointer-events: none;
}

.cases__filter {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.521vw;
  height: 2.083vw;
  padding: 0 0.729vw 0 0.729vw;
  border: none;
  border-radius: 1.563vw;
  background: transparent;
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  transition:
    background-color var(--transition-outline),
    box-shadow var(--transition-outline);
}

.cases__filter-icon {
  position: relative;
  z-index: 1;
  width: 0.729vw;
  height: 0.729vw;
  flex-shrink: 0;
  filter: var(--outline-icon-filter);
  transition: filter var(--transition-outline);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.cases__filter span {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 0.833vw;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  white-space: nowrap;
}

.cases__filter span::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--outline-hover-border);
  -webkit-text-fill-color: var(--outline-hover-border);
  background: none;
  opacity: 0;
  transition: opacity var(--transition-outline);
  pointer-events: none;
}

.cases__cta-all {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 0.833vw;
  min-width: 17.5vw;
  height: 2.292vw;
  padding: 0 1.042vw;
  border-radius: 1.563vw;
  background: var(--gradient-btn);
  box-shadow: var(--shadow-btn);
  text-decoration: none;
}

.cases__cta-all-icon {
  width: 0.729vw;
  height: 0.729vw;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%);
}

.cases__cta-all span {
  font-size: 0.833vw;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-btn-dark);
  text-transform: uppercase;
  white-space: nowrap;
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(4, 19.271vw);
  gap: 1.042vw;
  margin-top: 1.25vw;
}

.cases__card {
  position: relative;
  height: 16.51vw;
  border-radius: 1.042vw;
  overflow: hidden;
}

.cases__card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cases__card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.042vw;
}

.cases__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.417vw;
  margin-bottom: 0.521vw;
}

.cases__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.458vw;
  padding: 0 0.625vw;
  border-radius: 1.563vw;
  background: rgba(8, 14, 18, 0.45);
  backdrop-filter: blur(0.625vw);
  -webkit-backdrop-filter: blur(0.625vw);
  box-shadow: inset 0 0 0 1px #01a9e2;
}

.cases__tag span {
  font-size: 0.677vw;
  font-weight: 500;
  line-height: 1;
  color: #01a9e2;
}

.cases__brand {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 0.521vw;
  object-fit: contain;
}

.cases__brand--sanlarix {
  max-width: 8.854vw;
  max-height: 1.198vw;
}

.cases__brand--mtb {
  max-width: 7.656vw;
  max-height: 1.25vw;
}

.cases__brand--zif {
  max-width: 3.281vw;
  max-height: 1.563vw;
}

.cases__brand--tms {
  max-width: 5.156vw;
  max-height: 1.354vw;
}

.cases__card-title {
  margin: 0;
  font-size: 0.833vw;
  font-weight: 700;
  line-height: 1.25;
  color: #dddddd;
  text-transform: uppercase;
  white-space: pre-line;
}

.cases__stat {
  margin: auto 0 0.521vw;
  font-size: 0.677vw;
  font-weight: 500;
  line-height: 1.25;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.cases__stat--right {
  align-self: flex-end;
  text-align: right;
}

.cases__more {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.521vw;
  width: 100%;
  height: 2.292vw;
  margin-top: auto;
  border: none;
  border-radius: 1.563vw;
  background: transparent;
  box-shadow: var(--shadow-btn);
  text-decoration: none;
  transition:
    background-color var(--transition-outline),
    box-shadow var(--transition-outline);
}

.cases__more-icon {
  position: relative;
  z-index: 1;
  width: 0.729vw;
  height: 0.729vw;
  flex-shrink: 0;
  filter: var(--outline-icon-filter);
  transition: filter var(--transition-outline);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.cases__more span {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 0.833vw;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.cases__more span::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--outline-hover-border);
  -webkit-text-fill-color: var(--outline-hover-border);
  background: none;
  opacity: 0;
  transition: opacity var(--transition-outline);
  pointer-events: none;
}

.cases__card-content:has(.cases__stat) .cases__more {
  margin-top: 0;
}

.cases__cta-all--bottom {
  display: none;
}

/* ===== Cases archive page ===== */

.cases-archive {
  padding: 0 var(--container-padding) 100px;
}

.cases-page__container {
  width: 80.208vw;
  max-width: 1540px;
  margin: 0 auto;
  padding-top: 30px;
}

.cases-page__content {
  max-width: 1280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.cases-page__breadcrumb {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: #80999e;
}

.cases-page__breadcrumb a {
  color: inherit;
  text-decoration: none;
}

@media (hover: hover) {
  .cases-page__breadcrumb a:hover,
  .cases-page__breadcrumb a:focus-visible {
    color: #dddddd;
  }
}

.cases-page__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}

.cases-page__star {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
}

.cases-page__title {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: #dddddd;
}

.cases-page__lead {
  margin: 16px 0 0;
  max-width: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #80999e;
}

.cases-page__filters {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
}

.cases-page__filters-block {
  position: relative;
}

.cases-page__filter-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cases-page__filter-item--niches {
  align-items: flex-start;
}

.cases-page__filter-item--services {
  align-items: flex-end;
  margin-left: auto;
}

.cases-page__filter-panel {
  position: relative;
  display: grid;
  grid-template-rows: 0fr;
  width: max-content;
  max-width: none;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    grid-template-rows var(--transition-smooth),
    opacity var(--transition-smooth),
    visibility var(--transition-smooth),
    margin-top var(--transition-smooth),
    transform var(--transition-smooth);
}

.cases-page__filter-panel.is-open {
  grid-template-rows: 1fr;
  margin-top: 12px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.cases-page__filter-panel[hidden] {
  display: none;
}

.cases-page__filter-panel-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 0;
  overflow-x: visible;
  padding-bottom: 0;
  scrollbar-width: none;
}

.cases-page__filter-panel-inner::-webkit-scrollbar {
  display: none;
}

.cases-page__filter-panel-fade {
  display: none;
}

.cases-page__filter-chip {
  flex-shrink: 0;
}

.cases-page__filter-chip-icon {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  filter: var(--outline-icon-filter);
  transition: filter var(--transition-outline);
}

.cases-page__filter-chip.is-active::before {
  opacity: 0;
}

.cases-page__filter-chip.is-active::after {
  opacity: 1;
}

.cases-page__filter-chip.is-active span::after {
  opacity: 1;
}

.cases-page__filter-chip.is-active .cases-page__filter-chip-icon {
  filter: var(--outline-hover-icon-filter);
}

.cases-page__filter {
  width: auto;
  flex-shrink: 0;
}

.cases-page__filter.is-open .cases-page__filter-chevron {
  transform: rotate(180deg);
}

.cases-page__filter--niches {
  min-width: 0;
}

.cases-page__filter--services {
  justify-content: flex-start;
}

.cases-page__filter.cases__filter span.cases-page__filter-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
}

.cases-page__filter.cases__filter span.cases-page__filter-label::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--outline-hover-border);
  -webkit-text-fill-color: var(--outline-hover-border);
  background: none;
  opacity: 0;
  transition: opacity var(--transition-outline);
  pointer-events: none;
}

.cases-page__filter-label {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
}

.cases-page__filter-chevron {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  margin-left: auto;
  flex-shrink: 0;
  filter: var(--outline-icon-filter);
  transition:
    filter var(--transition-outline),
    transform var(--transition-smooth);
}

.cases-page__filter-icon {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #00a9e2;
  transition: color var(--transition-outline);
}

@media (hover: hover) and (pointer: fine) {
  .cases-page__filter.cases__filter:hover span.cases-page__filter-label::after,
  .cases-page__filter.cases__filter:focus-visible span.cases-page__filter-label::after {
    opacity: 1;
  }

  .cases-page__filter.cases__filter:hover .cases-page__filter-chevron,
  .cases-page__filter.cases__filter:focus-visible .cases-page__filter-chevron {
    filter: var(--outline-hover-icon-filter);
  }

  .cases-page__filter.cases__filter:hover .cases-page__filter-icon,
  .cases-page__filter.cases__filter:focus-visible .cases-page__filter-icon {
    color: #dddddd;
  }

  .cases-page__filter-chip.cases__filter:hover .cases-page__filter-chip-icon,
  .cases-page__filter-chip.cases__filter:focus-visible .cases-page__filter-chip-icon {
    filter: var(--outline-hover-icon-filter);
  }
}

.cases-page__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 30px;
}

.cases-page__list .cases-archive-card.is-filtered-hidden,
.cases-page__pagination.is-filtered-hidden,
.cases-page__empty-message.is-filtered-hidden {
  display: none !important;
}

.cases-archive-card {
  display: grid;
  grid-template-columns: 524px minmax(0, 1fr);
  gap: 60px;
  min-height: 340px;
  padding: 12px;
  border: 1px solid rgba(0, 81, 157, 0.22);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(8, 14, 18, 0.5);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition:
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

@media (hover: hover) and (pointer: fine) {
  .cases-archive-card:hover {
    border-color: rgba(1, 169, 226, 0.55);
    box-shadow:
      0 4px 4px rgba(0, 0, 0, 0.25),
      0 0 16px rgba(1, 169, 226, 0.18);
  }
}

.cases-archive-card__media {
  border-radius: 20px;
  overflow: hidden;
}

.cases-archive-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 316px;
  object-fit: cover;
}

.cases-archive-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  min-height: 316px;
  padding: 8px 0;
}

.cases-archive-card__body .cases__tags {
  margin-bottom: 0;
  gap: 8px;
}

.cases-archive-card__body .cases__tag {
  height: 28px;
  padding: 0 12px;
  border-radius: 30px;
  background: rgba(8, 14, 18, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px #01a9e2;
}

.cases-archive-card__body .cases__tag span {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: #01a9e2;
}

.cases-archive-card__body .cases__brand {
  margin-top: 40px;
  margin-bottom: 20px;
}

.cases-archive-card__brand-text {
  margin: 40px 0 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #dddddd;
}

.cases-archive-card__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  color: #dddddd;
  text-transform: uppercase;
  white-space: pre-line;
}

.cases-archive-card__body .cases__stat {
  margin: auto 0 10px;
}

.cases-archive-card__more {
  width: 304px;
  margin-top: auto;
}

.cases-archive-card__body:has(.cases__stat) .cases-archive-card__more {
  margin-top: 0;
}

.cases-page__pagination {
  margin-top: 40px;
}

.cases-page__empty-message {
  margin: 24px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #80999e;
  text-align: center;
}

/* ===== Case single page ===== */

.case-single {
  width: 100%;
}

.case-single__empty {
  padding: 80px var(--container-padding);
  color: #80999e;
  text-align: center;
}

.case-single-hero {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 0;
  aspect-ratio: 3800 / 1040;
  overflow: hidden;
  background: #080e12;
}

.case-single-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.case-single-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center center;
}

.case-single-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 80.208vw;
  max-width: 1540px;
  margin: 0 auto;
  padding: 30px 0 48px;
}

.case-single-hero__breadcrumb {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: #80999e;
}

.case-single-hero__breadcrumb a {
  color: inherit;
  text-decoration: none;
}

@media (hover: hover) {
  .case-single-hero__breadcrumb a:hover,
  .case-single-hero__breadcrumb a:focus-visible {
    color: #dddddd;
  }
}

.case-single-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 900px;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 24px;
}

.case-single-hero__brand {
  display: block;
  width: auto;
  height: auto;
  max-width: 200px;
  max-height: 28px;
  object-fit: contain;
  object-position: left center;
}

.case-single-hero__brand--sanlarix {
  max-width: 200px;
  max-height: 28px;
}

.case-single-hero__brand--zif {
  max-width: 102px;
  max-height: 42px;
}

.case-single-hero__brand--tms {
  max-width: 170px;
  max-height: 44px;
}

.case-single-hero__brand--mtb {
  max-width: 170px;
  max-height: 28px;
}

.case-single-hero__brand--bus {
  max-width: 220px;
  max-height: 40px;
}

.case-single-hero__brand--nasin {
  max-width: 200px;
  max-height: 44px;
}

.case-single-hero__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 16px 0 0;
  max-width: none;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: #dddddd;
}

.case-single-hero__title-line {
  display: block;
  white-space: nowrap;
}

.case-single-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.case-single-hero__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 30px;
  background: rgba(8, 14, 18, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px #01a9e2;
}

.case-single-hero__tag span {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: #01a9e2;
}

.case-single-body {
  padding: 40px var(--container-padding) 100px;
  background: #080e12;
}

.case-single-body__container {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
}

.case-single-intro + .case-single-shot {
  margin-top: 40px;
}

.case-single-intro + .case-single-detail .case-single-detail__content {
  margin-top: 24px;
}

.case-single-intro__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
}

.case-emoji {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", emoji, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: unset;
  -webkit-text-fill-color: initial;
  background: none;
  text-transform: none;
}

.case-single-intro__emoji {
  flex-shrink: 0;
  display: inline-block;
  font-size: 32px;
  line-height: 1;
}

.case-single-intro__emoji[src] {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.case-single-intro__title-text {
  display: block;
  background: linear-gradient(135deg, #9be1dd 0%, #01a9e2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.case-single-intro__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #dddddd;
}

.case-single-intro__text p {
  margin: 0;
}

.case-single-intro__text p + p {
  margin-top: 16px;
}

.case-single-shot {
  margin: 0;
  overflow: visible;
  background: transparent;
}

.case-single-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.case-single-shot + .case-single-detail {
  margin-top: 40px;
}

.case-single-detail + .case-single-detail {
  margin-top: 40px;
}

.case-single-detail__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 60px;
  padding: 0 30px;
  border: 1px solid rgba(0, 169, 226, 0.35);
  border-radius: 10px;
  background: #080e12;
  cursor: pointer;
  font: inherit;
  text-align: left;
  list-style: none;
  transition: border-color 0.25s ease;
}

.case-single-detail__header:hover,
.case-single-detail__header:focus-visible {
  border-color: rgba(0, 169, 226, 0.7);
  outline: none;
}

.case-single-detail__header-title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  background: linear-gradient(180deg, #9be1dd 0%, #01a9e2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.case-single-detail__header-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.case-single-detail.is-open .case-single-detail__header-arrow {
  transform: rotate(180deg);
}

.case-single-detail__header-arrow img {
  display: block;
  width: 13px;
  height: 7px;
}

.case-single-detail__panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-single-detail.is-open .case-single-detail__panel {
  grid-template-rows: 1fr;
}

.case-single-detail__panel-inner {
  overflow: hidden;
  min-height: 0;
}

.case-single-detail__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

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

.case-single-detail__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.case-single-detail__heading-emoji {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
}

.case-single-detail__text .case-emoji {
  font-size: 1em;
  line-height: 1;
}

.case-single-detail__heading-text {
  background: linear-gradient(180deg, #9be1dd 0%, #01a9e2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.case-single-detail__text {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  white-space: pre-wrap;
}

.case-single-detail__text--muted,
.case-single-detail__text--strategy,
.case-single-detail__text--accent,
.case-single-detail__text--results,
.case-single-detail__text--results-labels {
  color: #dddddd;
}

.case-single-detail__step-title,
.case-single-detail__accent-line,
.case-single-detail__column-title {
  color: #01a9e2;
}

.case-single-detail__step-heading,
.case-single-detail__list-lead {
  color: #ffffff;
  font-weight: 700;
}

.case-single-detail__columns {
  display: flex;
  gap: 20px;
}

.case-single-detail__columns .case-single-detail__text {
  flex: 1 1 0;
  min-width: 0;
}

.case-single-detail__columns .case-single-detail__text:first-child {
  max-width: 366px;
}

.case-single-detail__shot {
  margin: 24px 0 0;
  overflow: visible;
  background: transparent;
}

.case-single-detail__shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.case-single-detail__caption {
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #01a9e2;
}

.case-single-detail__caption--muted {
  color: #dddddd;
}

.case-single-detail__inline-shot {
  margin: 0;
  overflow: visible;
  background: transparent;
}

.case-single-detail__inline-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.case-single-detail__inline-shot--w670 {
  max-width: 670px;
}

.case-single-detail__inline-shot--w670 img {
  width: 100%;
  max-width: 670px;
}

.case-single-detail__shots-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.case-single-detail__inline-shot--row {
  min-width: 0;
}

.case-single-detail__inline-shot--row img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.case-single-detail__scroll-shot {
  margin: 0;
}

.case-single-detail__scroll-shot-track {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.case-single-detail__scroll-shot-track img {
  display: block;
  width: 100%;
  height: auto;
}

.cases-archive-card .cases__tag.cases__tag--filter {
  position: relative;
  cursor: pointer;
  font: inherit;
  border: none;
  box-shadow: inset 0 0 0 1px #01a9e2;
  transition: background-color 0.2s ease;
}

.cases-archive-card .cases__tag.cases__tag--filter::before,
.cases-archive-card .cases__tag.cases__tag--filter::after {
  content: none;
  display: none;
}

.cases-archive-card .cases__tag.cases__tag--filter span {
  position: relative;
  z-index: 1;
  color: #01a9e2;
  -webkit-text-fill-color: #01a9e2;
  background: none;
}

.cases-archive-card .cases__tag.cases__tag--filter span::after {
  content: none;
  display: none;
}

.cases-archive-card .cases__tag.cases__tag--filter.is-active,
.cases-archive-card .cases__tag.cases__tag--filter:hover {
  background: rgba(1, 169, 226, 0.12);
  box-shadow: inset 0 0 0 1px #01a9e2;
}

.cases__brand--nasin {
  max-width: 170px;
  max-height: 26px;
}

.cases__brand--bus {
  max-width: 229px;
  max-height: 41px;
  width: 229px;
  height: auto;
}

/* ===== Partners row ===== */

.partners {
  padding: 0 var(--container-padding) 5.208vw;
}

.partners__inner {
  width: 78.958vw;
  max-width: 100%;
}

.partners__title {
  margin: 0 0 1.25vw;
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 1.2;
  color: #dddddd;
}

.partners__row {
  display: flex;
  align-items: center;
  gap: 1.042vw;
}

.partners__card {
  flex-shrink: 0;
  width: 12.5vw;
  height: 3.125vw;
  border-radius: 0.521vw;
  overflow: hidden;
  opacity: 0.6;
}

.partners__card--dark {
  background: #00112d;
}

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

.partners__more {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 11.25vw;
  height: 3.125vw;
  border-radius: 0.521vw;
  background: var(--gradient-stats);
  text-decoration: none;
}

.partners__more span {
  font-size: 0.677vw;
  font-weight: 500;
  line-height: 1.25;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ===== Process steps ===== */

.process {
  padding: 0 var(--container-padding) 5.208vw;
}

.process__inner {
  width: 80.208vw;
  max-width: 100%;
}

.process__panel {
  display: grid;
  grid-template-columns: 18.49vw 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.823vw 2.083vw;
  align-items: start;
  min-height: 15vw;
  padding: 3.125vw 1.615vw 3.125vw 1.615vw;
  border-radius: 1.042vw;
  background: url('../img/process/bg.webp') center / 100% 100% no-repeat;
  overflow: hidden;
}

.process__title {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  margin: 0;
  max-width: 14.844vw;
  font-size: 2.5vw;
  font-weight: 600;
  line-height: 1.23;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.process__grid {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 2.083vw;
  row-gap: 1.823vw;
}

.process__step {
  display: flex;
  align-items: flex-start;
  gap: 1.25vw;
  min-width: 0;
}

.process__num {
  flex-shrink: 0;
  width: auto;
  height: 3.073vw;
  max-width: 3.385vw;
  object-fit: contain;
}

.process__content {
  display: flex;
  flex-direction: column;
  gap: 0.208vw;
  min-width: 0;
}

.process__step-title {
  margin: 0;
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-body-muted);
}

.process__step-text {
  margin: 0;
  font-size: 0.833vw;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-stats-text);
}

.process__grid .process__step:nth-child(3) .process__content,
.process__grid .process__step:nth-child(4) .process__content {
  max-width: 21.094vw;
}

/* ===== Why choose ===== */

.why {
  position: relative;
  min-height: 18.385vw;
  padding: 0 0 5.208vw;
  overflow: hidden;
}

.why__cover {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  min-height: 20.781vw;
  transform: translateX(-50%);
  background: url('../img/why/bg.webp') center top / 100vw auto no-repeat;
  pointer-events: none;
}

.why__container {
  position: relative;
  z-index: 1;
  padding: 0 var(--container-padding);
}

.why__inner {
  width: 80.208vw;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 0.365vw;
}

.why__title {
  margin: 0;
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 1.2;
  color: #dddddd;
}

.why__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.042vw;
  align-items: stretch;
  min-height: 15.625vw;
  margin-top: 1.25vw;
}

.why__card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 0.521vw;
  flex: 0 0 calc((100% - 2 * 1.042vw) / 3);
  width: calc((100% - 2 * 1.042vw) / 3);
  padding: 1.25vw;
  border-radius: 0.521vw;
  background: rgba(8, 14, 18, 0.5);
  border: 0.052vw solid rgba(1, 169, 226, 0.28);
  backdrop-filter: blur(0.104vw);
  -webkit-backdrop-filter: blur(0.104vw);
  overflow: hidden;
}

.why__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, #080e12 76%, #0029f9 100%);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.why__card > * {
  position: relative;
  z-index: 1;
}

.why__card-head {
  display: flex;
  align-items: center;
  gap: 0.417vw;
  align-self: stretch;
}

.why__card-icon {
  width: 1.146vw;
  height: 1.146vw;
  flex-shrink: 0;
}

.why__card-label {
  margin: 0;
  font-size: 0.833vw;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.why__card-text {
  margin: 0;
  width: 100%;
  align-self: stretch;
  font-size: 0.833vw;
  font-weight: 500;
  line-height: 1.25;
  color: #dddddd;
}

.why__card-text-mobile {
  display: none;
}

/* ===== Reviews ===== */

.reviews {
  position: relative;
  min-height: 23.594vw;
  padding: 0 0 5.208vw;
  overflow: hidden;
}

.reviews__container {
  padding: 0 var(--container-padding);
}

.reviews__inner {
  width: 80.208vw;
  max-width: 100%;
  margin: 0 auto;
}

.reviews__title {
  margin: 0;
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 1.2;
  color: #dddddd;
}

.reviews__slider {
  position: relative;
  width: 100vw;
  margin-top: 1.25vw;
  margin-left: calc(50% - 50vw);
}

.reviews__track {
  display: flex;
  gap: 1.198vw;
  align-items: stretch;
  min-height: 20.833vw;
  padding: 0 var(--container-padding);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scroll-padding-inline: var(--container-padding);
  touch-action: pan-x;
  scrollbar-width: none;
  cursor: grab;
}

.reviews__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.reviews__track::-webkit-scrollbar {
  display: none;
}

.reviews__fade {
  position: absolute;
  top: 0;
  right: 0;
  width: 11.458vw; /* ~220px @1920 */
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(8, 14, 18, 0) 0%,
    rgba(8, 14, 18, 0.28) 38%,
    rgba(8, 14, 18, 0.72) 72%,
    #080e12 100%
  );
  pointer-events: none;
}

.reviews__card {
  position: relative;
  flex-shrink: 0;
  height: 20.833vw;
  border-radius: 1.042vw;
  overflow: hidden;
}

.reviews__card--video {
  width: 14.896vw;
}

.reviews__card--text {
  display: flex;
  flex-direction: column;
  width: 16.667vw;
  padding: 1.406vw 1.042vw 1.042vw;
  background:
    linear-gradient(#2b2b2b, #2b2b2b),
    linear-gradient(180deg, rgba(43, 43, 43, 0) 0%, #000000 100%);
  background-size: 100% 100%, 100% 100%;
  background-repeat: no-repeat;
}

.reviews__video-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.reviews__video-bg {
  position: absolute;
  inset: 0;
  background-size: cover, 100% 100%;
  background-position: center, 0 0;
  background-repeat: no-repeat, no-repeat;
  border-radius: inherit;
  transition: opacity 0.2s ease;
}

.reviews__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  object-fit: cover;
  background: #000;
  pointer-events: none;
}

.reviews__card--video.is-active .reviews__video-bg {
  opacity: 0;
  pointer-events: none;
}

.reviews__play,
.reviews__mute {
  z-index: 4;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.2s ease;
}

.reviews__card--video:not(.is-active) .reviews__mute {
  opacity: 0;
  pointer-events: none;
}

.reviews__card--video.is-active:not(.is-controls-visible) .reviews__play,
.reviews__card--video.is-active:not(.is-controls-visible) .reviews__mute {
  opacity: 0;
  pointer-events: none;
}

.reviews__card--video.is-active.is-controls-visible .reviews__play,
.reviews__card--video.is-active.is-controls-visible .reviews__mute {
  opacity: 1;
  pointer-events: auto;
}

@media (hover: hover) and (pointer: fine) {
  .reviews__card--video.is-active:hover .reviews__play,
  .reviews__card--video.is-active:hover .reviews__mute {
    opacity: 1;
    pointer-events: auto;
  }
}

.reviews__video-meta {
  position: relative;
  z-index: 2;
  padding: 0.833vw;
}

.reviews__name {
  margin: 0;
  font-size: 0.833vw;
  font-weight: 500;
  line-height: 1.25;
  color: #dddddd;
}

.reviews__role {
  margin: 0.26vw 0 0;
  font-size: 0.677vw;
  font-weight: 500;
  line-height: 1.25;
  color: #00a9e2;
}

.reviews__play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.604vw;
  height: 2.604vw;
  padding: 0;
  border: 0;
  transform: translate(-50%, -50%);
  color: inherit;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
}

.reviews__play-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
}

.reviews__play-icon {
  position: relative;
  z-index: 1;
  width: 0.885vw;
  height: 0.885vw;
}

.reviews__play-icon[hidden],
.reviews__mute-icon[hidden] {
  display: none;
}

.reviews__mute {
  position: absolute;
  right: 0.833vw;
  bottom: 0.833vw;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.083vw;
  height: 2.083vw;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.reviews__mute[hidden] {
  display: none;
}

.reviews__mute-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
}

.reviews__mute-icon {
  position: relative;
  z-index: 1;
  width: 0.885vw;
  height: 0.885vw;
}

.reviews__text-head {
  display: flex;
  align-items: center;
  gap: 0.833vw;
  flex-shrink: 0;
}

.reviews__avatar {
  width: 2.604vw;
  height: 2.604vw;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
}

.reviews__avatar--empty {
  display: block;
  background: #444;
}

.reviews__text-meta {
  min-width: 0;
}

.reviews__text-body {
  flex: 1;
  min-height: 0;
  margin-top: 1.042vw;
  overflow: hidden;
  font-size: 0.833vw;
  font-weight: 500;
  line-height: 1.25;
  color: #80999e;
}

.reviews__text-body p {
  margin: 0;
}

/* ===== About page ===== */

.about-page {
  background: #080e12;
}

.about-page .site-main {
  position: relative;
  overflow-x: clip;
  background:
    radial-gradient(ellipse 120% 36% at 50% 0%, rgba(0, 81, 157, 0.16) 0%, transparent 58%),
    linear-gradient(180deg, #000814 0%, #060b10 14%, #080e12 36%, #080e12 74%, #020814 92%, #010408 100%);
}

.about-hero {
  position: relative;
  overflow: hidden;
  background: transparent;
  /* та же сетка, что у CTA / includes / logo */
  padding: 0 var(--container-padding);
}

.about-hero__inner {
  position: relative;
  z-index: 2;
  width: 80.208vw;
  max-width: 100%;
  margin: 0 auto;
  padding: 1.563vw 0 0;
}

.about-hero__breadcrumb {
  margin: 0 0 2.083vw; /* 40px */
  font-size: 0.677vw;
  font-weight: 500;
  line-height: 1.4;
  color: #80999e;
}

.about-hero__breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .about-hero__breadcrumb a:hover,
  .about-hero__breadcrumb a:focus-visible {
    color: #dddddd;
  }
}

.about-hero__layout {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8.646vw; /* 166px между фото и текстом */
  padding-left: 7.292vw; /* 140px */
}

.about-hero__visual {
  position: relative;
  z-index: 1;
  flex: 0 0 18.021vw;
  width: 18.021vw; /* 346px */
  pointer-events: none;
}

.about-hero__visual picture {
  display: block;
  width: 100%;
}

.about-hero__visual-img {
  display: block;
  width: 100%;
  height: auto;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  max-width: 100%;
}

.about-hero__title {
  margin: 0 0 2.083vw; /* 40px */
  font-size: 3.333vw; /* 64px */
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about-hero__lead {
  margin: 0 0 2.083vw; /* 40px */
  max-width: 37.5vw; /* ~720px — переносы как в макете */
  font-size: 1.25vw; /* 24px */
  font-weight: 500;
  line-height: 1.4;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about-hero__lead-em {
  font-weight: 700;
}

.about-hero__copy {
  display: flex;
  flex-direction: column;
  gap: 1.042vw; /* 20px */
  max-width: none; /* на всю колонку — 3 строки */
  margin-bottom: 3.854vw; /* 74px */
}

.about-hero__copy p {
  margin: 0;
  font-size: 0.833vw; /* 16px */
  font-weight: 500;
  line-height: 1.5;
  color: #dddddd;
}

.about-hero__accent {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about-hero__stats {
  display: flex;
  align-items: flex-start;
  gap: 2.083vw;
}

.about-hero__stat {
  display: flex;
  align-items: center;
  gap: 0.833vw;
  min-width: 0;
}

.about-hero__stat-arrow {
  width: 3.125vw; /* 60px */
  height: 3.125vw;
  flex-shrink: 0;
}

.about-hero__stat-text {
  display: flex;
  flex-direction: column;
  gap: 0.208vw;
  min-width: 0;
}

.about-hero__stat-value {
  font-size: 2.083vw; /* 40px */
  font-weight: 700;
  line-height: 1;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about-hero__stat-label {
  font-size: 0.833vw; /* 16px */
  font-weight: 500;
  line-height: 1.3;
  color: #dddddd;
}

/* ===== About clients ===== */

.about-clients {
  padding: 0 var(--container-padding) 5.208vw;
}

.about-clients__container {
  width: 80.208vw; /* 1540px */
  max-width: 100%;
  margin: 0 auto;
}

.about-clients__panel {
  position: relative;
  isolation: isolate;
  min-height: 13.125vw; /* 252px */
  overflow: hidden;
  border-radius: 1.042vw; /* 20px */
  background: transparent;
}

.about-clients__deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--about-clients-deco);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.about-clients__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background-image: linear-gradient(180deg, #041622 0%, #040019 100%);
  opacity: 0.2;
  pointer-events: none;
}

.about-clients__content {
  position: relative;
  z-index: 2;
  width: 43.906vw; /* 843px */
  max-width: 100%;
  padding: 3.438vw 0 3.438vw 2.135vw; /* 66 / 41 */
  display: flex;
  flex-direction: column;
  gap: 1.042vw; /* 20px */
}

.about-clients__content p {
  margin: 0;
  font-size: 0.833vw; /* 16px */
  font-weight: 500;
  line-height: 1.5;
  color: #dddddd;
}

.about-clients__accent {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ===== About approach ===== */

.about-approach {
  padding: 0 var(--container-padding) 5.208vw;
}

.about-approach__container {
  width: 80.208vw;
  max-width: 100%;
  margin: 0 auto;
}

.about-approach__title {
  margin: 0;
  font-size: 1.25vw; /* 24px */
  font-weight: 600;
  line-height: 1.2;
  color: #dddddd;
}

.about-approach__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.042vw; /* 20px */
  margin-top: 1.25vw; /* 24px */
}

.about-approach__card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 0.521vw;
  flex: 0 0 calc((100% - 2 * 1.042vw) / 3);
  width: calc((100% - 2 * 1.042vw) / 3);
  padding: 1.146vw; /* 22px */
  border-radius: 1.042vw; /* 20px */
  background: rgba(8, 14, 18, 0.5);
  border: 0.052vw solid rgba(1, 169, 226, 0.28);
  backdrop-filter: blur(0.104vw);
  -webkit-backdrop-filter: blur(0.104vw);
  overflow: hidden;
}

.about-approach__card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, #080e12 76%, #0029f9 100%);
  opacity: 0.2;
  pointer-events: none;
}

.about-approach__card > * {
  position: relative;
  z-index: 1;
}

.about-approach__card-head {
  display: flex;
  align-items: center;
  gap: 0.417vw;
}

.about-approach__card-icon {
  width: 1.146vw; /* 22px */
  height: 1.146vw;
  flex-shrink: 0;
}

.about-approach__card-label {
  margin: 0;
  font-size: 0.833vw; /* 16px */
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about-approach__card-text {
  margin: 0;
  font-size: 0.833vw; /* 16px */
  font-weight: 500;
  line-height: 1.35;
  color: #dddddd;
}

.about-approach__wide {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 9.896vw; /* 190px — 3080×380 @2x */
  margin-top: 1.042vw;
  padding: 1.667vw 2.083vw 1.667vw 20.313vw; /* left 390px */
  overflow: hidden;
  border-radius: 1.042vw; /* 20px */
  background:
    var(--about-approach-wide) center / 100% 100% no-repeat,
    linear-gradient(180deg, #041622 0%, #040019 100%);
}

.about-approach__wide::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background-image: linear-gradient(180deg, #041622 0%, #040019 100%);
  opacity: 0.2;
  pointer-events: none;
}

.about-approach__wide-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
}

.about-approach__wide-title {
  margin: 0 0 0.833vw;
  font-size: 1.25vw; /* 24px */
  font-weight: 700;
  line-height: 1.25;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about-approach__wide-text {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}

.about-approach__wide-text p {
  margin: 0;
  font-size: 0.833vw; /* 16px */
  font-weight: 500;
  line-height: 1.45;
  color: #dddddd;
}

/* ===== About team ===== */

.about-team {
  padding: 0 var(--container-padding) 5.208vw;
}

.about-team__container {
  width: 80.208vw;
  max-width: 100%;
  margin: 0 auto;
}

.about-team__title {
  margin: 0;
  font-size: 1.25vw; /* 24px */
  font-weight: 600;
  line-height: 1.2;
  color: #dddddd;
}

.about-team__slider {
  width: 80.208vw;
  max-width: 100%;
  margin: 1.563vw auto 0; /* 30px */
}

.about-team__track {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  column-gap: 1.198vw; /* 23px */
  row-gap: 1.25vw;
}

.about-team__member {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  text-align: center;
}

.about-team__photo {
  width: 100%;
  aspect-ratio: 1;
}

.about-team__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-team__name {
  margin: 0.625vw 0 0; /* 12px */
  font-size: 0.833vw; /* 16px */
  font-weight: 600;
  line-height: 1.25;
  color: #dddddd;
}

.about-team__role {
  margin: 0.208vw 0 0; /* 4px */
  font-size: 0.677vw; /* 13px */
  font-weight: 500;
  line-height: 1.3;
  color: rgba(221, 221, 221, 0.72);
}

/* ===== About partner ===== */

.about-partner {
  padding: 0 var(--container-padding) 5.208vw;
}

.about-partner__container {
  width: 80.208vw;
  max-width: 100%;
  margin: 0 auto;
}

.about-partner__title {
  margin: 0;
  font-size: 1.25vw; /* 24px */
  font-weight: 600;
  line-height: 1.2;
  color: #dddddd;
}

.about-partner__body {
  display: flex;
  align-items: center;
  gap: 2.188vw; /* 42px */
  margin-top: 1.25vw; /* 24px */
  padding-left: 2.865vw; /* 55px */
}

.about-partner__visual {
  flex: 0 0 22.031vw; /* 423px */
  width: 22.031vw;
}

.about-partner__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.about-partner__visual--mobile {
  display: none;
}

.about-partner__lead-mobile {
  display: none;
}

.about-partner__card {
  position: relative;
  isolation: isolate;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 1.042vw; /* 20px */
}

.about-partner__card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--about-partner-card-bg) center / 100% 100% no-repeat;
  pointer-events: none;
}

.about-partner__card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 2.813vw 2.604vw 2.813vw 5.729vw; /* 54 / 50 / 54 / 110 */
}

.about-partner__lead {
  margin: 0;
  max-width: none;
  font-size: 1.25vw; /* 24px */
  font-weight: 600;
  line-height: 1.35;
  color: #01a9e2;
}

.about-partner__details {
  margin-top: 1.25vw; /* 24px */
}

.about-partner__subtitle {
  margin: 0;
  font-size: 0.833vw; /* 16px */
  font-weight: 500;
  line-height: 1.3;
  color: #dddddd;
}

.about-partner__list {
  margin: 0.625vw 0 0; /* 12px */
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625vw; /* 12px */
}

.about-partner__list li {
  position: relative;
  padding-left: 0.729vw; /* 14px */
  font-size: 0.833vw; /* 16px */
  font-weight: 500;
  line-height: 1.5;
  color: #dddddd;
}

.about-partner__list li::before {
  content: '';
  position: absolute;
  top: 0.625vw; /* 12px */
  left: 0;
  width: 0.208vw; /* 4px */
  height: 0.208vw;
  border-radius: 50%;
  background: #dddddd;
}

.about-page .cta {
  position: relative;
  z-index: 2;
  background: transparent;
  padding-bottom: 5.208vw;
}

/* ===== Blog page ===== */

body.blog-page {
  background: #080e12;
}

body.blog-page .site-main {
  position: relative;
  overflow-x: clip;
  background:
    radial-gradient(ellipse 120% 36% at 50% 0%, rgba(0, 81, 157, 0.16) 0%, transparent 58%),
    linear-gradient(180deg, #000814 0%, #060b10 14%, #080e12 36%, #080e12 74%, #020814 92%, #010408 100%);
}

.blog-archive,
.blog-single {
  padding: 0 var(--container-padding) 5.208vw;
  background-color: transparent;
}

.blog-page__container {
  width: 80.208vw;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 1.563vw;
}

.blog-page__breadcrumb {
  margin: 0;
  font-size: 0.677vw; /* 13px */
  font-weight: 500;
  line-height: 1.2;
  color: #80999e;
}

.blog-page__breadcrumb a {
  color: inherit;
  text-decoration: none;
}

@media (hover: hover) {
  .blog-page__breadcrumb a:hover,
  .blog-page__breadcrumb a:focus-visible {
    color: #dddddd;
  }
}

.blog-page__breadcrumb-sep {
  color: inherit;
}

.blog-page__title {
  margin: 1.563vw 0 0; /* 30px */
  font-size: 2.5vw; /* 48px */
  font-weight: 600;
  line-height: 1.2;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.blog-page__title--single {
  font-size: 2.083vw;
}

.blog-page__lead {
  margin: 0.833vw 0 0; /* 16px */
  max-width: 39.583vw;
  font-size: 0.833vw; /* 16px */
  font-weight: 500;
  line-height: 1.45;
  color: #80999e;
}

.blog-page__empty {
  margin-top: 2.083vw;
  font-size: 0.833vw;
  color: #80999e;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.042vw; /* 20px */
  row-gap: 1.042vw; /* 20px */
  margin-top: 1.563vw; /* 30px */
  width: 100%;
}

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

.blog-card__link {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.667vw; /* 32px */
  width: 100%;
  height: 13.75vw; /* 264px */
  min-height: 13.75vw;
  padding: 0.625vw; /* 12px */
  border: 0.052vw solid rgba(0, 81, 157, 0.22);
  border-radius: 1.042vw; /* 20px */
  background: rgba(8, 14, 18, 0.5);
  box-shadow: 0 0.208vw 0.208vw rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(1.042vw);
  -webkit-backdrop-filter: blur(1.042vw);
  text-decoration: none;
  overflow: hidden;
  transition:
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.blog-card__media {
  flex: 0 0 14.583vw; /* 280px */
  width: 14.583vw;
  height: 12.5vw; /* 240px */
  border-radius: 1.042vw;
  overflow: hidden;
}

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

.blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.833vw; /* 16px */
  min-width: 0;
  padding: 0.938vw 0 0.417vw; /* 18px top ≈ 30px from card edge */
}

.blog-card__head {
  min-width: 0;
}

.blog-card__title {
  margin: 0;
  font-size: 1.25vw; /* 24px */
  font-weight: 600;
  line-height: 1.25;
  color: #00a9e2;
}

.blog-card__excerpt {
  margin: 0;
  font-size: 0.833vw; /* 16px */
  font-weight: 500;
  line-height: 1.45;
  color: #80999e;
}

.blog-card__arrow {
  position: absolute;
  right: 0.625vw; /* 12px */
  bottom: 0.625vw; /* 12px */
  width: 1.146vw; /* 22px */
  height: 1.146vw;
  flex-shrink: 0;
}

@media (hover: hover) and (pointer: fine) {
  .blog-card:hover .blog-card__link,
  .blog-card:focus-within .blog-card__link {
    border-color: rgba(1, 169, 226, 0.55);
    box-shadow:
      0 0.208vw 0.208vw rgba(0, 0, 0, 0.25),
      0 0 0.833vw rgba(1, 169, 226, 0.18);
  }
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.563vw; /* 30px */
  margin-top: 2.083vw; /* 40px */
}

.blog-pagination__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.083vw; /* 40px */
  height: 2.083vw;
  text-decoration: none;
  flex-shrink: 0;
}

.blog-pagination__control.is-disabled {
  pointer-events: none;
}

.blog-pagination__defs {
  position: absolute;
  overflow: hidden;
}

.blog-pagination__icon {
  display: block;
  width: 2.083vw;
  height: 2.083vw;
}

.blog-pagination__control.is-disabled .blog-pagination__icon circle,
.blog-pagination__control.is-disabled .blog-pagination__icon path {
  stroke: #80999e;
}

.blog-pagination__control:not(.is-disabled) .blog-pagination__icon circle,
.blog-pagination__control:not(.is-disabled) .blog-pagination__icon path {
  stroke: url(#blog-pagination-accent);
}

.blog-pagination__pages {
  display: flex;
  align-items: center;
  gap: 0.781vw; /* 15px */
}

.blog-pagination__page,
.blog-pagination__dots {
  font-size: 1.25vw; /* 24px */
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.blog-pagination__page {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.blog-pagination__page.is-current {
  background: none;
  -webkit-text-fill-color: #dddddd;
  color: #dddddd;
  text-decoration: underline;
}

.blog-pagination__dots {
  color: #80999e;
}

/* ===== Blog single ===== */

.blog-single-hero__breadcrumb {
  margin-bottom: 1.563vw; /* 30px */
}

.blog-single-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.042vw; /* 20px */
  align-items: center;
}

.blog-single-hero__title {
  margin: 0;
  font-size: 2.5vw; /* 48px */
  font-weight: 600;
  line-height: 1.2;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.blog-single-hero__lead {
  margin-top: 1.563vw; /* 30px */
  font-size: 0.833vw; /* 16px */
  font-weight: 500;
  line-height: 1.45;
  color: #80999e;
}

.blog-single-hero__lead p {
  margin: 0 0 0.833vw;
}

.blog-single-hero__lead p:last-child {
  margin-bottom: 0;
}

.blog-single-hero__media {
  border-radius: 1.042vw; /* 20px */
  overflow: hidden;
}

.blog-single-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 760 / 480;
  object-fit: cover;
}

.blog-single__article-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  column-gap: 1.563vw; /* 30px */
  margin-top: 2.083vw; /* 40px */
}

.blog-single__content {
  width: 53.125vw; /* 1020px */
  max-width: 1020px;
  flex-shrink: 0;
  font-size: 0.833vw; /* 16px */
  font-weight: 500;
  line-height: 1.45;
  color: #ffffff;
}

.blog-single__content > :first-child {
  margin-top: 0;
}

.blog-single__content h2 {
  margin: 2.083vw 0 1.042vw;
  font-size: 1.667vw; /* 32px */
  font-weight: 600;
  line-height: 1.25;
  color: #00a9e2;
}

.blog-single__content h2:first-child {
  margin-top: 0;
}

.blog-single__content p {
  margin: 0 0 1.042vw;
}

.blog-single__content p:last-child {
  margin-bottom: 0;
}

.blog-single__content ul,
.blog-single__content ol {
  margin: 0 0 1.042vw;
  padding-left: 1.25vw;
}

.blog-single__content li + li {
  margin-top: 0.417vw;
}

.blog-single__content a {
  color: #00a9e2;
  text-decoration: underline;
}

.back-to-top {
  position: fixed;
  right: 1.563vw;
  bottom: 1.563vw;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.083vw;
  height: 2.083vw;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.back-to-top__ring {
  display: block;
  width: 2.083vw;
  height: 2.083vw;
}

.back-to-top__ring circle {
  stroke: url(#back-to-top-accent);
}

.back-to-top__chevron {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.573vw;
  height: auto;
  transform: translate(-50%, -50%);
}

.blog-related {
  margin-top: 3.125vw; /* 60px */
  padding-bottom: 1.042vw;
}

.blog-related__title {
  margin: 0 0 1.042vw;
  font-size: 1.25vw; /* 24px */
  font-weight: 600;
  line-height: 1.2;
  color: #dddddd;
}

.blog-related__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.042vw; /* 20px */
}

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

.blog-related-card__link {
  display: flex;
  align-items: flex-start;
  gap: 0.625vw; /* 12px */
  min-height: 9.583vw; /* 184px */
  padding: 0.625vw; /* 12px */
  border: 0.052vw solid rgba(0, 81, 157, 0.22);
  border-radius: 1.042vw; /* 20px */
  background: rgba(8, 14, 18, 0.5);
  box-shadow: 0 0.208vw 0.208vw rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(1.042vw);
  -webkit-backdrop-filter: blur(1.042vw);
  text-decoration: none;
  transition:
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth);
}

.blog-related-card__media {
  position: relative;
  flex: 0 0 8.333vw; /* 160px */
  width: 8.333vw;
  height: 8.333vw;
  border-radius: 0.521vw; /* 10px */
  overflow: hidden;
}

.blog-related-card__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.blog-related-card__title {
  margin: 0;
  padding-top: 0.9375vw; /* 18px */
  font-size: 0.833vw; /* 16px */
  font-weight: 600;
  line-height: 1.25;
  color: #00a9e2;
}

@media (hover: hover) and (pointer: fine) {
  .blog-related-card__link:hover,
  .blog-related-card__link:focus-visible {
    border-color: rgba(1, 169, 226, 0.55);
    box-shadow:
      0 0.208vw 0.208vw rgba(0, 0, 0, 0.25),
      0 0 0.833vw rgba(1, 169, 226, 0.18);
  }
}

/* ===== CTA form ===== */

.cta {
  padding: 0 var(--container-padding) 5.208vw;
}

.cta__container {
  width: 80.208vw;
  max-width: 100%;
  margin: 0 auto;
}

.cta__panel {
  position: relative;
  min-height: 15.833vw;
  overflow: hidden;
  border-radius: 1.042vw;
  box-shadow: 0 0.208vw 0.208vw rgba(0, 0, 0, 0.25);
  background: url('../img/cta/bg.webp') center / 100% 100% no-repeat;
}

.cta__content {
  position: relative;
  z-index: 1;
  min-height: 15.833vw;
  padding: 2.083vw 1.563vw 2.083vw 20.625vw;
}

.cta__title {
  margin: 0;
  max-width: none;
  white-space: nowrap;
  font-size: 2.5vw;
  font-weight: 600;
  line-height: 1.22;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.cta__title-break {
  display: none;
}

.cta__subtitle-break {
  display: none;
}

.cta__title-mobile,
.cta__subtitle-mobile {
  display: none;
}

.cta__subtitle {
  margin: 0.521vw 0 0;
  max-width: 31.615vw;
  font-size: 0.833vw;
  font-weight: 500;
  line-height: 1.25;
  color: #80999e;
}

.cta__form {
  display: grid;
  grid-template-columns: 15.417vw 15.417vw 15.417vw;
  column-gap: 1.042vw;
  row-gap: 1.042vw;
  align-items: center;
  margin-top: 2.604vw;
}

.cta__field {
  width: 15.417vw;
}

.cta__field:nth-of-type(1) {
  grid-column: 1;
  grid-row: 1;
}

.cta__field:nth-of-type(2) {
  grid-column: 2;
  grid-row: 1;
}

.cta__submit {
  grid-column: 3;
  grid-row: 1;
  width: 15.417vw;
  flex: 0 0 15.417vw;
}

.cta__note {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 0.885vw;
  margin: 0;
  font-size: 0.677vw;
  font-weight: 500;
  line-height: 1.25;
  color: #ffe6c8;
}

.cta__input {
  width: 100%;
  height: 2.604vw;
  padding: 0 1.146vw;
  border: 0.052vw solid rgba(76, 169, 215, 0.45);
  border-radius: 5.208vw;
  background: rgba(8, 14, 18, 0.72);
  font-family: var(--font-base);
  font-size: 0.677vw;
  font-weight: 500;
  line-height: 1.25;
  color: #dddddd;
}

.cta__input::placeholder {
  color: #80999e;
}

.cta__note-icon {
  width: 0.573vw;
  height: 0.417vw;
  flex-shrink: 0;
}

/* ===== FAQ ===== */

.faq {
  padding: 0 var(--container-padding) 5.208vw;
}

.faq__container {
  width: 80.208vw;
  max-width: 100%;
  margin: 0 auto;
}

.faq__title {
  margin: 0;
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 1.2;
  color: #dddddd;
}

.faq__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 39.583vw));
  justify-content: space-between;
  gap: 0.833vw 0;
  margin-top: 1.25vw;
}

.faq__col {
  display: flex;
  flex-direction: column;
  gap: 0.833vw;
  width: 39.583vw;
  min-width: 0;
}

.faq__item {
  border: 0.052vw solid rgba(0, 81, 157, 0.35);
  border-radius: 0.521vw;
  overflow: hidden;
  background: rgba(8, 14, 18, 0.6);
  transition: background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item--open {
  background: transparent;
  border-color: rgba(0, 81, 157, 0.35);
}

.faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.521vw;
  width: 100%;
  min-height: 3.125vw;
  padding: 1.042vw 1.25vw;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.faq__item--open .faq__trigger {
  background: rgba(8, 14, 18, 0.6);
}

.faq__question {
  flex: 1;
  min-width: 0;
  font-size: 0.833vw;
  font-weight: 500;
  line-height: 1.25;
  color: #4ca9d7;
}

.faq__icon {
  position: relative;
  width: 0.833vw;
  height: 0.833vw;
  flex-shrink: 0;
}

.faq__icon-line {
  position: absolute;
  left: 50%;
  top: 50%;
  background: #aaaaaa;
  border-radius: 0.052vw;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__icon-line--h {
  width: 0.833vw;
  height: 0.052vw;
  transform: translate(-50%, -50%);
}

.faq__icon-line--v {
  width: 0.052vw;
  height: 0.833vw;
  transform: translate(-50%, -50%) scaleY(1);
  transform-origin: center;
}

.faq__item--open .faq__icon-line--v {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item--open .faq__panel {
  grid-template-rows: 1fr;
}

.faq__panel-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 1.25vw;
  background: transparent;
  border-top: none;
  transition:
    padding 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item--open .faq__panel-inner {
  padding: 1.042vw 1.25vw;
  background: rgba(8, 14, 18, 0.5);
  border-top: 0.052vw solid rgba(0, 81, 157, 0.22);
}

.faq__answer {
  margin: 0;
  font-size: 0.833vw;
  font-weight: 400;
  line-height: 1.5;
  color: #aaaaaa;
}

@media (prefers-reduced-motion: reduce) {
  .faq__panel,
  .faq__icon-line {
    transition: none;
  }
}

/* ===== Footer ===== */

.site-footer {
  position: relative;
  min-height: 15.365vw;
  overflow: hidden;
}

.site-footer__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 120% at 72% 115%, rgba(0, 81, 157, 0.42) 0%, transparent 58%),
    radial-gradient(ellipse 70% 90% at 18% 110%, rgba(0, 27, 51, 0.75) 0%, transparent 52%),
    linear-gradient(180deg, #010408 0%, #020814 45%, #001428 100%);
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 98.958vw;
  min-height: 15.365vw;
  margin: 0 auto;
  padding: 3.125vw 9.375vw;
  display: grid;
  grid-template-columns: 12.5vw 10.365vw 3.802vw 8.646vw 9.427vw;
  justify-content: space-between;
  align-items: start;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.458vw;
}

.site-footer__logo {
  display: block;
  width: 7.656vw;
  height: 1.823vw;
}

.site-footer__logo img {
  width: 7.656vw;
  height: 1.771vw;
  filter: drop-shadow(0 0 0.208vw rgba(17, 0, 255, 0.85));
}

.site-footer__tagline {
  width: 12.5vw;
  font-size: 0.677vw;
  font-weight: 500;
  line-height: 1.23;
  color: var(--color-body-muted);
}

.site-footer__tagline-break {
  display: none;
}

.site-footer__lang {
  font-size: 0.521vw;
  font-weight: 500;
  line-height: 1;
  color: var(--color-body-muted);
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}

.site-footer__contacts,
.site-footer__nav,
.site-footer__services {
  display: flex;
  flex-direction: column;
  gap: 1.563vw;
}

.site-footer__services {
  gap: 0.833vw;
}

.site-footer__services--secondary {
  padding-top: 1.979vw;
}

.site-footer__services-title {
  font-size: 0.833vw;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-body-muted);
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  gap: 0.521vw;
}

.site-footer__social-icon {
  width: 1.042vw;
  height: 1.042vw;
  flex-shrink: 0;
}

.site-footer__link {
  font-size: 0.833vw;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  opacity: 0.75;
}

.site-footer__link--accent {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.site-footer__link--muted {
  color: var(--color-text);
}

.site-footer__link--external {
  display: inline-flex;
  align-items: center;
  gap: 0.521vw;
}

.site-footer__arrow {
  width: 0.521vw;
  height: 0.521vw;
  flex-shrink: 0;
}

/* ===== Desktop-only / mobile-only helpers ===== */

.hero__bg-layers,
.hero__team-photo,
.hero__mobile-fade,
.hero__team-image,
.site-header__mobile-actions,
.mobile-menu {
  display: none;
}

.hero__photo-wrap {
  display: block;
}

body.mobile-menu-open {
  overflow: hidden;
}

/* ===== Responsive ===== */

@media (max-width: 1400px) {
  .site-header__inner {
    gap: 3.125vw;
  }

  .site-nav__list {
    gap: 2.5vw;
  }
}

@media (max-width: 1100px) {
  .site-header__cta {
    min-width: auto;
    padding: 0.521vw 0.833vw;
  }
}

@media (max-width: 1024px) {
  :root {
    --design-width: 375;
    --container-padding: 5.333vw;
    --header-height: 14.933vw;
  }

  /* ===== Mobile header ===== */

  .site-header__inner {
    max-width: 100%;
    padding: 2.667vw 5.333vw;
    gap: 0;
    min-height: var(--header-height);
  }

  .site-header__logo {
    width: 34.667vw;
    height: 8vw;
  }

  .site-header__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
  }

  .site-nav,
  .site-header__cta {
    display: none;
  }

  .site-header__mobile-actions {
    display: flex;
    align-items: center;
    gap: 4.267vw;
  }

  .site-header__mobile-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 10.667vw;
    height: 10.667vw;
  }

  .site-header__mobile-phone img {
    width: 10.667vw;
    height: 10.667vw;
  }

  .site-header__burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 10.667vw;
    height: 10.667vw;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .site-header__burger-icon {
    display: block;
    width: 10.667vw;
    height: 10.667vw;
  }

  /* ===== Mobile menu ===== */

  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    visibility: hidden;
  }

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

  .mobile-menu__panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 10.667vw 5.333vw 8vw;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2.667vw);
    -webkit-backdrop-filter: blur(2.667vw);
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
  }

  .mobile-menu.is-open .mobile-menu__panel {
    transform: translateY(0);
  }

  .mobile-menu__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 10.667vw;
  }

  .mobile-menu__logo img {
    width: 8.533vw;
    height: 8.533vw;
  }

  .mobile-menu__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 10.667vw;
    height: 10.667vw;
    margin-top: auto;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu__close-icon {
    display: block;
    width: 10.667vw;
    height: 10.667vw;
  }

  .mobile-menu__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10.667vw;
    width: 68vw;
    min-height: 0;
    margin-top: 0;
  }

  .mobile-menu__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2.667vw;
    width: 68vw;
    flex-shrink: 0;
    padding: 3.2vw 3.733vw;
    border-radius: 8vw;
    box-shadow: var(--shadow-btn);
    text-decoration: none;
    position: relative;
  }

  .mobile-menu__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8vw;
    padding: 0.267vw;
    background: var(--gradient-border);
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }

  .mobile-menu__cta-icon-wrap {
    position: relative;
    width: 5.867vw;
    height: 5.867vw;
    flex-shrink: 0;
  }

  .mobile-menu__cta-icon {
    width: 4.533vw;
    height: 4.533vw;
  }

  .mobile-menu__cta-label {
    font-size: 4.267vw;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10.667vw;
    width: 100%;
    transition: margin 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-menu__content:not(.is-services-open) .mobile-menu__nav {
    margin-top: auto;
    margin-bottom: auto;
  }

  .mobile-menu__content.is-services-open .mobile-menu__nav {
    margin-top: 0;
    margin-bottom: 0;
  }

  .mobile-menu__content.is-services-open {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5.333vw;
  }

  .mobile-menu__services {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex-shrink: 0;
  }

  .mobile-menu__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2.667vw;
    font-size: 4.267vw;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .mobile-menu__link--services.is-open .mobile-menu__chevron {
    transform: rotate(180deg);
  }

  .mobile-menu__chevron {
    width: 5.333vw;
    height: 5.333vw;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-menu__submenu-accordion {
    display: grid;
    grid-template-rows: 0fr;
    width: 100%;
    transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-menu__services.is-open .mobile-menu__submenu-accordion {
    grid-template-rows: 1fr;
  }

  .mobile-menu__submenu-scroll {
    overflow: hidden;
    min-height: 0;
  }

  .mobile-menu__services.is-open .mobile-menu__submenu-scroll {
    max-height: none;
    overflow: visible;
  }

  .mobile-menu__services.is-open .mobile-menu__submenu-scroll.is-scrollable {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .mobile-menu__submenu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5.333vw;
    width: 100%;
    padding-top: 5.867vw;
    padding-bottom: 8vw;
  }

  .mobile-menu__submenu-link {
    font-size: 4.267vw;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .mobile-menu__arrow {
    width: 2.667vw;
    height: 2.667vw;
    flex-shrink: 0;
  }

  /* ===== Mobile hero ===== */

  .hero {
    min-height: 162.667vw;
    padding-bottom: 10.667vw;
    background-image: none !important;
    background-color: #040c19;
    overflow: hidden;
  }

  .hero__bg-layers {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(4, 12, 25, 0.78) 0%, rgba(4, 12, 25, 0.28) 32%, transparent 58%),
      radial-gradient(ellipse 90% 45% at 50% 8%, rgba(13, 108, 197, 0.22) 0%, transparent 72%),
      radial-gradient(ellipse 70% 35% at 50% 62%, rgba(0, 169, 226, 0.12) 0%, transparent 68%);
    pointer-events: none;
  }

  .hero__team-photo,
  .hero__mobile-fade {
    display: none !important;
  }

  .hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 162.667vw;
    padding: 8vw 5.333vw 6.4vw;
  }

  .hero__content {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    width: 100%;
  }

  .hero__title {
    width: 88.8vw;
    min-height: auto;
    margin-bottom: 2.133vw;
    font-size: 6.4vw;
    line-height: 1.22;
  }

  .hero__subtitle {
    width: 89.333vw;
    min-height: auto;
    margin-bottom: 3.733vw;
    font-size: 3.467vw;
    line-height: 1.45;
  }

  .hero__subtitle-services {
    white-space: normal;
  }

  .hero__stats {
    position: relative;
    z-index: 2;
    width: 89.333vw;
    height: 19.2vw;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 0 1.067vw;
    border-radius: 5.333vw;
    background: var(--gradient-stats);
    box-shadow: none;
    isolation: isolate;
  }

  .hero__stats::before {
    display: block;
    border-radius: inherit;
    padding: 0.267vw;
    background: linear-gradient(
      155deg,
      rgba(155, 225, 221, 0.7) 0%,
      rgba(1, 169, 226, 0.35) 28%,
      rgba(0, 81, 157, 0.2) 55%,
      rgba(0, 27, 51, 0.45) 100%
    );
  }

  .hero__stats::after {
    display: none;
  }

  .hero__stats-item {
    position: static;
    flex: 1;
    width: auto;
    height: auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.067vw;
    padding: 0 0.533vw;
    border-radius: 0;
  }

  .hero__stats-item--first,
  .hero__stats-item--second {
    flex-direction: column;
    gap: 0.533vw;
    align-items: center;
    text-align: center;
  }

  .hero__stats-item--third {
    flex-direction: column;
    justify-content: center;
  }

  .hero__stats-item--first,
  .hero__stats-item--second,
  .hero__stats-item--third {
    left: auto;
  }

  .hero__stats-value,
  .hero__stats-label {
    position: static;
    left: auto;
    top: auto;
    transform: none;
  }

  .hero__stats-item--first .hero__stats-value,
  .hero__stats-item--second .hero__stats-value,
  .hero__stats-item--first .hero__stats-label,
  .hero__stats-item--second .hero__stats-label,
  .hero__stats-label--solo {
    position: static;
    left: auto;
    top: auto;
    width: auto;
    max-width: none;
  }

  .hero__stats-divider {
    position: static;
    top: auto;
    left: auto;
    width: 0.267vw;
    height: 14.933vw;
    transform: none;
    flex-shrink: 0;
    background: linear-gradient(
      180deg,
      rgba(255, 230, 200, 0.08) 0%,
      rgba(255, 230, 200, 0.42) 50%,
      rgba(255, 230, 200, 0.08) 100%
    );
  }

  .hero__stats-divider--first,
  .hero__stats-divider--second {
    left: auto;
  }

  .hero__stats-value {
    font-size: 4.267vw;
    line-height: 1;
    flex-shrink: 0;
    color: var(--color-stats-text);
  }

  .hero__stats-label {
    font-size: 2.667vw;
    line-height: 1.2;
    text-align: center;
    color: var(--color-stats-text);
  }

  .hero__stats-item--first .hero__stats-label,
  .hero__stats-item--second .hero__stats-label {
    text-align: center;
  }

  .hero__stats-label--solo {
    font-size: 2.667vw;
    line-height: 1.2;
    text-align: center;
    color: var(--color-stats-text);
  }

  .hero__photo-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: auto 0 0;
    padding-bottom: 36vw;
  }

  .hero__team-image {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 68%;
    pointer-events: none;
  }

  .hero__actions {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    flex-direction: column;
    gap: 2.667vw;
    z-index: 3;
  }

  .hero__btn {
    width: 100%;
    min-height: 12.8vw;
    padding: 3.733vw 3.733vw;
    border-radius: 8vw;
    font-size: 4.267vw;
    line-height: 1;
    box-shadow: none;
  }

  .hero__btn--primary {
    background: var(--gradient-btn);
    color: var(--color-btn-dark);
  }

  .hero__btn--primary span {
    font-size: 4.267vw;
    line-height: 1;
    color: var(--color-btn-dark);
    background: none;
    -webkit-text-fill-color: currentColor;
  }

  .hero__btn--secondary {
    min-height: 12.8vw;
    background: rgba(0, 10, 24, 0.45);
    transition:
      background-color var(--transition-outline),
      box-shadow var(--transition-outline);
  }

  .hero__btn--secondary::before,
  .hero__btn--secondary::after {
    padding: 0.533vw;
  }

  .hero__btn--secondary .hero__btn-content {
    gap: 2.133vw;
  }

  .hero__btn--secondary .hero__btn-icon {
    width: 3.733vw;
    height: 3.733vw;
    flex-shrink: 0;
  }

  .hero__btn-label {
    font-size: 4.267vw;
    line-height: 1;
  }

  /* ===== Mobile service hero ===== */

  .service-hero {
    min-height: 163.733vw;
    background-color: #000814;
  }

  .service-hero--seo {
    background-image: url('../img/services/seo/hero-mobile.webp');
    background-position: center -8vw;
    background-size: 100% auto;
  }

  .service-hero--seo .service-hero__actions {
    padding-top: 52vw;
  }

  .service-hero--google {
    min-height: 168.8vw;
    background-image: url('../img/services/google/hero-mobile.webp');
    background-position: center top;
    background-size: 100% auto;
  }

  .service-hero--google .service-hero__inner {
    min-height: 168.8vw;
  }

  .service-hero--target {
    min-height: 168.8vw;
    background-image: url('../img/services/target/hero-mobile.webp');
    background-position: center top;
    background-size: 100% auto;
  }

  .service-hero--target .service-hero__inner {
    min-height: 168.8vw;
  }

  .service-hero--smm {
    min-height: 173.333vw;
    background-image: url('../img/services/smm/hero-mobile.webp');
    background-position: center top;
    background-size: 100% auto;
  }

  .service-hero--smm .service-hero__inner {
    min-height: 173.333vw;
  }

  .service-hero--youtube {
    min-height: 161.68vw;
    background-image: url('../img/services/youtube/hero-mobile.webp');
    background-position: center top;
    background-size: 100% auto;
  }

  .service-hero--youtube .service-hero__inner {
    min-height: 161.68vw;
  }

  .service-hero--youtube .service-hero__actions {
    margin-top: auto;
    margin-bottom: 2.133vw;
    padding-top: 0;
  }

  .service-hero--web {
    min-height: 168.8vw;
    background-image: url('../img/services/web/hero-mobile.webp');
    background-position: center top;
    background-size: 100% auto;
  }

  .service-hero--web .service-hero__inner {
    min-height: 168.8vw;
  }

  .service-hero--marketing {
    min-height: 168.8vw;
    background-image: url('../img/services/marketing/hero-mobile.webp');
    background-position: center top;
    background-size: 100% auto;
  }

  .service-hero--marketing .service-hero__inner {
    min-height: 168.8vw;
  }

  .service-hero--web .service-hero__title {
    font-size: 5.867vw;
    line-height: 1.28;
  }

  .service-hero__inner {
    display: flex;
    flex-direction: column;
    min-height: 163.733vw;
    padding: 8vw 5.333vw 6.4vw;
  }

  .service-hero__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    width: 100%;
  }

  .service-hero__breadcrumb {
    display: block;
    margin: 0 0 3.2vw;
    font-size: 3.467vw;
  }

  .service-hero__title {
    width: 100%;
    margin: 0 0 2.133vw;
    font-size: 6.4vw;
    line-height: 1.22;
  }

  .service-hero__title-desktop,
  .service-hero__lead-desktop {
    display: none;
  }

  .service-hero__title-mobile,
  .service-hero__lead-mobile {
    display: inline;
  }

  .service-hero__lead {
    width: 89.333vw;
    max-width: 100%;
    margin: 0;
    font-size: 3.467vw;
    line-height: 1.45;
  }

  body.service-page .service-hero {
    overflow: hidden;
  }

  .service-hero__actions {
    width: 100%;
    margin-top: auto;
    margin-bottom: 2.133vw;
    padding-top: 64vw;
  }

  .service-hero__btn {
    width: 100%;
  }

  /* ===== Mobile service includes ===== */

  .service-includes {
    padding: 5.333vw 5.333vw 10.667vw;
  }

  .service-includes__container {
    width: 100%;
  }

  .service-includes__title {
    font-size: 5.333vw;
  }

  .service-includes__grid {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 2.667vw;
    margin-top: 4.267vw;
  }

  .service-includes__card {
    flex: 0 0 auto;
    width: 100%;
    min-height: 0;
    gap: 4.267vw;
    padding: 3.733vw 5.333vw;
    border-radius: 3.733vw;
    border-width: 0.533vw;
  }

  .service-includes__card-body {
    gap: 2.667vw;
  }

  .service-includes__card-head {
    gap: 2.133vw;
    align-items: center;
  }

  .service-includes__card-icon {
    height: 13.333vw;
    max-width: 15.467vw;
  }

  .service-includes__card-title {
    font-size: 4.267vw;
    line-height: 1.25;
  }

  .service-includes__card-copy {
    gap: 1.067vw;
  }

  .service-includes__card-intro,
  .service-includes__card-list,
  .service-includes__card-note {
    font-size: 3.467vw;
    line-height: 1.45;
  }

  .service-includes__card-list {
    padding-left: 4.267vw;
  }

  .service-includes__card-list li + li {
    margin-top: 0.533vw;
  }

  .service-includes__card--wide {
    flex: 0 0 auto;
    width: 100%;
    min-height: 0;
  }

  .service-includes__card--wide::after {
    background-image: url('../img/services/seo/includes/cro-card-bg-mobile.webp');
    background-position: center;
    background-size: cover;
  }

  .service-includes__card--wide .service-includes__card-body,
  .service-includes__card--wide .service-includes__card-note {
    max-width: 100%;
  }

  .service-includes__card--highlight::after {
    background-image: url('../img/services/target/includes/vazhlyvo-bg-mobile.webp');
    background-position: right center;
    background-size: auto 100%;
  }

  .service-includes__card--highlight .service-includes__card-intro {
    max-width: none;
    white-space: nowrap;
  }

  .service-includes__card-cta {
    align-self: stretch;
    width: 100%;
    height: auto;
    min-height: 12.8vw;
    padding: 3.2vw 4vw;
    border-radius: 8vw;
    font-size: 3.467vw; /* ~13px @375 — в одну строку */
    line-height: 1;
    white-space: nowrap;
  }

  .service-includes__card-cta .hero__btn-content {
    gap: 2.133vw;
  }

  .service-includes__card-cta .hero__btn-label {
    font-size: 3.467vw;
    line-height: 1;
    white-space: nowrap;
  }

  .service-includes__card-cta-icon {
    width: 3.733vw;
    height: 3.733vw;
  }

  /* ===== Mobile service page layout ===== */

  body.service-page .service-includes {
    padding-top: 10.667vw;
    padding-bottom: 10.667vw;
  }

  body.service-page--web .service-includes--studios {
    padding-top: 5.333vw;
  }

  body.service-page .process {
    padding-bottom: 10.667vw;
  }

  body.service-page .cta {
    padding-bottom: 10.667vw;
  }

  body.service-page .cta::after {
    height: 10.667vw;
  }

  body.service-page--marketing .cta {
    padding-bottom: 10.667vw;
  }

  body.service-page--marketing .cta::after {
    display: none;
  }

  /* ===== Mobile trust ===== */

  .trust {
    padding-top: 0;
    padding-bottom: 8vw;
  }

  .trust__title {
    margin-bottom: 4.267vw;
    font-size: 5.333vw;
  }

  .trust__set {
    gap: 3.333vw;
  }

  .trust__pill {
    height: 16vw;
    padding: 0 5.333vw;
    border-radius: 8vw;
  }

  .trust__pill img {
    max-width: 40vw;
    max-height: 8vw;
  }

  /* ===== Mobile services ===== */

  .services {
    padding: 5.333vw var(--container-padding) 10.667vw;
  }

  .services__inner {
    width: 100%;
  }

  .services__title {
    margin-bottom: 4.267vw;
    font-size: 5.333vw;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 2.667vw;
  }

  .services__card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 3.2vw;
    height: auto;
    min-height: 0;
    padding: 4.8vw 4.267vw;
    border: 0.533vw solid rgba(0, 81, 157, 0.35);
    border-radius: 5.333vw;
  }

  .services__card--wide {
    grid-column: auto;
  }

  .services__card--wide .services__card-title {
    font-size: 3.84vw;
  }

  .services__card-arrow {
    position: static;
    align-self: start;
    width: 3.733vw;
    height: 3.733vw;
    margin-top: 0.267vw;
  }

  .services__card-icon-wrap {
    width: 17.067vw;
    height: 17.067vw;
  }

  .services__card-body {
    gap: 1.067vw;
  }

  .services__card-title {
    margin-top: 0;
    font-size: 4.267vw;
    line-height: 1.25;
  }

  .services__card-text {
    margin-top: 0;
    max-width: none;
    font-size: 2.933vw;
    line-height: 1.35;
  }

  .services__card--wide .services__card-text {
    max-width: none;
  }

  /* ===== Mobile system flow ===== */

  .system {
    padding: 0 0 10.667vw;
  }

  .system__inner {
    width: 100%;
  }

  .system__panel {
    grid-template-columns: 1fr;
    gap: 5.333vw;
    min-height: auto;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 5.333vw;
    border-radius: 5.333vw;
    background-size: cover;
    background-position: center;
  }

  .system__intro {
    padding-top: 0;
    text-align: center;
  }

  .system__title {
    max-width: none;
    font-size: 6.4vw;
    line-height: 1.25;
    text-align: center;
  }

  .system__text {
    max-width: none;
    margin-top: 2.667vw;
    font-size: 3.467vw;
    line-height: 1.35;
  }

  .system__text-break {
    display: none;
  }

  .system__flow {
    flex-direction: column;
    align-items: stretch;
    padding-top: 0;
    gap: 0;
  }

  .system__step {
    display: grid;
    grid-template-columns: 10.667vw 1fr;
    align-items: center;
    gap: 2.667vw;
    width: 100%;
    margin-bottom: 2.667vw;
  }

  .system__step:last-child {
    margin-bottom: 0;
  }

  .system__step-icon {
    justify-self: center;
    width: 10.667vw;
    height: 10.667vw;
    max-width: none;
    object-fit: contain;
    object-position: center;
  }

  .system__step-card {
    flex: 1;
    width: auto;
    min-height: auto;
    padding: 3.2vw 4.267vw;
    border-radius: 5.333vw;
  }

  .system__arrow-cell {
    display: grid;
    grid-template-columns: 10.667vw 1fr;
    align-items: center;
    width: 100%;
    margin: 1.067vw 0;
    padding: 0;
  }

  .system__arrow-cell .system__arrow {
    grid-column: 1;
    justify-self: center;
    align-self: center;
    width: 10.667vw;
    height: auto;
    margin: 0;
    transform: rotate(90deg);
  }

  .system__step-label {
    font-size: 4.267vw;
    line-height: 1.25;
  }

  .system__step-text {
    font-size: 3.467vw;
    line-height: 1.35;
  }

  /* ===== Mobile cases ===== */

  .cases {
    padding: 10.667vw var(--container-padding) 10.667vw;
  }

  .cases__inner {
    width: 100%;
  }

  .cases__heading {
    gap: 1.6vw;
  }

  .cases__logo {
    width: 8.533vw;
    height: 8.533vw;
  }

  .cases__title {
    font-size: 5.333vw;
  }

  .cases__toolbar {
    flex-direction: column;
    align-items: stretch;
    margin-top: 5.333vw;
    gap: 0;
  }

  .cases__filters-wrap {
    max-width: none;
  }

  .cases__filters {
    gap: 2.667vw;
  }

  .cases__filter {
    height: 8.533vw;
    padding: 0 3.733vw;
    border-radius: 8vw;
    background: transparent;
  }

  .cases__filter::before,
  .cases__filter::after {
    padding: 0.533vw;
  }

  .cases__filter-icon {
    width: 3.733vw;
    height: 3.733vw;
  }

  .cases__filter span {
    font-size: 3.467vw;
  }

  .cases__toolbar .cases__cta-all {
    display: none;
  }

  .cases__grid {
    grid-template-columns: 1fr;
    gap: 4.267vw;
    margin-top: 5.333vw;
  }

  .cases__card {
    height: 85.333vw;
    border-radius: 5.333vw;
  }

  .cases__card-content {
    align-items: flex-start;
    text-align: left;
    padding: 4.267vw;
  }

  .cases__tags {
    align-self: flex-start;
    margin-bottom: 0;
    gap: 2.133vw;
  }

  .cases__tag {
    height: 6.4vw;
    padding: 0 2.667vw;
    border-radius: 8vw;
    box-shadow: inset 0 0 0 1px #01a9e2;
  }

  .cases__tag span {
    font-size: 2.667vw;
    font-weight: 500;
    color: #01a9e2;
  }

  .cases__brand {
    margin: 5.333vw 0 4.267vw;
    align-self: flex-start;
  }

  .cases__brand--sanlarix {
    max-width: 40vw;
    max-height: 6.4vw;
  }

  .cases__brand--mtb {
    max-width: 34.667vw;
    max-height: 6.4vw;
  }

  .cases__brand--zif {
    max-width: 16vw;
    max-height: 7.467vw;
  }

  .cases__brand--tms {
    max-width: 26.667vw;
    max-height: 6.4vw;
  }

  .cases__card-title {
    flex: 1;
    display: block;
    width: 100%;
    font-size: 4.267vw;
    line-height: 1.3;
    text-align: left;
  }

  .cases__stat {
    margin: 0 0 4.267vw;
    align-self: flex-start;
    font-size: 3.2vw;
    line-height: 1.35;
    text-align: left;
  }

  .cases__stat--right {
    align-self: flex-start;
    text-align: left;
  }

  .cases__more {
    height: 10.667vw;
    margin-top: auto;
    gap: 2.667vw;
    border-radius: 8vw;
    background: rgba(8, 14, 18, 0.35);
    box-shadow: none;
    transition:
      background-color var(--transition-outline),
      box-shadow var(--transition-outline);
  }

  .cases__more::before,
  .cases__more::after {
    padding: 0.533vw;
  }

  .cases__card-content:has(.cases__stat) .cases__more {
    margin-top: 0;
  }

  .cases__more-icon {
    width: 3.733vw;
    height: 3.733vw;
  }

  .cases__more span {
    font-size: 3.467vw;
  }

  .cases__cta-all--bottom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    height: 12.8vw;
    margin-top: 4.267vw;
    gap: 3.2vw;
    border-radius: 8vw;
  }

  .cases__cta-all--bottom .cases__cta-all-icon {
    width: 3.733vw;
    height: 3.733vw;
    margin-right: 0;
  }

  .cases__cta-all--bottom span {
    font-size: 3.467vw;
  }

  /* ===== Mobile partners ===== */

  .partners {
    padding: 10.667vw var(--container-padding) 10.667vw;
  }

  .partners__inner {
    width: 100%;
  }

  .partners__title {
    margin-bottom: 4.267vw;
    font-size: 5.333vw;
  }

  .partners__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.667vw;
    row-gap: 2.667vw;
  }

  .partners__card {
    display: block;
    width: 100%;
    height: auto;
    padding: 0;
    border-radius: 0;
    overflow: visible;
    background: none;
    opacity: 0.6;
  }

  .partners__card--dark {
    background: none;
  }

  .partners__card picture,
  .partners__card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .partners__more {
    width: 100%;
    min-height: 13.333vw;
    border-radius: 2.667vw;
  }

  .partners__more span {
    font-size: 2.667vw;
  }

  /* ===== Mobile process ===== */

  .process {
    padding: 0 0 10.667vw;
  }

  .process__inner {
    width: 100%;
  }

  .process__panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 5.333vw;
    min-height: auto;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 5.333vw;
    border-radius: 5.333vw;
    background-image: url('../img/process/bg-mobile.webp');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
  }

  .process__title {
    grid-column: 1;
    grid-row: auto;
    align-self: start;
    max-width: none;
    font-size: 6.4vw;
  }

  .process__grid {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: 1fr;
    gap: 5.333vw;
  }

  .process__step {
    display: flex;
    align-items: center;
  }

  .process__grid .process__step:nth-child(1) {
    gap: 6.4vw;
  }

  .process__grid .process__step:nth-child(2),
  .process__grid .process__step:nth-child(4) {
    padding-left: 3.733vw;
  }

  .process__grid .process__step:nth-child(2) {
    gap: 3.733vw;
  }

  .process__grid .process__step:nth-child(3) {
    gap: 3.733vw;
  }

  .process__grid .process__step:nth-child(4) {
    gap: 2.667vw;
  }

  .process__num {
    display: block;
    flex-shrink: 0;
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: left center;
  }

  .process__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.533vw;
  }

  .process__grid .process__step:nth-child(1) .process__num {
    width: 13.6vw;
    height: auto;
  }

  .process__grid .process__step:nth-child(2) .process__num {
    width: 16.267vw;
    height: auto;
  }

  .process__grid .process__step:nth-child(3) .process__num {
    width: 16vw;
    height: auto;
  }

  .process__grid .process__step:nth-child(4) .process__num {
    width: 17.333vw;
    height: auto;
  }

  .process__step-title {
    font-size: 5.6vw;
    line-height: 1.25;
  }

  .process__step-text {
    font-size: 2.667vw;
    line-height: 1.35;
  }

  .process__grid .process__step:nth-child(3) .process__content,
  .process__grid .process__step:nth-child(4) .process__content {
    max-width: none;
  }

  /* ===== Mobile why choose ===== */

  .why {
    min-height: auto;
    padding-bottom: 0;
  }

  .why__cover {
    min-height: 100%;
    background-size: cover;
  }

  .why__inner {
    width: 100%;
    padding-top: 0;
  }

  .why__title {
    font-size: 5.333vw;
  }

  .why__grid {
    flex-direction: column;
    flex-wrap: nowrap;
    min-height: auto;
    margin-top: 4.267vw;
    gap: 2.667vw;
  }

  .why__card {
    flex: 0 0 auto;
    width: 100%;
    gap: 2.667vw;
    padding: 3.733vw 5.333vw;
    border-radius: 3.733vw;
  }

  .why__card-head {
    gap: 2.133vw;
  }

  .why__card-icon {
    width: 5.867vw;
    height: 5.867vw;
  }

  .why__card-label {
    font-size: 4.267vw;
  }

  .why__card-text {
    font-size: 3.467vw;
  }

  .why__card-text:has(.why__card-text-mobile) .why__card-text-desktop {
    display: none;
  }

  .why__card-text-mobile {
    display: none;
  }

  .why__card-text:has(.why__card-text-mobile) .why__card-text-mobile {
    display: block;
  }

  /* ===== Mobile reviews ===== */

  .reviews {
    min-height: auto;
    padding-top: 10.667vw;
    padding-bottom: 10.667vw;
  }

  .reviews__inner {
    width: 100%;
  }

  .reviews__title {
    font-size: 5.333vw;
  }

  .reviews__slider {
    margin-top: 4.267vw;
  }

  .reviews__track {
    gap: 2.667vw;
    min-height: 74.667vw;
    padding: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--container-padding);
    touch-action: pan-x;
  }

  .reviews__track::before,
  .reviews__track::after {
    content: '';
    flex: 0 0 var(--container-padding);
    width: var(--container-padding);
    height: 1px;
  }

  .reviews__fade {
    display: none;
  }

  .reviews__card {
    border-radius: 5.333vw;
    box-shadow: none;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .reviews__card--video {
    width: 56vw;
    height: 74.667vw;
  }

  .reviews__card--video .reviews__video-bg {
    bottom: 3.2vw;
    background-position: center top;
  }

  .reviews__card--text {
    display: flex;
    flex-direction: column;
    width: 74.667vw;
    height: 74.667vw;
    padding: 4.267vw;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .reviews__text-head {
    gap: 3.2vw;
  }

  .reviews__avatar {
    width: 10.667vw;
    height: 10.667vw;
  }

  .reviews__text-body {
    margin-top: 4.267vw;
    font-size: 3.467vw;
    line-height: 1.35;
  }

  .reviews__video-meta {
    padding: 4.267vw;
  }

  .reviews__name {
    font-size: 3.467vw;
  }

  .reviews__role {
    margin-top: 1.067vw;
    font-size: 2.667vw;
  }

  .reviews__play {
    width: 13.333vw;
    height: 13.333vw;
  }

  .reviews__play-icon {
    width: 4.533vw;
    height: 4.533vw;
  }

  .reviews__mute {
    right: 4.267vw;
    bottom: 4.267vw;
    width: 10.667vw;
    height: 10.667vw;
  }

  .reviews__mute-icon {
    width: 4.533vw;
    height: 4.533vw;
  }

  /* ===== Mobile about ===== */

  .about-hero {
    overflow: visible;
  }

  .about-hero__inner {
    width: 100%;
    min-height: 0;
    overflow: visible;
    padding: 5.333vw 0 10.667vw;
  }

  .about-hero__breadcrumb {
    margin-bottom: 5.333vw;
    font-size: 3.2vw;
  }

  .about-hero__layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-left: 0;
    min-height: 0;
    overflow: visible;
  }

  /* title → lead → photo → copy → stats */
  .about-hero__content {
    display: contents;
  }

  .about-hero__title {
    order: 1;
    margin-bottom: 4.267vw;
    font-size: 6.4vw; /* 24px @375 */
  }

  .about-hero__lead {
    order: 2;
    margin-bottom: 5.333vw;
    max-width: none;
    font-size: 4.267vw; /* 16px @375 */
  }

  .about-hero__visual {
    order: 3;
    position: relative;
    flex: none;
    width: 92.267vw; /* 346px @375 */
    max-width: none;
    margin: 0 0 5.333vw;
    margin-left: calc(-1 * var(--container-padding));
    overflow: visible;
  }

  .about-hero__visual picture,
  .about-hero__visual-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
  }

  .about-hero__copy {
    order: 4;
    gap: 4.267vw;
    max-width: none;
    margin-bottom: 8vw;
  }

  .about-hero__copy p {
    font-size: 3.467vw; /* 13px @375 */
  }

  .about-hero__stats {
    order: 5;
    flex-direction: column;
    gap: 5.333vw;
  }

  .about-hero__stat {
    gap: 6.4vw; /* 24px @375 между стрелкой и текстом */
  }

  .about-hero__stat-arrow {
    width: 16vw; /* 60px @375 */
    height: 16vw;
  }

  .about-hero__stat-value {
    font-size: 12.8vw; /* 48px @375 */
  }

  .about-hero__stat-label {
    font-size: 3.467vw; /* 13px @375 */
  }

  .about-clients {
    padding: 0 var(--container-padding) 10.667vw;
  }

  .about-clients__container {
    width: 100%;
  }

  .about-clients__panel {
    height: 86.667vw; /* 325px @375 */
    min-height: 86.667vw;
    border-radius: 5.333vw; /* 20px */
  }

  .about-clients__deco {
    background-image: var(--about-clients-deco-mobile);
    background-size: 100% 100%;
    background-position: center bottom;
    opacity: 1;
  }

  .about-clients__content {
    width: 100%;
    height: 100%;
    padding: 5.867vw; /* 22px */
    gap: 8vw; /* 30px */
  }

  .about-clients__content p {
    font-size: 3.467vw; /* 13px @375 */
    line-height: 1.45;
  }

  .about-approach {
    padding: 0 var(--container-padding) 10.667vw;
  }

  .about-approach__container {
    width: 100%;
  }

  .about-approach__title {
    font-size: 6.4vw; /* 24px */
  }

  .about-approach__grid {
    flex-direction: column;
    gap: 2.667vw;
    margin-top: 5.333vw;
  }

  .about-approach__card {
    flex: none;
    width: 100%;
    padding: 5.867vw; /* 22px */
    border-radius: 5.333vw; /* 20px */
    gap: 2.667vw;
  }

  .about-approach__card-head {
    gap: 2.133vw;
  }

  .about-approach__card-icon {
    width: 5.867vw; /* 22px */
    height: 5.867vw;
  }

  .about-approach__card-label {
    font-size: 3.733vw; /* 14px */
  }

  .about-approach__card-text {
    font-size: 3.467vw; /* 13px */
  }

  .about-approach__wide {
    min-height: 0;
    margin-top: 2.667vw;
    padding: 5.867vw; /* 22px — без desktop 390px */
    border-radius: 5.333vw; /* 20px */
    background:
      var(--about-approach-wide-mobile) center / 100% 100% no-repeat,
      linear-gradient(180deg, #041622 0%, #040019 100%);
    align-items: flex-start;
  }

  .about-approach__wide-content {
    max-width: none;
  }

  .about-approach__wide-title {
    margin-bottom: 3.2vw;
    font-size: 4.8vw;
  }

  .about-approach__wide-text {
    gap: 2.667vw;
  }

  .about-approach__wide-text p {
    font-size: 3.467vw;
  }

  .about-team {
    padding: 0 var(--container-padding) 10.667vw;
  }

  .about-team__container {
    width: 100%;
  }

  .about-team__title {
    font-size: 6.4vw; /* 24px */
  }

  .about-team__slider {
    width: 100vw;
    max-width: none;
    margin: 8vw 0 0;
    margin-left: calc(50% - 50vw);
  }

  .about-team__track {
    display: flex;
    gap: 2.667vw; /* 10px */
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--container-padding);
    touch-action: pan-x;
    scrollbar-width: none;
  }

  .about-team__track::-webkit-scrollbar {
    display: none;
  }

  .about-team__track::before,
  .about-team__track::after {
    content: '';
    flex: 0 0 var(--container-padding);
    width: var(--container-padding);
    height: 1px;
  }

  .about-team__member {
    flex: 0 0 calc((100vw - (2 * var(--container-padding)) - (2 * 2.667vw)) / 3);
    width: calc((100vw - (2 * var(--container-padding)) - (2 * 2.667vw)) / 3);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .about-team__name {
    margin-top: 3.2vw; /* 12px */
    font-size: 4.267vw; /* 16px */
  }

  .about-team__role {
    margin-top: 1.067vw; /* 4px */
    font-size: 3.467vw; /* 13px */
  }

  .about-partner {
    padding: 0 var(--container-padding) 10.667vw;
  }

  .about-partner__container {
    width: 100%;
  }

  .about-partner__title {
    font-size: 6.4vw; /* 24px */
  }

  .about-partner__body {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 6.4vw; /* 24px */
    padding-left: 0;
  }

  .about-partner__visual--desktop {
    display: none;
  }

  .about-partner__visual--mobile {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: 5.333vw; /* 20px */
    padding: 0 4.267vw 5.333vw; /* 16 / 20 */
    box-sizing: border-box;
  }

  .about-partner__visual--mobile img {
    width: 100%;
    height: auto;
  }

  .about-partner__card {
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;
    border-radius: 5.333vw; /* 20px */
  }

  .about-partner__card-content {
    flex: 0 0 auto;
    min-height: auto;
    padding: 5.333vw 4.267vw 5.333vw; /* 20 / 16 / 20 */
  }

  .about-partner__lead-desktop {
    display: none;
  }

  .about-partner__lead-mobile {
    display: block;
  }

  .about-partner__lead {
    max-width: none;
    font-size: 4.267vw; /* 16px */
    line-height: 1.4;
  }

  .about-partner__details {
    margin-top: 4.267vw; /* 16px */
  }

  .about-partner__subtitle {
    font-size: 3.467vw; /* 13px */
  }

  .about-partner__list {
    margin-top: 3.2vw; /* 12px */
    gap: 3.2vw; /* 12px */
  }

  .about-partner__list li {
    padding-left: 3.733vw; /* 14px */
    font-size: 3.467vw; /* 13px */
  }

  .about-partner__list li::before {
    top: 2.4vw;
    width: 1.067vw; /* 4px */
    height: 1.067vw;
  }

  .blog-archive,
  .blog-single {
    padding: 0 var(--container-padding) 10.667vw;
  }

  .blog-page__container {
    width: 100%;
    padding-top: 4.267vw; /* 16px */
  }

  .blog-page__breadcrumb {
    font-size: 3.467vw; /* 13px */
    line-height: 1.2;
  }

  .blog-page__title {
    margin-top: 4.267vw; /* 16px */
    font-size: 6.4vw; /* 24px */
    line-height: 1.2;
  }

  .blog-page__lead {
    max-width: none;
    margin-top: 4.267vw; /* 16px */
    font-size: 3.467vw; /* 13px */
    line-height: 1.45;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    row-gap: 5.333vw; /* 20px */
    margin-top: 6.4vw; /* 24px */
  }

  .blog-card__link {
    flex-direction: column;
    align-items: stretch;
    gap: 4.267vw; /* 16px */
    height: auto;
    min-height: 0;
    padding: 4.267vw; /* 16px */
    border-radius: 5.333vw; /* 20px */
  }

  .blog-card__media {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 280 / 240;
    border-radius: 5.333vw; /* 20px */
  }

  .blog-card__body {
    gap: 4.267vw; /* 16px */
    padding: 0;
  }

  .blog-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.667vw; /* 10px */
  }

  .blog-card__title {
    flex: 1;
    min-width: 0;
    font-size: 4.267vw; /* 16px */
    line-height: 1.25;
  }

  .blog-card__excerpt {
    font-size: 3.467vw; /* 13px */
    line-height: 1.45;
  }

  .blog-card__arrow {
    position: static;
    width: 3.733vw; /* 14px */
    height: 3.733vw;
    margin-top: 0.533vw; /* 2px */
  }

  .blog-pagination {
    gap: 6.4vw;
    margin-top: 8vw;
  }

  .blog-pagination__control {
    width: 10.667vw;
    height: 10.667vw;
  }

  .blog-pagination__icon {
    width: 10.667vw;
    height: 10.667vw;
  }

  .blog-pagination__pages {
    gap: 4vw;
  }

  .blog-pagination__page,
  .blog-pagination__dots {
    font-size: 4.267vw;
  }

  .blog-single-hero__breadcrumb {
    margin-bottom: 4.267vw; /* 16px */
  }

  .blog-single-hero__layout {
    display: flex;
    flex-direction: column;
    gap: 4.267vw; /* 16px */
  }

  .blog-single-hero__content {
    display: contents;
  }

  .blog-single-hero__title {
    order: 1;
    font-size: 6.4vw; /* 24px */
  }

  .blog-single-hero__media {
    order: 2;
    border-radius: 5.333vw; /* 20px */
  }

  .blog-single-hero__lead {
    order: 3;
    margin-top: 0;
    font-size: 3.467vw; /* 13px */
  }

  .blog-single__article-wrap {
    position: relative;
    flex-direction: column;
    margin-top: 6.4vw; /* 24px */
    padding-right: 0;
  }

  .blog-single__content {
    width: 100%;
    max-width: none;
    font-size: 3.467vw; /* 13px */
  }

  .blog-single__content h2 {
    margin: 6.4vw 0 4.267vw;
    font-size: 4.267vw; /* 16px */
  }

  .blog-single__content h2:first-child {
    margin-top: 0;
  }

  .blog-single__content p {
    margin-bottom: 4.267vw;
  }

  .back-to-top {
    right: 4.267vw;
    bottom: calc(5.333vw + env(safe-area-inset-bottom, 0px));
    width: 10.667vw;
    height: 10.667vw;
  }

  .back-to-top__ring {
    width: 10.667vw;
    height: 10.667vw;
  }

  .back-to-top__chevron {
    width: 2.933vw;
  }

  .blog-related {
    margin-top: 8vw;
  }

  .blog-related__title {
    margin-bottom: 4.267vw;
    font-size: 4.267vw; /* 16px */
  }

  .blog-related__grid {
    display: flex;
    gap: 5.333vw; /* 20px */
    margin-right: calc(-1 * var(--container-padding));
    padding-right: var(--container-padding);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--container-padding);
    touch-action: pan-x;
    scrollbar-width: none;
  }

  .blog-related__grid::-webkit-scrollbar {
    display: none;
  }

  .blog-related-card {
    flex: 0 0 74.667vw; /* 280px */
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .blog-related-card__link {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 0;
    padding: 4.267vw;
    border-radius: 5.333vw;
    gap: 0;
  }

  .blog-related-card__media {
    position: relative;
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    margin-bottom: 4.267vw;
    border-radius: 2.667vw;
    overflow: hidden;
  }

  .blog-related-card__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
  }

  .blog-related-card__title {
    margin-top: 0;
    padding-top: 0;
    font-size: 4.267vw; /* 16px */
  }

  .cases-archive {
    padding: 0 var(--container-padding) 40px;
  }

  .cases-page__container {
    width: 100%;
    max-width: none;
    padding-top: 16px;
  }

  .cases-page__content {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .cases-page__breadcrumb {
    font-size: 13px;
  }

  .cases-page__heading {
    gap: 6px;
    margin-top: 16px;
  }

  .cases-page__star {
    width: 32px;
    height: 32px;
  }

  .cases-page__title {
    font-size: 24px;
  }

  .cases-page__lead {
    margin-top: 16px;
    max-width: none;
    font-size: 13px;
  }

  .cases-page__filters {
    margin-top: 16px;
    gap: 12px;
  }

  .cases-page__filter-panel {
    max-width: calc(100vw - (var(--container-padding) * 2));
  }

  .cases-page__filter-panel.is-open {
    margin-top: 12px;
  }

  .cases-page__filter-panel-inner {
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
  }

  .cases-page__filter-panel-fade {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 14, 18, 0) 0%, #080e12 100%);
    pointer-events: none;
  }

  .cases-page__filter-chip.cases__filter {
    height: 32px;
    padding: 0 14px;
    border-radius: 30px;
  }

  .cases-page__filter-chip.cases__filter span {
    font-size: 13px;
  }

  .cases-page__filter-chip-icon {
    width: 14px;
    height: 14px;
  }

  .cases-page__filter.cases__filter {
    height: 32px;
    padding: 0 14px;
    border-radius: 30px;
  }

  .cases-page__filter-label {
    font-size: 13px;
  }

  .cases-page__filter-chevron,
  .cases-page__filter-icon {
    width: 14px;
    height: 14px;
  }

  .cases-page__list {
    gap: 16px;
    margin-top: 20px;
  }

  .case-single-hero {
    min-height: 0;
    aspect-ratio: 750 / 608;
  }

  .case-single-hero__bg img {
    object-fit: cover;
    object-position: center center;
  }

  .case-single-hero__inner {
    width: 100%;
    max-width: none;
    padding: 16px var(--container-padding) 24px;
    justify-content: flex-start;
  }

  .case-single-hero__breadcrumb {
    font-size: 12px;
  }

  .case-single-hero__content {
    max-width: none;
    width: 100%;
    margin-top: 16px;
    margin-bottom: 0;
    padding-top: 0;
  }

  .case-single-hero__brand {
    order: 2;
    max-width: 140px;
    max-height: 20px;
    margin-top: 20px;
  }

  .case-single-hero__brand--sanlarix {
    max-width: 140px;
    max-height: 20px;
  }

  .case-single-hero__brand--zif {
    max-width: 72px;
    max-height: 30px;
  }

  .case-single-hero__brand--tms {
    max-width: 140px;
    max-height: 36px;
  }

  .case-single-hero__brand--mtb {
    max-width: 140px;
    max-height: 22px;
  }

  .case-single-hero__brand--bus {
    max-width: 180px;
    max-height: 32px;
  }

  .case-single-hero__brand--nasin {
    max-width: 160px;
    max-height: 34px;
  }

  .case-single-hero__title {
    order: 3;
    margin-top: 12px;
    max-width: none;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .case-single-hero__title-line {
    white-space: normal;
  }

  .case-single-hero__tags {
    order: 1;
    margin-top: 0;
    gap: 8px;
  }

  .case-single-hero__tag {
    height: 28px;
    padding: 0 12px;
    background: rgba(8, 14, 18, 0.55);
  }

  .case-single-hero__tag span {
    font-size: 12px;
  }

  .case-single-body {
    padding: 22px var(--container-padding) 60px;
  }

  .case-single-intro + .case-single-shot {
    margin-top: 24px;
  }

  .case-single-intro__title {
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 16px;
    font-size: 20px;
  }

  .case-single-intro__emoji {
    font-size: 20px;
  }

  .case-single-intro__emoji[src] {
    width: 20px;
    height: 20px;
  }

  .case-single-intro__text {
    font-size: 13px;
  }

  .case-single-intro__text p + p {
    margin-top: 12px;
  }

  .case-single-shot + .case-single-detail {
    margin-top: 24px;
  }

  .case-single-detail + .case-single-detail {
    margin-top: 24px;
  }

  .case-single-detail__header {
    min-height: 48px;
    padding: 0 16px;
    border-radius: 10px;
  }

  .case-single-detail__header-title {
    font-size: 16px;
  }

  .case-single-detail__content {
    gap: 24px;
    margin-top: 24px;
  }

  .case-single-detail__group {
    gap: 16px;
  }

  .case-single-detail__heading {
    align-items: flex-start;
    gap: 6px;
    font-size: 16px;
  }

  .case-single-detail__heading-emoji {
    font-size: 16px;
  }

  .case-single-detail__text {
    font-size: 13px;
  }

  .case-single-detail__columns {
    flex-direction: column;
    gap: 16px;
  }

  .case-single-detail__columns .case-single-detail__text:first-child {
    max-width: none;
  }

  .case-single-detail__shot {
    margin-top: 16px;
  }

  .case-single-detail__shot img {
    border-radius: 12px;
  }

  .case-single-detail__caption {
    margin-top: 12px;
    font-size: 13px;
  }

  .case-single-detail__inline-shot img {
    border-radius: 12px;
  }

  .case-single-detail__shots-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .case-single-detail__scroll-shot-track {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    border-radius: 12px;
    cursor: grab;
  }

  .case-single-detail__scroll-shot-track::-webkit-scrollbar {
    display: none;
  }

  .case-single-detail__scroll-shot-track img {
    width: auto;
    max-width: none;
    height: 210px;
  }

  .case-single-shot img {
    border-radius: 16px;
  }

  .cases-archive-card {
    position: relative;
    display: block;
    min-height: 0;
    height: 320px;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(8, 14, 18, 0.5);
  }

  .cases-archive-card__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 0;
  }

  .cases-archive-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.45) 52%,
      rgba(0, 0, 0, 0.82) 100%
    );
    pointer-events: none;
  }

  .cases-archive-card__media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }

  .cases-archive-card__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    min-height: 0;
    padding: 16px;
  }

  .cases-archive-card__body .cases__tags {
    gap: 8px;
    margin-bottom: 0;
  }

  .cases-archive-card__body .cases__tag {
    height: 28px;
    padding: 0 12px;
    border-radius: 30px;
    box-shadow: inset 0 0 0 1px #01a9e2;
  }

  .cases-archive-card__body .cases__tag span {
    font-size: 12px;
    font-weight: 500;
    color: #01a9e2;
  }

  .cases-archive-card__body .cases__brand,
  .cases-archive-card__brand-text {
    margin-top: 20px;
    margin-bottom: 16px;
  }

  .cases-archive-card__brand-text {
    font-size: 16px;
  }

  .cases-archive-card__body .cases__brand--sanlarix {
    max-width: 150px;
    max-height: 24px;
  }

  .cases-archive-card__body .cases__brand--mtb {
    max-width: 130px;
    max-height: 24px;
  }

  .cases-archive-card__body .cases__brand--zif {
    max-width: 60px;
    max-height: 28px;
  }

  .cases-archive-card__body .cases__brand--tms {
    max-width: 100px;
    max-height: 24px;
  }

  .cases-archive-card__body .cases__brand--nasin {
    max-width: 130px;
    max-height: 20px;
  }

  .cases-archive-card__body .cases__brand--bus {
    max-width: 180px;
    max-height: 32px;
    width: auto;
  }

  .cases-archive-card__title {
    flex: 1;
    width: 100%;
    font-size: 16px;
    line-height: 1.3;
    text-align: left;
  }

  .cases-archive-card__body .cases__stat {
    margin: 0 0 16px;
    align-self: flex-start;
    font-size: 12px;
    line-height: 1.35;
    text-align: left;
  }

  .cases-archive-card__more {
    width: 100%;
    height: 40px;
    margin-top: auto;
    border-radius: 30px;
    background: rgba(8, 14, 18, 0.35);
    box-shadow: none;
  }

  .cases-archive-card__more.cases__more::before,
  .cases-archive-card__more.cases__more::after {
    padding: 2px;
  }

  .cases-archive-card__body:has(.cases__stat) .cases-archive-card__more {
    margin-top: 0;
  }

  .cases-archive-card__more .cases__more-icon {
    width: 14px;
    height: 14px;
  }

  .cases-archive-card__more .cases__more span {
    font-size: 13px;
  }

  .cases-page__pagination {
    margin-top: 30px;
  }

  .about-page .cta {
    padding-bottom: 10.667vw;
  }

  /* ===== Mobile CTA ===== */

  .cta {
    padding: 0 var(--container-padding) 0;
  }

  .cta__container {
    width: 100%;
  }

  .cta__panel {
    min-height: auto;
    border-radius: 4.267vw;
    background-image: url('../img/cta/bg-mobile.webp');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: none;
  }

  .cta__content {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 5.333vw;
  }

  .cta__title {
    max-width: 58.667vw;
    white-space: normal;
    font-size: 6.4vw;
    line-height: 1.22;
  }

  .cta__title-desktop,
  .cta__subtitle-desktop {
    display: none;
  }

  .cta__title-mobile,
  .cta__subtitle-mobile {
    display: inline;
  }

  .cta__title-break {
    display: inline;
  }

  .cta__subtitle-break {
    display: inline;
  }

  .cta__subtitle {
    max-width: 58.667vw;
    margin-top: 2.667vw;
    font-size: 3.467vw;
    line-height: 1.35;
  }

  .cta__form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2.667vw;
    width: 100%;
    margin-top: 5.333vw;
  }

  .cta__field:nth-of-type(1),
  .cta__field:nth-of-type(2),
  .cta__submit,
  .cta__note {
    grid-column: auto;
    grid-row: auto;
  }

  .cta__field,
  .cta__submit {
    flex: none;
    width: 100%;
  }

  .cta__note {
    order: 3;
    margin: 0;
  }

  .cta__submit {
    order: 4;
  }

  .cta__input {
    height: 12.8vw;
    padding: 0 4.267vw;
    border: 0.267vw solid rgba(76, 169, 215, 0.45);
    border-radius: 8vw;
    background: rgba(8, 14, 18, 0.72);
    font-size: 3.467vw;
  }

  .cta__field .form-phone-error {
    margin-top: 1.6vw;
    font-size: 2.933vw;
  }

  .cta__submit {
    width: 100%;
    min-height: 12.8vw;
    border-radius: 8vw;
  }

  .cta__submit span {
    font-size: 4.267vw;
  }

  .cta__note {
    justify-content: center;
    gap: 1.6vw;
    margin: 3.733vw 0 0;
    font-size: 2.667vw;
    color: #dddddd;
  }

  .cta__note-icon {
    width: 2.933vw;
    height: 2.133vw;
  }

  /* ===== Mobile FAQ ===== */

  .faq {
    padding: 10.667vw var(--container-padding) 10.667vw;
  }

  .faq__container {
    width: 100%;
  }

  .faq__title {
    font-size: 6.4vw;
  }

  .faq__layout {
    grid-template-columns: 1fr;
    gap: 2.667vw;
    margin-top: 4.267vw;
  }

  .faq__col {
    width: 100%;
    gap: 2.667vw;
  }

  .faq__item {
    border-radius: 2.667vw;
  }

  .faq__trigger {
    min-height: auto;
    padding: 3.733vw 5.333vw;
  }

  .faq__question {
    font-size: 3.467vw;
  }

  .faq__icon {
    width: 3.733vw;
    height: 3.733vw;
  }

  .faq__icon-line--h {
    width: 3.733vw;
    height: 0.267vw;
  }

  .faq__icon-line--v {
    width: 0.267vw;
    height: 3.733vw;
  }

  .faq__panel-inner {
    padding: 0 4.267vw;
    font-size: 3.467vw;
  }

  .faq__item--open .faq__panel-inner {
    padding: 4.267vw;
  }

  .faq__answer {
    font-size: 3.467vw;
  }

  /* ===== Mobile footer ===== */

  .site-footer {
    min-height: auto;
    background: #05080b;
  }

  .site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 21.333vw;
    background: linear-gradient(180deg, #05080b 0%, rgba(5, 8, 11, 0.72) 55%, transparent 100%);
    z-index: 1;
    pointer-events: none;
  }

  .site-footer__bg {
    background:
      linear-gradient(180deg, #05080b 0%, rgba(5, 8, 11, 0.55) 18%, rgba(5, 8, 11, 0) 34%),
      radial-gradient(ellipse 120% 90% at 72% 108%, rgba(0, 81, 157, 0.38) 0%, transparent 58%),
      radial-gradient(ellipse 90% 70% at 18% 105%, rgba(0, 27, 51, 0.72) 0%, transparent 52%),
      linear-gradient(180deg, #05080b 0%, #020814 52%, #001428 100%);
  }

  .site-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    gap: 8.533vw;
    max-width: none;
    min-height: auto;
    padding: 10.667vw 5.333vw 13.333vw;
    text-align: center;
  }

  .site-footer__brand {
    align-items: center;
    gap: 3.733vw;
  }

  .site-footer__logo,
  .site-footer__logo img {
    width: 39.2vw;
    height: auto;
  }

  .site-footer__tagline {
    width: auto;
    max-width: 72vw;
    font-size: 3.467vw;
    line-height: 1.35;
  }

  .site-footer__tagline-break {
    display: inline;
  }

  .site-footer__nav,
  .site-footer__services {
    display: none;
  }

  .site-footer__contacts {
    align-items: center;
    gap: 3.733vw;
  }

  .site-footer__social {
    justify-content: center;
    gap: 2.133vw;
  }

  .site-footer__social-icon {
    width: 5.333vw;
    height: 5.333vw;
  }

  .site-footer__link {
    font-size: 4.267vw;
    line-height: 1.25;
  }

  .site-footer__lang {
    margin-top: 2.133vw;
    font-size: 2.667vw;
    line-height: 1;
    opacity: 0.55;
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
  }
}

/* 404 */
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 88px);
  padding: 80px var(--container-padding) 100px;
  background: #080e12;
}

.error-page__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.error-page__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 492px);
}

.error-page__badge img {
  display: block;
  width: 100%;
  height: auto;
}

.error-page__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 28px;
}

.error-page__title {
  margin: 0;
  max-width: 680px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.35;
  color: #01a9e2;
}

.error-page__text {
  margin: 14px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(221, 221, 221, 0.55);
  text-transform: lowercase;
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.error-page__actions-row {
  display: contents;
}

.error-page__link {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border: none;
  border-radius: 40px;
  background: transparent;
  box-shadow: var(--shadow-btn);
  text-decoration: none;
  transition:
    background-color var(--transition-outline),
    box-shadow var(--transition-outline);
}

.error-page__link-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  filter: var(--outline-icon-filter);
  transition: filter var(--transition-outline);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.error-page__link span {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.error-page__link span::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--outline-hover-border);
  -webkit-text-fill-color: var(--outline-hover-border);
  background: none;
  opacity: 0;
  transition: opacity var(--transition-outline);
  pointer-events: none;
}

.error-page__link:active {
  background-color: transparent;
  box-shadow: none;
}

.error-page__link:active::before {
  opacity: 1;
}

.error-page__link:active::after,
.error-page__link:active span::after {
  opacity: 0;
}

.error-page__link:active .error-page__link-icon {
  filter: var(--outline-icon-filter);
}

@media (max-width: 1024px) {
  .error-page {
    min-height: 0;
    padding: 44px var(--container-padding);
  }

  .error-page__badge {
    width: min(100%, 280px);
  }

  .error-page__content {
    margin-top: 4px;
  }

  .error-page__title {
    max-width: 320px;
    font-size: 24px;
    line-height: 1.4;
  }

  .error-page__text {
    margin-top: 12px;
    font-size: 13px;
  }

  .error-page__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: max-content;
    max-width: 100%;
    margin-top: 28px;
  }

  .error-page__actions-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .error-page__actions-row--offset {
    padding-left: 0;
  }

  .error-page__link {
    height: 40px;
    padding: 0 16px;
  }

  .error-page__link span {
    font-size: 12px;
  }
}

/* ===== Consult popup ===== */

body.consult-popup-open {
  overflow: hidden;
}

.consult-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.consult-popup:not([hidden]) {
  display: flex;
}

.consult-popup.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.consult-popup.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.consult-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 12, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.consult-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(938px, 100%);
  transform: translateY(18px) scale(0.97);
  opacity: 0;
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease;
}

.consult-popup.is-visible .consult-popup__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.consult-popup.is-leaving .consult-popup__dialog {
  transform: translateY(10px) scale(0.98);
  opacity: 0;
}

.consult-popup__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  width: 100%;
  height: 486px;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 95% 90% at 50% 50%, #080e12 52%, rgba(0, 41, 120, 0.28) 100%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.consult-popup__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, #080e12 76%, #0029f9 100%);
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.consult-popup__layout {
  display: contents;
}

.consult-popup.is-success .consult-popup__panel {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  min-height: 360px;
  background-color: #080e12;
  background-image: url('../img/consult/bg-thanks.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.consult-popup.is-success .consult-popup__panel::before {
  display: none;
}

.consult-popup.is-success .consult-popup__layout {
  display: none;
}

.consult-popup__success {
  position: relative;
  z-index: 1;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 72px 48px 56px;
  text-align: center;
}

.consult-popup.is-success .consult-popup__success {
  display: flex;
}

.consult-popup__success-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #80999e;
  text-transform: uppercase;
}

.consult-popup__success-text {
  margin: 18px 0 0;
  max-width: 420px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #01a9e2;
}

.consult-popup__success-btn {
  width: 100%;
  max-width: 296px;
  min-height: 50px;
  margin-top: 36px;
  border-radius: 30px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

.consult-popup__success-btn span {
  font-size: 16px;
}

.consult-popup__visual,
.consult-popup__form,
.consult-popup__close {
  position: relative;
  z-index: 1;
}

.consult-popup__close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.consult-popup__close-icon {
  display: block;
  width: 40px;
  height: 40px;
}

.consult-popup__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 70px 24px 0 48px;
  overflow: hidden;
}

.consult-popup__title {
  position: relative;
  z-index: 2;
  margin: 0 0 5px;
  max-width: 353px;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
  color: #80999e;
  text-align: center;
  flex-shrink: 0;
}

.consult-popup__media {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 1 1 auto;
  width: 332px;
  max-width: 100%;
  min-height: 0;
  margin-top: 0;
  pointer-events: none;
}

.consult-popup__media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.consult-popup__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  min-width: 0;
  padding: 72px 70px 56px 24px;
}

.consult-popup__form-title {
  margin: 0 0 8px;
  max-width: 296px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.consult-popup__field {
  display: block;
  width: 100%;
  max-width: 296px;
}

.consult-popup__input {
  width: 100%;
  height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(76, 169, 215, 0.45);
  border-radius: 100px;
  background: rgba(8, 14, 18, 0.72);
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  color: #dddddd;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.consult-popup__input::placeholder {
  color: #80999e;
}

.consult-popup__input:focus {
  border-color: rgba(1, 169, 226, 0.7);
  box-shadow: 0 0 0 1px rgba(1, 169, 226, 0.2);
}

.consult-popup__input.is-invalid,
.cta__input.is-invalid {
  border-color: rgba(255, 107, 107, 0.85);
}

.form-phone-error {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  color: #ff8f8f;
}

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

.cta__field .form-phone-error {
  margin-top: 0.417vw;
  font-size: 0.625vw;
}

.consult-popup__note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  max-width: 296px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  color: #ffe6c8;
}

.consult-popup__note-icon {
  width: 11px;
  height: 8px;
  flex-shrink: 0;
}

.consult-popup__submit {
  width: 100%;
  max-width: 296px;
  min-height: 50px;
  border-radius: 30px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.consult-popup__submit span {
  font-size: 16px;
}

@media (max-width: 1024px) {
  .consult-popup {
    padding: 4.267vw;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
  }

  .consult-popup__dialog {
    width: 89.333vw; /* 335px @375 */
    max-width: 335px;
    margin: 0;
  }

  .consult-popup__panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 114.667vw; /* 430px @375 */
    min-height: 114.667vw;
    max-height: 430px;
    overflow: hidden;
    border-radius: 5.333vw;
    background-color: #080e12;
    background-image: url('../img/consult/bg-mobile.webp');
    background-position: center top;
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }

  .consult-popup__panel::before {
    display: none;
  }

  .consult-popup__layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .consult-popup__visual {
    flex-shrink: 0;
    padding: 20.8vw 8.533vw 0; /* 78px 32px @375 */
    min-height: 0;
  }

  .consult-popup__title {
    max-width: none;
    margin: 0;
    font-size: 5.867vw; /* 22px @375 */
    font-weight: 600;
    line-height: 1.2;
    color: #dddddd;
    text-align: center;
  }

  .consult-popup__media {
    display: none;
  }

  .consult-popup__form {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 3.2vw; /* 12px @375 */
    min-height: 0;
    margin-top: 2.667vw;
    padding: 0 10.667vw 8.533vw; /* 40px 32px @375 */
    justify-content: flex-start;
  }

  .consult-popup__form-title {
    margin: 0 0 1.067vw;
    max-width: none;
    font-size: 4.267vw; /* 16px @375 */
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
  }

  .consult-popup__field,
  .consult-popup__note,
  .consult-popup__submit {
    max-width: none;
    width: 100%;
  }

  .consult-popup__input {
    height: 11.733vw; /* 44px @375 */
    max-height: 44px;
    padding: 0 5.333vw;
    font-size: 3.467vw; /* 13px @375 */
  }

  .consult-popup__note {
    justify-content: flex-start;
    margin-top: 0.533vw;
    font-size: 3.2vw; /* 12px @375 */
  }

  .consult-popup__submit {
    min-height: 11.733vw;
    max-height: 44px;
    margin-top: auto;
  }

  .consult-popup__submit span {
    font-size: 3.733vw; /* 14px @375 */
  }

  .consult-popup.is-success .consult-popup__panel {
    height: 114.667vw;
    min-height: 114.667vw;
    max-height: 430px;
    background-image: url('../img/consult/bg-thanks.webp');
    background-size: cover;
  }

  .consult-popup__success {
    padding: 19.2vw 10.667vw 10.667vw;
  }

  .consult-popup__success-title {
    font-size: 4.267vw;
  }

  .consult-popup__success-text {
    margin-top: 3.733vw;
    font-size: 3.733vw;
  }

  .consult-popup__success-btn {
    max-width: none;
    margin-top: 7.467vw;
  }

  .consult-popup__success-btn span {
    font-size: 3.733vw;
  }

  .consult-popup__close {
    top: 3.733vw;
    right: 3.733vw;
    width: 8.533vw;
    max-width: 32px;
    height: 8.533vw;
    max-height: 32px;
  }

  .consult-popup__close-icon {
    width: 100%;
    height: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .consult-popup,
  .consult-popup__dialog {
    transition: none;
  }
}

