:root {
  --ink: #0f130d;
  --paper: #fff;
  --fog: #efefef;
  --night: #1a1a1a;
  --accent: #fd5b38;
  --muted: #767676;
  --pad: 70px;
  --section-y: 140px;
  --section-y-sm: 70px;
  --gap: 30px;
  --gap-sm: 15px;
  --max: 1320px;
  --font: "Inter Tight", Arial, sans-serif;
}

/* Оболочка секций: padding-top === padding-bottom. Новые блоки — .vx-section */
.vx-section { padding: var(--section-y) var(--pad); }
.vx-section--sm { padding: var(--section-y-sm) var(--pad); }
.vx-section--start { padding: var(--section-y) var(--pad) 0; }
.vx-section--end { padding: 0 var(--pad) var(--section-y); }
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scrollbar-width: thin;
  scrollbar-color: var(--night) var(--fog);
}
html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
html::-webkit-scrollbar-track { background: var(--fog); }
html::-webkit-scrollbar-thumb {
  background: var(--night);
  border-radius: 8px;
}
html::-webkit-scrollbar-thumb:hover { background: #2a2a2a; }
html::-webkit-scrollbar-corner { background: var(--fog); }
body { margin: 0; max-width: 100%; overflow-x: clip; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.45;
  font-weight: 400;
  scrollbar-width: thin;
  scrollbar-color: var(--night) var(--fog);
  -webkit-tap-highlight-color: transparent;
}
*:focus,
*:focus-visible {
  outline: none;
}
button::-moz-focus-inner {
  border: 0;
}
img { max-width: 100%; height: auto; vertical-align: middle; border: 0; }
a { color: inherit; text-decoration: none; }
.vx-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  transition: color .5s cubic-bezier(1, 0, 0, 1);
}
.vx-link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .5s cubic-bezier(1, 0, 0, 1);
  will-change: transform;
  pointer-events: none;
}
.vx-link:hover,
.vx-link:focus-visible {
  color: var(--accent);
}
.vx-link:hover:after,
.vx-link:focus-visible:after {
  transform: scaleX(1);
  transform-origin: left center;
}
button, input, textarea { font-family: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; line-height: 1.15; }
ul { margin: 0; padding: 0; list-style: none; }

.vx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
  transition-property: background-color, color, opacity, transform;
  transition-duration: .7s;
  transition-timing-function: ease;
  background-color: var(--accent);
  color: var(--paper);
}
html:not(.no-js) a.vx-btn[data-aos],
html:not(.no-js) button.vx-btn[data-aos],
html:not(.no-js) a.vx-btn[data-aos].aos-animate,
html:not(.no-js) button.vx-btn[data-aos].aos-animate {
  transition-property: background-color, color, opacity, transform;
  transition-duration: .7s;
  transition-timing-function: ease;
}
.vx-btn:hover { background-color: var(--night); color: var(--paper); }
.vx-btn--ghost { background-color: var(--accent); color: var(--paper); }
.vx-btn--ghost:hover { background-color: var(--paper); color: var(--night); }
.vx-btn--accent { font-size: 26px; padding: 15px 40px; }
.vx-btn--accent:hover { background-color: var(--night); }
.vx-btn--dark {
  background-color: var(--night);
  color: var(--paper);
  font-size: 27px;
  line-height: 1.55;
  padding: 22px 40px;
}
.vx-btn--dark:hover { background-color: var(--accent); }
.vx-btn--full { width: 100%; }
.vx-btn--sm {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  padding: 10px 13px;
  min-width: 198px;
  max-width: 198px;
  width: 198px;
  flex: 0 0 198px;
}
.vx-btn--sm:hover { background-color: var(--ink); }
.vx-btn--hero {
  font-size: 22px;
  padding: 12px 28px;
}
.vx-btn--fog {
  background-color: var(--fog);
  color: var(--night);
}
.vx-btn--fog:hover { background-color: var(--accent); color: var(--fog); }
.vx-btn--block { width: 100%; }

.vx-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  min-height: 100px;
  background: transparent;
  transition: background-color .25s ease;
}
.vx-header.is-stuck { background: var(--night); }
.admin-bar .vx-header { top: 32px; }
.vx-header__inner {
  display: grid;
  grid-template-columns: 20% 1fr 20%;
  align-items: center;
  min-height: 100px;
  padding: 0 var(--pad);
  gap: 0;
}
.vx-logo { display: flex; align-items: center; gap: 15px; white-space: nowrap; justify-self: start; }
.vx-logo__mark { width: 50px; height: 32px; flex: 0 0 auto; }
.vx-logo__name { font-size: 27px; font-weight: 500; color: var(--fog); }
.vx-logo__name:hover { color: var(--accent); }
.vx-header__nav { display: flex; justify-content: center; overflow: visible; }
.vx-nav { display: flex; align-items: center; gap: 40px; }
.vx-nav > li { position: relative; }
.vx-nav a, .vx-nav .vx-nav__link { font-size: 20px; color: var(--fog); }
.vx-nav .vx-nav__link--parent .icon { font-size: 0.7em; opacity: 0.75; }
.vx-nav a:hover, .vx-nav a.is-current,
.vx-nav .current-menu-item > a,
.vx-nav .current-menu-ancestor > a { color: var(--accent); }
.vx-nav .current-menu-item > a:after,
.vx-nav .is-current:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.vx-nav__sub {
  position: absolute;
  left: 50%;
  top: 100%;
  min-width: 220px;
  margin: 0;
  padding: 10px 0;
  background: var(--night);
  border: 1px solid rgba(239, 239, 239, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 40;
}
.vx-nav__sub::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 14px;
}
.vx-nav > li:hover > .vx-nav__sub,
.vx-nav > li:focus-within > .vx-nav__sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.vx-nav__sub li { position: relative; display: block; }
.vx-nav__sub a {
  display: flex;
  width: 100%;
  padding: 10px 20px;
  font-size: 17px;
  white-space: nowrap;
  box-sizing: border-box;
}
.vx-nav__sub .vx-nav__sub {
  left: calc(100% + 2px);
  top: -10px;
  transform: translateX(8px);
}
.vx-nav__sub .vx-nav__sub::before {
  left: auto;
  right: 100%;
  top: 0;
  bottom: 0;
  width: 10px;
  height: auto;
}
.vx-nav__sub li:hover > .vx-nav__sub,
.vx-nav__sub li:focus-within > .vx-nav__sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}
.vx-nav > li:last-child .vx-nav__sub .vx-nav__sub {
  left: auto;
  right: calc(100% + 2px);
}
.vx-header__side { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.vx-burger {
  display: none !important;
  width: 40px;
  height: 40px;
  border: 1px solid var(--fog);
  border-radius: 40px;
  background: transparent;
  color: var(--fog);
  cursor: pointer;
  box-sizing: border-box;
  padding: 0;
  font-size: 18px;
}

.vx-hero {
  position: relative;
  min-height: 100svh;
  background: var(--night);
  overflow: hidden;
  color: var(--fog);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 100px 120px;
}
.admin-bar .vx-hero { min-height: calc(100svh - 32px); }
.vx-hero__art { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.vx-hero__ellipse {
  position: absolute;
  left: 50%;
  bottom: 0;
}
.vx-hero__ellipse--b {
  width: 62%;
  bottom: 0;
  z-index: 1;
  filter: blur(120px) hue-rotate(339deg) brightness(1.4);
  transform: translate(-50%, 44%) translate3d(var(--vx-mx, 0px), var(--vx-my, 0px), 0);
}
.vx-hero__type {
  position: absolute;
  left: 2%;
  bottom: 25%;
  width: 95%;
  z-index: 2;
  opacity: 1;
  transform: translate3d(var(--vx-mx, 0px), var(--vx-my, 0px), 0);
  will-change: transform;
}
.vx-hero__ellipse--a {
  width: 64%;
  z-index: 3;
  transform: translate(-50%, 50%) scale(var(--vx-sc, 1));
  transform-origin: center center;
}
.vx-hero__copy {
  position: relative;
  z-index: 4;
  text-align: center;
  width: 100%;
  flex-shrink: 0;
  overflow: visible;
}
.vx-hero__title, .vx-hero__spin {
  font-size: 103px;
  line-height: 1.15;
  font-weight: 400;
  margin: 0;
}
.vx-hero__spin {
  color: var(--accent);
  min-height: 1.15em;
}
.vx-clip {
  display: inline-block;
  text-align: left;
  direction: ltr;
  position: relative;
  vertical-align: bottom;
  color: var(--accent);
  white-space: nowrap;
}
.vx-clip__word {
  display: none;
  white-space: nowrap;
  color: var(--accent);
}
.vx-clip__word.is-active {
  display: inline-block;
}
.vx-hero__sub { margin: 18px 0 0; font-size: 46px; color: var(--muted); }
.vx-hero__bar {
  position: absolute;
  z-index: 4;
  left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 70px 50px;
}
.vx-more {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 20px;
  color: var(--fog);
  white-space: nowrap;
  flex: 0 0 auto;
  transition: color .5s cubic-bezier(1, 0, 0, 1);
}
.vx-more__icon {
  width: 62px; height: 62px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 25px;
  transition: border-color .5s cubic-bezier(1, 0, 0, 1), color .5s cubic-bezier(1, 0, 0, 1);
}
.vx-more:hover,
.vx-more:focus-visible {
  color: var(--accent);
}
.vx-hero__messengers { display: flex; gap: 40px; font-size: 20px; margin-left: auto; flex: 0 0 auto; white-space: nowrap; }

.vx-cases { padding: var(--section-y-sm) var(--pad); background: var(--paper); }
.vx-cases__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
.vx-cases__head h1, .vx-cases__head h2 { font-size: 130px; line-height: 1; }
.vx-filter { display: flex; gap: 40px; font-size: 28px; }
.vx-filter a {
  color: var(--night);
  display: inline-flex;
  align-items: flex-start;
}
.vx-filter a:hover, .vx-filter a.is-current { color: var(--accent); }
.vx-filter__n {
  font-size: 0.72em;
  font-weight: 500;
  line-height: 1.2;
  margin: 1px 0 0 8px;
  opacity: .4;
  font-variant-numeric: tabular-nums;
}
.vx-filter a:hover .vx-filter__n,
.vx-filter a.is-current .vx-filter__n { opacity: 1; }
.vx-mosaic { display: grid; gap: 60px; margin-bottom: 60px; }
.vx-mosaic--2 { grid-template-columns: 1fr 1fr; }
.vx-mosaic--3 { grid-template-columns: 1fr 1fr 1fr; }
.vx-cases--service .vx-mosaic:last-of-type { margin-bottom: 40px; }
.vx-cases--service + .vx-catalog:has(.vx-catalog__lead) { padding-top: var(--section-y-sm); }
.vx-card__media { display: block; overflow: hidden; }
.vx-card__media img {
  width: 100%;
  display: block;
  transform: scale(1);
  transition: transform .5s cubic-bezier(.645,.045,.355,1);
}
.vx-card { cursor: pointer; }
.vx-card__hit {
  display: block;
  color: inherit;
  text-decoration: none;
}
.vx-card:hover img { transform: scale(1.03); }
.vx-card:hover h3 .vx-link,
.vx-card:hover h3 a {
  color: var(--accent);
}
.vx-card:hover h3 .vx-link:after,
.vx-card:hover h3 a.vx-link:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.vx-card__body { display: flex; flex-direction: column; gap: 8px; padding-top: 16px; min-width: 0; }
.vx-card__row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.vx-card h3 { font-size: 27px; font-weight: 500; line-height: 1.3; min-width: 0; flex: 1; }
.vx-card__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); display: inline-block; flex: 0 0 10px; }
.vx-card p {
  font-size: 17px;
  font-weight: 500;
  color: #0f130d66;
  margin: 0;
}

.vx-stats { position: relative; padding: var(--section-y) var(--pad); margin-top: calc(-1 * var(--section-y-sm)); overflow: hidden; }
.vx-stats__orb {
  position: absolute;
  right: 70px;
  top: 0;
  width: auto;
  height: 600px;
  max-width: none;
  z-index: 1;
  pointer-events: none;
  transform: translate3d(var(--vx-mx, 0px), var(--vx-my, 0px), 0);
  will-change: transform;
  animation: vxOrbDrift 9s ease-in-out infinite;
}
@keyframes vxOrbDrift {
  0%, 100% { translate: 0 0; }
  40% { translate: 16px -14px; }
  70% { translate: -12px 10px; }
}
.vx-stats__intro { font-size: 60px; font-weight: 500; line-height: 1.15; max-width: 1100px; color: var(--night); }
.vx-stats__intro span { color: var(--accent); }
.vx-stats__line { border: 0; border-top: 1px solid var(--night); margin: 50px 0; }
.vx-stats__grid { display: flex; position: relative; z-index: 2; }
.vx-stat { flex: 1; }
.vx-stat:first-child { flex: 2; }
.vx-stat__n { font-size: 120px; font-weight: 500; line-height: 1; color: var(--night); }
.vx-stat p { font-size: 27px; margin: 15px 0 0; }

.vx-value {
  background: var(--night);
  color: var(--fog);
  padding: var(--section-y) var(--pad);
  overflow: hidden;
}
.vx-value__kicker {
  font-size: 20px;
  font-weight: 400;
  color: var(--accent);
  margin: 0 0 5px;
  line-height: 1.4;
}
.vx-value h2 {
  font-size: 77px;
  font-weight: 500;
  color: var(--fog);
  margin: 0 0 var(--gap);
  line-height: 1.4;
}
.vx-value__grid {
  display: flex;
  flex-wrap: wrap;
}
.vx-value__item {
  position: relative;
  width: 50%;
  box-sizing: border-box;
  padding: 0 var(--gap) var(--gap) 0;
  overflow: visible;
  min-height: 0;
  cursor: default;
}
.vx-value__item:nth-child(even) {
  padding: 0 0 var(--gap) var(--gap);
}
.vx-value__line {
  display: block;
  height: 1px;
  border: 0;
  margin: 0 0 var(--gap);
  background: #ffffff57;
}
.vx-value__arrow {
  position: absolute;
  top: 40px;
  right: 20px;
  z-index: 3;
  font-size: 50px;
  line-height: 1;
  color: var(--accent);
}
.vx-value__art {
  position: absolute;
  top: 50%;
  right: 100px;
  z-index: 4;
  width: 230px;
  max-width: none;
  height: auto;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity .5s;
  pointer-events: none;
}
.vx-value__item:hover,
.vx-value__item.is-on { z-index: 6; }
.vx-value__item:hover .vx-value__art,
.vx-value__item.is-on .vx-value__art { opacity: 1; }
.vx-value__item p {
  position: relative;
  z-index: 2;
  font-size: 17px;
  font-weight: 500;
  color: #a2a2a2;
  margin: 0 0 8px;
  line-height: 1.4;
}
.vx-value__item h3 {
  position: relative;
  z-index: 2;
  font-size: 39px;
  font-weight: 500;
  color: var(--fog);
  line-height: 1.4;
}

.vx-footer {
  background: var(--paper);
  border-top: 1px solid var(--night);
  padding: var(--section-y-sm) var(--pad);
}
.vx-footer__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.vx-footer__mail { font-size: 45px; font-weight: 500; color: var(--night); }
.vx-footer__social { display: flex; gap: 28px; margin-top: 20px; font-size: 23px; font-weight: 500; }
.vx-footer a { color: var(--night); }

.vx-pagehead {
  position: relative;
  padding: 180px var(--pad) 150px;
  background-color: var(--night);
  background-image: url("../img/icon3.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 120% auto;
  color: var(--fog);
  overflow: hidden;
}
.vx-pagehead:before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(15,19,13,.9);
}
.vx-pagehead h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 130px;
  font-weight: 400;
  line-height: 1;
}
.vx-pagehead [data-aos] {
  position: relative;
  z-index: 1;
}
.vx-pagehead h1 span { color: var(--accent); }
.vx-pagehead__row {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.vx-pagehead__titles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  flex: 1 1 auto;
}
.vx-case__kicker {
  margin: 0;
  max-width: 820px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.4;
  color: #FFFFFF99;
}
.vx-pagehead .vx-filter a { color: var(--fog); }
.vx-pagehead .vx-filter a:hover,
.vx-pagehead .vx-filter a.is-current { color: var(--accent); }
.vx-pagehead--contact { background-image: url("../img/icon2.svg"); }
.vx-pagehead--cases { background-image: url("../img/icon9.svg"); }
.vx-pagehead--case { background-image: url("../img/icon6.svg"); }
.vx-pagehead--agency { background-image: url("../img/icon5.svg"); }
.vx-pagehead--agency {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.vx-pagehead--service {
  background-image: url("../img/icon4.svg");
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#start, #portfolio, #agency-cases { scroll-margin-top: 110px; }
.vx-pagehead--service h1 {
  font-size: 72px;
  font-weight: 500;
  line-height: 1.15;
  max-width: 1100px;
}
.vx-pagehead__lead {
  position: relative;
  z-index: 3;
  max-width: 690px;
  margin: 24px 0 0;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--fog);
}
.vx-pagehead__bar {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 50px;
}
.vx-pagehead__btns { display: flex; flex-wrap: wrap; gap: 16px; }
.vx-pagehead__orb {
  position: absolute;
  right: 0;
  top: 12%;
  width: 600px;
  max-width: none;
  height: auto;
  z-index: 1;
  pointer-events: none;
  transform: translate3d(var(--vx-mx, 0px), var(--vx-my, 0px), 0);
  will-change: transform;
}
.vx-lead { padding: var(--section-y) var(--pad) 0; }
.vx-lead h2 { font-size: 60px; max-width: 1100px; font-weight: 500; line-height: 1.15; }
.vx-lead span { color: var(--accent); }
.vx-lead__text { max-width: 1100px; margin-top: 24px; font-size: 21px; line-height: 1.5; }
.vx-pagehead--text h1 {
  font-size: 72px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 14ch;
}
.vx-prose {
  padding: var(--section-y) var(--pad);
  color: var(--ink);
  font-size: 19px;
  line-height: 1.65;
  font-weight: 400;
}
.vx-prose__body { max-width: 860px; }
.vx-prose > *:first-child,
.vx-prose__body > *:first-child { margin-top: 0; }
.vx-prose > *:last-child,
.vx-prose__body > *:last-child { margin-bottom: 0; }
.vx-prose h1,
.vx-prose h2,
.vx-prose h3,
.vx-prose h4,
.vx-prose h5,
.vx-prose h6 {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
  text-wrap: pretty;
}
.vx-prose h1 { font-size: 48px; margin: 1.4em 0 0.55em; }
.vx-prose h2 { font-size: 36px; margin: 1.55em 0 0.55em; }
.vx-prose h3 { font-size: 26px; margin: 1.4em 0 0.5em; }
.vx-prose h4 { font-size: 22px; margin: 1.3em 0 0.45em; }
.vx-prose h5,
.vx-prose h6 { font-size: 19px; margin: 1.2em 0 0.4em; }
.vx-prose h2:first-child,
.vx-prose h3:first-child { margin-top: 0; }
.vx-prose p,
.vx-prose address {
  margin: 0 0 1em;
}
.vx-prose a {
  color: var(--accent);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  transition: color .4s cubic-bezier(1, 0, 0, 1), background-size .4s cubic-bezier(1, 0, 0, 1);
}
.vx-prose a:hover { color: var(--ink); }
.vx-prose strong,
.vx-prose b { font-weight: 500; }
.vx-prose em,
.vx-prose i { font-style: italic; }
.vx-prose small { font-size: 0.85em; color: var(--muted); }
.vx-prose mark { background: #fd5b3822; color: inherit; padding: 0 0.15em; }
.vx-prose sup,
.vx-prose sub { font-size: 0.75em; line-height: 0; }
.vx-prose hr {
  border: 0;
  height: 1px;
  margin: 2.4em 0;
  background: #e4e4e4;
}
.vx-prose :is(ul, ol) {
  margin: 0 0 1.15em;
  padding: 0;
  list-style: none;
}
.vx-prose li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 36px;
}
.vx-prose li:last-child { margin-bottom: 0; }
.vx-prose ol { counter-reset: vxprose; }
.vx-prose ol > li { counter-increment: vxprose; }
.vx-prose ol > li::before {
  content: counter(vxprose) ".";
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  color: var(--ink);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.vx-prose ul > li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.vx-prose li :is(ul, ol) {
  margin: 10px 0 4px;
}
.vx-prose ol ol { counter-reset: vxprose-sub; }
.vx-prose ol ol > li { counter-increment: vxprose-sub; }
.vx-prose ol ol > li::before {
  content: counter(vxprose-sub, lower-alpha) ".";
}
.vx-prose ul ul > li::before,
.vx-prose ol ul > li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 0;
  background: var(--accent);
  transform: none;
  top: 0.7em;
}
.vx-prose blockquote {
  margin: 1.4em 0;
  padding: 24px 28px;
  background: var(--fog);
  border-radius: 20px;
  border-left: 3px solid var(--accent);
}
.vx-prose blockquote p:last-child { margin-bottom: 0; }
.vx-prose blockquote cite {
  display: block;
  margin-top: 0.6em;
  font-size: 0.9em;
  color: var(--muted);
  font-style: normal;
}
.vx-prose table {
  width: 100%;
  margin: 1.4em 0;
  border-collapse: collapse;
  font-size: 0.95em;
}
.vx-prose th,
.vx-prose td {
  padding: 12px 14px;
  border-bottom: 1px solid #e4e4e4;
  text-align: left;
  vertical-align: top;
}
.vx-prose th {
  font-weight: 500;
  background: var(--fog);
}
.vx-prose img,
.vx-prose video,
.vx-prose iframe {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.4em 0;
  border-radius: 16px;
}
.vx-prose figure { margin: 1.4em 0; }
.vx-prose figcaption {
  margin-top: 10px;
  font-size: 0.85em;
  color: var(--muted);
}
.vx-prose pre,
.vx-prose code,
.vx-prose kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.vx-prose code,
.vx-prose kbd {
  font-size: 0.88em;
  background: var(--fog);
  border-radius: 6px;
  padding: 0.12em 0.4em;
}
.vx-prose pre {
  margin: 1.4em 0;
  padding: 20px 22px;
  background: var(--fog);
  border-radius: 16px;
  overflow-x: auto;
}
.vx-prose pre code { background: none; padding: 0; }
.vx-prose dl { margin: 0 0 1.2em; }
.vx-prose dt { font-weight: 500; margin-top: 0.8em; }
.vx-prose dd { margin: 0.25em 0 0 0; padding-left: 36px; }
.vx-alignleft,
.vx-prose .alignleft { float: left; margin: 0 24px 12px 0; }
.vx-alignright,
.vx-prose .alignright { float: right; margin: 0 0 12px 24px; }
.vx-aligncenter,
.vx-prose .aligncenter { display: block; margin-left: auto; margin-right: auto; }

.vx-catalog { padding: 0 var(--pad) var(--section-y); }
.vx-catalog:has(.vx-catalog__lead) { padding: var(--section-y) var(--pad); }
.vx-catalog__lead {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.15;
  max-width: 1100px;
  margin: 0 0 50px;
}
.vx-catalog__lead span { color: var(--accent); }
.vx-catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.vx-catalog__card {
  border-radius: 30px;
  padding: 50px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.vx-catalog__card--dark { background: var(--ink); color: var(--fog); }
.vx-catalog__card--light { background: var(--fog); color: var(--ink); }
.vx-catalog__card--span2 { grid-column: span 2; }
.vx-catalog__icon {
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  font-size: 32px;
}
.vx-catalog__card--dark .vx-catalog__icon { background: #3a3a3a; color: var(--accent); }
.vx-catalog__card--light .vx-catalog__icon { background: var(--accent); color: var(--fog); }
.vx-catalog__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.vx-catalog__head h3 { font-size: 35px; font-weight: 500; line-height: 1.2; }
.vx-catalog__card--light .vx-catalog__head h3 { color: var(--accent); }
.vx-catalog__head .icon { font-size: 25px; color: var(--accent); }
.vx-catalog ul { display: flex; flex-direction: column; gap: 10px; }
.vx-catalog li a,
.vx-catalog li > span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 19px;
  line-height: 1.6;
}
.vx-catalog li .icon { color: var(--accent); font-size: 18px; }
.vx-catalog li a:hover .vx-link,
.vx-catalog li a:focus-visible .vx-link,
.vx-catalog li > span:hover .vx-link {
  color: var(--accent);
}
.vx-catalog li a:hover .vx-link:after,
.vx-catalog li a:focus-visible .vx-link:after,
.vx-catalog li > span:hover .vx-link:after {
  transform: scaleX(1);
  transform-origin: left center;
}

.vx-steps { padding: var(--section-y-sm) var(--pad) 0; }
.vx-steps h2 {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.15;
  max-width: 1100px;
  margin-bottom: 50px;
}
.vx-steps h2 span { color: var(--accent); }
.vx-steps__row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  align-items: stretch;
  column-gap: 60px;
  background: var(--fog);
  border-radius: 30px;
  padding: 0 40px 0 0;
  overflow: hidden;
}
.vx-step {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 460px;
  padding: 60px 8px 90px 0;
  z-index: 1;
}
.vx-step--dark {
  padding: 60px;
  color: var(--paper);
  background-color: #0f130d;
  background-image: url("../img/icon3.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px 0 0 30px;
}
.vx-step--dark:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0f130d;
  opacity: .9;
  pointer-events: none;
}
.vx-step--dark > * { position: relative; z-index: 1; }
.vx-step__body { position: relative; z-index: 2; }
.vx-step__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.vx-step--dark .vx-step__head {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.vx-step__icon {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex: 0 0 72px;
}
.vx-step h3 {
  font-size: 35px;
  font-weight: 500;
  line-height: 1.2;
}
.vx-step--dark h3 { color: var(--accent); }
.vx-step li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 5px 0;
  font-size: 19px;
  line-height: 1.6;
}
.vx-step li .icon {
  color: var(--accent);
  font-size: 22px;
  margin-top: 2px;
  flex: 0 0 auto;
}
.vx-step--dark li { color: var(--paper); }
.vx-step--dark .vx-step__body {
  flex: 1 1 auto;
  padding-bottom: 48px;
}
.vx-step--dark .vx-btn {
  width: 100%;
  margin-top: auto;
  z-index: 2;
  padding: 18px 28px;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 400;
}
.vx-step--dark .vx-btn:hover { background-color: #fd5b38e0; color: var(--paper); }
.vx-step__n {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  font-size: 88px;
  font-weight: 500;
  line-height: 1;
  color: #0f130d12;
  pointer-events: none;
}

.vx-legal {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding: var(--section-y-sm) var(--pad);
  align-items: center;
}
.vx-legal__card { min-width: 0; }
.vx-legal__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.vx-legal__icon {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  display: block;
  border-radius: 10px;
}
.vx-legal h3 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  line-height: 1.2;
}
.vx-legal p {
  margin: 0;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
}
.vx-legal__card--req {
  border: 2px solid var(--fog);
  border-radius: 30px;
  padding: 60px;
}
.vx-legal__req-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.vx-legal__req-head h3 {
  margin: 0;
  font-size: 35px;
  color: var(--accent);
}
.vx-legal__req-head .icon { color: var(--accent); font-size: 25px; }
.vx-legal ul { display: flex; flex-direction: column; gap: 5px; }
.vx-legal li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 19px;
  line-height: 1.6;
}
.vx-legal li .icon { color: var(--accent); font-size: 18px; }

.vx-contact { position: relative; padding: var(--section-y) var(--pad); overflow: hidden; }
.vx-contact h2 {
  position: relative; z-index: 2;
  font-size: 60px; font-weight: 500; line-height: 1.15;
  max-width: 1100px;
}
.vx-contact h2 span { color: var(--accent); }
.vx-contact__art {
  position: absolute;
  right: 0;
  top: 35%;
  z-index: 1;
  width: 600px;
  max-width: 45%;
  transform: translateY(-50%) translate3d(var(--vx-mx, 0px), var(--vx-my, 0px), 0);
  pointer-events: none;
  will-change: transform;
  animation: vxOrbDrift 9s ease-in-out infinite;
}
.vx-contact__art img { width: 100%; height: auto; display: block; }
.vx-contact__line { position: relative; z-index: 2; border: 0; height: 1px; background: var(--night); margin: 50px 0; }
.vx-contact__mail {
  position: relative; z-index: 2;
  display: inline-block;
  font-size: 120px; font-weight: 500; line-height: 1.2;
}
.vx-contact__mail:hover { color: var(--accent); }

.vx-contact__hours {
  position: relative; z-index: 2;
  font-size: 27px; line-height: 1.4; margin: 8px 0 0;
}
.vx-contact__social {
  position: relative; z-index: 2;
  display: flex;
  margin-top: 50px;
  border: 1px solid var(--night);
  border-left: 0;
}
.vx-contact__soc {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 15px;
  padding: 70px 0;
  border-left: 1px solid var(--night);
  font-size: 23px; font-weight: 500; line-height: 1.4;
  transition: background .3s, color .3s;
}
.vx-contact__soc:hover { background: var(--night); color: var(--fog); }
.vx-contact__soc-icon {
  width: 30px;
  height: 30px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  font-size: 30px;
  line-height: 1;
}
.vx-contact__soc-icon .fab {
  font-size: 30px;
  line-height: 1;
}
.vx-contact__soc:hover .vx-contact__soc-icon { color: var(--fog); }

.vx-service { padding: var(--section-y-sm) var(--pad); }
.vx-service__intro-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}
.vx-service__intro h2 {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.15;
  max-width: 1200px;
  flex: 1 1 auto;
}
.vx-service__intro h2 span { color: var(--accent); }
.vx-service__intro-row .icon {
  font-size: 42px;
  color: var(--accent);
  flex: 0 0 auto;
  margin-top: 8px;
  margin-left: auto;
}
.vx-service__intro p {
  max-width: 800px;
  margin: 24px 0 0;
  font-size: 21px;
  line-height: 1.6;
}
.vx-service__line,
.vx-adv__line {
  display: block;
  height: 1px;
  border: 0;
  margin: 50px 0;
  background: #d6d6d6;
}
.vx-adv__line { background: #ffffff2e; margin: 60px 0; }
.vx-service__title {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 40px;
}
.vx-service__title span { color: var(--accent); }
.vx-stage-swiper { overflow: hidden; }
.vx-stage-swiper .swiper-slide { height: auto; }
.vx-stage-card {
  width: 100%;
  min-width: 0;
  background: var(--fog);
  border-radius: 40px;
  overflow: hidden;
}
.vx-stage-card img { width: 100%; display: block; aspect-ratio: 3 / 2; object-fit: cover; }
.vx-stage-card__body { padding: 40px; }
.vx-stage-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.vx-stage-card h3 { font-size: 28px; font-weight: 500; line-height: 1.4; }
.vx-stage-card__head .icon { font-size: 24px; color: var(--night); }
.vx-stage-card p { font-size: 18px; line-height: 1.6; margin: 0; }
.vx-stage-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  position: static;
}
.vx-swiper .swiper-pagination-bullet,
.vx-stage-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d6d6d6;
  opacity: 1;
  cursor: pointer;
}
.vx-swiper .swiper-pagination-bullet-active,
.vx-stage-dots button.is-on { background: var(--accent); }

.vx-adv {
  padding: var(--section-y) var(--pad);
  background-color: var(--night);
  background-image: url("../img/icon2.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--fog);
  position: relative;
}
.vx-adv:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, .9);
}
.vx-adv > * { position: relative; z-index: 1; }
.vx-adv__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.vx-adv h2 { font-size: 60px; font-weight: 500; line-height: 1.15; margin: 0; }
.vx-adv h2 span { color: var(--accent); }
.vx-adv__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}
.vx-adv__item {
  padding: 0;
  border-left: 0;
  position: relative;
}
.vx-adv__item:not(:first-child):before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #ffffff2e;
}
.vx-adv__item-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.vx-adv__icon {
  width: 62px;
  height: 62px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--fog);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex: 0 0 62px;
}
.vx-adv__item h3 {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--accent);
  margin: 0;
}
.vx-adv__item p {
  font-size: 18px;
  line-height: 1.6;
  color: #EFEFEFC9;
  margin: 0;
}

.vx-faq { padding: var(--section-y-sm) var(--pad); }
.vx-faq h2 { font-size: 64px; margin-bottom: 40px; font-weight: 500; }
.vx-faq__list { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.vx-faq__item { padding: 30px 0; border-top: 1px solid #d6d6d6; }
.vx-faq__item h3 { font-size: 30px; font-weight: 500; margin-bottom: 12px; }

.vx-case__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  margin: 0;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
  color: #FFFFFF99;
  text-align: right;
  flex: 0 0 auto;
}
.vx-case__meta span { display: block; }
.vx-case__meta-sep { display: none; }
.vx-case__intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: var(--section-y-sm) var(--pad);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--night);
}
.vx-case__intro-inner { max-width: 800px; flex: 1 1 auto; min-width: 0; }
.vx-case__intro p { margin: 0 0 1em; }
.vx-case__intro p:last-child { margin-bottom: 0; }
.vx-case__cat {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}
.vx-case__cat a { color: var(--night); }
.vx-case__cat .icon { font-size: 0.9em; }
.vx-case__heading { padding: var(--gap) var(--pad) 0; }
.vx-case__heading h2 { font-size: 40px; font-weight: 500; }
.vx-case__media { margin: 0; background: var(--fog); transition: background-color .35s ease; }
.vx-case__media img,
.vx-case__media video { width: 100%; display: block; height: auto; }
.vx-case__media--pad { padding: 80px 20px; }
.vx-case__media--pad img {
  max-width: 1320px;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
}
.vx-case__media--full { padding: 0; background: transparent; }
.vx-case__media--full img { max-width: none; box-shadow: none; }
.vx-case__media--video {
  padding: 80px 20px;
  background: var(--night);
}
.vx-case__video {
  max-width: 1320px;
  margin: 0 auto;
  background: #0a0c09;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
.vx-case__video video {
  width: 100%;
  display: block;
  height: auto;
  vertical-align: top;
}

.vx-facts {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: var(--section-y-sm) var(--pad);
  border-bottom: 1px solid var(--night);
}
.vx-facts__col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.vx-facts__col h3 {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}
.vx-facts__col ul,
.vx-facts__col p {
  margin: 0;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
}
.vx-facts__col li { margin: 0 0 13px; list-style: none; }
.vx-facts__col li:last-child { margin-bottom: 0; }
.vx-facts__go {
  flex: 1.15 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  gap: 5px;
  border: 1px solid var(--night);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.4;
  transition: background .3s, color .3s;
}
.vx-facts__go i { color: var(--accent); font-size: 35px; line-height: 1; }
.vx-facts__go:hover { background: var(--night); color: #fff; }

.vx-related { padding: var(--section-y-sm) 0; overflow: hidden; }
.vx-related h2 {
  font-size: 89px;
  font-weight: 400;
  line-height: 1;
  margin: 0 var(--pad) 40px;
}
.vx-related .vx-mosaic { margin: 0 var(--pad) 40px; }
.vx-related > .vx-btn { margin: 40px var(--pad) 0; width: calc(100% - 2 * var(--pad)); }
.vx-related__swiper {
  overflow: hidden;
  padding: 0 var(--pad);
}
.vx-related__swiper .swiper-slide { height: auto; }
.vx-related .vx-card p {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vx-related .vx-card__dot {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
}
.swiper-slide [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

.vx-transit {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  overflow: hidden;
}
.vx-transit__bars {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
}
.vx-transit__bar {
  flex: 1 1 0;
  min-width: 0;
  background: var(--ink);
  transform: scaleY(1);
  transform-origin: top center;
  will-change: transform;
}
.vx-transit__bar:nth-child(1) {
  flex: 1.05 1 0;
  transition: transform .72s cubic-bezier(.77, 0, .18, 1);
}
.vx-transit__bar:nth-child(2) {
  flex: 1.22 1 0;
  transition: transform .98s cubic-bezier(.65, 0, .12, 1);
}
.vx-transit__bar:nth-child(3) {
  flex: 1.32 1 0;
  transition: transform .52s cubic-bezier(.77, 0, .18, 1);
}
.vx-transit__bar:nth-child(4) {
  flex: 1 1 0;
  transition: transform 1.12s cubic-bezier(.55, 0, .18, 1);
}
.vx-transit.is-out .vx-transit__bar {
  transform: scaleY(0);
}
.vx-transit.is-out {
  pointer-events: none;
}
.vx-transit__pct {
  position: relative;
  z-index: 1;
  color: var(--accent);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  transition: opacity .28s ease;
}
.vx-transit.is-out .vx-transit__pct {
  opacity: 0;
}
html.vx-transit-lock,
html.vx-transit-lock body { overflow: hidden; }

.vx-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(15, 19, 13, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}
.vx-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.vx-modal__dialog {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: 600px;
  max-width: 100%;
  height: 100%;
  max-height: 100vh;
  overflow: auto;
  background: #fff;
  padding: 50px;
  transform: translateX(100%);
  transition: transform .4s ease;
}
.vx-modal__body {
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
}
.vx-modal.is-open .vx-modal__dialog {
  transform: translateX(0);
}
.vx-modal h2 {
  font-size: 65px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--accent);
  margin: 0 0 24px;
}
.vx-modal__text { font-size: 21px; font-weight: 500; line-height: 1.6; max-width: 460px; }
.vx-modal--full {
  padding: 0;
  background: rgba(15, 19, 13, 0.35);
}
.vx-modal__dialog--full {
  left: auto;
  right: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  background: var(--night);
  color: var(--fog);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  transform: translateX(100%);
  transition: transform .4s ease;
}
.vx-modal.is-open .vx-modal__dialog--full { transform: translateX(0); }
.vx-modal__menu-top {
  position: relative;
  width: 100%;
  min-height: 70px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  flex: 0 0 auto;
}
.vx-logo--menu {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
}
.vx-logo--menu svg { width: 50px; height: 32px; display: block; }
.vx-modal__dialog--full .vx-nav {
  flex-direction: column;
  gap: 28px;
  text-align: center;
  align-items: center;
  margin: auto 0;
}
.vx-modal__dialog--full .vx-nav a {
  font-size: 40px;
  line-height: 1.4;
  color: var(--fog);
}
.vx-modal__dialog--full .vx-nav a:hover,
.vx-modal__dialog--full .vx-nav a.is-current,
.vx-modal__dialog--full .vx-nav .current-menu-item > a { color: var(--accent); }
.vx-modal__dialog--full .vx-nav__sub {
  position: static;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  background: transparent;
  border: 0;
  min-width: 0;
  padding: 6px 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.vx-modal__dialog--full .vx-nav__sub::before { display: none; }
.vx-modal__dialog--full .vx-nav__sub a { font-size: 22px; padding: 4px 0; width: auto; }
.vx-modal__dialog--full .vx-nav__sub .vx-nav__sub a { font-size: 18px; }
.vx-modal__messengers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
  margin: 0;
  padding: 24px 20px calc(28px + env(safe-area-inset-bottom, 0px));
  font-size: 19px;
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 255, .3);
  box-sizing: border-box;
  flex: 0 0 auto;
}
.vx-modal__close {
  position: absolute; top: 40px; right: 40px;
  border: 0; background: none; font-size: 20px; cursor: pointer;
  color: inherit; z-index: 2;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
}
.vx-modal__close:hover { color: var(--accent); }
.vx-modal__dialog--full .vx-modal__close {
  color: var(--fog);
  position: static;
  transform: none;
  grid-column: 3;
  justify-self: end;
}
html.vx-modal-lock { overflow: hidden; }

.vx-form { display: flex; flex-direction: column; gap: 18px; }
.wpcf7 .vx-form { margin: 0; width: 100%; }
.vx-modal .wpcf7 { width: 100%; }
.vx-form fieldset { border: 0; padding: 0; margin: 0; }
.vx-form p { margin: 0; }
.vx-form__label, .vx-form__field {
  display: block;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.9;
}
.vx-form__file .vx-form__label em {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: var(--muted);
  margin-left: 8px;
}
.vx-form__checks { margin: 12px 0 0; }
.vx-form__checks .wpcf7-form-control-wrap,
.vx-form__checks .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.vx-form__opt,
.vx-form__checks .wpcf7-list-item {
  margin: 0 !important;
}
.vx-form__opt input,
.vx-form__checks .wpcf7-list-item input { position: absolute; opacity: 0; pointer-events: none; }
.vx-form__opt label,
.vx-form__checks .wpcf7-list-item label {
  display: block;
  cursor: pointer;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.4;
  padding: 7px 15px;
  background: #fff;
  border-radius: 50px;
  border: 2px solid #252525;
}
.vx-form__opt input:checked + label,
.vx-form__checks .wpcf7-list-item label:has(input:checked) {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.vx-form__checks.is-invalid .wpcf7-list-item label,
.vx-form__checks .wpcf7-not-valid .wpcf7-list-item label,
.vx-form__checks .wpcf7-form-control-wrap.wpcf7-not-valid .wpcf7-list-item label {
  border-color: #e23b1e !important;
  background: #fff4f1;
}
.vx-form input[type="text"],
.vx-form input[type="tel"],
.vx-form input[type="email"],
.vx-form input[type="url"] {
  width: 100%;
  background: #ebebeb;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 18px 48px 18px 25px;
  font-size: 21px;
  margin-top: 8px;
}
.vx-form .wpcf7-form-control-wrap { display: block; position: relative; }
.vx-form .wpcf7-form-control-wrap.is-valid::after {
  content: "\e92b";
  font-family: icomoon !important;
  position: absolute;
  right: 18px;
  top: 8px;
  height: calc(100% - 8px);
  display: flex;
  align-items: center;
  color: #2ea44f;
  font-size: 22px;
  pointer-events: none;
  line-height: 1;
  speak: never;
}
.vx-form .vx-btn--accent,
.vx-form input.wpcf7-submit {
  font-size: 20px;
  padding: 16px 20px;
  width: 100%;
  border: 0;
  cursor: pointer;
}
.vx-form input.wpcf7-submit:disabled,
.vx-form .wpcf7-submit:disabled {
  opacity: 1;
  cursor: pointer;
}
.vx-form .wpcf7-not-valid-tip,
.vx-form .wpcf7-response-output,
.vx-form .wpcf7-validation-errors,
.vx-form .screen-reader-response,
.wpcf7 > .screen-reader-response,
.vx-modal .screen-reader-response,
.vx-modal .wpcf7-not-valid-tip,
.vx-modal .wpcf7-response-output {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  position: absolute !important;
}
.vx-form input.wpcf7-not-valid,
.vx-form .wpcf7-not-valid input[type="text"],
.vx-form .wpcf7-not-valid input[type="tel"],
.vx-form .wpcf7-form-control-wrap:has(.wpcf7-not-valid) input[type="text"],
.vx-form .wpcf7-form-control-wrap:has(.wpcf7-not-valid) input[type="tel"] {
  border-color: #e23b1e !important;
  background: #fff4f1 !important;
}
.vx-form .wpcf7-acceptance .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
}
.vx-form .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.35;
  color: var(--ink);
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  border-radius: 0 !important;
  cursor: pointer;
}
.vx-form .wpcf7-acceptance input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px;
  margin: 0 !important;
  padding: 0 !important;
  border: 2px solid #cfcfcf !important;
  border-radius: 5px;
  background: #fff !important;
  box-shadow: none !important;
  accent-color: auto;
  cursor: pointer;
  position: relative;
  opacity: 1 !important;
  pointer-events: auto;
  flex: none;
}
.vx-form .wpcf7-acceptance input[type="checkbox"]::-ms-check { display: none; }
.vx-form .wpcf7-acceptance input[type="checkbox"]:checked {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}
.vx-form .wpcf7-acceptance input[type="checkbox"]:checked:after {
  content: "";
  position: absolute;
  left: 7px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.vx-form .wpcf7-acceptance .wpcf7-list-item-label {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
}
.vx-form .wpcf7-acceptance a,
.vx-form .wpcf7-acceptance a:focus,
.vx-form .wpcf7-acceptance a:focus-visible {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  margin-left: 0 !important;
  padding: 0;
  background: none;
}
.vx-form .wpcf7-acceptance input[type="checkbox"]:focus,
.vx-form .wpcf7-acceptance input[type="checkbox"]:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}
.vx-form .wpcf7-acceptance.wpcf7-not-valid input[type="checkbox"],
.vx-form .wpcf7-acceptance.is-invalid input[type="checkbox"],
.vx-form .wpcf7-acceptance:has(.wpcf7-not-valid) input[type="checkbox"],
.vx-form .wpcf7-acceptance input.wpcf7-not-valid {
  border-color: #e23b1e !important;
  box-shadow: none !important;
}
.vx-form .codedropz-upload-handler {
  border: 2px dashed #d5d5d5;
  border-radius: 12px;
  background: #f7f7f7;
  margin: 8px 0 0;
  padding: 0;
  min-height: 0;
  transition: border-color .2s, background .2s;
}
.vx-form .codedropz-dragover,
.vx-form .codedropz-upload-handler.codedropz-dragover {
  border-color: var(--accent);
  background: #fff4f1;
}
.vx-form .codedropz-upload-container { padding: 12px 14px 22px; }
.vx-form .codedropz-upload-inner { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.vx-form .codedropz-upload-inner h3 {
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--muted);
}
.vx-form .codedropz-upload-inner .cd-upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 6px 16px;
  border-radius: 50px;
  background: var(--ink);
  color: #fff !important;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
}
.vx-form .codedropz-upload-inner .cd-upload-btn:hover { background: var(--accent); }
.vx-form .dnd-upload-counter {
  right: 16px;
  bottom: 10px;
  font-size: 12px;
  color: var(--muted);
}
.vx-form .dnd-upload-status {
  padding: 8px 0 0;
  border-top: 1px solid #ececec;
  margin-top: 8px;
}
.vx-form .dnd-upload-status .dnd-upload-image { display: none; }
.vx-form .dnd-upload-status .dnd-upload-details {
  padding-left: 0;
  width: 100%;
}
.vx-form .dnd-upload-status .dnd-upload-details .name {
  color: var(--ink);
  font-size: 14px;
  padding: 2px 36px 2px 0;
}
.vx-form .dnd-upload-status .dnd-upload-details .name em {
  color: var(--muted);
  font-weight: 400;
  font-style: normal;
}
.vx-form .dnd-upload-status .dnd-progress-bar {
  height: 3px;
  background: #e8e8e8;
  border-radius: 3px;
}
.vx-form .dnd-upload-status .dnd-progress-bar span {
  background: var(--accent);
  font-size: 0;
}
.vx-form .wpcf7-not-valid .codedropz-upload-handler,
.vx-form .codedropz-upload-wrapper.invalid .codedropz-upload-handler {
  border-color: #e23b1e;
  background: #fff4f1;
}
.vx-form .wpcf7-spinner { margin-left: 8px; }

.fancybox-container.vx-fancy-form-error {
  z-index: 10080 !important;
}
.vx-fancy-form-error .fancybox-bg {
  background: rgba(15, 19, 13, .55);
}
.vx-fancy-form-error .fancybox-inner,
.vx-fancy-form-error .fancybox-stage,
.vx-fancy-form-error .fancybox-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.vx-fancy-form-error .fancybox-slide {
  width: 100%;
  padding: 24px;
}
.vx-fancy-form-error .fancybox-content,
.vx-fancy-form-error .vx-fancy-error {
  width: 480px !important;
  max-width: calc(100vw - 48px) !important;
  padding: 48px 40px 40px !important;
  background: #fff !important;
  border-radius: 10px !important;
  box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, .2) !important;
  box-sizing: border-box !important;
  overflow: visible !important;
  transform: none !important;
}
.vx-fancy-form-error .fancybox-content .vx-fancy-error {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.vx-fancy-form-error .fancybox-close-small,
.vx-fancy-form-error .fancybox-button {
  display: none !important;
}
.vx-fancy-error {
  position: relative;
  font-family: var(--font);
}
.vx-fancy-error__close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 0;
  background: none;
  padding: 4px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}
.vx-fancy-error__close:hover { color: var(--accent); }
.vx-fancy-error h3 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 36px 16px 0;
  color: var(--ink);
}
.vx-fancy-error p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 28px;
}
.vx-fancy-error__ok {
  width: 100%;
  font-size: 20px;
  padding: 12px 24px;
}

.vx-cookie {
  position: fixed;
  left: 50%;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: auto;
  max-width: min(560px, calc(100% - 40px));
  z-index: 9000;
  background: var(--ink);
  color: var(--fog);
  padding: 14px 14px 14px 20px;
  border-radius: 20px;
  border: 1px solid rgba(239, 239, 239, .1);
  box-shadow: 0 18px 40px rgba(15, 19, 13, .45);
  box-sizing: border-box;
  transform: translateX(-50%) translateY(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .55s ease, transform .55s ease, visibility 0s linear .55s;
}
.vx-cookie.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .55s ease, transform .55s ease, visibility 0s;
}
.vx-cookie p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  flex: 1 1 auto;
  min-width: 0;
  color: var(--fog);
}
.vx-cookie a {
  color: var(--fog);
  border-bottom: 1px solid rgba(239, 239, 239, .45);
  transition: color .4s ease, border-color .4s ease;
}
.vx-cookie a:hover,
.vx-cookie a:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.vx-cookie .vx-btn--sm {
  flex: none;
  min-width: 0;
  max-width: none;
  width: auto;
  padding: 8px 18px;
  font-size: 14px;
}
.vx-cookie .vx-btn--sm:hover,
.vx-cookie .vx-btn--sm:focus-visible {
  background-color: var(--fog);
  color: var(--ink);
}

.vx-loadmore { margin-top: 60px; }
.js-load-more { position: relative; }
.vx-loadmore__spin {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  font-size: 22px;
}
.vx-loadmore__spin i { display: block; }
.js-load-more.is-loading .vx-loadmore__label { visibility: hidden; }
.js-load-more.is-loading .vx-loadmore__spin {
  opacity: 1;
}
.js-load-more.is-loading .vx-loadmore__spin i {
  animation: vxSpin 1s linear infinite;
}
@keyframes vxSpin { to { transform: rotate(360deg); } }

[data-aos="fade-up"] { transform: translate3d(0, 28px, 0); }
@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .vx-transit { display: none !important; }
  .vx-stats__orb,
  .vx-contact__art { animation: none; }
}

@media (max-width: 1366px) {
  :root {
    --pad: 30px;
    --gap: 30px;
    --gap-sm: 15px;
  }
  .vx-header, .vx-header__inner { min-height: 90px; }
  .vx-logo__mark { width: 40px; height: 26px; }
  .vx-logo__name { font-size: 21px; }
  .vx-nav a { font-size: 18px; }
  .vx-btn--ghost { font-size: 18px; }
  .vx-hero { padding: 100px 50px; }
  .vx-hero__title, .vx-hero__spin { font-size: 70px; }
  .vx-hero__sub { font-size: 37px; }
  .vx-hero__bar { padding: 0 30px 30px; }
  .vx-more { font-size: 17px; }
  .vx-more__icon { width: 54px; height: 54px; font-size: 20px; }
  .vx-hero__messengers { font-size: 17px; }
  .vx-cases__head h1, .vx-cases__head h2 { font-size: 111px; }
  .vx-filter { font-size: 24px; }
  .vx-mosaic { gap: 30px; }
  .vx-card h3 { font-size: 21px; }
  .vx-stats { margin-top: calc(-1 * var(--section-y-sm)); }
  .vx-stats__line { margin: 30px 0; }
  .vx-stats__orb { height: 400px; right: 30px; }
  .vx-stats__intro { font-size: 40px; }
  .vx-stat__n { font-size: 80px; }
  .vx-stat p { font-size: 21px; }
  .vx-pagehead { padding: 140px var(--pad) 100px; }
  .vx-pagehead h1 { font-size: 111px; }
  .vx-pagehead--text h1 { font-size: 56px; }
  .vx-prose { font-size: 18px; }
  .vx-prose h2 { font-size: 30px; }
  .vx-prose h3 { font-size: 22px; }
  .vx-pagehead__orb { width: 400px; }
  .vx-pagehead--service h1 { font-size: 56px; }
  .vx-pagehead__lead { font-size: 17px; }
  .vx-case__kicker { font-size: 19px; }
  .vx-case__meta { font-size: 18px; }
  .vx-contact__art { width: 400px; }
  .vx-lead h2, .vx-catalog__lead, .vx-contact h2 { font-size: 40px; }
  .vx-lead__text { font-size: 17px; }
  .vx-catalog__grid { grid-template-columns: repeat(4, 1fr); gap: 30px; }
  .vx-catalog__card { padding: 40px; }
  .vx-catalog__icon { width: 56px; height: 56px; font-size: 24px; }
  .vx-catalog__head h3 { font-size: 30px; }
  .vx-catalog li a, .vx-catalog li span { font-size: 17px; }
  .vx-contact__mail { font-size: 91px; }
  .vx-contact__hours { font-size: 21px; }
  .vx-contact__soc { font-size: 20px; }
  .vx-adv__grid { gap: 40px; }
  .vx-adv__item h3 { font-size: 21px; }
  .vx-adv__item p { font-size: 17px; }
  .vx-legal { gap: 40px; }
  .vx-service__intro h2, .vx-service__title, .vx-adv h2, .vx-steps h2 { font-size: 40px; }
  .vx-service__intro p { font-size: 17px; }
  .vx-steps__row { column-gap: 40px; padding-right: 24px; }
  .vx-step { padding: 40px 0 80px; min-height: 400px; }
  .vx-step--dark { padding: 40px; }
  .vx-step__icon { width: 64px; height: 64px; flex-basis: 64px; font-size: 24px; }
  .vx-step h3 { font-size: 28px; }
  .vx-step li { font-size: 17px; }
  .vx-step__n { font-size: 66px; }
  .vx-legal h3 { font-size: 24px; }
  .vx-legal p, .vx-legal li { font-size: 17px; }
  .vx-legal__icon { width: 40px; height: 40px; flex-basis: 40px; }
  .vx-legal__card--req { padding: 40px; }
  .vx-legal__req-head h3 { font-size: 24px; }
  .vx-stage-card h3 { font-size: 24px; }
  .vx-stage-card p { font-size: 17px; }
  .vx-value h2 { font-size: 60px; }
  .vx-value__item h3 { font-size: 33px; }
  .vx-value__arrow { font-size: 40px; }
  .vx-value__art { width: 150px; right: 60px; }
  .vx-footer__mail { font-size: 35px; }
  .vx-footer__social { font-size: 20px; }
  .vx-btn--dark { font-size: 21px; }
  .vx-btn--accent { font-size: 21px; }
  .vx-facts__col h3 { font-size: 29px; }
  .vx-facts__col ul, .vx-facts__col p { font-size: 18px; }
  .vx-facts__go { font-size: 20px; }
  .vx-related h2 { font-size: 71px; }
  .vx-case__intro { font-size: 19px; }
  .vx-case__cat { font-size: 19px; }
}
@media (max-width: 1200px) {
  :root {
    --pad: 30px;
    --gap: 30px;
    --gap-sm: 15px;
  }
  .vx-logo__name { font-size: 18px; }
  .vx-nav { gap: 30px; }
  .vx-hero__title, .vx-hero__spin { font-size: 60px; }
  .vx-hero__sub { font-size: 31px; }
  .vx-cases__head h1, .vx-cases__head h2 { font-size: 80px; }
  .vx-filter { font-size: 21px; }
  .vx-pagehead { padding: 120px var(--pad) 60px; }
  .vx-pagehead h1 { font-size: 80px; }
  .vx-pagehead--text h1 { font-size: 48px; }
  .vx-prose { font-size: 18px; }
  .vx-prose h2 { font-size: 28px; }
  .vx-pagehead__orb { width: 300px; }
  .vx-pagehead--service h1 { font-size: 40px; }
  .vx-pagehead__lead { font-size: 16px; }
  .vx-case__kicker { font-size: 18px; }
  .vx-case__meta { font-size: 17px; }
  .vx-stats__orb { height: 300px; }
  .vx-stats__intro { font-size: 30px; }
  .vx-stat__n { font-size: 63px; }
  .vx-contact__art { width: 300px; }
  .vx-contact__soc-icon,
  .vx-contact__soc-icon .fab { width: 24px; height: 24px; flex-basis: 24px; font-size: 24px; }
  .vx-lead h2, .vx-catalog__lead, .vx-contact h2 { font-size: 30px; }
  .vx-catalog__grid { grid-template-columns: 1fr 1fr; gap: 25px; }
  .vx-catalog__card--span2 { grid-column: span 1; }
  .vx-catalog__head h3 { font-size: 26px; }
  .vx-catalog li a, .vx-catalog li span { font-size: 16px; }
  .vx-contact__mail { font-size: 69px; }
  .vx-contact__soc { padding: 50px 8px; font-size: 17px; }
  .vx-service__intro h2, .vx-service__title, .vx-adv h2, .vx-steps h2 { font-size: 30px; }
  .vx-service__intro p { font-size: 16px; }
  .vx-adv__grid { gap: 30px; }
  .vx-adv__item h3 { font-size: 21px; }
  .vx-adv__item p { font-size: 16px; }
  .vx-step__icon { width: 58px; height: 58px; flex-basis: 58px; font-size: 19px; }
  .vx-step h3 { font-size: 24px; }
  .vx-step li { font-size: 16px; }
  .vx-step__n { font-size: 53px; }
  .vx-legal { gap: 30px; }
  .vx-legal h3, .vx-legal__req-head h3 { font-size: 21px; }
  .vx-legal p, .vx-legal li { font-size: 16px; }
  .vx-stage-card__body { padding: 24px; }
  .vx-stage-card h3 { font-size: 19px; }
  .vx-stage-card p { font-size: 16px; }
  .vx-value h2 { font-size: 48px; }
  .vx-value__item p { font-size: 15px; }
  .vx-value__item h3 { font-size: 29px; }
  .vx-value__arrow { font-size: 35px; }
  .vx-value__art { width: 100px; }
  .vx-footer__mail { font-size: 26px; }
  .vx-footer__social { font-size: 17px; gap: 20px; }
  .vx-footer__row { gap: 30px; }
  .vx-facts__col h3 { font-size: 24px; }
  .vx-facts__col ul, .vx-facts__col p { font-size: 17px; }
  .vx-facts__go { font-size: 17px; }
  .vx-facts__go i { font-size: 25px; }
  .vx-related h2 { font-size: 60px; }
  .vx-mosaic--3 { grid-template-columns: 1fr 1fr; }
  .vx-modal h2 { font-size: 55px; }
  .vx-modal__text { font-size: 19px; }
  .vx-case__intro { font-size: 18px; }
}
@media (max-width: 1024px) {
  :root {
    --pad: 30px;
    --gap: 30px;
    --gap-sm: 15px;
  }
  .vx-header, .vx-header__inner { min-height: 80px; }
  .vx-header__inner { grid-template-columns: 1fr auto; }
  .vx-header__nav { display: none; }
  .vx-burger { display: inline-flex !important; align-items: center; justify-content: center; }
  .vx-header__side { gap: 10px; }
  .vx-header__side .vx-btn--ghost,
  .vx-burger {
    height: 40px;
    border-radius: 40px;
    box-sizing: border-box;
  }
  .vx-header__side .vx-btn--ghost {
    padding: 0 16px;
    font-size: 15px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .vx-btn--ghost { font-size: 15px; }
  .vx-pagehead { padding: 100px var(--pad) 60px; }
  .vx-pagehead h1 { font-size: 67px; }
  .vx-pagehead--text h1 { font-size: 42px; }
  .vx-prose { font-size: 17px; }
  .vx-prose h1 { font-size: 36px; }
  .vx-prose h2 { font-size: 26px; }
  .vx-prose h3 { font-size: 20px; }
  .vx-prose li { padding-left: 32px; margin-bottom: 10px; }
  .vx-pagehead__lead { font-size: 15px; }
  .vx-pagehead__bar { flex-wrap: wrap; }
  .vx-pagehead__orb { width: 200px; top: 18%; }
  .vx-hero__title, .vx-hero__spin { font-size: 54px; }
  .vx-hero__sub { font-size: 27px; }
  .vx-hero__type { bottom: 35%; }
  .vx-cases__head h1, .vx-cases__head h2 { font-size: 67px; }
  .vx-filter { font-size: 20px; gap: 30px; }
  .vx-mosaic--2, .vx-mosaic--3 { grid-template-columns: 1fr 1fr; }
  .vx-hero__bar { padding: 0 30px 30px; }
  .vx-more { font-size: 16px; gap: 15px; }
  .vx-more__icon { width: 48px; height: 48px; font-size: 20px; }
  .vx-catalog li a, .vx-catalog li span { font-size: 15px; }
  .vx-adv__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .vx-adv__item:not(:first-child):before { left: -10px; }
  .vx-faq__list { grid-template-columns: 1fr; }
  .vx-steps__row {
    grid-template-columns: 1fr 1fr;
    column-gap: 0;
    padding: 0;
  }
  .vx-step, .vx-step--dark { min-height: 0; padding: 40px 40px 80px; }
  .vx-step--dark { border-radius: 30px; }
  .vx-step--dark .vx-step__head { flex-direction: row; align-items: center; }
  .vx-step__n { left: 40px; }
  .vx-legal { gap: 40px; }
  .vx-stage-card h3 { font-size: 19px; }
  .vx-stage-card p { font-size: 15px; }
  .vx-contact__mail { font-size: 52px; }
  .vx-contact__art { width: 200px; }
  .vx-modal__dialog { width: 500px; padding: 50px 30px; }
  .vx-modal h2 { font-size: 55px; }
  .vx-form__label, .vx-form__field,
  .vx-form input[type="text"], .vx-form input[type="tel"] { font-size: 18px; }
  .vx-form .wpcf7-acceptance .wpcf7-list-item-label { font-size: 13px; }
  .vx-modal--full .vx-nav a { font-size: 30px; }
  .vx-modal__messengers { font-size: 19px; }
  .vx-value h2 { font-size: 44px; }
  .vx-value__kicker { font-size: 18px; }
  .vx-value__item h3 { font-size: 26px; }
  .vx-value__arrow { font-size: 30px; top: 16px; }
  .vx-value__art { width: 70px; }
  .vx-btn--dark { font-size: 20px; padding: 14px 24px; }
  .vx-footer__mail { font-size: 24px; }
  .vx-card h3 { font-size: 22px; }
  .vx-facts__col h3 { font-size: 24px; }
  .vx-related h2 { font-size: 51px; }
  .vx-case__media--pad,
  .vx-case__media--video { padding: 40px 20px; }
  .vx-cookie { max-width: min(90vw, 699px); }
}
@media (max-width: 880px) {
  :root {
    --pad: 30px;
    --gap: 30px;
    --gap-sm: 15px;
  }
  .vx-header, .vx-header__inner { min-height: 70px; }
  .vx-mosaic--2, .vx-mosaic--3 { grid-template-columns: 1fr; }
  .vx-cases__head h1, .vx-cases__head h2 { font-size: 66px; }
  .vx-pagehead h1 { font-size: 66px; }
  .vx-pagehead--text h1 { font-size: 38px; }
  .vx-filter { font-size: 18px; gap: 25px; }
  .vx-pagehead--cases .vx-pagehead__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .vx-more { font-size: 15px; }
  .vx-hero__messengers { font-size: 15px; gap: 20px; }
  .vx-hero__bar {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 0 30px 24px;
  }
  .vx-stats__grid { flex-wrap: wrap; }
  .vx-stat {
    flex: 0 0 50%;
    max-width: 50%;
    box-sizing: border-box;
  }
  .vx-stat:first-child {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 24px;
  }
  .vx-stat:nth-child(3) { padding-left: 20px; }
  .vx-stats__intro { font-size: 27px; }
  .vx-stat__n { font-size: 56px; }
  .vx-lead h2, .vx-catalog__lead, .vx-contact h2,
  .vx-service__intro h2, .vx-service__title, .vx-adv h2, .vx-steps h2 { font-size: 27px; }
  .vx-catalog__card { padding: 30px; }
  .vx-footer__row { flex-direction: row; align-items: flex-end; }
  .vx-value h2 { font-size: 35px; }
  .vx-value__item h3 { font-size: 24px; }
  .vx-value__arrow { font-size: 25px; }
  .vx-value .vx-value__item .vx-value__art {
    width: 60px;
    height: 60px;
    top: 0;
    right: 30px;
    margin: 0;
    transform: none;
  }
  .vx-form__opt label,
  .vx-form__checks .wpcf7-list-item label { font-size: 14px !important; padding: 5px 12px; }
  .vx-modal h2 { font-size: 45px; }
  .vx-modal__text { font-size: 17px; }
  .vx-modal__messengers { font-size: 18px; }
  .vx-cookie p { font-size: 14px; }
  .vx-legal { grid-template-columns: 1fr 1fr; gap: 0; }
  .vx-legal__card { padding-right: 15px; }
  .vx-legal__card:nth-child(2) { padding-right: 0; padding-left: 15px; }
  .vx-legal__card--req {
    grid-column: 1 / -1;
    margin-top: 30px;
    padding: 30px;
  }
  .vx-step, .vx-step--dark { padding: 30px 30px 60px; }
  .vx-step__n { left: 30px; }
  .vx-step h3 { font-size: 22px; }
  .vx-contact__mail { font-size: 45px; }
  .vx-related h2 { font-size: 46px; }
  .vx-case__kicker { font-size: 17px; }
  .vx-case__meta { font-size: 15px; }
  .vx-case__intro { font-size: 17px; }
  .vx-adv__item { padding: 0 0 30px; }
}
@media (max-width: 767px) {
  :root {
    --pad: 30px;
    --section-y: 60px;
    --section-y-sm: 40px;
    --gap: 20px;
    --gap-sm: 15px;
  }
  .vx-logo__name { display: none; }
  .vx-logo__mark { width: 35px; height: 22px; }
  .vx-btn--ghost { font-size: 15px; }
  .vx-header, .vx-header__inner { min-height: 70px; }
  .vx-header__inner { padding: 0 var(--pad); }
  .admin-bar .vx-header { top: 46px; }
  .admin-bar .vx-hero { min-height: calc(100svh - 46px); }
  .vx-hero {
    padding: 0 var(--pad);
    align-items: center;
  }
  .vx-hero__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 100%;
    overflow: visible;
  }
  .vx-hero__title, .vx-hero__spin {
    font-size: 39px;
    line-height: 1.2;
    max-width: 450px;
  }
  .vx-hero__spin { margin: -10px 0 0; }
  .vx-hero__sub {
    max-width: 270px;
    margin: 0;
    font-size: 23px;
    line-height: 1.4;
  }
  .vx-hero__type {
    bottom: 35%;
    width: 95%;
    left: 2.5%;
    z-index: 2;
  }
  .vx-hero__ellipse--b {
    width: 100%;
    transform: translate(-50%, 28%) translate3d(var(--vx-mx, 0px), var(--vx-my, 0px), 0);
    filter: blur(90px) hue-rotate(339deg) brightness(1.5);
  }
  .vx-hero__ellipse--a {
    width: 160%;
    bottom: 0;
    opacity: 1;
    z-index: 3;
    transform: translate(-50%, 45%) scale(var(--vx-sc, 1));
  }
  .vx-hero__bar {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 0 var(--pad) var(--pad);
  }
  .vx-clip { max-width: none; }
  .vx-more { font-size: 15px; gap: 15px; flex: 0 0 auto; }
  .vx-more__icon { width: 38px; height: 38px; font-size: 17px; }
  .vx-hero__messengers { font-size: 15px; gap: 20px; flex: 0 0 auto; }
  .vx-cases__head { flex-direction: column; align-items: flex-start; margin-bottom: 16px; gap: 10px; }
  .vx-cases__head h1, .vx-cases__head h2 { font-size: 41px; }
  .vx-filter { font-size: 16px; gap: 20px; }
  .vx-mosaic { gap: 30px; margin-bottom: 24px; }
  .vx-mosaic--2, .vx-mosaic--3 { grid-template-columns: 1fr; }
  .vx-card h3 { font-size: 20px; }
  .vx-card p { font-size: 15px; }
  .vx-stats { margin-top: 0; }
  .vx-stats__intro { font-size: 24px; }
  .vx-stat__n { font-size: 47px; }
  .vx-stat p { font-size: 18px; }
  .vx-stats__orb { height: 200px; top: 32%; right: 8px; }
  .vx-value h2 { font-size: 26px; margin-bottom: var(--gap); }
  .vx-value__item p { font-size: 13px; margin-bottom: 6px; }
  .vx-value__item h3 { font-size: 24px; }
  .vx-value .vx-value__item,
  .vx-value .vx-value__item:nth-child(even) {
    width: 100%;
    min-height: 0;
    padding: 0 0 20px;
    overflow: visible;
  }
  .vx-value .vx-value__line { margin: 0 0 15px; }
  .vx-value .vx-value__arrow { top: 30px; font-size: 25px; right: 0; }
  .vx-value .vx-value__item .vx-value__art {
    position: absolute;
    display: block;
    width: 60px;
    height: 60px;
    top: -30px;
    right: 30px;
    margin: 0;
    transform: none;
    object-fit: contain;
    object-position: top right;
  }
  .vx-lead h2, .vx-catalog__lead, .vx-contact h2,
  .vx-service__intro h2, .vx-service__title, .vx-adv h2, .vx-steps h2 { font-size: 24px; }
  .vx-catalog__grid { grid-template-columns: 1fr; gap: 20px; }
  .vx-catalog__icon { width: 48px; height: 48px; font-size: 20px; }
  .vx-catalog__head h3 { font-size: 21px; }
  .vx-catalog li a, .vx-catalog li span { font-size: 15px; }
  .vx-steps__row { grid-template-columns: 1fr; }
  .vx-step__n { display: none; }
  .vx-step, .vx-step--dark { padding: 30px; }
  .vx-step h3 { font-size: 21px; }
  .vx-step li { font-size: 15px; }
  .vx-legal { grid-template-columns: 1fr; }
  .vx-legal__card, .vx-legal__card:nth-child(2) { padding-left: 0; padding-right: 0; }
  .vx-legal__card--req { margin-top: 0; }
  .vx-legal h3 { font-size: 19px; }
  .vx-legal__req-head h3 { font-size: 21px; }
  .vx-legal p, .vx-legal li { font-size: 15px; }
  .vx-pagehead { padding: 100px var(--pad) 60px; }
  .vx-pagehead h1 { font-size: 41px; }
  .vx-pagehead--text h1 { font-size: 32px; max-width: none; }
  .vx-prose { font-size: 16px; line-height: 1.6; }
  .vx-prose h1 { font-size: 28px; }
  .vx-prose h2 { font-size: 22px; margin: 1.35em 0 0.5em; }
  .vx-prose h3 { font-size: 18px; }
  .vx-prose h4 { font-size: 17px; }
  .vx-prose li { padding-left: 28px; margin-bottom: 10px; }
  .vx-prose ol > li::before { width: 22px; }
  .vx-prose blockquote { padding: 18px 20px; border-radius: 16px; }
  .vx-prose table { display: block; overflow-x: auto; }
  .vx-alignleft,
  .vx-prose .alignleft,
  .vx-alignright,
  .vx-prose .alignright { float: none; margin: 0 0 1em; }
  .vx-pagehead--service h1 { font-size: 28px; }
  .vx-pagehead--agency .vx-more { display: none; }
  .vx-pagehead__lead { font-size: 16px; }
  .vx-pagehead__btns { width: 100%; }
  .vx-pagehead__btns .vx-btn { flex: 1 1 auto; }
  .vx-pagehead--service .vx-more { display: none; }
  .vx-pagehead__row { flex-wrap: wrap; align-items: flex-start; gap: 20px; }
  .vx-pagehead__orb { width: 150px; }
  .vx-stage-card h3 { font-size: 20px; }
  .vx-stage-card p { font-size: 14px; }
  .vx-service__intro-row .icon { font-size: 28px; }
  .vx-service__intro p { font-size: 14px; }
  .vx-adv__grid { grid-template-columns: 1fr; gap: 40px; }
  .vx-adv__item { padding: 0 0 30px; border-left: 0; }
  .vx-adv__item:not(:first-child):before { display: none; }
  .vx-adv__item h3 { font-size: 20px; }
  .vx-adv__item p { font-size: 14px; }
  .vx-pagehead--cases .vx-pagehead__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .vx-pagehead--case .vx-pagehead__row {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
  .vx-pagehead--case .vx-pagehead__titles { gap: 10px; }
  .vx-pagehead--case h1 { font-size: 36px; line-height: 1.05; letter-spacing: -0.02em; }
  .vx-case__kicker {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    max-width: 22em;
  }
  .vx-case__meta {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #ffffff73;
  }
  .vx-case__meta span { display: inline; }
  .vx-case__meta-sep {
    display: inline;
    margin: 0 8px;
  }
  .vx-case__meta-sep:before { content: "·"; }
  .vx-case__cat { display: none; }
  .vx-case__intro { font-size: 15px; }
  .vx-case__media--pad,
  .vx-case__media--video { padding: 30px var(--pad); }
  .vx-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 30px;
    align-items: start;
  }
  .vx-facts__col { flex: none; width: auto; min-width: 0; }
  .vx-facts__col:first-of-type { grid-row: span 2; }
  .vx-facts__col h3 { font-size: 20px; }
  .vx-facts__col ul, .vx-facts__col p { font-size: 14px; }
  .vx-facts__go {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 100px;
    padding: 28px 20px;
    font-size: 17px;
  }
  .vx-related h2 { font-size: 35px; margin-bottom: 24px; }
  .vx-related__swiper { padding: 0; }
  .vx-related > .vx-btn { margin-top: 16px; }
  .vx-cases--archive { padding-bottom: 0; }
  .vx-cases--archive .vx-mosaic { margin-bottom: 16px; }
  .vx-loadmore { margin-top: 8px; }
  .vx-cases--archive + .vx-stats { padding-top: 24px; }
  .vx-contact__art { width: 150px; top: 25%; }
  .vx-contact__line { margin: 30px 0; }
  .vx-contact__mail { font-size: 33px; }
  .vx-contact__hours { font-size: 18px; margin-top: 15px; }
  .vx-contact__social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
    border: 1px solid var(--night);
  }
  .vx-contact__soc {
    flex: none;
    flex-direction: column;
    gap: 10px;
    padding: 50px 0;
    font-size: 14px;
    border-left: 0;
  }
  .vx-contact__soc:nth-child(odd) { border-right: 1px solid var(--night); }
  .vx-contact__soc:nth-child(-n+2) { border-bottom: 1px solid var(--night); }
  .vx-btn--dark { font-size: 18px; padding: 12px 20px; line-height: 1.3; }
  .vx-btn--hero { font-size: 16px; padding: 10px 16px; }
  .vx-footer__row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .vx-footer .vx-btn {
    order: -1;
    align-self: center;
    width: auto;
    font-size: 18px;
    padding: 12px 40px;
  }
  .vx-footer__links { order: 1; }
  .vx-footer__social { font-size: 14px; flex-wrap: wrap; gap: 15px; margin-top: 12px; justify-content: center; }
  .vx-footer__mail { font-size: 20px; word-break: break-word; }
  .vx-modal__dialog { width: 100vw; max-width: 100vw; padding: 30px; }
  .vx-modal h2 { font-size: 35px; }
  .vx-modal__text { font-size: 16px; }
  .vx-modal__close { top: 20px; right: 20px; }
  .vx-modal__dialog--full .vx-modal__close {
    position: static;
    top: auto;
    right: auto;
    transform: none;
  }
  .vx-modal--full .vx-modal__dialog--full { padding: 0; }
  .vx-modal__menu-top { min-height: 70px; padding: 0 16px; }
  .vx-logo--menu svg { width: 50px; height: 32px; }
  .vx-modal--full .vx-nav { gap: 28px; }
  .vx-modal--full .vx-nav a { font-size: 36px; }
  .vx-modal--full .vx-nav__sub a { font-size: 18px; }
  .vx-modal__messengers {
    margin-left: 0;
    justify-content: center;
    font-size: 16px;
    gap: 40px;
    padding: 24px 20px calc(32px + env(safe-area-inset-bottom, 0px));
  }
  .vx-form { gap: 14px; }
  .vx-form__label, .vx-form__field,
  .vx-form input[type="text"], .vx-form input[type="tel"] { font-size: 16px; }
  .vx-form input[type="text"],
  .vx-form input[type="tel"] { padding: 14px 40px 14px 16px; }
  .vx-form .wpcf7-acceptance .wpcf7-list-item-label { font-size: 12px; }
  .vx-cookie {
    left: var(--pad);
    right: var(--pad);
    bottom: 16px;
    width: auto;
    max-width: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 12px;
    transform: translateY(18px);
  }
  .vx-cookie.is-open { transform: translateY(0); }
  .vx-cookie p { font-size: 12px; line-height: 1.35; }
  .vx-cookie .vx-btn--sm {
    width: 100%;
    max-width: none;
    min-width: 0;
    flex: none;
    font-size: 12px;
    padding: 7px 12px;
  }

  .vx-stage-card { flex-basis: 100%; }
  .vx-case__media--pad { padding: 30px; }
  .vx-case__media--video { padding: 30px; }
  .vx-mosaic--3 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  :root {
    --pad: 30px;
    --section-y: 60px;
    --section-y-sm: 40px;
    --gap: 20px;
    --gap-sm: 15px;
  }
  .vx-cases__head h1, .vx-cases__head h2 { font-size: 34px; }
  .vx-pagehead h1 { font-size: 41px; }
  .vx-pagehead--text h1 { font-size: 28px; }
  .vx-pagehead--service h1 { font-size: 24px; }
  .vx-modal h2 { font-size: 28px; }
  .vx-modal--full .vx-nav a { font-size: 28px; }
}
@media (min-width: 1025px) {
  .vx-header__nav { display: flex !important; }
}
