﻿@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-light.ttf") format("truetype");
  font-weight: 350;
  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;
  -webkit-touch-callout: none;
}

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;
  -webkit-touch-callout: 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;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

picture,
svg,
canvas,
video {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.site,
.site * {
  -webkit-touch-callout: none;
}

.site {
  min-height: 100vh;
}

#mobile-features,
#mobile-pricing,
#mobile-instruction,
#features,
#pricing,
#instruction {
  content-visibility: auto;
  contain-intrinsic-size: 1000px;
}

.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.webp");
}

.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-color: currentColor;
  -webkit-mask: url("./assets/exact/telegram-buttons.svg") center / contain no-repeat;
  mask: url("./assets/exact/telegram-buttons.svg") center / contain no-repeat;
}

.header-button__icon--dark {
  color: #292d32;
}

.header-button__icon--light {
  width: 9px;
  height: 9px;
  background-image: none;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(45deg) translateY(0.5px);
}

.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;
  gap: 0;
  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-icon {
  display: none;
}

.feature-promo__button-text {
  display: inline-flex;
  align-items: center;
}

.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;
  left: -2px;
  width: calc(var(--desktop-width) + 4px);
  height: 860px;
  overflow: hidden;
  background-color: #165dc7;
  color: #fff;
}

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

.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__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) {
  background: url("./assets/instruction/step-card-bg.png") center / 100% 100% no-repeat;
  align-items: start;
}

.step-card:nth-child(2)::after {
  content: none;
}

.step-card:nth-child(2) .step-card__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 123px;
  padding-top: 24px;
  z-index: 2;
}

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

.step-card:nth-child(2) .step-card__number {
  transform: translate(7px, 28px);
  font-size: 61px;
  letter-spacing: -0.025em;
}

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

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

.step-card:nth-child(2) .step-card__chips {
  position: relative;
  left: auto;
  bottom: auto;
  gap: 0;
  z-index: 2;
}

.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;
}

.step-card:nth-child(2) .step-card__chips span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 118px;
  width: auto;
  height: 28px;
  padding: 0 24px 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2f353d 0%, #23282f 100%);
  color: #fff;
  font-family: "HelveticaNeueCyr", Arial, sans-serif;
  font-size: 13px;
  line-height: 13px;
  font-weight: 500;
  letter-spacing: 0;
  box-shadow:
    0 10px 20px rgba(20, 28, 46, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  transform: none;
}

.step-card:nth-child(2) .step-card__chips span::after {
  content: "\2197";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  line-height: 1;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.96);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.96);
  text-stroke: 1px rgba(255, 255, 255, 0.96);
}

.instruction__support {
  left: 1218px;
  top: 670px;
  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-color: currentColor;
  -webkit-mask: url("./assets/exact/telegram-buttons.svg") center / contain no-repeat;
  mask: url("./assets/exact/telegram-buttons.svg") 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;
  min-height: 100svh;
  background: #2c3138;
  overflow-x: hidden;
}

.menu-page-shell {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  background: #2c3138;
}

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

  .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: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mobile-site--partial-shots::after {
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    margin-top: -1px;
    background: #30353d;
    flex: 0 0 auto;
  }

  .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-instruction {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-shadow: 0 0 0 100vmax #000;
    clip-path: inset(0 -100vmax);
  }

  .m-hero {
    --m-hero-canvas-width: min(100vw, 360px);
    --m-hero-canvas-left: max(0px, calc((100vw - 360px) / 2));
    position: relative;
    height: 773px;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
    overflow: hidden;
  }

  .m-hero__bg {
    position: absolute;
    inset: 0;
    background:
      url("./assets/mobile/hero-bg-extended-wide.webp") 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: var(--m-hero-canvas-left);
    right: auto;
    top: 0;
    width: var(--m-hero-canvas-width);
    z-index: 5;
    display: block;
    min-height: 0;
    padding-top: 0;
  }

  .m-header__logo {
    position: absolute;
    left: 10px;
    top: 14px;
    z-index: 6;
    display: block !important;
    width: 38px;
    height: 38px;
    max-width: none;
    opacity: 1 !important;
    visibility: visible !important;
    object-fit: contain;
  }

  .m-header__brand-text {
    position: absolute;
    left: 59px;
    top: 16px;
    z-index: 6;
    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;
    white-space: nowrap;
  }

  .m-header__actions {
    position: static;
    display: block;
  }

  .m-header__connect {
    position: absolute;
    left: 200px;
    top: 20px;
    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-color: currentColor;
  -webkit-mask: url("./assets/exact/telegram-buttons.svg") center / contain no-repeat;
  mask: url("./assets/exact/telegram-buttons.svg") center / contain no-repeat;
  }

  .m-header__toggle {
    position: absolute;
    left: 321px;
    top: 26px;
    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;
    cursor: pointer;
  }

  .m-header__burger {
    display: block;
    width: 29px;
    height: 14px;
    background: url("./assets/mobile/hero-burger-live.png") center / contain no-repeat;
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), filter 220ms ease, opacity 220ms ease;
  }

  .m-menu {
    position: fixed;
    inset: 0;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    max-width: 100vw;
    z-index: 60;
    background: #2c3138;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: 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: 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;
    opacity: 0.82;
    transform: translateY(18px) scale(0.985);
    transition:
      transform 340ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 260ms ease;
    will-change: transform, opacity;
  }

  body.mobile-menu-open .m-menu__panel {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .m-menu__header {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 68px;
    padding: 15px 15px 0;
  }

  .m-menu__logo {
    width: 38px;
    height: 38px;
    display: block !important;
    flex: 0 0 38px;
    max-width: none;
    opacity: 1 !important;
    visibility: visible !important;
    object-fit: contain;
  }

  .m-menu__title {
    font-family: "Giorgio Sans LCG", sans-serif;
    font-size: 36px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
    transform: translateY(1px);
  }

  .m-menu__close {
    display: block;
    width: 20px;
    height: 20px;
    margin-left: auto;
    border: 0;
    padding: 0;
    background: url("./assets/mobile/menu-close-exact.svg") center / contain no-repeat;
    flex: 0 0 20px;
    transform: translateY(2px);
    transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), filter 220ms ease, opacity 220ms ease;
    cursor: pointer;
  }

  .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 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 249px;
    height: 41px;
    margin: 0;
    padding: 0;
    text-decoration: none;
    border-radius: 999px;
    overflow: hidden;
    isolation: isolate;
    font-family: "HelveticaNeueCyr", Arial, sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 400;
    transition:
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
      filter 220ms ease,
      box-shadow 220ms ease,
      opacity 220ms ease;
    will-change: transform, filter, box-shadow;
  }

  .m-menu__button span {
    display: block;
    position: relative;
    z-index: 1;
    transform: translateX(-2px);
  }

  .m-menu__button::before {
    display: none;
    content: none;
  }

  .m-menu__button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 30px;
    width: 16px;
    height: 12px;
    transform: translateY(-50%);
    z-index: 2;
    background-color: currentColor;
  -webkit-mask: url("./assets/exact/telegram-buttons.svg") center / contain no-repeat;
  mask: url("./assets/exact/telegram-buttons.svg") center / contain no-repeat;
  }

  .m-menu__button--light {
    background-image: none !important;
    background-color: #eef1f4;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 10px 24px rgba(10, 18, 34, 0.1);
    color: #1f2329;
  }

  .m-menu__button--dark {
    background-image: none !important;
    background: #2d3138;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    color: #fff;
  }

  body.mobile-menu-open .m-header__burger {
    transform: scale(0.94);
    filter: brightness(1.06);
  }

  .m-menu__close:active,
  .m-menu__button:active {
    transform: translateY(1px) scale(0.985);
    filter: brightness(0.985);
  }

  .m-menu__close:focus-visible,
  .m-menu__button:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.03);
  }

  .m-hero__copy {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--m-hero-canvas-left);
    width: var(--m-hero-canvas-width);
    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: 112px;
    display: block;
    width: 328px;
    height: auto;
    z-index: 4;
  }

  .m-hero__side-copy-image {
    position: absolute;
    left: 21px;
    top: 241px;
    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;
    isolation: isolate;
  }

  .m-hero__button--outline::after,
  .hero__cta--secondary::after {
    content: "";
    position: absolute;
    inset: -18% -24%;
    z-index: 0;
    border-radius: inherit;
    background:
      radial-gradient(circle at 50% 50%, rgba(164, 214, 255, 0.28) 0%, rgba(164, 214, 255, 0.18) 28%, rgba(164, 214, 255, 0) 68%);
    opacity: 0;
    transform: scale(0.82);
    transition:
      opacity 260ms ease,
      transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
  }

  .m-hero__button-icon {
    display: block;
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
    width: 12px;
    height: 10px;
    margin-left: 0;
    background-color: currentColor;
  -webkit-mask: url("./assets/exact/telegram-buttons.svg") center / contain no-repeat;
  mask: url("./assets/exact/telegram-buttons.svg") 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: static;
    z-index: 8;
    pointer-events: auto;
  }

  .m-hero__actions .m-hero__button {
    position: absolute;
    top: 362px;
    margin: 0;
  }

  .m-hero__actions .m-hero__button--dark {
    left: 11px;
  }

  .m-hero__actions .m-hero__button--outline {
    left: 243px;
  }

  .m-hero__scene {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--m-hero-canvas-left);
    width: var(--m-hero-canvas-width);
    z-index: 2;
    pointer-events: none;
  }

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

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

  .m-hero__fighter {
    position: absolute;
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%) scale(1.6);
    transform-origin: center bottom;
    width: 1152px;
    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: 433px;
    left: 251px;
    width: 99px;
    height: auto;
    z-index: 6;
    opacity: 1;
    visibility: visible;
  }

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

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

  .m-facts {
    position: absolute;
    left: var(--m-hero-canvas-left);
    top: 0;
    width: var(--m-hero-canvas-width);
    height: 100%;
    display: block;
    pointer-events: none;
  }

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

  .m-fact:nth-child(1) {
    left: 10px;
    top: 669px;
  }

  .m-fact:nth-child(2) {
    left: 188px;
    top: 669px;
  }

  .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-fact:nth-child(2) strong,
  .m-fact:nth-child(2) span:last-child {
    margin-left: 2px;
  }

  .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: #f1f1f1;
    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;
    text-transform: uppercase;
  }

  .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.svg");
  }

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

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

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

  .m-feature-card--bypass::before {
    content: 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: 16px;
    background-image: url("./assets/mobile/promo-logo-mobile-optimized.webp") !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .m-promo__button {
    order: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    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__button-icon--fist {
    display: none !important;
    width: 0;
    height: 0;
    background: 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;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 86px 16px 34px;
    background: #f9f9f9;
    box-shadow: 0 0 0 100vmax #f9f9f9;
    clip-path: inset(0 -100vmax);
  }

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

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

  .m-pricing__banner {
    position: relative;
    width: 100%;
    max-width: none;
    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: 39px !important;
    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: 62px !important;
    margin: 0;
    max-width: none;
    color: rgba(41, 45, 50, 0.82);
    font-size: 13px;
    line-height: 13px;
    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: 100%;
    max-width: none;
    margin: 18px 0 0;
    background: #f9f9f9;
  }

  .m-plan {
    position: relative;
    flex: 0 0 auto;
    min-width: 0;
    width: 100%;
    max-width: none;
    min-height: 326px;
    height: 326px;
    border-radius: 22px;
    overflow: hidden;
    color: #2d3442;
    box-shadow: 0 18px 36px rgba(32, 39, 52, 0.08);
  }

  .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;
    overflow: visible;
    box-shadow: 0 18px 34px rgba(32, 39, 52, 0.16);
  }

  .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(32, 39, 52, 0.05);
  }

  .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: -18px;
    left: 50%;
    width: 65px;
    height: auto;
    z-index: 8;
    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-family: "HelveticaNeueCyr", Arial, sans-serif;
    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-family: "HelveticaNeueCyr", Arial, sans-serif;
    font-size: 13px;
    line-height: 13px;
    font-weight: 350;
    letter-spacing: -0.01em;
    white-space: nowrap;
    text-align: left;
  }

  .m-plan__total strong {
    font-family: "HelveticaNeueCyr", Arial, sans-serif;
    font-weight: 500 !important;
    font-style: normal;
    font-size: 16px !important;
    line-height: 16px !important;
    letter-spacing: 0 !important;
    display: inline-block;
  }

  .plan-card__total strong {
    font-family: "HelveticaNeueCyr", Arial, sans-serif;
    font-weight: 500 !important;
    font-style: normal;
    font-size: 16px !important;
    line-height: 16px !important;
    letter-spacing: 0 !important;
    display: inline-block;
  }

  .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: 6px 22px 0 22px;
    list-style: none;
  }

  .m-plan__features li {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 18px;
    padding-left: 24px;
    padding-top: 0;
    top: 16px;
    font-size: 13px;
    line-height: 16px;
    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: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #4a90ff;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.26);
    transform: translateY(-50%);
  }

  .m-plan__features li::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    width: 5px;
    height: 3px;
    border-left: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: translateY(-60%) 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;
    max-width: 360px;
    padding: 20px 10px 0 !important;
    margin: 0 auto;
    background: #165dc7 !important;
  }

  .mobile-site--partial-shots .m-instruction::before {
    content: "" !important;
    display: block !important;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 648px;
    height: auto;
    transform: translateX(-50%);
    background: url("./assets/mobile/frame-141.webp") center top / 648px 1255px no-repeat !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;
    width: 340px;
    max-width: calc(100vw - 20px);
    margin-left: auto;
    margin-right: auto;
    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;
    width: 340px;
    max-width: calc(100vw - 20px);
    margin-left: auto;
    margin-right: auto;
    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-step__chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 10px;
  }

  .m-step__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 22px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(22, 93, 199, 0.08);
    color: #2d3138;
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
  }

  .m-step__chip::after {
    content: "";
    width: 12px;
    height: 12px;
    background-color: currentColor;
  -webkit-mask: url("./assets/exact/telegram-buttons.svg") center / contain no-repeat;
  mask: url("./assets/exact/telegram-buttons.svg") center / contain no-repeat;
    opacity: 0.82;
  }

  .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-image: none !important;
    background: #2d3138;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 12px 24px rgba(0, 0, 0, 0.18);
  }

  .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-color: #fff;
    -webkit-mask: url("./assets/exact/telegram-buttons.svg") center / contain no-repeat;
    mask: url("./assets/exact/telegram-buttons.svg") center / contain no-repeat;
  }

  .mobile-site--partial-shots .m-endcap,
  .m-endcap {
    position: relative;
    width: 360px !important;
    max-width: 360px !important;
    margin: 28px auto 0 !important;
    overflow: visible;
    background: transparent;
    min-height: 697px;
    clip-path: none;
  }

  .mobile-site--partial-shots .m-endcap::after,
  .m-endcap::after {
    display: none;
    content: none;
  }

  .mobile-site--partial-shots .m-instruction::after,
  .m-instruction::after {
    display: none;
    content: none;
  }

  .mobile-site--partial-shots .m-endcap__scene,
  .m-endcap__scene {
    position: relative;
    width: 360px !important;
    height: 697px !important;
    min-height: 0;
    aspect-ratio: auto !important;
    overflow: hidden;
    background: transparent;
    border-radius: 24px 24px 0 0;
  }

  .m-endcap__bg {
    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: "Р‘РћР•Р¦ VPN";
    position: absolute;
    left: 8px !important;
    top: 404px;
    transform: none !important;
    z-index: 2;
    margin: 0;
    color: #fff;
    font-family: "Giorgio Sans LCG", sans-serif;
    font-size: 120.38px;
    line-height: 120.38px;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
    pointer-events: none;
  }

  .m-endcap__line {
    display: none;
  }

  .m-endcap__footer {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 163px;
    padding: 0;
    box-sizing: border-box;
    background: transparent;
    z-index: 3;
    pointer-events: auto;
    align-items: flex-start;
    justify-content: center;
    padding-left: 16px;
    padding-bottom: 0;
  }

  .m-endcap__legal-link {
    position: relative;
    left: auto;
    right: auto;
    display: block !important;
    width: 236px;
    max-width: 236px;
    height: auto;
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
    pointer-events: auto;
    text-align: left;
    white-space: normal;
  }

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

  .m-endcap__legal-link--personal {
    top: auto;
  }

  .m-endcap__legal-link--personal::after {
    content: "РЎРѕРіР»Р°СЃРёРµ РЅР° РѕР±СЂР°Р±РѕС‚РєСѓ РџР”";
  }

  .m-endcap__legal-link--cookies {
    top: auto;
  }

  .m-endcap__legal-link--cookies::after {
    content: "РЎРѕРіР»Р°СЃРёРµ РЅР° cookies";
  }

  .m-endcap__legal-link--marketing {
    top: auto;
  }

  .m-endcap__legal-link--marketing::after {
    content: "РЎРѕРіР»Р°СЃРёРµ РЅР° СЂРµРєР»Р°РјРЅС‹Рµ СЂР°СЃСЃС‹Р»РєРё";
  }

  .m-endcap__legal-link--policy {
    top: auto;
  }

  .m-endcap__legal-link--policy::after {
    content: "РџРѕР»РёС‚РёРєР° РѕР±СЂР°Р±РѕС‚РєРё РџР”";
  }
  .m-features__label {
    font-weight: 400;
  }

  .m-support__visual img,
  .m-support__visual::before,
  .m-support__hit::before,
  .m-endcap__legal-link::after {
    display: none !important;
    content: none !important;
  }

  .m-support__title {
    margin: 0 0 14px;
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    text-align: center;
  }

  .m-support__hit {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
  }

  .m-endcap__legal-link {
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
  }
}

  .m-instruction {
    width: min(100%, 360px);
    max-width: 360px;
    margin: 0 auto;
    padding: 20px 10px 0;
    background: #165dc7;
    overflow: hidden;
  }

  .mobile-site {
    background: transparent;
  }

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

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

  .m-instruction__title {
    width: 340px;
    max-width: calc(100vw - 20px);
    margin-left: auto;
    margin-right: auto;
    font-size: 28px;
    line-height: 0.98;
    letter-spacing: -0.03em;
  }

  .m-step-list {
    gap: 0;
    margin-top: 15px;
    width: min(340px, calc(100vw - 20px));
    margin-left: auto;
    margin-right: auto;
  }

  .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/step-card-2-happ-plus-mobile.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__chip {
    display: none;
  }

  .m-step-list .m-step:nth-child(2) {
    background-image: none !important;
    background: #fff !important;
    border-radius: 22px;
  }

  .m-step-list .m-step:nth-child(2) .m-step__chip {
    position: absolute;
    left: 73px;
    bottom: 18px;
    display: block;
    width: 111px;
    min-width: 0;
    height: 22px;
    padding: 0;
    border-radius: 0;
    background: url("./assets/mobile/step-chip-happ-plus-exact.svg") center / contain no-repeat;
    color: transparent;
    font-size: 0;
    line-height: 0;
    font-weight: 400;
    letter-spacing: 0;
    text-align: left;
    text-indent: -9999px;
    overflow: hidden;
    box-shadow: none;
  }

  .m-step-list .m-step:nth-child(2) .m-step__chip::before {
    display: none;
    content: none;
  }

  .m-step-list .m-step:nth-child(2) .m-step__chip::after {
    display: none;
    content: none;
  }

  .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: 2;
    margin-bottom: 0;
  }

  .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-image: none !important;
    background: #2d3138;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 12px 24px rgba(0, 0, 0, 0.18);
  }

  .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-header__connect,
  .m-header__toggle,
  .m-hero__button,
  .m-feature-card,
  .m-promo__button,
  .m-pricing__banner,
  .m-plan,
  .m-step,
  .m-support__hit,
  .m-endcap__legal-link {
    will-change: transform, box-shadow, filter;
    transition:
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 220ms ease,
      filter 220ms ease,
      background-color 220ms ease,
      opacity 220ms ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .m-header__connect:active,
  .m-header__toggle:active,
  .m-hero__button:active,
  .m-promo__button:active,
  .m-support__hit:active {
    transform: translateY(1px) scale(0.985);
    filter: brightness(0.985);
  }

  .m-feature-card:active,
  .m-pricing__banner:active,
  .m-plan:active,
  .m-step:active {
    transform: translateY(2px) scale(0.992);
    filter: brightness(0.992);
  }

  .m-header__connect:focus-visible,
  .m-header__toggle:focus-visible,
  .m-hero__button:focus-visible,
  .m-promo__button:focus-visible,
  .m-support__hit:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.03);
  }

  .m-feature-card:focus-visible,
  .m-pricing__banner:focus-visible,
  .m-plan:focus-visible,
  .m-step:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.01);
  }

  .m-hero__button--dark,
  .m-promo__button,
  .m-support__hit {
    box-shadow: 0 14px 30px rgba(10, 35, 92, 0.18);
  }

  .m-hero__button--dark:focus-visible,
  .m-promo__button:focus-visible,
  .m-support__hit:focus-visible {
    box-shadow: 0 18px 34px rgba(10, 35, 92, 0.22);
  }

  .m-hero__button--outline.is-tariff-armed,
  .hero__cta--secondary.is-tariff-armed {
    transform: translateY(-2px) scale(1.015);
    filter: brightness(1.06);
  }

  .m-hero__button--outline.is-tariff-armed::after,
  .hero__cta--secondary.is-tariff-armed::after {
    opacity: 1;
    transform: scale(1.08);
  }

  .m-pricing.is-pricing-spotlit,
  .pricing.is-pricing-spotlit {
    animation: pricing-section-spotlight 760ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .m-pricing.is-pricing-spotlit .m-pricing__banner,
  .pricing.is-pricing-spotlit .pricing__banner {
    animation: pricing-banner-pop 760ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .m-pricing.is-pricing-spotlit .m-plan,
  .pricing.is-pricing-spotlit .pricing__cards > * {
    animation: pricing-card-rise 560ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .m-pricing.is-pricing-spotlit .m-plan:nth-child(2),
  .pricing.is-pricing-spotlit .pricing__cards > *:nth-child(2) {
    animation-delay: 50ms;
  }

  .m-pricing.is-pricing-spotlit .m-plan:nth-child(3),
  .pricing.is-pricing-spotlit .pricing__cards > *:nth-child(3) {
    animation-delay: 100ms;
  }

  .m-pricing.is-pricing-spotlit .m-plan:nth-child(4),
  .pricing.is-pricing-spotlit .pricing__cards > *:nth-child(4) {
    animation-delay: 150ms;
  }

  .m-step__chip,
  .m-plan__economy,
  .m-pricing__badge {
    transition:
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 220ms ease,
      filter 220ms ease,
      opacity 220ms ease;
    will-change: transform, filter;
  }

  .m-step:active .m-step__chip,
  .m-plan:active .m-plan__economy,
  .m-pricing__banner:active .m-pricing__badge {
    transform: translateY(1px) scale(0.985);
  }

  .m-features__label {
    font-weight: 400;
  }

  .m-step__chip-list {
    position: absolute;
    left: 69px;
    right: 13px;
    bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }

  .m-step__chip {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    min-width: 0;
    min-height: 22px;
    height: 22px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(45, 49, 56, 0.94) !important;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
    text-decoration: none;
  }

  .m-step__chip::before {
    display: none !important;
    content: none !important;
  }

  .m-step__chip::after {
    position: static !important;
    width: 12px !important;
    height: 12px !important;
    transform: none !important;
    border: 0 !important;
    background-color: currentColor !important;
  -webkit-mask: url("./assets/exact/telegram-buttons.svg") center / contain no-repeat !important;
  mask: url("./assets/exact/telegram-buttons.svg") center / contain no-repeat !important;
  }

  .m-step-list .m-step:nth-child(2) .m-step__chip {
    position: absolute;
    left: 69px;
    bottom: 20px;
    display: block !important;
    width: 111px;
    min-width: 0;
    height: 22px;
    padding: 0;
    border-radius: 0;
    background: url("./assets/mobile/step-chip-happ-plus-exact.svg") center / contain no-repeat !important;
    color: transparent;
    font-size: 0;
    line-height: 0;
    font-weight: 400;
    letter-spacing: 0;
    text-align: left;
    box-shadow: none;
    text-indent: -9999px;
    overflow: hidden;
  }

  .m-step-list .m-step:nth-child(2) .m-step__chip::after {
    display: none !important;
    content: none !important;
    background: none !important;
    border: 0 !important;
    opacity: 0;
  }

  .m-step-list .m-step:nth-child(2) .m-step__chip::before {
    display: none !important;
    content: none !important;
  }

  .m-support__visual img,
  .m-support__visual::before,
  .m-support__hit::before,
  .m-endcap__legal-link::after {
    display: none !important;
    content: none !important;
  }

  .m-support__title {
    margin: 0 0 18px;
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    text-align: center;
  }

  .m-support__hit {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 0 42px 0 35px;
    color: #fff;
    font-size: 15px;
    line-height: 15px;
    font-weight: 500;
    text-align: left;
    text-decoration: none;
  }

  .m-support__hit::after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    margin-left: auto;
    flex: 0 0 14px;
    background-color: #fff;
  -webkit-mask: url("./assets/exact/telegram-buttons.svg") center / contain no-repeat;
  mask: url("./assets/exact/telegram-buttons.svg") center / contain no-repeat;
  }

  .m-endcap__legal-link {
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
  }

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

  .m-endcap__art {
    display: none;
  }

  .m-endcap__footer {
    display: block !important;
    position: absolute;
    left: 0;
    width: 360px;
    bottom: 0;
    height: 163px;
    padding: 0;
    box-sizing: border-box;
    background: transparent;
    z-index: 4;
    pointer-events: auto;
  }

  .m-endcap__legal-link {
    position: absolute;
    left: 16px;
    right: 16px;
    display: block !important;
    width: auto;
    max-width: none;
    height: 16px;
    color: transparent !important;
    text-decoration: none;
    pointer-events: auto;
    text-align: left;
    white-space: nowrap;
    font-size: 0;
    line-height: 0;
    font-weight: 400;
    text-indent: -9999px;
    overflow: hidden;
    background: transparent;
    border-radius: 6px;
  }

  .m-endcap__legal-link::after {
    display: none !important;
    content: none !important;
  }

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

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

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

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

  .m-endcap__legal-link:focus-visible {
    outline: 1px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
  }

  .mobile-site--partial-shots .m-endcap__scene,
  .m-endcap__scene {
    background: url("./assets/mobile/endcap-wide-custom.png") center top / 360px 697px no-repeat !important;
  }

  .m-endcap__art {
    display: none !important;
  }

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

  .mobile-site--partial-shots .m-endcap__footer,
  .m-endcap__footer {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    left: 0;
    right: 0;
    width: auto;
    bottom: 0;
    height: 163px;
    padding: 0 0 0 16px;
    box-sizing: border-box;
    background: transparent;
    align-items: flex-start;
    justify-content: center;
  }

  .mobile-site--partial-shots .m-endcap__legal-link,
  .m-endcap__legal-link {
    position: relative;
    left: auto;
    right: auto;
    display: block !important;
    width: 236px;
    max-width: 236px;
    height: auto;
    color: rgba(255, 255, 255, 0.76) !important;
    text-decoration: none;
    pointer-events: auto;
    text-align: left;
    white-space: normal;
    font-size: 12px !important;
    line-height: 14px !important;
    font-weight: 400;
    text-indent: 0;
    overflow: visible;
    background: transparent;
  }

  .mobile-site--partial-shots .m-endcap__legal-link::after,
  .m-endcap__legal-link::after {
    display: none !important;
    content: none !important;
  }

  @keyframes mobile-breath {
    0%,
    100% {
      transform: translateY(0);
      filter: brightness(1);
    }
    50% {
      transform: translateY(-2px);
      filter: brightness(1.02);
    }
  }

  .m-support__hit {
    animation: mobile-breath 4.8s ease-in-out infinite;
  }

  @keyframes pricing-section-spotlight {
    0% {
      filter: brightness(1);
    }
    28% {
      filter: brightness(1.05);
    }
    100% {
      filter: brightness(1);
    }
  }

  @keyframes pricing-banner-pop {
    0% {
      transform: translateY(0) scale(1);
      box-shadow: 0 18px 34px rgba(143, 167, 210, 0.14);
    }
    42% {
      transform: translateY(-6px) scale(1.014);
      box-shadow: 0 28px 40px rgba(88, 131, 214, 0.2);
    }
    100% {
      transform: translateY(0) scale(1);
      box-shadow: 0 18px 34px rgba(143, 167, 210, 0.14);
    }
  }

  @keyframes pricing-card-rise {
    0% {
      transform: translateY(0);
      filter: brightness(1);
    }
    45% {
      transform: translateY(-4px);
      filter: brightness(1.025);
    }
    100% {
      transform: translateY(0);
      filter: brightness(1);
    }
  }

@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;
  }
}

.mobile-site--partial-shots .m-endcap,
.m-endcap {
  position: relative;
  width: 360px !important;
  max-width: 360px !important;
  margin: 28px auto 0 !important;
  min-height: 697px;
  overflow: visible;
  background: transparent;
}

.mobile-site--partial-shots .m-endcap__scene,
.m-endcap__scene {
  position: relative;
  width: 360px !important;
  height: 697px !important;
  overflow: hidden;
  background: transparent !important;
  border-radius: 24px 24px 0 0;
}

.m-endcap__scene::after,
.m-endcap__bg,
.m-endcap__rays,
.m-endcap__fighter,
.m-endcap__brand-image,
.m-endcap__footer-bg,
.m-endcap__legal-image,
.m-endcap__art,
.m-endcap__line {
  display: none !important;
  content: none !important;
}

.m-endcap__bg-art {
  position: absolute;
  inset: 0;
  display: block;
  width: 360px;
  height: 697px;
  max-width: none;
  object-fit: fill;
  pointer-events: none;
  z-index: 1;
}

.m-endcap__fighter-art {
  position: absolute;
  left: 0;
  bottom: 145px;
  display: block;
  width: 360px;
  height: 552px;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
}

.mobile-site--partial-shots .m-endcap__footer,
.m-endcap__footer {
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 163px;
  padding: 0 0 0 16px;
  box-sizing: border-box;
  background: transparent;
  z-index: 3;
  pointer-events: auto;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.m-endcap__footer-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 163px;
  object-fit: cover;
  object-position: center bottom;
  pointer-events: none;
  z-index: 0;
}

.mobile-site--partial-shots .m-endcap__legal-link,
.m-endcap__legal-link {
  position: relative;
  display: block !important;
  width: 236px;
  max-width: 236px;
  height: auto;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 12px !important;
  line-height: 14px !important;
  font-weight: 400;
  text-align: left;
  text-decoration: none;
  text-indent: 0;
  white-space: normal;
  overflow: visible;
  background: transparent;
  pointer-events: auto;
  z-index: 1;
}

.mobile-site--partial-shots .m-endcap__legal-link::after,
.m-endcap__legal-link::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 1023px) {
  .mobile-site--partial-shots .m-endcap,
  .m-endcap {
    width: min(340px, calc(100vw - 20px)) !important;
    max-width: calc(100vw - 20px) !important;
    min-height: 0 !important;
    margin: 18px auto 0 !important;
    padding: 18px 16px 20px !important;
    border-radius: 22px !important;
    background: #2d3138 !important;
    overflow: hidden !important;
  }

  .mobile-site--partial-shots .m-endcap__scene,
  .m-endcap__scene {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    background: none !important;
  }

  .mobile-site--partial-shots .m-endcap__footer,
  .m-endcap__footer {
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .mobile-site--partial-shots .m-endcap__legal-link,
  .m-endcap__legal-link {
    width: 100% !important;
    max-width: none !important;
    color: rgba(255, 255, 255, 0.78) !important;
  }

  .mobile-site--partial-shots .m-endcap__legal-link::after,
  .m-endcap__legal-link::after {
    display: none !important;
    content: none !important;
  }
}

@media (max-width: 1023px) {
  .mobile-site .m-endcap,
  .mobile-site--partial-shots .m-endcap,
  .m-endcap {
    width: 360px !important;
    max-width: 360px !important;
    min-height: 715px !important;
    margin: -11px auto 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    overflow: visible !important;
  }

  .mobile-site .m-endcap__scene,
  .mobile-site--partial-shots .m-endcap__scene,
  .m-endcap__scene {
    display: block !important;
    position: relative !important;
    width: 360px !important;
    height: 552px !important;
    min-height: 552px !important;
    overflow: visible !important;
    background: transparent !important;
    border-radius: 0 !important;
  }

  .m-endcap__bg-art,
  .m-endcap__fighter-art {
    display: none !important;
  }

  .mobile-site .m-endcap__scene-art,
  .mobile-site--partial-shots .m-endcap__scene-art,
  .m-endcap__scene-art {
    display: block !important;
    position: absolute !important;
    left: -44px !important;
    top: 0 !important;
    width: 404px !important;
    height: 552px !important;
    max-width: none !important;
    object-fit: fill !important;
    pointer-events: none !important;
    z-index: 1 !important;
  }

  .mobile-site .m-endcap__bg-art,
  .mobile-site--partial-shots .m-endcap__bg-art,
  .m-endcap__bg-art {
    display: none !important;
    position: absolute !important;
    left: 0 !important;
    top: -73px !important;
    inset: auto !important;
    width: 360px !important;
    height: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    object-position: center top !important;
    pointer-events: none !important;
    z-index: 1 !important;
  }

  .mobile-site .m-endcap__fighter-art,
  .mobile-site--partial-shots .m-endcap__fighter-art,
  .m-endcap__fighter-art {
    display: none !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 145px !important;
    width: 360px !important;
    height: 552px !important;
    max-width: none !important;
    object-fit: contain !important;
    pointer-events: none !important;
    z-index: 2 !important;
  }

  .mobile-site .m-endcap__footer,
  .mobile-site--partial-shots .m-endcap__footer,
  .m-endcap__footer {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 10px !important;
    width: auto !important;
    height: 163px !important;
    padding: 0 0 0 16px !important;
    background: transparent !important;
    overflow: hidden !important;
    z-index: 3 !important;
  }

  .mobile-site .m-endcap__footer-art,
  .mobile-site--partial-shots .m-endcap__footer-art,
  .m-endcap__footer-art {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 163px !important;
    object-fit: cover !important;
    object-position: center bottom !important;
    pointer-events: none !important;
    z-index: 0 !important;
  }

  .mobile-site .m-endcap__legal-link,
  .mobile-site--partial-shots .m-endcap__legal-link,
  .m-endcap__legal-link {
    position: relative !important;
    width: 236px !important;
    max-width: 236px !important;
    color: rgba(255, 255, 255, 0.76) !important;
    font-size: 12px !important;
    line-height: 14px !important;
    text-indent: 0 !important;
    white-space: normal !important;
    overflow: visible !important;
    z-index: 1 !important;
  }
}

@media (max-width: 1023px) {
  .mobile-site .m-support,
  .mobile-site--partial-shots .m-support,
  .m-support {
    display: none !important;
  }

  .mobile-site .m-endcap,
  .mobile-site--partial-shots .m-endcap,
  .m-endcap {
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: 973px !important;
    margin: 0 calc(50% - 50vw) 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    overflow: visible !important;
  }

  .mobile-site .m-endcap__scene,
  .mobile-site--partial-shots .m-endcap__scene,
  .m-endcap__scene {
    display: block !important;
    position: relative !important;
    width: 100vw !important;
    height: 810px !important;
    min-height: 810px !important;
    background: #004ebb !important;
    overflow: hidden !important;
    border-radius: 0 !important;
  }

  .mobile-site .m-endcap__scene-art,
  .mobile-site--partial-shots .m-endcap__scene-art,
  .m-endcap__scene-art,
  .mobile-site .m-endcap__footer-art,
  .mobile-site--partial-shots .m-endcap__footer-art,
  .m-endcap__footer-art {
    display: none !important;
  }

  .mobile-site .m-endcap__bg-art,
  .mobile-site--partial-shots .m-endcap__bg-art,
  .m-endcap__bg-art {
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    top: -280px !important;
    width: max(648px, calc(100vw + 288px)) !important;
    height: 1255px !important;
    max-width: none !important;
    object-fit: fill !important;
    transform: translateX(-50%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
  }

  .mobile-site .m-endcap__support,
  .mobile-site--partial-shots .m-endcap__support,
  .m-endcap__support {
    position: absolute !important;
    left: 50% !important;
    top: 187px !important;
    width: 261px !important;
    height: 82px !important;
    transform: translateX(-50%) !important;
    z-index: 3 !important;
  }

  .mobile-site .m-endcap__support-title,
  .mobile-site--partial-shots .m-endcap__support-title,
  .m-endcap__support-title {
    margin: 0 0 18px !important;
    color: #fff !important;
    font-family: "HelveticaNeueCyr", sans-serif !important;
    font-size: 20px !important;
    line-height: 20px !important;
    font-weight: 400 !important;
    text-align: center !important;
    letter-spacing: -0.2px !important;
  }

  .mobile-site .m-endcap__support-hit,
  .mobile-site--partial-shots .m-endcap__support-hit,
  .m-endcap__support-hit {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 261px !important;
    height: 44px !important;
    padding: 0 35px !important;
    border-radius: 100px !important;
    background: #2d3138 !important;
    color: #fff !important;
    font-family: "HelveticaNeueCyr", sans-serif !important;
    font-size: 15px !important;
    line-height: 15px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    box-shadow: none !important;
    z-index: 3 !important;
  }

  .mobile-site .m-endcap__support-hit::after,
  .mobile-site--partial-shots .m-endcap__support-hit::after,
  .m-endcap__support-hit::after {
    content: "" !important;
    display: block !important;
    width: 16px !important;
    height: 12px !important;
    margin-left: auto !important;
    background-color: #fff !important;
    -webkit-mask: url("./assets/exact/telegram-buttons.svg") center / contain no-repeat !important;
    mask: url("./assets/exact/telegram-buttons.svg") center / contain no-repeat !important;
  }

  .mobile-site .m-endcap__fighter-art,
  .mobile-site--partial-shots .m-endcap__fighter-art,
  .m-endcap__fighter-art {
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    top: 258px !important;
    width: 360px !important;
    height: 552px !important;
    max-width: none !important;
    object-fit: contain !important;
    transform: translateX(-50%) !important;
    pointer-events: none !important;
    z-index: 2 !important;
  }

  .mobile-site .m-endcap__brand,
  .mobile-site--partial-shots .m-endcap__brand,
  .m-endcap__brand {
    position: absolute !important;
    left: 50% !important;
    top: 697px !important;
    z-index: 3 !important;
    margin: 0 !important;
    color: #fff !important;
    font-family: "Giorgio Sans LCG", sans-serif !important;
    font-size: 120.377px !important;
    line-height: 0.73 !important;
    font-weight: 700 !important;
    letter-spacing: -2.407px !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    transform: translateX(-172px) !important;
    pointer-events: none !important;
  }

  .mobile-site .m-endcap__footer,
  .mobile-site--partial-shots .m-endcap__footer,
  .m-endcap__footer {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: auto !important;
    height: 163px !important;
    padding: 0 20px !important;
    background: #292d32 !important;
    overflow: hidden !important;
    transform: none !important;
    z-index: 4 !important;
  }

  .mobile-site .m-endcap__legal-link,
  .mobile-site--partial-shots .m-endcap__legal-link,
  .m-endcap__legal-link {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 320px !important;
    max-width: calc(100vw - 40px) !important;
    min-height: 16px !important;
    overflow: visible !important;
    text-decoration: none !important;
    text-align: center !important;
    z-index: 1 !important;
  }

  .mobile-site .m-endcap__legal-art,
  .mobile-site--partial-shots .m-endcap__legal-art,
  .m-endcap__legal-art {
    display: block !important;
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 13px !important;
    pointer-events: none !important;
  }
}

@media (max-width: 1023px) {
  .mobile-site .m-instruction,
  .mobile-site--partial-shots .m-instruction,
  .m-instruction {
    position: relative !important;
    background: #004ebb !important;
    overflow: hidden !important;
  }

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

  .mobile-site .m-instruction > *,
  .mobile-site--partial-shots .m-instruction > *,
  .m-instruction > * {
    position: relative !important;
    z-index: 2 !important;
  }

  .mobile-site .m-instruction__label,
  .mobile-site--partial-shots .m-instruction__label,
  .m-instruction__label,
  .mobile-site .m-instruction__title,
  .mobile-site--partial-shots .m-instruction__title,
  .m-instruction__title,
  .mobile-site .m-step-list,
  .mobile-site--partial-shots .m-step-list,
  .m-step-list {
    z-index: 4 !important;
  }

  .mobile-site .m-endcap,
  .mobile-site--partial-shots .m-endcap,
  .m-endcap {
    margin-top: -150px !important;
    z-index: 1 !important;
  }

  .mobile-site .m-endcap__fighter-art,
  .mobile-site--partial-shots .m-endcap__fighter-art,
  .m-endcap__fighter-art {
    left: 50% !important;
    top: 284px !important;
    width: 436px !important;
    height: 670px !important;
    max-width: none !important;
    object-fit: contain !important;
    transform: translateX(-50%) !important;
    z-index: 2 !important;
  }

  .mobile-site .m-endcap__brand,
  .mobile-site--partial-shots .m-endcap__brand,
  .m-endcap__brand {
    display: block !important;
  }
}

@media (max-width: 1023px) {
  .mobile-site .m-endcap__footer,
  .mobile-site--partial-shots .m-endcap__footer,
  .m-endcap__footer {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 10px !important;
    height: 163px !important;
    padding: 0 16px !important;
    background: #292d32 !important;
    overflow: hidden !important;
  }

  .mobile-site .m-endcap__legal-link,
  .mobile-site--partial-shots .m-endcap__legal-link,
  .m-endcap__legal-link {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: calc(100% - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    min-height: 16px !important;
    margin: 0 !important;
    text-indent: 0 !important;
    overflow: visible !important;
    text-align: left !important;
  }

  .mobile-site .m-endcap__legal-art,
  .mobile-site--partial-shots .m-endcap__legal-art,
  .m-endcap__legal-art {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 13px !important;
  }
}




