@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("./assets/fonts/HelveticaNeueCyr-UltraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("./assets/fonts/HelveticaNeueCyr-Thin.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("./assets/fonts/HelveticaNeueCyr-Roman.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("./assets/fonts/helveticaneuecyr-medium1.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HelveticaNeueCyr";
  src: url("./assets/fonts/HelveticaNeueCyr-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Giorgio Sans LCG";
  src: url("./assets/fonts/GiorgioSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Giorgio Sans LCG";
  src: url("./assets/fonts/GiorgioSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Giorgio Sans LCG";
  src: url("./assets/fonts/GiorgioSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Giorgio Sans Pricing";
  src: url("./assets/fonts/GiorgioSansLCG-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Giorgio Sans Pricing";
  src: url("./assets/fonts/GiorgioSansLCG-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Giorgio Sans Pricing";
  src: url("./assets/fonts/GiorgioSansLCG-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Giorgio Sans LCG Menu";
  src: url("./assets/fonts/GiorgioSansLCG-MenuMedium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --desktop-width: 1900px;
  --desktop-height: 4144px;
  --blue: #165dc7;
  --blue-deep: #0e4eb9;
  --blue-soft: #e7f0ff;
  --text: #2b313f;
  --muted: #7d8497;
  --ease-fluid: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-hover-soft: 0 24px 56px rgba(19, 51, 120, 0.16);
  --shadow-hover-strong: 0 28px 68px rgba(19, 51, 120, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #eef3fc;
  font-family: "HelveticaNeueCyr", Arial, sans-serif;
  font-synthesis: none;
  overflow-x: hidden;
  color: var(--text);
  -webkit-user-select: none;
  user-select: none;
}

body.legal-open {
  overflow: hidden;
}

body.js-ready .reveal-section,
body.js-ready .reveal-item {
  opacity: 0;
  transform: translateY(18px);
  will-change: transform, opacity;
  transition:
    opacity 320ms ease,
    transform 320ms var(--ease-fluid);
  transition-delay: var(--reveal-delay, 0ms);
}

body.js-ready .reveal-item {
  transition-delay: calc(var(--reveal-delay, 0ms) + 90ms);
}

body.js-ready .reveal-section.is-visible,
body.js-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

.site {
  min-height: 100vh;
}

.floating-header {
  position: fixed;
  left: 50%;
  top: 18px;
  transform: translateX(-50%) translateY(-18px);
  width: min(1320px, calc(100vw - 48px));
  height: 72px;
  padding: 0 24px 0 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(13, 34, 88, 0.44);
  box-shadow: 0 18px 48px rgba(8, 24, 67, 0.24);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  isolation: isolate;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 320ms ease,
    transform 420ms var(--ease-fluid),
    box-shadow 320ms ease,
    background-color 320ms ease;
}

.floating-header::before,
.floating-header::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.floating-header::before {
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 42%, rgba(255, 255, 255, 0.09));
  opacity: 0.78;
  z-index: -1;
}

.floating-header::after {
  left: -22%;
  top: 0;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  opacity: 0;
  transform: skewX(-20deg);
  transition:
    transform 720ms var(--ease-fluid),
    opacity 320ms ease;
}

body.scrolled-nav .floating-header {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

body.scrolled-nav .floating-header:hover {
  background: rgba(13, 34, 88, 0.52);
  box-shadow: 0 24px 58px rgba(8, 24, 67, 0.28);
}

body.scrolled-nav .floating-header:hover::after {
  opacity: 1;
  transform: translateX(420%) skewX(-20deg);
}

.floating-header__brand,
.floating-header__nav,
.floating-header__actions {
  display: flex;
  align-items: center;
}

.floating-header__brand {
  gap: 9px;
  flex: none;
  position: relative;
  z-index: 1;
  transition:
    transform 280ms var(--ease-fluid),
    filter 280ms ease;
}

.floating-header__nav {
  gap: 17px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.floating-header__nav span {
  color: rgba(255, 255, 255, 0.5);
}

.floating-header__nav a,
.nav a {
  position: relative;
  transition:
    color 260ms ease,
    opacity 260ms ease,
    text-shadow 260ms ease;
}

.floating-header__nav a::after,
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0));
  transform: scaleX(0.28);
  transform-origin: center;
  opacity: 0;
  transition:
    transform 320ms var(--ease-fluid),
    opacity 240ms ease;
}

.floating-header__nav a:hover,
.floating-header__nav a:focus-visible,
.floating-header__nav a.is-active,
.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.18);
}

.floating-header__nav a:hover::after,
.floating-header__nav a:focus-visible::after,
.floating-header__nav a.is-active::after,
.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.floating-header__actions {
  gap: 12px;
  flex: none;
}

.mobile-fallback {
  display: none;
}

.desktop-stage {
  position: relative;
  width: min(100vw, 1900px);
  margin: 0 auto;
  overflow: hidden;
  background: #eef3fc;
}

.desktop-site {
  position: absolute;
  inset: 0 auto auto 0;
  width: var(--desktop-width);
  height: var(--desktop-height);
  background: #eef3fc;
  transform: scale(var(--desktop-scale, 1));
  transform-origin: top left;
}

.hero,
.features,
.pricing,
.instruction {
  position: absolute;
  left: 0;
  width: var(--desktop-width);
}

.section-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.48em;
}

.section-title {
  margin: 0;
  font-size: 66px;
  line-height: 0.97;
  font-weight: 400;
}

.hero {
  top: 0;
  height: 1038px;
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  top: 80px;
  width: 1900px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.hero__bg,
.hero__rays {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.hero__bg {
  background-image: url("./assets/desktop/hero-bg.png");
}

.hero__rays {
  background-image: url("./assets/desktop/hero-rays.png");
  mix-blend-mode: screen;
  opacity: 0.88;
}

.brand,
.nav,
.header-actions,
.hero__fighter,
.hero__bubble,
.hero__subtitle,
.hero__title,
.hero__cta-group,
.hero__side-copy,
.hero__platforms,
.hero__facts {
  position: absolute;
  z-index: 2;
}

.brand {
  left: 299px;
  top: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  transition:
    transform 280ms var(--ease-fluid),
    filter 280ms ease;
}

.brand__icon-wrap {
  display: inline-flex;
  transition:
    transform 360ms var(--ease-fluid),
    filter 320ms ease;
}

.brand__icon {
  width: 38px;
  height: 38px;
}

.brand:hover .brand__icon-wrap,
.brand:focus-visible .brand__icon-wrap,
.floating-header__brand:hover .brand__icon-wrap,
.floating-header__brand:focus-visible .brand__icon-wrap {
  transform: translateY(-2px) scale(1.06) rotate(-4deg);
  filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.18));
}

.brand__text {
  font-family: "Giorgio Sans LCG", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 34px;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: #fff;
}

.nav {
  left: 494px;
  top: 34px;
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.nav a,
.nav span {
  display: inline-flex;
  align-items: center;
}

.nav a {
  font-weight: 500;
}

.nav span {
  color: rgba(255, 255, 255, 0.58);
}

.header-actions {
  left: 1246px;
  top: 19px;
  display: flex;
  gap: 12px;
}

.header-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  gap: 7px;
  padding: 0 21px 0 23px;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 320ms var(--ease-fluid),
    filter 320ms ease,
    box-shadow 320ms ease;
}

.header-button::before,
.hero__cta::before,
.pricing__get-free::before,
.feature-promo__button::before,
.instruction__support a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.24) 48%, transparent 78%);
  transform: translateX(-135%);
  transition: transform 720ms var(--ease-fluid);
  pointer-events: none;
}

.header-button span {
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
}

.header-button__icon {
  position: relative;
  z-index: 1;
  width: 13px;
  height: 13px;
  flex: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.header-button__icon--dark {
  background-image: url("./assets/desktop/header-icon-dark.png");
}

.header-button__icon--light {
  background-image: url("./assets/desktop/header-icon-light.png");
}

.header-button--light {
  background: #fff;
  color: #292d32;
}

.header-button--dark {
  background: rgba(41, 45, 50, 0.94);
  color: #fff;
}

.hero__fighter {
  left: 7px;
  top: -80px;
  width: 1998px;
  z-index: 0;
}

.hero__bubble {
  z-index: 1;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.16));
}

.ambient-float {
  animation: none;
  will-change: auto;
}

.ambient-float--slow {
  animation-duration: 8.4s;
  animation-delay: -1.6s;
}

.ambient-float--wide {
  animation-duration: 9.2s;
  animation-delay: -2.1s;
}

.hero__bubble--instagram {
  left: 1321px;
  top: 278px;
  width: 346px;
  height: 365px;
  z-index: 3;
  opacity: 1;
  visibility: visible;
}

.hero__bubble--telegram {
  left: 562px;
  top: 199px;
  width: 111px;
}

.hero__bubble--whatsapp {
  left: 286px;
  top: 254px;
  display: block;
  width: 157px;
  height: 167px;
  z-index: 3;
  opacity: 1;
  visibility: visible;
}

.hero__subtitle {
  left: 293px;
  top: 489px;
  width: 290px;
  margin: 0;
  font-size: 30px;
  line-height: 100%;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero__title {
  left: 286px;
  top: 548px;
  width: 672px;
  margin: 0;
  font-family: "Giorgio Sans LCG", sans-serif;
  font-weight: 700;
  font-size: 261.236px;
  line-height: 247px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  background: linear-gradient(271.22deg, rgba(0, 192, 242, 0.18) 12.39%, rgba(255, 255, 255, 0.18) 45.28%), #ffffff;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__cta-group {
  left: 294px;
  top: 808px;
  display: flex;
  gap: 22px;
}

.hero__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 57px;
  border-radius: 100px;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 320ms var(--ease-fluid),
    filter 320ms ease,
    box-shadow 320ms ease;
}

.hero__cta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  font-size: 15px;
  line-height: 15px;
  font-weight: 400;
}

.hero__cta--primary {
  min-width: 264px;
  padding: 0 44px;
  background: #292d32;
  color: #fff;
}

.hero__cta--secondary {
  min-width: 147px;
  padding: 0 35px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.92);
  color: #fff;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero__side-copy {
  left: 1261px;
  top: 160px;
  width: 346px;
  margin: 0;
  font-size: 22px;
  line-height: 127%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.91);
}

.hero__side-copy-primary,
.hero__side-copy-secondary {
  display: block;
}

.hero__side-copy-primary {
  font-weight: 500;
}

.hero__side-copy-secondary {
  margin-top: 2px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
}

.hero__platforms {
  left: 1262px;
  top: 235px;
  display: flex;
  gap: 4px;
}

.hero__platform {
  display: inline-flex;
  width: 60px;
  height: 60px;
}

.hero__facts {
  left: 1163px;
  top: 708px;
  width: 444px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.hero-fact {
  position: relative;
  min-height: 138px;
  padding: 24px 22px 20px 29px;
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(17, 54, 132, 0.12);
  color: #292d32;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition:
    transform 380ms var(--ease-fluid),
    box-shadow 380ms ease,
    filter 380ms ease;
}

.hero-fact__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 118px;
  text-align: left;
}

.hero-fact strong {
  display: block;
  font-size: 31px;
  line-height: 100%;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #004ebb;
}

.hero-fact span:last-child {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 300;
  letter-spacing: 0.03em;
  text-align: left;
}

.hero-fact__check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #dbe9ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    transform 420ms var(--ease-spring),
    box-shadow 320ms ease,
    background-color 320ms ease;
}

.hero-fact__check::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 6px;
  border-left: 2px solid #2f80ed;
  border-bottom: 2px solid #2f80ed;
  transform: translate(-50%, -56%) rotate(-45deg);
}

.features {
  top: 944px;
  height: 1238px;
}

.browser-shell,
.browser-inner,
.browser-topbar,
.browser-dots,
.features__label,
.features__title,
.features__servers,
.features__flag,
.feature-card,
.feature-promo {
  position: absolute;
}

.browser-shell {
  left: 212px;
  top: 0;
  width: 1476px;
  height: 1238px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 72px rgba(20, 54, 129, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.browser-shell::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto;
  height: 68px;
  border-radius: 22px 22px 18px 18px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}

.browser-inner {
  left: 232px;
  top: 20px;
  width: 1436px;
  height: 1198px;
  border-radius: 28px;
  background: #f1f1f1;
}

.browser-topbar {
  left: 232px;
  top: 20px;
  width: 1433px;
  background: #fff;
  border-radius: 28px 28px 0 0;
}

.browser-dots {
  left: 258px;
  top: 42px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #bfc7d8;
  box-shadow: 14px 0 0 #bfc7d8, 28px 0 0 #bfc7d8;
}

.features__label {
  left: 298px;
  top: 138px;
  margin: 0;
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: rgba(105, 105, 105, 0.5);
}

.features__title {
  left: 298px;
  top: 176px;
  width: 668px;
  margin: 0;
  font-size: 53px;
  line-height: 52px;
  font-weight: 500;
  font-synthesis: none;
  letter-spacing: -0.05em;
  color: #292d32;
}

.features__servers {
  left: 1370px;
  top: 169px;
  width: 134px;
  margin: 0;
  font-size: 16px;
  line-height: 16px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #292d32;
}

.features__flag--us {
  left: 1370px;
  top: 221px;
}

.features__flag--nl {
  left: 1406px;
  top: 221px;
}

.features__flag--de {
  left: 1442px;
  top: 218px;
}

.features__flag--globe {
  left: 1483px;
  top: 218px;
  width: 48px;
  height: 48px;
}

.feature-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(20, 54, 129, 0.09);
  transform-style: preserve-3d;
  transition:
    transform 360ms var(--ease-fluid),
    box-shadow 360ms ease,
    filter 360ms ease;
}

.feature-card::before,
.pricing__banner::before,
.plan-card::before,
.step-card::before,
.feature-promo__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 360ms ease,
    transform 460ms var(--ease-fluid);
}

.feature-card::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.3), transparent 28%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.12), transparent 42%);
  transform: scale(0.96);
}

.feature-card--speed {
  left: 298px;
  top: 327px;
  width: 645px;
  height: 392px;
  padding: 24px 40px 34px;
  background: #fff;
}

.feature-card--routing {
  left: 958px;
  top: 327px;
  width: 645px;
  height: 392px;
  background: #e0e9f6;
}

.feature-card--stability {
  left: 298px;
  top: 734px;
  width: 315px;
  height: 392px;
  padding: 36px 40px 34px;
  background: #292d32;
  color: #fff;
}

.feature-card--bypass {
  left: 628px;
  top: 734px;
  width: 645px;
  height: 392px;
  background: #e0e9f6;
}

.feature-card__media {
  position: relative;
  flex: none;
  overflow: hidden;
}

.feature-card__media--speed {
  height: 176px;
}

.feature-card__media--routing {
  height: 201px;
}

.feature-card__media--bypass {
  position: absolute;
  inset: 0;
  height: 100%;
  background-color: #e0e9f6;
  background:
    linear-gradient(180deg, rgba(234, 241, 252, 0.08) 0%, rgba(234, 241, 252, 0.08) 56%, rgba(224, 233, 246, 0.62) 70%, rgba(224, 233, 246, 0.96) 100%),
    url("./assets/desktop/feature-bypass-custom-bg.png") center top / contain no-repeat;
  transform: translateY(0);
  transform-origin: center top;
  transition:
    transform 560ms var(--ease-fluid),
    filter 360ms ease;
}

.feature-card__media--bypass::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0%, rgba(255, 255, 255, 0.18) 35%, transparent 56%),
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.16), transparent 34%);
  opacity: 0.42;
  transform: translateX(-3%) translateY(0);
  transition:
    opacity 360ms ease,
    transform 620ms var(--ease-fluid);
  pointer-events: none;
}

.feature-card__copy {
  position: absolute;
  z-index: 2;
}

.feature-card__copy h3 {
  margin: 0;
  font-size: 25px;
  line-height: 25px;
  font-weight: 500;
  font-synthesis: none;
  letter-spacing: -0.01em;
  color: inherit;
}

.feature-card__copy p {
  margin: 0;
  font-size: 16px;
  line-height: 18px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: inherit;
}

.feature-card--speed .feature-card__copy {
  left: 40px;
  top: 253px;
}

.feature-card--speed .feature-card__copy h3 {
  width: 226px;
}

.feature-card--speed .feature-card__copy p {
  width: 328px;
  margin-top: 16px;
}

.feature-card__speed-icon {
  position: absolute;
  left: 1px;
  top: 5px;
  width: 62px;
  height: 62px;
  transition: transform 420ms var(--ease-fluid), filter 320ms ease;
}

.feature-card__speed-gauge {
  position: absolute;
  left: 112px;
  top: -11px;
  width: 326px;
  height: 189px;
  transition: transform 520ms var(--ease-fluid), filter 360ms ease;
}

.feature-card--routing .feature-card__copy {
  left: 40px;
  top: 235px;
}

.feature-card__routing-preview {
  position: absolute;
  left: 0;
  top: -1px;
  width: 645px;
  height: 392px;
  object-fit: cover;
  object-position: center top;
  transition: transform 520ms var(--ease-fluid), filter 360ms ease;
}

.feature-card__routing-icon {
  position: absolute;
  left: 37px;
  top: 37px;
  width: 67px;
  height: 67px;
  z-index: 2;
  transition: transform 420ms var(--ease-fluid), filter 320ms ease;
}

.feature-card--routing .feature-card__copy h3 {
  width: 250px;
}

.feature-card--routing .feature-card__copy p {
  width: 325px;
  margin-top: 16px;
}

.feature-card--routing::after,
.feature-card--bypass::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 208px;
  background: inherit;
  z-index: 1;
}

.feature-card--stability .feature-card__copy {
  left: 40px;
  top: 235px;
}

.feature-card--stability .feature-card__copy p {
  width: 188px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.92);
}

.feature-card--stability .feature-card__copy h3 {
  width: 196px;
}

.feature-card__stability-waves {
  position: absolute;
  left: -40px;
  top: 0;
  width: 356px;
  height: 392px;
  opacity: 0.18;
  mix-blend-mode: screen;
  transition: transform 620ms var(--ease-fluid), opacity 360ms ease;
}

.feature-card__stability-icon {
  position: absolute;
  left: 38px;
  top: 37px;
  width: 55px;
  height: 55px;
  transition: transform 420ms var(--ease-fluid), filter 320ms ease;
}

.feature-card--bypass .feature-card__copy {
  left: 40px;
  right: 36px;
  top: auto;
  bottom: 38px;
  transition: transform 420ms var(--ease-fluid), filter 320ms ease;
}

.feature-card__bypass-preview {
  display: none;
}

.feature-card--bypass .feature-card__copy h3 {
  width: 223px;
}

.feature-card--bypass .feature-card__copy p {
  width: 392px;
  margin-top: 16px;
}

.feature-card--bypass:hover .feature-card__media--bypass,
.feature-card--bypass:focus-visible .feature-card__media--bypass {
  transform: translateY(-4px);
  filter: saturate(1.02) brightness(1.01);
}

.feature-card--bypass:hover .feature-card__media--bypass::after,
.feature-card--bypass:focus-visible .feature-card__media--bypass::after {
  opacity: 0.72;
  transform: translateX(2%) translateY(-4px);
}

.feature-card--bypass:hover .feature-card__copy,
.feature-card--bypass:focus-visible .feature-card__copy {
  transform: translateY(-4px);
  filter: drop-shadow(0 10px 18px rgba(255, 255, 255, 0.16));
}

.feature-promo {
  left: 1288px;
  top: 734px;
  width: 315px;
  height: 454px;
  border-radius: 20px;
}

.feature-promo__visual {
  position: relative;
  height: 392px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(21, 57, 137, 0.18);
  transform-style: preserve-3d;
  transition:
    transform 360ms var(--ease-fluid),
    box-shadow 360ms ease,
    filter 360ms ease;
}

.feature-promo__visual::before {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.16), transparent 46%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.28), transparent 38%);
  transform: scale(0.97);
}

.feature-promo__image {
  width: 100%;
  height: 392px;
  object-fit: cover;
  object-position: center top;
  transform: translate3d(var(--media-x, 0px), var(--media-y, 0px), 0) scale(var(--media-scale, 1));
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-promo__copy {
  width: 257px;
  margin: 16px 0 0 auto;
  font-size: 14px;
  line-height: 116%;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-align: right;
  color: #292d32;
  transition:
    transform 320ms var(--ease-fluid),
    filter 320ms ease;
}

.feature-promo__button {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 192px;
  height: 44px;
  padding: 0 26px;
  border-radius: 999px;
  background: rgba(41, 45, 50, 0.94);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  font-size: 15px;
  line-height: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  z-index: 3;
  transition:
    transform 460ms var(--ease-fluid),
    filter 420ms ease,
    box-shadow 420ms ease,
    background-color 420ms ease;
}

.feature-promo__button:hover,
.feature-promo__button:focus-visible {
  transform: translateX(-50%) translateY(-1px);
  filter: brightness(1.04) saturate(1.01);
  box-shadow: 0 10px 22px rgba(17, 34, 82, 0.18);
}

.feature-promo__button:active {
  transform: translateX(-50%) translateY(0) scale(0.992);
}

.pricing {
  top: 2271px;
  height: 881px;
}

.pricing__label,
.pricing__title,
.pricing__label-text,
.pricing__title-text,
.pricing__banner,
.pricing__cards {
  position: absolute;
}

.pricing__label {
  left: 298px;
  top: 0;
  color: rgba(43, 49, 63, 0.48);
}

.pricing__title {
  left: 298px;
  top: 38px;
  width: 694px;
}

.pricing__label-text {
  left: 298px;
  top: 0;
  margin: 0;
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: rgba(105, 105, 105, 0.5);
}

.pricing__title-text {
  left: 298px;
  top: 38px;
  width: 726px;
  margin: 0;
  font-size: 53px;
  line-height: 52px;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: #292d32;
}

.pricing__banner {
  left: 298px;
  top: 168px;
  width: 1305px;
  height: 91px;
  padding: 18px 32px 18px 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, #dde7fb 0%, #d6e2fb 100%);
  display: flex;
  align-items: center;
  transform-style: preserve-3d;
  overflow: visible;
  transition:
    transform 360ms var(--ease-fluid),
    box-shadow 360ms ease,
    filter 360ms ease;
}

.pricing__banner::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.26), transparent 42%),
    radial-gradient(circle at 0% 50%, rgba(255, 255, 255, 0.24), transparent 28%);
  border-radius: inherit;
  transform: translateX(-18px) scale(0.98);
}

.pricing__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  height: 44px;
  border-radius: 14px;
  background: #2f80ed;
  color: #fff;
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  text-transform: uppercase;
  transition:
    transform 320ms var(--ease-spring),
    box-shadow 320ms ease,
    filter 320ms ease;
}

.pricing__trial-copy {
  margin-left: 56px;
}

.pricing__trial-title {
  margin: 0;
  font-size: 25px;
  line-height: 25px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #292d32;
}

.pricing__trial-subtitle {
  margin: 6px 0 0;
  font-size: 16px;
  line-height: 16px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #292d32;
}

.pricing__arrow {
  margin-left: 191px;
  width: 193px;
  position: relative;
  z-index: 1;
  transform: translate3d(var(--media-x, 0px), var(--media-y, 0px), 0) scale(var(--media-scale, 1));
  transition: transform 360ms var(--ease-fluid);
}

.pricing__get-free {
  position: relative;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 236px;
  height: 57px;
  padding: 0 44px;
  border-radius: 100px;
  background: #292d32;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  transition:
    transform 320ms var(--ease-fluid),
    filter 320ms ease,
    box-shadow 320ms ease;
}

.pricing__get-free span {
  position: relative;
  z-index: 1;
  font-size: 15px;
  line-height: 15px;
  font-weight: 500;
}

.pricing__cards {
  left: 298px;
  top: 367px;
  width: 1305px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.plan-card-image {
  display: block;
  width: 315px;
  height: 455px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: none;
  transform-style: preserve-3d;
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 360ms ease,
    box-shadow 360ms ease;
}

.plan-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate3d(var(--media-x, 0px), var(--media-y, 0px), 0) scale(var(--media-scale, 1));
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.plan-card {
  position: relative;
  height: 455px;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 18px 36px rgba(20, 54, 129, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  border: 1px solid rgba(42, 47, 57, 0.06);
  display: flex;
  flex-direction: column;
  transition:
    transform 360ms var(--ease-fluid),
    box-shadow 360ms ease,
    filter 360ms ease;
}

.plan-card::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 40%),
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.28), transparent 28%);
  transform: scale(0.98);
}

.plan-card--outlined {
  box-shadow: inset 0 0 0 2px rgba(47, 128, 237, 0.18);
}

.plan-card--featured {
  background: #2b2f36;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 44px rgba(16, 27, 59, 0.16);
  overflow: visible;
  z-index: 2;
}

.plan-card--featured::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 24%, rgba(255, 255, 255, 0.24) 48%, transparent 68%);
  opacity: 0;
  transform: translateX(-130%) skewX(-12deg);
  transition:
    transform 720ms var(--ease-fluid),
    opacity 300ms ease;
}

.plan-card__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.plan-card__glow::before {
  content: "";
  position: absolute;
  left: 49px;
  top: 28px;
  width: 218px;
  height: 168px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 247, 237, 0.92) 0%, rgba(255, 247, 237, 0.58) 34%, rgba(255, 247, 237, 0) 75%);
  opacity: 0.9;
  filter: blur(24px);
  transition:
    transform 460ms var(--ease-fluid),
    opacity 360ms ease,
    filter 360ms ease;
}

.plan-card__head {
  position: relative;
  padding: 31px 30px 96px;
  min-height: 278px;
  transition: transform 360ms var(--ease-fluid);
}

.plan-card__period {
  font-size: 18px;
  line-height: 18px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: inherit;
  opacity: 0.96;
}

.plan-card__price {
  margin-top: 26px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  font-size: 72px;
  line-height: 65px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.plan-card__price-value {
  display: inline-block;
  font-family: "Giorgio Sans Pricing", "Giorgio Sans LCG", sans-serif;
  font-size: 72px;
  line-height: 65px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.plan-card__price > span:not(.plan-card__price-value) {
  font-family: "HelveticaNeueCyr", Arial, sans-serif;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.plan-card__total {
  margin-top: 17px;
  font-size: 18px;
  line-height: 18px;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.plan-card__total strong {
  font-weight: 500;
}

.plan-card__button {
  position: absolute;
  left: 29px;
  right: 29px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 57px;
  border-radius: 999px;
  background: #dbe6f9;
  color: #2d3342;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition:
    transform 320ms var(--ease-spring),
    filter 320ms ease,
    box-shadow 320ms ease;
}

.plan-card--featured .plan-card__button {
  background: #2f80ed;
  color: #fff;
}

.plan-card__features {
  margin: 0;
  padding: 21px 28px 0 62px;
  list-style: none;
  border-top: 1px solid rgba(42, 47, 57, 0.08);
  flex: 1;
}

.plan-card--featured .plan-card__features {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.plan-card__features li {
  position: relative;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 19px;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.plan-card__features li::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: url("./assets/pricing/feature-check-bg.png") center / contain no-repeat;
}

.plan-card__features li::after {
  content: "";
  position: absolute;
  left: -23px;
  top: 7px;
  width: 6px;
  height: 5px;
  background: url("./assets/pricing/feature-check-mark.png") center / contain no-repeat;
}

.plan-card__economy {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 11px 6px;
  border-radius: 999px;
  background: rgba(123, 166, 53, 0.18);
  color: #7ba635;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition:
    transform 360ms var(--ease-spring),
    filter 320ms ease,
    box-shadow 320ms ease;
}

.plan-card__economy--blue {
  background: rgba(47, 128, 237, 0.15);
  color: #2f80ed;
}

.plan-card__fire {
  position: absolute;
  left: 102px;
  top: -28px;
  width: 68px;
  z-index: 5;
  pointer-events: none;
  transform-origin: center bottom;
  transition: transform 420ms var(--ease-spring), filter 320ms ease;
}

.instruction {
  top: 3284px;
  height: 860px;
  overflow: hidden;
  background-color: #165dc7;
  background: url("./assets/instruction/instruction-clean-bg.png") no-repeat;
  background-position: 54% 50%;
  background-size: 124% auto;
  color: #fff;
}

.instruction__bg,
.instruction__label,
.instruction__title,
.instruction__left,
.instruction__steps,
.instruction__support,
.instruction__footer {
  position: absolute;
}

.instruction__bg {
  inset: 0;
  background-color: #165dc7;
  background: url("./assets/instruction/instruction-clean-bg.png") no-repeat;
  background-position: 54% 50%;
  background-size: 124% auto;
  overflow: hidden;
}

.instruction__bg::before {
  content: none;
}

.instruction__bg::after {
  content: none;
}

.instruction__label {
  left: 258px;
  top: 96px;
  z-index: 4;
  margin: 0;
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.instruction__title {
  left: 258px;
  top: 132px;
  width: 640px;
  z-index: 4;
  margin: 0;
  font-size: 52px;
  line-height: 52px;
  font-weight: 500;
  letter-spacing: -0.05em;
  white-space: nowrap;
  color: #fff;
}

.instruction__left {
  position: absolute;
  left: 235px;
  top: 627px;
  width: auto;
  height: auto;
  z-index: 4;
  pointer-events: none;
}

.instruction__fighter {
  display: none;
}

.instruction__brand-image {
  position: absolute;
  left: -2px;
  bottom: -70px;
  width: 430px;
  height: auto;
  z-index: 2;
}

.instruction__brand-text {
  position: static;
  z-index: 4;
  margin: 0;
  font-family: "Giorgio Sans LCG", sans-serif;
  font-size: 232px;
  line-height: 0.74;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.instruction__steps {
  left: 1048px;
  top: 118px;
  width: 645px;
  z-index: 3;
  display: grid;
  gap: 6px;
}

.step-card {
  position: relative;
  min-height: 123px;
  padding: 0 36px 0 40px;
  border-radius: 27px;
  background: url("./assets/instruction/step-card-bg.png") center / 100% 100% no-repeat;
  color: #2b313f;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  box-shadow: none;
  overflow: hidden;
  transition:
    transform 360ms var(--ease-fluid),
    box-shadow 360ms ease,
    filter 360ms ease;
}

.step-card::before {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 42%);
  transform: translateX(-18px) scale(0.985);
}

.step-card__number {
  font-family: "Giorgio Sans LCG", sans-serif;
  font-size: 59px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #2f80ed;
  transition:
    transform 360ms var(--ease-fluid),
    filter 320ms ease;
}

.step-card__content,
.step-card__content p {
  margin: 0;
  font-size: 21px;
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.step-card:nth-child(1) .step-card__content {
  max-width: 360px;
}

.step-card:nth-child(2) .step-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-card:nth-child(2) .step-card__content p {
  max-width: 438px;
}

.step-card:nth-child(3) .step-card__content {
  max-width: 404px;
}

.step-card__chips {
  display: flex;
  gap: 8px;
}

.step-card__chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 75px;
  height: 24px;
  padding: 0 11px;
  border-radius: 999px;
  background: #2d3138;
  color: #fff;
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition:
    transform 320ms var(--ease-spring),
    filter 320ms ease,
    background-color 320ms ease;
}

.instruction__support {
  left: 1218px;
  top: 681px;
  width: 308px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.instruction__support p {
  margin: 0 0 13px;
  font-family: "HelveticaNeueCyr", Arial, sans-serif;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 0;
}

.instruction__support a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 261px;
  height: 44px;
  padding: 0 20px;
  border-radius: 0;
  background: url("./assets/instruction/support-button-bg.png") center / 100% 100% no-repeat;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  font-size: 15px;
  line-height: 15px;
  font-weight: 500;
  letter-spacing: 0;
  transition:
    transform 320ms var(--ease-fluid),
    filter 320ms ease,
    box-shadow 320ms ease;
}

.instruction__support-link span:first-child {
  position: relative;
  z-index: 1;
  font-family: "HelveticaNeueCyr", Arial, sans-serif;
  font-size: 15px;
  line-height: 15px;
  font-weight: 500;
}

.instruction__support-icon {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 12px;
  flex: none;
  background: url("./assets/instruction/support-button-icon.png") center / contain no-repeat;
  transition: transform 320ms var(--ease-spring), filter 320ms ease;
}

.instruction__brand-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 64px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  z-index: 3;
  display: block;
}

.instruction__footer {
  left: 664px;
  right: 88px;
  bottom: 0;
  height: 64px;
  display: grid;
  grid-template-columns: repeat(4, max-content);
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: none;
  background: transparent;
  z-index: 4;
}

.instruction__footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-family: "HelveticaNeueCyr", Arial, sans-serif;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  opacity: 0.96;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease,
    filter 260ms ease,
    text-shadow 260ms ease;
}

.legal-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 90;
  transition:
    opacity 440ms ease,
    visibility 440ms ease;
}

body.legal-open .legal-modal {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.legal-closing .legal-modal {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
}

.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 20, 45, 0.56);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transition: opacity 520ms ease;
}

body.legal-open .legal-modal__backdrop {
  opacity: 1;
}

body.legal-closing .legal-modal__backdrop {
  opacity: 0;
}

.legal-modal__window {
  position: relative;
  width: min(980px, calc(100vw - 64px));
  max-height: min(82vh, 920px);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.94));
  border: 1px solid rgba(210, 221, 245, 0.9);
  box-shadow:
    0 34px 90px rgba(10, 29, 74, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  opacity: 0;
  transform: translateY(34px) scale(0.972);
  transition:
    transform 560ms var(--ease-fluid),
    opacity 420ms ease,
    box-shadow 320ms ease;
}

body.legal-open .legal-modal__window {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.legal-closing .legal-modal__window {
  opacity: 0;
  transform: translateY(24px) scale(0.978);
}

.legal-modal__chrome {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 66px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(216, 224, 241, 0.92);
  background:
    linear-gradient(180deg, rgba(251, 252, 255, 0.98), rgba(238, 243, 252, 0.92));
}

.legal-modal__dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legal-modal__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.legal-modal__dot--red {
  background: #ff5f57;
}

.legal-modal__dot--yellow {
  background: #febc2e;
}

.legal-modal__dot--green {
  background: #28c840;
}

.legal-modal__caption {
  justify-self: center;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(43, 49, 63, 0.66);
}

.legal-modal__close {
  border: 0;
  background: rgba(220, 230, 248, 0.72);
  color: #2b313f;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  font-family: "HelveticaNeueCyr", Arial, sans-serif;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform 260ms var(--ease-fluid),
    filter 260ms ease,
    box-shadow 260ms ease;
}

.legal-modal__close:hover,
.legal-modal__close:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 12px 22px rgba(20, 54, 129, 0.12);
}

.legal-modal__body {
  padding: 30px 32px 34px;
  max-height: calc(min(82vh, 920px) - 66px);
  overflow: auto;
  opacity: 0;
  transform: translateY(14px);
  transition:
    transform 560ms var(--ease-fluid),
    opacity 420ms ease;
  transition-delay: 30ms;
}

body.legal-open .legal-modal__body {
  opacity: 1;
  transform: translateY(0);
}

body.legal-closing .legal-modal__body {
  opacity: 0;
  transform: translateY(10px);
  transition-delay: 0ms;
}

.legal-modal__eyebrow {
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(47, 128, 237, 0.72);
}

.legal-modal__title {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #202734;
}

.legal-modal__content {
  display: grid;
  gap: 18px;
  color: #2b313f;
}

.legal-modal__content section {
  padding: 18px 20px 20px;
  border-radius: 22px;
  background: rgba(244, 248, 255, 0.9);
  border: 1px solid rgba(220, 228, 244, 0.88);
}

.legal-modal__content h4 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #202734;
}

.legal-modal__content p,
.legal-modal__content li {
  margin: 0;
  font-size: 15px;
  line-height: 1.48;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(43, 49, 63, 0.9);
}

.legal-modal__content ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.legal-modal__content a {
  color: #165dc7;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.interactive-card:hover,
.interactive-card:focus-visible {
  transform:
    perspective(1400px)
    translateY(-10px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    scale(1.016);
  box-shadow: var(--shadow-hover-soft);
  filter: brightness(1.028) saturate(1.024);
}

.interactive-press:not(.feature-promo__button):hover,
.interactive-press:not(.feature-promo__button):focus-visible,
.instruction__footer a:hover,
.instruction__footer a:focus-visible,
.brand:hover,
.brand:focus-visible,
.floating-header__brand:hover,
.floating-header__brand:focus-visible {
  transform: translateY(-3px);
  filter: brightness(1.06) saturate(1.03);
}

.interactive-press:not(.feature-promo__button):active,
.instruction__footer a:active,
.brand:active,
.interactive-card:active {
  transform: translateY(0) scale(0.985);
}

.interactive-float {
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 280ms ease;
}

.interactive-float:hover,
.interactive-float:focus-visible {
  transform: translateY(-4px);
  filter: brightness(1.08);
}

.header-button:hover,
.header-button:focus-visible,
.hero__cta:hover,
.hero__cta:focus-visible,
.pricing__get-free:hover,
.pricing__get-free:focus-visible {
  box-shadow: 0 16px 32px rgba(18, 58, 142, 0.18);
}

.header-button:hover::before,
.header-button:focus-visible::before,
.hero__cta:hover::before,
.hero__cta:focus-visible::before,
.pricing__get-free:hover::before,
.pricing__get-free:focus-visible::before,
.feature-promo__button:hover::before,
.feature-promo__button:focus-visible::before,
.instruction__support a:hover::before,
.instruction__support a:focus-visible::before {
  transform: translateX(135%);
}

.hero-fact:hover .hero-fact__check,
.hero-fact:focus-visible .hero-fact__check {
  transform: translateY(-2px) scale(1.06) rotate(8deg);
  box-shadow: 0 12px 24px rgba(47, 128, 237, 0.18);
}

.feature-card:hover::before,
.feature-card:focus-visible::before,
.pricing__banner:hover::before,
.pricing__banner:focus-visible::before,
.plan-card:hover::before,
.plan-card:focus-visible::before,
.step-card:hover::before,
.step-card:focus-visible::before,
.feature-promo__visual:hover::before,
.feature-promo__visual:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.feature-card--speed:hover .feature-card__speed-icon,
.feature-card--speed:focus-visible .feature-card__speed-icon {
  transform: translateY(-6px) scale(1.05);
  filter: drop-shadow(0 14px 22px rgba(47, 128, 237, 0.18));
}

.feature-card--speed:hover .feature-card__speed-gauge,
.feature-card--speed:focus-visible .feature-card__speed-gauge {
  transform: translateY(-8px) scale(1.025);
  filter: drop-shadow(0 16px 24px rgba(47, 128, 237, 0.14));
}

.feature-card--routing:hover .feature-card__routing-preview,
.feature-card--routing:focus-visible .feature-card__routing-preview,
.feature-card--bypass:hover .feature-card__bypass-preview,
.feature-card--bypass:focus-visible .feature-card__bypass-preview {
  transform: scale(1.025);
  filter: saturate(1.04);
}

.feature-card--routing:hover .feature-card__routing-icon,
.feature-card--routing:focus-visible .feature-card__routing-icon,
.feature-card--stability:hover .feature-card__stability-icon,
.feature-card--stability:focus-visible .feature-card__stability-icon {
  transform: translateY(-6px) scale(1.05);
  filter: drop-shadow(0 14px 24px rgba(255, 255, 255, 0.16));
}

.feature-card--stability:hover .feature-card__stability-waves,
.feature-card--stability:focus-visible .feature-card__stability-waves {
  transform: translateX(12px);
  opacity: 0.28;
}

.feature-promo:hover .feature-promo__visual,
.feature-promo:focus-within .feature-promo__visual {
  transform: translateY(-8px) scale(1.012);
  box-shadow: 0 28px 62px rgba(21, 57, 137, 0.24);
  filter: brightness(1.02);
}

.feature-promo:hover .feature-promo__copy,
.feature-promo:focus-within .feature-promo__copy {
  transform: translateY(-2px);
}

.pricing__banner:hover,
.pricing__banner:focus-visible {
  box-shadow: 0 20px 46px rgba(20, 54, 129, 0.12);
}

.pricing__banner:hover .pricing__badge,
.pricing__banner:focus-visible .pricing__badge {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 24px rgba(47, 128, 237, 0.22);
}

.pricing__banner:hover .pricing__arrow,
.pricing__banner:focus-visible .pricing__arrow {
  transform: translate3d(14px, var(--media-y, 0px), 0) scale(1.02);
}

.plan-card:hover .plan-card__head,
.plan-card:focus-visible .plan-card__head {
  transform: translateY(-4px);
}

.plan-card.interactive-card:hover,
.plan-card.interactive-card:focus-visible {
  transform: translateY(-12px) scale(1.012);
  box-shadow: 0 28px 56px rgba(20, 54, 129, 0.14);
  filter: brightness(1.018) saturate(1.015);
}

.plan-card:hover .plan-card__glow::before,
.plan-card:focus-visible .plan-card__glow::before {
  opacity: 1;
  transform: scale(1.06);
  filter: blur(26px);
}

.plan-card:hover .plan-card__button,
.plan-card:focus-visible .plan-card__button {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 30px rgba(20, 54, 129, 0.12);
}

.plan-card:hover .plan-card__economy,
.plan-card:focus-visible .plan-card__economy {
  transform: translateY(-3px);
  box-shadow: 0 10px 18px rgba(47, 128, 237, 0.12);
}

.plan-card--featured:hover .plan-card__fire,
.plan-card--featured:focus-visible .plan-card__fire {
  transform: translateY(-5px) rotate(-8deg) scale(1.06);
  filter: drop-shadow(0 16px 24px rgba(255, 151, 33, 0.24));
}

.plan-card--featured:hover::after,
.plan-card--featured:focus-visible::after {
  opacity: 1;
  transform: translateX(135%) skewX(-12deg);
}

.step-card:hover .step-card__number,
.step-card:focus-visible .step-card__number {
  transform: translateX(6px);
  filter: drop-shadow(0 10px 18px rgba(47, 128, 237, 0.16));
}

.step-card:hover .step-card__chips span,
.step-card:focus-visible .step-card__chips span {
  transform: translateY(-2px);
}

.instruction__support a:hover,
.instruction__support a:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(10, 29, 74, 0.18);
}

.instruction__support a:hover .instruction__support-icon,
.instruction__support a:focus-visible .instruction__support-icon {
  transform: translateX(2px) translateY(-1px);
}

.plan-card-image:hover,
.plan-card-image:focus-visible {
  transform:
    perspective(1400px)
    translateY(-10px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    scale(1.015);
  box-shadow: var(--shadow-hover-soft);
  filter: brightness(1.025) saturate(1.02);
}

.interactive-card:hover img,
.interactive-card:focus-visible img,
.plan-card-image:hover img,
.plan-card-image:focus-visible img {
  --media-scale: 1.028;
}

.instruction__footer a:hover,
.instruction__footer a:focus-visible {
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.25);
}

@keyframes ambientFloat {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -12px, 0) rotate(1.5deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

.mobile-site {
  display: none;
}

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

.menu-page-body {
  margin: 0;
  min-height: 100vh;
  background: #eef3fc;
}

.menu-page-shell {
  width: min(100vw, 360px);
  min-height: 100vh;
  margin: 0 auto;
  background: #2c3138;
}

@media (max-width: 1023px) {
  html,
  body {
    background: #eef3fc;
  }

  .floating-header,
  .desktop-stage {
    display: none !important;
  }

  .mobile-site {
    display: block;
    position: relative;
    width: 100%;
    overflow: clip;
    background: #eef3fc;
    color: #0d1323;
  }

  .mobile-site--partial-shots {
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: visible;
    background: url("./assets/mobile/hero-bg-extended-wide.png") center top / 100% 773px no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mobile-site--partial-shots .m-instruction {
    position: relative;
    width: 100%;
    padding: 0 !important;
    margin: 0;
    background: transparent !important;
    overflow: hidden;
  }

  .mobile-site--partial-shots .m-instruction > * {
    display: none !important;
  }

  .mobile-site--partial-shots .m-instruction::before {
    content: "";
    display: block;
    width: 100%;
    background-repeat: no-repeat;
  }

  .mobile-site--partial-shots .m-instruction {
    height: 1255px;
    background: #000;
  }

  .mobile-site--partial-shots .m-instruction::before {
    height: 1255px;
    background-image: url("./assets/mobile/shot-instruction-mobile.png");
    background-size: 100% 100%;
    background-position: center top;
  }

  .site {
    width: 100%;
  }

  .m-hero,
  .m-features,
  .m-pricing,
  .m-instruction {
    position: relative;
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .m-hero {
    position: relative;
    height: 773px;
    padding: 0 13px;
    background: transparent;
    overflow: hidden;
  }

  .m-hero__bg {
    position: absolute;
    inset: 0;
    background:
      url("./assets/mobile/hero-bg-extended-wide.png") center top / cover no-repeat;
    opacity: 0.98;
    pointer-events: none;
  }

  .m-header,
  .m-hero__copy,
  .m-facts {
    position: relative;
    z-index: 3;
  }

  .m-header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 5;
    display: block;
    min-height: 0;
    padding-top: 0;
  }

  .m-header__brand img {
    display: block;
    width: auto;
    height: auto;
  }

  .m-header__brand {
    position: absolute;
    left: 13px;
    top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
  }

  .m-header__brand-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
  }

  .m-header__brand-text {
    font-family: "Giorgio Sans LCG", sans-serif;
    text-transform: uppercase;
    color: #fff;
    font-size: 36px;
    line-height: 0.94;
    letter-spacing: -0.02em;
    font-weight: 700;
  }

  .m-header__actions {
    position: absolute;
    left: 200px;
    top: 20px;
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .m-header__connect {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 111px;
    min-width: 111px;
    height: 26px;
    min-height: 26px;
    padding: 0 9px 0 10px;
    border-radius: 999px;
    background: url("./assets/mobile/hero-header-connect-bg-live.png") center / 100% 100% no-repeat;
    color: #fff;
    text-decoration: none;
  }

  .m-header__connect-text {
    display: block;
    font-family: "HelveticaNeueCyr", Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .m-header__connect-icon {
    width: 10px;
    height: 8px;
    margin-left: 5px;
    background: url("./assets/mobile/hero-plane-live.png") center / contain no-repeat;
  }

  .m-header__toggle {
    display: grid;
    place-items: center;
    width: 29px;
    height: 14px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .m-header__burger {
    display: block;
    width: 29px;
    height: 14px;
    background: url("./assets/mobile/hero-burger-live.png") center / contain no-repeat;
  }

  .m-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 50%;
    width: min(100vw, 360px);
    max-width: 100%;
    z-index: 60;
    background: #2c3138;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(-8px);
    transition: opacity 260ms ease, transform 320ms var(--ease-fluid), visibility 260ms ease;
  }

  body.mobile-menu-open .m-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .m-menu--standalone {
    position: relative;
    inset: auto;
    left: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    background: #2c3138;
  }

  .m-menu__panel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100svh;
    padding: 24px 0 36px;
    display: flex;
    flex-direction: column;
    background: #2c3138;
    overflow-y: auto;
  }

  .m-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 15px 0;
  }

  .m-menu__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .m-menu__brand-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
  }

  .m-menu__brand-text {
    color: #fff;
    font-family: "Giorgio Sans LCG", sans-serif;
    font-size: 33px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .m-menu__close {
    position: absolute;
    left: 333px;
    top: 27.4px;
    display: block;
    width: 20px;
    height: 20px;
    border: 0;
    padding: 0;
    background: url("./assets/mobile/menu-close.png") center / contain no-repeat;
  }

  .m-menu__nav {
    margin-top: 108px;
    display: grid;
  }

  .m-menu__nav a {
    display: flex;
    align-items: center;
    min-height: 80px;
    padding: 0 18px 0 63px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
    font-family: "Giorgio Sans LCG Menu", "Giorgio Sans LCG", sans-serif;
    font-size: 36px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    transition: color 180ms ease, transform 220ms var(--ease-fluid);
  }

  .m-menu__nav a:first-child {
    border-top: 0;
  }

  .m-menu__link--light {
    color: #fff;
  }

  .m-menu__link--accent {
    color: #2f80ed;
  }

  .m-menu__nav a:hover,
  .m-menu__nav a:focus-visible {
    transform: translateX(4px);
  }

  .m-menu__actions {
    position: absolute;
    left: 63px;
    top: 524px;
    padding: 0;
    display: grid;
    gap: 13px;
  }

  .m-menu__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 249px;
    height: 41px;
    margin: 0;
    text-decoration: none;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    font-family: "HelveticaNeueCyr", Arial, sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 400;
  }

  .m-menu__button span {
    display: block;
    transform: translateX(-8px);
  }

  .m-menu__button--light {
    background-image: url("./assets/mobile/menu-button-light.png");
    color: #1f2329;
  }

  .m-menu__button--dark {
    background-image: url("./assets/mobile/menu-button-dark.png");
    color: #fff;
  }

  .m-hero__copy {
    position: absolute;
    inset: 0;
    margin-top: 0;
    max-width: none;
    text-align: left;
    display: block;
  }

  .m-hero__subtitle-image {
    position: absolute;
    left: 16px;
    top: 99px;
    display: block;
    width: 270px;
    height: auto;
    z-index: 4;
  }

  .m-hero__title-image {
    position: absolute;
    left: 13px;
    top: 122px;
    display: block;
    width: 328px;
    height: auto;
    z-index: 4;
  }

  .m-hero__side-copy-image {
    position: absolute;
    left: 29px;
    top: 236px;
    display: block;
    width: 259px;
    height: auto;
    z-index: 4;
  }

  .m-hero__subtitle,
  .m-hero__title,
  .m-hero__side-copy,
  .m-hero__platforms-image {
    position: relative;
    z-index: 4;
  }

  .m-hero__subtitle {
    position: absolute;
    left: 16px;
    top: 95px;
    margin: 0;
    width: auto;
    max-width: none;
    font-family: "HelveticaNeueCyr", Arial, sans-serif;
    color: #fff;
    font-size: 17px;
    line-height: 1.06;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-align: left;
    white-space: nowrap;
  }

  .m-hero__title {
    position: absolute;
    left: 13px;
    top: 112px;
    margin: 0;
    font-family: "Giorgio Sans LCG", sans-serif;
    font-size: 130px;
    line-height: 0.9;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff;
    width: 328px;
    max-width: 328px;
    white-space: nowrap;
    text-align: left;
  }

  .m-hero__button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    overflow: hidden;
  }

  .m-hero__button span:first-child {
    position: relative;
    z-index: 1;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
  }

  .m-hero__button--dark {
    min-width: 220px;
    background: url("./assets/mobile/button-dark-mobile-wide.png") center / 100% 100% no-repeat;
    color: #fff;
  }

  .m-hero__button--outline {
    min-width: 108px;
    background: url("./assets/mobile/button-outline-mobile.png") center / 100% 100% no-repeat;
    color: #fff;
  }

  .m-hero__button-icon {
    display: block;
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
    width: 12px;
    height: 10px;
    margin-left: 0;
    background: url("./assets/mobile/hero-plane-live.png") center / contain no-repeat;
    filter: brightness(1.08);
    opacity: 1;
  }

  .m-hero__side-copy {
    position: absolute;
    left: 21px;
    top: 241px;
    margin: 0;
    width: 312px;
    max-width: 312px;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    transform: none;
  }

  .m-hero__platforms-image {
    position: absolute;
    left: 109px;
    top: 297px;
    display: block;
    width: 142px;
    height: auto;
    margin: 0;
    z-index: 4;
  }

  .m-hero__side-copy-primary,
  .m-hero__side-copy-secondary {
    display: block;
  }

  .m-hero__side-copy-primary {
    font-weight: 500;
  }

  .m-hero__side-copy-secondary {
    font-weight: 400;
    opacity: 0.95;
  }

  .m-hero__platforms {
    position: absolute;
    left: 109px;
    top: 297px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 4;
  }

  .m-hero__platform {
    display: block;
    width: 45px;
    height: 45px;
    flex: 0 0 auto;
  }

  .m-hero__platform img {
    display: block;
    width: 100%;
    height: auto;
  }

  .m-hero__actions {
    position: absolute;
    left: 10px;
    top: 356px;
    width: auto;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 0;
    z-index: 5;
  }

  .m-hero__scene {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }

  .m-hero__scene::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    background: none;
  }

  .m-hero__scene::after {
    content: "";
    position: absolute;
    left: 16px;
    top: 13px;
    width: 38px;
    height: 38px;
    z-index: 7;
    background: url("./assets/desktop/hero-logo-icon.png") center / contain no-repeat;
  }

  .m-hero__fighter {
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%) scale(1.48);
    transform-origin: center bottom;
    width: 576px;
    height: auto;
    z-index: 6;
  }

  .m-hero__bubble {
    position: absolute;
    z-index: 3;
    filter: drop-shadow(0 12px 22px rgba(7, 36, 97, 0.2));
  }

  .m-hero__bubble--whatsapp {
    display: none !important;
  }

  .m-hero__scene img[src*="hero-social-whatsapp"],
  .m-hero__scene img[src*="hero-brand-bubble-small"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .m-hero__bubble--instagram {
    top: 454px;
    right: 20px;
    width: 99px;
    height: auto;
    z-index: 6;
    opacity: 1;
    visibility: visible;
  }

  .m-hero__bubble--telegram {
    top: 448px;
    left: 22px;
    width: 53px;
    height: auto;
    z-index: 6;
  }

  .m-hero__bubble--brand {
    display: none;
  }

  .m-facts {
    position: absolute;
    left: 13px;
    right: 13px;
    top: auto;
    bottom: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .m-fact {
    position: relative;
    min-height: 82px;
    padding: 18px 18px 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 38px rgba(19, 48, 109, 0.12);
  }

  .m-fact__check {
    position: absolute;
    right: 16px;
    top: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #dceafd;
  }

  .m-fact__check::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 4px;
    border-left: 2px solid #3b82f6;
    border-bottom: 2px solid #3b82f6;
    transform: translate(-50%, -55%) rotate(-45deg);
  }

  .m-fact strong,
  .m-fact span {
    display: block;
  }

  .m-fact strong {
    font-family: "HelveticaNeueCyr", Arial, sans-serif;
    color: #145fd3;
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
  }

  .m-fact span:last-child {
    margin-top: 6px;
    color: #111827;
    font-size: 16px;
    line-height: 1;
    font-weight: 300;
  }

  .m-features {
    padding: 28px 0 32px;
    background: #f1f1f1;
    box-shadow: 0 0 0 100vmax #f1f1f1;
    clip-path: inset(0 -100vmax);
  }

  .m-features__shell {
    position: relative;
    padding: 22px 0 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .m-features__label,
  .m-features__title,
  .m-features__servers {
    padding-left: 10px;
    padding-right: 10px;
  }

  .m-feature-grid,
  .m-promo {
    padding-left: 10px;
    padding-right: 10px;
  }

  .m-features__label {
    margin: 0;
    color: rgba(105, 105, 105, 0.5);
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.32em;
    font-weight: 500;
  }

  .m-features__title {
    margin: 14px 0 0;
    color: #1b2330;
    max-width: 320px;
    font-size: 24px;
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -0.035em;
  }

  .m-features__servers {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 18px;
  }

  .m-features__servers span {
    color: #2c3647;
    display: block;
    flex: 0 0 auto;
    font-size: 15px !important;
    font-weight: 300 !important;
    line-height: 1.08;
    letter-spacing: 0;
  }

  .m-features__flags {
    width: 101px;
    height: 33px;
    flex: 0 0 auto;
    background: url("./assets/mobile/feature-flags-live.png") center / contain no-repeat;
    margin-top: 1px;
  }

  .m-features__flags img {
    display: none;
  }

  .m-feature-grid {
    display: grid;
    gap: 10px;
    margin-top: 16px;
  }

  .m-feature-card {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    min-height: 322px;
    border-radius: 24px;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    box-shadow: 0 10px 24px rgba(16, 41, 88, 0.05);
  }

  .m-feature-card__visual {
    display: none;
  }

  .m-feature-card--speed {
    background-image: url("./assets/mobile/feature-speed-card-live.png");
  }

  .m-feature-card--routing {
    background-image: url("./assets/mobile/feature-routing-card-live.png");
  }

  .m-feature-card--stability {
    background-image: url("./assets/mobile/feature-stability-card-live.png");
  }

  .m-feature-card--bypass {
    background-image: url("./assets/mobile/feature-bypass-base-live.png");
  }

  .m-feature-card--bypass::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 206px;
    background: url("./assets/mobile/feature-bypass-visual-live.png") center top / 100% 100% no-repeat;
    pointer-events: none;
  }

  .m-feature-card__copy {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 0;
  }

  .m-feature-card__copy h3 {
    margin: 0;
    color: #2a3341;
    font-size: 18px;
    line-height: 1.02;
    font-weight: 500;
  }

  .m-feature-card__copy p {
    margin: 9px 0 0;
    color: #4a5669;
    font-size: 15px;
    line-height: 1.08;
    letter-spacing: 0;
    font-weight: 300;
  }

  .m-feature-card--speed .m-feature-card__copy p {
    max-width: 292px;
  }

  .m-feature-card--routing .m-feature-card__copy p {
    max-width: 284px;
  }

  .m-feature-card--stability .m-feature-card__copy h3 {
    color: #fff;
  }

  .m-feature-card--stability .m-feature-card__copy p {
    max-width: 284px;
    color: rgba(255, 255, 255, 0.78);
  }

  .m-feature-card--stability .m-feature-card__copy p br {
    display: block;
    content: "";
  }

  .m-feature-card--bypass .m-feature-card__copy {
    bottom: 22px;
  }

  .m-feature-card--bypass .m-feature-card__copy h3 {
    max-width: 240px;
  }

  .m-feature-card--bypass .m-feature-card__copy p {
    max-width: 294px;
  }

  .m-promo {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
  }

  .m-promo__art {
    order: 1;
    height: 322px;
    margin-top: 12px;
    border-radius: 24px;
    background-image: url("./assets/mobile/feature-promo-card-live.png") !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

  .m-promo__button {
    order: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 176px;
    height: 44px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: url("./assets/mobile/feature-promo-button-bg-live.png") center / 100% 100% no-repeat;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
  }

  .m-promo__button-icon {
    display: none;
  }

  .m-promo__copy {
    order: 2;
    margin: 24px auto 0;
    max-width: 292px;
    color: #283344;
    font-size: 14px;
    line-height: 1.08;
    text-align: center;
    font-weight: 400;
  }

  .m-pricing {
    position: relative;
    padding: 70px 10px 34px;
    background: #f3f6fb;
    box-shadow: 0 0 0 100vmax #f3f6fb;
    clip-path: inset(0 -100vmax);
  }

  .m-pricing__label {
    position: absolute;
    left: 10px;
    top: 0;
    margin: 0;
    color: #9ca8bc;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.32em;
    font-weight: 500;
  }

  .m-pricing__title {
    position: absolute;
    left: 10px;
    top: 20px;
    margin: 0;
    color: #1b2330;
    max-width: 340px;
    font-size: 24px;
    line-height: 26px;
    letter-spacing: -0.04em;
    font-weight: 500;
  }

  .m-pricing__banner {
    position: relative;
    width: 340px;
    max-width: 340px;
    height: 156px;
    margin: 26px 0 0;
    padding: 0;
    border-radius: 28px;
    background: linear-gradient(180deg, #dbe8fb 0%, #d9e7fb 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
    overflow: visible;
  }

  .m-pricing__banner::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    box-shadow: 0 18px 34px rgba(143, 167, 210, 0.14);
    pointer-events: none;
  }

  .m-pricing__badge {
    position: absolute;
    top: -10px;
    left: 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 28px;
    border-radius: 10px;
    background: #3f88f8;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    transform: none;
    z-index: 2;
  }

  .m-pricing__fire {
    display: none;
  }

  .m-pricing__banner-title {
    position: absolute;
    left: 23px;
    top: 31px;
    margin: 0;
    max-width: none;
    color: #292d32;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0;
    font-weight: 500;
    white-space: nowrap;
  }

  .m-pricing__banner-copy {
    position: absolute;
    left: 23px;
    top: 54px;
    margin: 0;
    max-width: none;
    color: rgba(41, 45, 50, 0.82);
    font-size: 14px;
    line-height: 14px;
    font-weight: 300;
    white-space: nowrap;
  }

  .m-pricing__banner-button {
    position: absolute;
    left: 23px;
    top: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 218px;
    height: 44px;
    margin-top: 0;
    padding: 0;
    border-radius: 999px;
    background: #2d3138;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
    box-shadow: 0 10px 20px rgba(27, 34, 47, 0.18);
  }

  .m-plan-list {
    display: grid;
    gap: 14px;
    width: 340px;
    max-width: 100%;
    margin: 18px 0 0;
  }

  .m-plan {
    position: relative;
    flex: 0 0 auto;
    min-width: 340px;
    width: 340px;
    max-width: 340px;
    min-height: 326px;
    height: 326px;
    border-radius: 22px;
    overflow: hidden;
    color: #2d3442;
    box-shadow: 0 18px 36px rgba(120, 142, 180, 0.12);
  }

  .m-plan__main {
    position: relative;
    z-index: 2;
    min-height: 232px;
    padding: 28px 30px 0;
  }

  .m-plan--featured {
    background:
      radial-gradient(circle at 50% -14%, rgba(91, 120, 168, 0.24), transparent 34%),
      linear-gradient(180deg, #2f343b, #2a2f35);
    color: #fff;
    box-shadow: 0 18px 34px rgba(33, 38, 46, 0.22);
  }

  .m-plan--featured::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
      radial-gradient(circle at 50% 0%, rgba(75, 145, 255, 0.14), transparent 30%);
    pointer-events: none;
  }

  .m-plan--light {
    background: linear-gradient(180deg, #fcfcfd, #f2f3f6);
    border: 1px solid rgba(228, 232, 240, 0.95);
  }

  .m-plan--light::before {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    height: 214px;
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(163, 208, 255, 0.42), rgba(108, 164, 248, 0.16)),
      linear-gradient(90deg, rgba(129, 202, 252, 0.3), rgba(66, 140, 255, 0.3));
    box-shadow: 0 10px 18px rgba(120, 142, 180, 0.08);
  }

  .m-plan--light::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    top: 12px;
    height: 210px;
    border-radius: 19px;
    background:
      radial-gradient(circle at 50% -10%, rgba(228, 240, 255, 0.88), transparent 48%),
      linear-gradient(180deg, #ffffff, #f8f8fa);
    box-shadow:
      inset 0 -1px 0 rgba(217, 222, 232, 0.7),
      0 8px 16px rgba(153, 166, 190, 0.05);
  }

  .m-plan__featured-fire {
    position: absolute;
    top: 6px;
    left: 50%;
    width: 60px;
    height: auto;
    z-index: 4;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .m-plan__period {
    margin: 0;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: inherit;
    opacity: 0.96;
    white-space: nowrap;
  }

  .m-plan__economy {
    position: absolute;
    top: 18px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    min-width: 112px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    background: rgba(116, 140, 83, 0.22);
    z-index: 3;
  }

  .m-plan--light .m-plan__economy {
    top: 26px;
    right: 24px;
    min-width: 110px;
    height: 24px;
    padding: 0 12px;
    color: #4f97f8;
    background: rgba(79, 151, 248, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
  }

  .m-plan--light .m-plan__economy[hidden],
  .m-plan--light .m-plan__economy:empty {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .m-plan__economy--blue {
    color: #3b86f7;
    background: rgba(58, 134, 247, 0.1);
  }

  .m-plan__economy--green {
    color: #8fb95a;
  }

  .m-plan__price {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    margin: 12px 0 0;
    letter-spacing: -0.03em;
    white-space: nowrap;
    flex-wrap: nowrap;
  }

  .m-plan__price-value {
    display: inline-block;
    font-family: "Giorgio Sans Pricing", "Giorgio Sans LCG", sans-serif;
    font-size: 74px;
    line-height: 0.82;
    font-weight: 500;
    letter-spacing: -0.02em;
  }

  .m-plan__price > span:not(.m-plan__price-value) {
    font-family: "HelveticaNeueCyr", Arial, sans-serif;
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
    letter-spacing: -0.02em;
    flex: 0 0 auto;
    margin-bottom: 11px;
    white-space: nowrap;
  }

  .m-plan__total {
    margin: 14px 0 0;
    font-size: 13px;
    line-height: 13px;
    font-weight: 400;
    letter-spacing: -0.01em;
    white-space: nowrap;
    text-align: left;
  }

  .m-plan__total strong {
    font-weight: 500;
  }

  .m-plan__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 252px;
    height: 48px;
    min-height: 48px;
    margin: 18px 0 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #dfeafb, #d6e4f8);
    color: #2f3441;
    text-decoration: none;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-align: center;
  }

  .m-plan--light .m-plan__button {
    background: linear-gradient(180deg, #dfeafb, #d6e4f8);
  }

  .m-plan__button--featured {
    background: linear-gradient(180deg, #4b93ff, #367eef);
    color: #fff;
  }

  .m-plan__features {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 18px;
    row-gap: 10px;
    margin: 0;
    padding: 12px 22px 0 22px;
    list-style: none;
  }

  .m-plan__features li {
    position: relative;
    padding-left: 22px;
    font-size: 13px;
    line-height: 14px;
    font-weight: 400;
    letter-spacing: -0.01em;
    white-space: nowrap;
  }

  .m-plan__features li:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .m-plan__features li:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .m-plan__features li:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .m-plan__features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #4a90ff;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.26);
  }

  .m-plan__features li::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 5px;
    width: 5px;
    height: 3px;
    border-left: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: rotate(-45deg);
  }

  .m-plan--featured .m-plan__period {
    color: rgba(255, 255, 255, 0.92);
  }

  .m-plan--featured .m-plan__total {
    color: rgba(255, 255, 255, 0.92);
  }

  .m-plan--featured .m-plan__button {
    color: #fff;
  }

  .m-plan--featured .m-plan__features {
    color: rgba(255, 255, 255, 0.92);
  }

  .m-plan--featured .m-plan__economy {
    right: 16px;
    top: 20px;
    min-width: 110px;
    height: 26px;
  }

  .mobile-site--partial-shots .m-instruction {
    width: min(100%, 360px);
    height: auto;
    padding: 20px 10px 0 !important;
    margin: 0 auto;
    background: #000 !important;
  }

  .mobile-site--partial-shots .m-instruction::before {
    display: none !important;
  }

  .mobile-site--partial-shots .m-instruction > * {
    display: block !important;
  }

  .m-instruction {
    padding: 20px 10px 0;
    background: #165dc7;
    color: #fff;
  }

  .m-instruction__label {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.32em;
    font-weight: 500;
  }

  .m-instruction__title {
    margin: 10px 0 0;
    color: #fff;
    font-size: 32px;
    line-height: 0.95;
    letter-spacing: -0.035em;
    font-weight: 500;
  }

  .m-step-list {
    display: grid;
    gap: 0;
    width: 340px;
    max-width: 100%;
    margin: 15px auto 0;
  }

  .m-step-list > .m-step + .m-step {
    margin-top: 6px;
  }

  .m-step {
    position: relative;
    display: flex;
    align-items: center;
    width: 340px;
    max-width: 100%;
    border-radius: 22px;
    text-decoration: none;
    color: inherit;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100% !important;
    box-shadow: none;
  }

  .m-step--1 {
    min-height: 76px;
    padding: 0 16px 0 84px;
    background-image: url("./assets/mobile/instruction-card-1-blank.png") !important;
  }

  .m-step--2 {
    min-height: 103px;
    align-items: flex-start;
    padding: 18px 16px 0 84px;
    background-image: url("./assets/mobile/instruction-card-2-blank.png") !important;
  }

  .m-step--3,
  .m-step--4 {
    min-height: 76px;
    padding: 0 16px 0 84px;
  }

  .m-step--3 {
    background-image: url("./assets/mobile/instruction-card-3-blank.png") !important;
  }

  .m-step--4 {
    background-image: url("./assets/mobile/instruction-card-4-blank.png") !important;
  }

  .m-step__number {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #2974e8;
    font-family: "Giorgio Sans LCG", "Giorgio Sans Pricing", sans-serif;
    font-size: 34px;
    line-height: 1;
    font-weight: 500;
  }

  .m-step--2 .m-step__number {
    top: 28px;
    transform: none;
  }

  .m-step p {
    margin: 0;
    color: #2e3644;
    font-size: 16px;
    line-height: 1.08;
    font-weight: 400;
  }

  .m-step--2 p {
    max-width: 214px;
  }

  .m-support {
    margin-top: 18px;
    text-align: center;
  }

  .m-support__visual {
    position: relative;
    width: 261px;
    margin: 0 auto;
    padding-top: 38px;
  }

  .m-support__visual img {
    display: none;
  }

  .m-support__visual::before {
    content: "Остались вопросы?";
    display: block;
    margin-bottom: 14px;
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    text-align: center;
  }

  .m-support__hit {
    position: relative;
    display: block;
    width: 261px;
    height: 44px;
    border-radius: 999px;
    background: url("./assets/mobile/instruction-support-button-blank.png") center / 100% 100% no-repeat;
  }

  .m-support__hit::before {
    content: "Написать в поддержку";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
    text-align: center;
  }

  .m-support__hit::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 12px;
    height: 10px;
    transform: translateY(-50%);
    background: url("./assets/mobile/button-plane-icon.png") center / contain no-repeat;
  }

  .m-endcap {
    position: relative;
    margin: 18px -10px 0;
    overflow: hidden;
  }

  .m-endcap__scene {
    position: relative;
    aspect-ratio: 835 / 1255;
    overflow: hidden;
    background: transparent;
  }

  .m-endcap__bg {
    position: absolute;
    inset: 0;
    background: url("./assets/mobile/instruction-endcap-bg-blank.png") center top / 100% 100% no-repeat;
  }

  .m-endcap__rays,
  .m-endcap__fighter,
  .m-endcap__brand-image,
  .m-endcap__footer-bg,
  .m-endcap__legal-image {
    display: none;
  }

  .m-endcap__scene::after {
    content: "БОЕЦ VPN";
    position: absolute;
    left: 13px;
    bottom: 112px;
    font-family: "Giorgio Sans LCG", sans-serif;
    font-size: 72px;
    line-height: 0.9;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
  }

  .m-endcap__line {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.16);
  }

  .m-endcap__footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 112px;
    z-index: 4;
  }

  .m-endcap__legal-link {
    position: absolute;
    left: 14px;
    right: 14px;
    display: block;
    height: 14px;
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
  }

  .m-endcap__legal-link::after {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: inherit;
  }

  .m-endcap__legal-link--personal {
    top: 24px;
  }

  .m-endcap__legal-link--personal::after {
    content: "Согласие на обработку ПД";
  }

  .m-endcap__legal-link--cookies {
    top: 46px;
  }

  .m-endcap__legal-link--cookies::after {
    content: "Согласие на cookies";
  }

  .m-endcap__legal-link--marketing {
    top: 68px;
  }

  .m-endcap__legal-link--marketing::after {
    content: "Согласие на рекламные рассылки";
  }

  .m-endcap__legal-link--policy {
    top: 90px;
  }

  .m-endcap__legal-link--policy::after {
    content: "Политика обработки ПД";
  }
}

  .m-instruction {
    padding: 20px 10px 0;
    background: #165dc7;
    overflow: hidden;
  }

  .m-instruction__title {
    font-size: 28px;
    line-height: 0.98;
    letter-spacing: -0.03em;
  }

  .m-step-list {
    gap: 0;
    margin-top: 15px;
  }

  .m-step-list > .m-step + .m-step {
    margin-top: 6px;
  }

  .m-step-list .m-step {
    position: relative;
    display: block;
    width: 340px;
    max-width: 100%;
    padding: 0;
    border-radius: 22px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100% !important;
    box-shadow: none;
    overflow: hidden;
  }

  .m-step-list .m-step:nth-child(1) {
    min-height: 76px;
    background-image: url("./assets/mobile/instruction-card-1-blank.png") !important;
  }

  .m-step-list .m-step:nth-child(2) {
    min-height: 103px;
    background-image: url("./assets/mobile/instruction-card-2-blank.png") !important;
  }

  .m-step-list .m-step:nth-child(3) {
    min-height: 76px;
    background-image: url("./assets/mobile/instruction-card-3-blank.png") !important;
  }

  .m-step-list .m-step:nth-child(4) {
    min-height: 76px;
    background-image: url("./assets/mobile/instruction-card-4-blank.png") !important;
  }

  .m-step-list .m-step .m-step__number {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: #2974e8;
    font-family: "Giorgio Sans LCG", "Giorgio Sans Pricing", sans-serif;
    font-size: 31px;
    line-height: 1;
    font-weight: 500;
    z-index: 2;
  }

  .m-step-list .m-step:nth-child(2) .m-step__number {
    top: 21px;
    transform: none;
  }

  .m-step-list .m-step p {
    position: absolute;
    margin: 0;
    left: 69px;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #2e3644;
    font-size: 15px;
    line-height: 1.12;
    font-weight: 400;
    letter-spacing: -0.01em;
  }

  .m-step-list .m-step:nth-child(1) p {
    right: 20px;
  }

  .m-step-list .m-step:nth-child(2) p {
    top: 21px;
    right: 22px;
    transform: none;
    max-width: 194px;
  }

  .m-step-list .m-step:nth-child(3) p {
    right: 18px;
  }

  .m-step-list .m-step:nth-child(4) p {
    right: 20px;
  }

  .m-support {
    margin-top: 21px;
    position: relative;
    z-index: 4;
    margin-bottom: -162px;
  }

  .m-support__visual {
    width: 261px;
    padding-top: 0;
  }

  .m-support__visual img {
    display: none;
  }

  .m-support__visual::before {
    content: "\041E\0441\0442\0430\043B\0438\0441\044C\0020\0432\043E\043F\0440\043E\0441\044B\003F";
    display: block;
    margin-bottom: 18px;
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    text-align: center;
  }

  .m-support__hit {
    position: relative;
    display: block;
    width: 261px;
    height: 44px;
    border-radius: 999px;
    background: url("./assets/mobile/instruction-support-button-blank.png") center / 100% 100% no-repeat;
  }

  .m-support__hit::before {
    content: "\041D\0430\043F\0438\0441\0430\0442\044C\0020\0432\0020\043F\043E\0434\0434\0435\0440\0436\043A\0443";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 35px;
    right: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transform: none;
    color: #fff;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
    text-align: center;
  }

  .m-support__hit::after {
    display: none;
  }

  .m-instruction {
    background: #165dc7;
  }

  .m-endcap {
    margin: -8px -10px 0;
    background: transparent;
    overflow: hidden;
  }

  .m-endcap__scene {
    position: relative;
    width: 360px;
    max-width: 100%;
    margin: 0 auto;
    height: 700px;
    background: url("./assets/mobile/endcap-wide-custom.png") center bottom / cover no-repeat;
    overflow: hidden;
  }

  .m-endcap__bg {
    position: absolute;
    inset: 0;
    display: none;
  }

  .m-endcap__rays,
  .m-endcap__fighter,
  .m-endcap__brand-image,
  .m-endcap__footer-bg,
  .m-endcap__legal-image {
    display: none;
  }

  .m-endcap__scene::after {
    content: none;
    display: none;
  }

  .m-endcap__footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 154px;
    padding: 20px 18px 24px;
    background: transparent;
    z-index: 3;
  }

  .m-endcap__line {
    display: none;
  }

  .m-endcap__legal-link {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    display: block;
    height: 16px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
  }

  .m-endcap__legal-link::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    color: inherit;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    white-space: nowrap;
  }

  .m-endcap__legal-link--personal {
    margin-top: 0;
  }

  .m-endcap__legal-link--personal::after {
    content: "\0421\043E\0433\043B\0430\0441\0438\0435\0020\043D\0430\0020\043E\0431\0440\0430\0431\043E\0442\043A\0443\0020\041F\0414";
  }

  .m-endcap__legal-link--cookies::after {
    content: "\0421\043E\0433\043B\0430\0441\0438\0435\0020\043D\0430\0020\0063\006F\006F\006B\0069\0065\0073";
  }

  .m-endcap__legal-link--marketing::after {
    content: "\0421\043E\0433\043B\0430\0441\0438\0435\0020\043D\0430\0020\0440\0435\043A\043B\0430\043C\043D\044B\0435\0020\0440\0430\0441\0441\044B\043B\043A\0438";
  }

  .m-endcap__legal-link--policy::after {
    content: "\041F\043E\043B\0438\0442\0438\043A\0430\0020\043E\0431\0440\0430\0431\043E\0442\043A\0438\0020\041F\0414";
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  body.js-ready .reveal-section,
  body.js-ready .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 767px) {
  .mobile-site--partial-shots .m-instruction {
    background: #165dc7 !important;
    box-shadow: none;
    clip-path: none;
    overflow: visible !important;
  }

  .m-instruction {
    background: #165dc7 !important;
    box-shadow: none;
    clip-path: none;
    overflow: visible !important;
  }

  .m-step-list,
  .m-support {
    position: relative;
    z-index: 2;
  }

  .m-support {
    margin-bottom: 0 !important;
  }

  .m-endcap {
    width: calc(100% + 20px) !important;
    margin: -14px 0 0 -10px !important;
    background: transparent !important;
    overflow: hidden !important;
  }

  .m-endcap__scene {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    height: 728px !important;
    background: url("./assets/mobile/endcap-wide-custom.png") center bottom / cover no-repeat !important;
    box-shadow: none;
    clip-path: none;
    overflow: hidden !important;
  }

  .m-endcap__footer {
    width: auto !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: #2c3138 !important;
    box-shadow: none;
    clip-path: none;
    overflow: hidden !important;
  }

  .m-endcap__footer::before,
  .m-endcap__footer::after {
    display: none !important;
  }
}
