:root {
  color-scheme: dark;
  --bg: #02050b;
  --bg-soft: #050a12;
  --panel: rgba(13, 20, 32, 0.72);
  --panel-strong: rgba(16, 26, 42, 0.9);
  --line: rgba(122, 157, 210, 0.22);
  --line-strong: rgba(42, 123, 255, 0.5);
  --text: #f6f8ff;
  --muted: rgba(239, 244, 255, 0.68);
  --faint: rgba(239, 244, 255, 0.46);
  --blue: #0874ff;
  --blue-2: #19a1ff;
  --blue-deep: #0648ff;
  --green: #3be274;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-blue: 0 0 32px rgba(0, 103, 255, 0.34);
  --container: 1392px;
  --side: clamp(20px, 4vw, 64px);
  --section-y: clamp(46px, 4.2vw, 68px);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
  background:
    radial-gradient(circle at 50% 0%, rgba(6, 72, 255, 0.2), transparent 30rem),
    radial-gradient(circle at 80% 32rem, rgba(0, 96, 255, 0.14), transparent 36rem),
    linear-gradient(180deg, #02050b 0%, #01040a 42%, #02060d 100%);
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

svg {
  display: block;
}

.svg-sprite,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.page {
  position: relative;
  padding-top: 88px;
  overflow: visible;
  overflow-x: clip;
}

.page::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent, black 12rem, black 70%, transparent);
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
  width: min(var(--container), calc(100% - var(--side) * 2));
  min-height: 88px;
  margin: 0 auto;
  padding-block: 20px 14px;
  transform: translateX(-50%);
  transition: top 0.2s ease, width 0.2s ease, min-height 0.2s ease, padding 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  top: 10px;
  width: min(var(--container), calc(100% - 24px));
  min-height: 72px;
  margin-top: 0;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(4, 8, 15, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  font-size: 1.625rem;
  font-weight: 800;
}

.brand__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--blue), #061e72);
  box-shadow: 0 0 22px rgba(9, 116, 255, 0.38);
}

.brand__mark svg {
  width: 28px;
  height: 28px;
}

.brand__name b,
h1 span,
h2 span,
h3 span,
.accent {
  color: var(--blue);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  color: var(--muted);
  font-size: 1.0625rem;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
  transition: color 0.2s ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: var(--blue);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 28px;
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(46, 143, 255, 0.72);
  border-radius: 10px;
  background: linear-gradient(135deg, #006eff, var(--blue-deep));
  box-shadow: 0 12px 30px rgba(0, 93, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.button:hover,
.button:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 16px 38px rgba(0, 100, 255, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.button--small {
  min-height: 54px;
  padding-inline: 24px;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span:not(.visually-hidden) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 84px;
  right: 20px;
  left: 20px;
  z-index: 45;
  display: none;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(5, 10, 18, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
}

.mobile-menu.is-open {
  display: grid;
  gap: 6px;
}

.mobile-menu a:not(.button) {
  padding: 14px 12px;
  color: var(--muted);
  border-radius: 12px;
}

.mobile-menu a:not(.button):hover,
.mobile-menu a:not(.button):focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.section {
  position: relative;
  width: min(var(--container), calc(100% - var(--side) * 2));
  margin-inline: auto;
  padding-block: var(--section-y);
  scroll-margin-top: 112px;
}

.hero {
  min-height: calc(100svh - 88px);
  padding-top: 30px;
  padding-bottom: 58px;
}

.hero::before {
  position: absolute;
  inset: 0 calc(var(--side) * -1) auto;
  z-index: -1;
  height: 100%;
  content: "";
  background:
    radial-gradient(circle at 73% 46%, rgba(7, 115, 255, 0.2), transparent 24rem),
    radial-gradient(ellipse at 50% 93%, rgba(255, 255, 255, 0.13), transparent 22rem),
    linear-gradient(180deg, rgba(6, 9, 16, 0.18), rgba(1, 4, 9, 0.96));
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(600px, 0.95fr) minmax(420px, 0.86fr);
  align-items: center;
  gap: clamp(30px, 4vw, 64px);
}

.hero__content {
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  min-height: 40px;
  padding: 8px 18px;
  color: var(--blue-2);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.eyebrow i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(0, 115, 255, 0.78);
}

.eyebrow svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 18px;
  line-height: 1.08;
  font-weight: 900;
}

h1 {
  margin-top: 34px;
  font-size: 4rem;
}

h2 {
  font-size: 3.45rem;
}

h3 {
  margin-bottom: 10px;
  line-height: 1.24;
  font-size: 1.35rem;
}

.lead,
.section-heading p {
  color: var(--muted);
  font-size: 1.2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.hero__actions .button {
  min-width: 248px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 38px;
}

.mini-point {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding-inline: 22px;
  color: rgba(255, 255, 255, 0.86);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.mini-point:first-child {
  padding-left: 0;
}

.mini-point:last-child {
  border-right: 0;
}

.mini-point svg {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  color: var(--blue);
  filter: drop-shadow(0 0 14px rgba(0, 106, 255, 0.6));
}

.mini-point span {
  min-width: 0;
}

.hero__visual {
  position: relative;
  isolation: isolate;
  min-width: 0;
  margin-right: -34px;
}

.hero__visual::before {
  position: absolute;
  inset: 9% -5% 11% 14%;
  z-index: -1;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle at 66% 42%, rgba(9, 119, 255, 0.34), transparent 32%),
    radial-gradient(circle at 46% 64%, rgba(5, 43, 105, 0.42), transparent 44%);
  border: 1px solid rgba(8, 113, 255, 0.2);
  transform: rotate(-18deg);
  box-shadow: 0 0 80px rgba(0, 94, 255, 0.26);
}

.hero__visual::after {
  position: absolute;
  inset: auto 6% 3% 6%;
  z-index: -1;
  height: 24%;
  pointer-events: none;
  content: "";
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.14), transparent 64%);
}

.hero__visual img {
  width: min(100%, 680px);
  margin-left: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 50px rgba(0, 0, 0, 0.45));
  mask-image: radial-gradient(ellipse at 54% 52%, black 64%, rgba(0, 0, 0, 0.86) 76%, transparent 96%);
}

.hero-device {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
}

.orbit-shield {
  position: absolute;
  top: 23%;
  right: 8%;
  width: min(44vw, 360px);
  aspect-ratio: 1;
  border: 2px solid rgba(20, 126, 255, 0.6);
  border-radius: 42% 58% 52% 48%;
  filter: drop-shadow(0 0 24px rgba(0, 132, 255, 0.8));
  transform: rotate(-18deg);
}

.orbit-shield::before,
.orbit-shield::after {
  position: absolute;
  content: "";
  border-radius: inherit;
}

.orbit-shield::before {
  inset: -90px -120px;
  border: 1px solid rgba(10, 106, 255, 0.28);
  transform: rotate(19deg);
}

.orbit-shield::after {
  inset: 18%;
  background: linear-gradient(135deg, rgba(6, 87, 255, 0.28), rgba(6, 16, 36, 0.12));
  clip-path: polygon(50% 0, 88% 17%, 81% 69%, 50% 100%, 18% 69%, 12% 17%);
  box-shadow: inset 0 0 44px rgba(0, 125, 255, 0.42);
}

.phone {
  position: relative;
  width: min(78vw, 370px);
  aspect-ratio: 0.49;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 44px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.32), transparent 13% 86%, rgba(255, 255, 255, 0.26)),
    linear-gradient(145deg, #06080d, #252a32 54%, #05060a);
  box-shadow:
    22px 34px 42px rgba(0, 0, 0, 0.54),
    inset 0 0 0 2px rgba(255, 255, 255, 0.06);
}

.phone::before {
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 5;
  width: 112px;
  height: 30px;
  content: "";
  border-radius: 999px;
  background: #020308;
  transform: translateX(-50%);
}

.phone::after {
  position: absolute;
  top: 19%;
  right: -7px;
  width: 5px;
  height: 92px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(#b9c2cf, #313844);
  box-shadow: 0 118px 0 rgba(185, 194, 207, 0.34);
}

.phone--hero {
  z-index: 2;
  width: min(100%, 350px);
  transform: rotate(6deg);
}

.phone--telegram {
  width: min(100%, 370px);
  transform: rotate(7deg);
}

.phone__screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 24px 22px 18px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 4%, rgba(6, 104, 255, 0.25), transparent 16%),
    radial-gradient(circle at 83% 28%, rgba(255, 255, 255, 0.05), transparent 20%),
    linear-gradient(180deg, #111722, #06090f 62%, #030407);
}

.phone__screen::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 28% 68%, rgba(255, 255, 255, 0.04));
}

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

.phone__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  font-size: 0.78rem;
  font-weight: 800;
}

.phone__status span:last-child {
  width: 58px;
  height: 13px;
  background:
    linear-gradient(90deg, #fff 0 4px, transparent 4px 8px, #fff 8px 15px, transparent 15px 20px, #fff 20px 30px, transparent 30px 38px),
    linear-gradient(90deg, transparent 40px, #fff 40px 58px);
  opacity: 0.88;
}

.phone__top,
.bot-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.phone__logo {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  border-radius: 9px;
  background: linear-gradient(145deg, var(--blue), #061e72);
}

.phone__logo svg {
  width: 20px;
  height: 20px;
}

.phone__top b {
  font-size: 1.04rem;
}

.phone__top i {
  width: 24px;
  height: 16px;
  margin-left: auto;
  background: linear-gradient(#dfe4ee 0 2px, transparent 2px 7px, #dfe4ee 7px 9px, transparent 9px 14px, #dfe4ee 14px 16px);
  opacity: 0.7;
}

.phone-card,
.bot-subscription,
.bot-lte,
.bot-list {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: 0 16px 22px rgba(0, 0, 0, 0.22);
}

.phone-card + .phone-card {
  margin-top: 14px;
}

.phone-card--status div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.phone-card--status div b,
.bot-subscription b {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 700;
}

.phone-card--status div i,
.bot-subscription b i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.phone-card strong,
.bot-lte strong {
  display: block;
  font-size: 1.85rem;
  line-height: 1;
}

.phone-card em,
.bot-lte em {
  font-size: 1.05rem;
  font-style: normal;
}

.phone-card small,
.bot-subscription small,
.bot-lte small,
.bot-note {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
}

.phone-card button,
.bot-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  color: #fff;
  font-weight: 700;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #097cff, #0648ff);
}

.phone-card button svg,
.bot-main svg {
  width: 18px;
  height: 18px;
}

.phone-progress {
  height: 10px;
  margin: 10px 0 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.phone-progress i {
  display: block;
  width: 58%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #076bff, #1599ff);
}

.phone-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  text-align: center;
}

.phone-tabs span:first-child {
  color: var(--blue);
}

.phone-tabs svg {
  width: 22px;
  height: 22px;
  margin: 0 auto 5px;
}

.section-heading {
  max-width: 920px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading .eyebrow {
  margin-bottom: 16px;
}

.pricing .section-heading {
  margin-bottom: 32px;
}

.benefits {
  padding-top: calc(var(--section-y) + 8px);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.step-card,
.mode-card,
.platform-card,
.support-card,
.pricing-table-wrap,
.lte-panel,
.telegram-cards article,
.telegram-band,
.wide-action,
.info-band,
.cta-band,
.final-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(6, 13, 24, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 20px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.feature-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 18px 22px;
  text-align: center;
  border-radius: 18px;
}

.icon-circle {
  display: grid;
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  place-items: center;
  margin-bottom: 20px;
  color: var(--blue);
  border: 1px solid rgba(16, 109, 255, 0.42);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, rgba(24, 117, 255, 0.24), rgba(6, 13, 24, 0.6) 68%);
  box-shadow: inset 0 0 32px rgba(0, 103, 255, 0.12), 0 0 28px rgba(0, 103, 255, 0.16);
}

.icon-circle svg {
  width: 38px;
  height: 38px;
}

.feature-card h3 {
  min-height: 52px;
  margin-bottom: 14px;
  font-size: 1.08rem;
}

.feature-card h3::after {
  display: block;
  width: 28px;
  height: 2px;
  margin: 16px auto 0;
  content: "";
  border-radius: 999px;
  background: var(--blue-2);
  box-shadow: 0 0 12px rgba(0, 130, 255, 0.8);
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.info-band {
  display: flex;
  align-items: center;
  gap: 32px;
  width: min(760px, 100%);
  margin: 28px auto 0;
  padding: 22px 32px;
  border-radius: 16px;
}

.info-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
}

.info-band b {
  color: var(--blue-2);
}

.info-band--compact {
  width: min(860px, 100%);
}

.process::before,
.modes::before,
.pricing::before,
.instructions::before,
.support::before {
  position: absolute;
  inset: 2rem calc(var(--side) * -1) 0;
  z-index: -1;
  content: "";
  background: radial-gradient(circle at 50% 20%, rgba(2, 77, 255, 0.08), transparent 32rem);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.step-card {
  position: relative;
  min-height: 320px;
  padding: 24px 22px 26px;
  text-align: center;
  border-radius: 18px;
}

.step-card:not(:last-child)::after {
  position: absolute;
  top: 48%;
  right: -26px;
  width: 34px;
  height: 8px;
  content: "";
  background-image: radial-gradient(circle, var(--blue) 2px, transparent 3px);
  background-size: 10px 8px;
  filter: drop-shadow(0 0 8px rgba(0, 116, 255, 0.9));
}

.step-card__num {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin: -6px auto 16px;
  font-size: 1.35rem;
  font-weight: 900;
  border-radius: 50%;
  background: linear-gradient(135deg, #178bff, #0649ff);
  box-shadow: var(--shadow-blue);
}

.step-card .icon-circle {
  width: 92px;
  height: 92px;
  margin-inline: auto;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.mode-card {
  min-width: 0;
  padding: 24px;
  border-radius: 18px;
}

.mode-card__head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mode-card__head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.small-icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue);
  border: 1px solid rgba(47, 126, 255, 0.38);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.small-icon svg {
  width: 32px;
  height: 32px;
}

.mode-visual {
  display: grid;
  grid-template-columns: minmax(80px, 1fr) auto minmax(80px, 1fr);
  align-items: center;
  min-height: 116px;
  margin-block: 18px;
  color: var(--blue);
}

.mode-visual span {
  height: 2px;
  background-image: linear-gradient(90deg, rgba(0, 115, 255, 0.95) 35%, transparent 35%);
  background-size: 14px 2px;
  filter: drop-shadow(0 0 8px rgba(0, 105, 255, 0.9));
}

.mode-visual svg,
.mode-visual strong {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  color: #fff;
  font-size: 1.62rem;
  border: 1px solid rgba(30, 120, 255, 0.45);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 105, 255, 0.58), rgba(0, 20, 50, 0.9) 66%);
  box-shadow: var(--shadow-blue);
}

.mode-visual svg {
  padding: 20px;
  color: #fff;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-list li::before {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  margin-top: 2px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 900;
  content: "✓";
  border: 1px solid var(--blue);
  border-radius: 50%;
}

.note-line {
  margin: 0;
  padding: 12px 16px;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.026);
}

.cta-band {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 22px;
  padding: 24px 34px;
  border-color: rgba(0, 116, 255, 0.45);
  border-radius: 18px;
}

.brand-letter {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: #fff;
  font-size: 3.3rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 22px rgba(0, 112, 255, 0.8);
}

.cta-band h3,
.cta-band p {
  margin-bottom: 0;
}

.cta-band p {
  color: var(--muted);
  font-size: 1.04rem;
}

.pricing-table-wrap {
  overflow: hidden;
  border-radius: 16px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.pricing-table th {
  padding: 14px 24px;
  color: var(--muted);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.035);
}

.pricing-table td {
  padding: 9px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  font-size: 1.14rem;
}

.pricing-table td:first-child,
.pricing-table td:nth-child(4) {
  color: #fff;
}

.button--table {
  min-height: 38px;
  padding-inline: 18px;
  font-size: 0.92rem;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.button--table-primary {
  border-color: rgba(40, 136, 255, 0.72);
  background: linear-gradient(135deg, #087dff, #0648ff);
  box-shadow: 0 10px 24px rgba(0, 90, 255, 0.25);
}

.lte-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.28fr) 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding: 18px;
  border-radius: 16px;
}

.lte-panel__intro {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lte-panel__intro svg {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: var(--blue);
}

.lte-panel__intro h3,
.lte-panel__intro p {
  margin-bottom: 0;
}

.lte-panel__intro p {
  color: var(--muted);
  font-size: 0.95rem;
}

.lte-options {
  display: grid;
  grid-template-columns: repeat(8, minmax(92px, 1fr));
  gap: 8px;
}

.lte-options button {
  min-height: 64px;
  padding: 8px;
  color: var(--blue-2);
  font-weight: 700;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.lte-options button:hover,
.lte-options button:focus-visible {
  border-color: var(--blue);
  box-shadow: 0 0 20px rgba(0, 103, 255, 0.22);
}

.lte-options b {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 1rem;
}

.pricing-perks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.pricing-perks div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pricing-perks svg {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  padding: 9px;
  color: var(--blue);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
}

.pricing-perks span,
.pricing-perks b {
  display: block;
}

.pricing-perks span {
  color: var(--muted);
}

.pricing-perks b {
  color: #fff;
  margin-bottom: 4px;
}

.secure-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 0;
  color: var(--faint);
  font-size: 1rem;
}

.secure-line svg {
  width: 22px;
  height: 22px;
}

.telegram__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 5vw, 74px);
}

.telegram h2 {
  margin-top: 24px;
}

.telegram-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.telegram-cards article {
  min-height: 138px;
  padding: 18px 16px;
  text-align: center;
  border-radius: 14px;
}

.telegram-cards svg {
  width: 38px;
  height: 38px;
  margin: 0 auto 14px;
  color: var(--blue);
}

.telegram-cards h3 {
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.telegram-cards p {
  margin: 0;
  color: var(--muted);
}

.telegram-band {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding: 20px 26px;
  border-radius: 16px;
}

.telegram-band > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #118dff, #0649ff);
  box-shadow: var(--shadow-blue);
}

.telegram-band > span svg {
  width: 30px;
  height: 30px;
}

.telegram-band h3,
.telegram-band p {
  margin-bottom: 0;
}

.telegram-band p {
  color: var(--muted);
}

.telegram__phone {
  position: relative;
  isolation: isolate;
  min-width: 0;
}

.telegram__phone::before {
  position: absolute;
  inset: 16% 0 12%;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 36% 52%, rgba(0, 102, 255, 0.42), transparent 34%),
    radial-gradient(ellipse at 62% 52%, rgba(13, 52, 110, 0.36), transparent 58%);
  filter: blur(8px);
}

.telegram__phone .phone {
  margin-inline: auto;
}

.bot-bar {
  justify-content: space-between;
  margin-bottom: 18px;
}

.bot-bar > span {
  color: var(--blue);
  font-size: 0.9rem;
}

.bot-bar b {
  display: grid;
  text-align: center;
  line-height: 1.1;
}

.bot-bar small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
}

.bot-bar i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  font-style: normal;
  font-weight: 900;
  border: 2px solid var(--blue);
  border-radius: 50%;
  box-shadow: inset 0 0 12px rgba(0, 102, 255, 0.35), 0 0 14px rgba(0, 102, 255, 0.25);
}

.bot-subscription {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.bot-subscription .phone__logo {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 15px;
}

.bot-subscription .phone__logo svg {
  width: 36px;
  height: 36px;
}

.bot-subscription p {
  margin: 0;
}

.bot-lte {
  position: relative;
  margin-bottom: 14px;
}

.bot-lte b {
  position: absolute;
  right: 18px;
  bottom: 28px;
  color: rgba(255, 255, 255, 0.62);
}

.bot-main {
  margin: 0 0 14px;
  min-height: 56px;
  font-size: 0.98rem;
}

.bot-list {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.bot-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bot-list span:last-child {
  border-bottom: 0;
}

.bot-list svg {
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.58);
}

.bot-note {
  margin: 14px 0 0;
  font-size: 0.78rem;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.platform-card {
  display: grid;
  grid-template-rows: auto 190px auto;
  align-content: space-between;
  row-gap: 16px;
  min-height: 400px;
  padding: 28px 20px 18px;
  text-align: center;
  border-radius: 16px;
}

.platform-card strong {
  font-size: 1.55rem;
}

.platform-card picture {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  margin-block: 16px;
}

.platform-card picture::before {
  position: absolute;
  inset: 14% 5% 8%;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(ellipse at 50% 64%, rgba(0, 110, 255, 0.26), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
  filter: blur(2px);
}

.platform-card img {
  position: relative;
  z-index: 1;
  max-height: 230px;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.36));
}

.platform-device {
  position: relative;
  isolation: isolate;
  display: grid;
  height: 190px;
  min-height: 0;
  margin-block: 0;
  overflow: hidden;
  place-items: center;
}

.platform-device::before {
  position: absolute;
  inset: 16% 6% 10%;
  z-index: -1;
  content: "";
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 50% 72%, rgba(0, 105, 255, 0.3), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  filter: blur(7px);
}

.mini-phone {
  position: relative;
  width: 132px;
  height: 188px;
  padding: 48px 12px 0;
  border: 2px solid rgba(255, 255, 255, 0.34);
  border-radius: 24px 24px 7px 7px;
  background:
    radial-gradient(circle at 80% 4%, rgba(0, 107, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #111821, #05080d);
  box-shadow:
    0 18px 26px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.mini-phone::before {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 58px;
  height: 13px;
  content: "";
  border-radius: 999px;
  background: #020308;
  transform: translateX(-50%);
}

.platform-device--android .mini-phone {
  border-radius: 20px 20px 5px 5px;
}

.mini-toggle,
.mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 10px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
}

.mini-toggle i {
  position: relative;
  width: 40px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #126cff, #2fa0ff);
}

.mini-toggle i::after {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 16px;
  height: 16px;
  content: "";
  border-radius: 50%;
  background: #fff;
}

.mini-row {
  justify-content: flex-start;
  gap: 8px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.mini-row b {
  width: 14px;
  height: 14px;
  margin-left: auto;
  border: 1px solid var(--blue);
  border-radius: 50%;
}

.mini-laptop {
  position: relative;
  width: 136px;
  height: 86px;
  padding: 9px 10px;
  border: 3px solid rgba(255, 255, 255, 0.24);
  border-bottom-width: 6px;
  border-radius: 10px 10px 5px 5px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.22), transparent 38%),
    linear-gradient(145deg, #111722, #05080d);
  box-shadow: 0 24px 26px rgba(0, 0, 0, 0.38);
}

.mini-laptop::after {
  position: absolute;
  right: -12px;
  bottom: -10px;
  left: -12px;
  height: 9px;
  content: "";
  border-radius: 0 0 34px 34px;
  background: linear-gradient(180deg, #4a5668, #18202c);
}

.mini-laptop--mac {
  background:
    linear-gradient(180deg, rgba(75, 138, 198, 0.34), transparent 52%),
    radial-gradient(circle at 50% 55%, rgba(0, 102, 255, 0.2), transparent 35%),
    linear-gradient(145deg, #141a24, #06090e);
}

.mini-osbar {
  display: grid;
  grid-template-columns: repeat(3, 5px);
  gap: 4px;
  margin-bottom: 7px;
}

.mini-osbar::before,
.mini-osbar::after {
  content: "";
}

.mini-osbar,
.mini-osbar::before,
.mini-osbar::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b94b4b;
  box-shadow: 9px 0 0 #d6b454, 18px 0 0 #4bc66a;
}

.mini-app {
  display: grid;
  width: 70px;
  min-height: 50px;
  place-items: center;
  margin: 0 auto;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.mini-app .phone__logo {
  width: 27px;
  height: 27px;
}

.mini-app .phone__logo svg {
  width: 17px;
  height: 17px;
}

.mini-app button {
  min-height: 14px;
  min-width: 50px;
  margin-top: 6px;
  color: #fff;
  font-size: 0.45rem;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #0874ff, #0648ff);
}

.terminal-window {
  width: 132px;
  min-height: 112px;
  padding: 24px 12px 12px;
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: linear-gradient(180deg, #2b2f34 0 18px, #090d10 18px);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.38);
}

.terminal-window span,
.terminal-window b {
  display: block;
  margin-top: 5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.56rem;
  font-weight: 600;
  line-height: 1.42;
}

.terminal-window b {
  color: #72e269;
}

.router-device {
  position: relative;
  width: 136px;
  height: 106px;
}

.router-device > span {
  position: absolute;
  bottom: 48px;
  width: 7px;
  height: 68px;
  border-radius: 999px;
  background: linear-gradient(90deg, #20242b, #71777f 52%, #14171c);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.32);
  transform-origin: bottom center;
}

.router-device > span:nth-child(1) {
  left: 25px;
  transform: rotate(-17deg);
}

.router-device > span:nth-child(2) {
  left: 64px;
}

.router-device > span:nth-child(3) {
  right: 25px;
  transform: rotate(17deg);
}

.router-device div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 49px;
  border-radius: 17px 17px 12px 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 36%),
    linear-gradient(145deg, #2d3136, #07090c 72%);
  box-shadow: 0 24px 28px rgba(0, 0, 0, 0.38), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.router-device div::before {
  position: absolute;
  left: 16px;
  bottom: 11px;
  width: 52px;
  height: 4px;
  content: "";
  border-radius: 999px;
  background: rgba(0, 100, 255, 0.24);
  box-shadow: 0 0 14px rgba(0, 120, 255, 0.24);
}

.router-device i {
  position: absolute;
  bottom: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 10px rgba(0, 140, 255, 0.85);
}

.router-device i:nth-child(1) {
  right: 39px;
}

.router-device i:nth-child(2) {
  right: 27px;
}

.router-device i:nth-child(3) {
  right: 15px;
}

.platform-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 18px;
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
}

.platform-card a:hover,
.platform-card a:focus-visible {
  border-color: var(--blue);
}

.platform-card a svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.wide-action {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
  padding: 22px 30px;
  border-radius: 16px;
}

.wide-action > span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--blue);
  border-radius: 50%;
  background: rgba(0, 100, 255, 0.12);
}

.wide-action > span svg {
  width: 32px;
  height: 32px;
}

.wide-action h3,
.wide-action p {
  margin-bottom: 0;
}

.wide-action p {
  color: var(--muted);
}

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

.support-card {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 132px;
  padding: 22px 26px;
  border-radius: 16px;
}

.support-card .icon-circle {
  width: 68px;
  height: 68px;
  margin-bottom: 0;
}

.support-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.final-cta {
  padding-top: 40px;
}

.final-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 1.05fr);
  min-height: 470px;
  overflow: hidden;
  border-radius: 18px;
}

.final-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 8, 15, 0.98), rgba(4, 8, 15, 0.7) 42%, rgba(4, 8, 15, 0.08) 76%),
    radial-gradient(circle at 75% 50%, rgba(0, 107, 255, 0.2), transparent 28rem);
}

.final-card__content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 560px;
  padding: 44px;
}

.final-card__content .eyebrow {
  min-height: 32px;
  padding: 5px 12px;
  font-size: 0.86rem;
}

.final-card__content h2 {
  margin-top: 18px;
  font-size: 3rem;
}

.final-card__content p {
  color: var(--muted);
  font-size: 1.08rem;
}

.final-card__image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 64%;
  height: 100%;
}

.final-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.final-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0 0;
  font-size: 0.96rem;
}

.final-card__meta svg {
  width: 20px;
  height: 20px;
  color: var(--muted);
}

.site-footer {
  padding: 30px 0 0;
  color: var(--faint);
  text-align: center;
}

@media (max-width: 1199px) {
  .benefit-grid,
  .platform-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .platform-device--windows .mini-laptop,
  .platform-device--macos .mini-laptop {
    transform: scale(1.16);
  }

  .platform-device--linux .terminal-window {
    transform: scale(1.12);
  }

  .platform-device--router .router-device {
    transform: scale(1.14);
  }

  .feature-card {
    min-height: 286px;
  }

  .feature-card h3 {
    min-height: auto;
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .step-card:not(:last-child)::after {
    display: none;
  }

  .lte-panel {
    grid-template-columns: 1fr;
  }

  .lte-options {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
  }
}

@media (max-width: 1100px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero__visual {
    max-width: 650px;
    margin: -34px auto 0;
  }

  .hero-device {
    min-height: 620px;
  }

  .phone--hero {
    width: min(78vw, 360px);
  }

  .hero-points {
    max-width: 760px;
  }

  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 3.1rem;
  }

  .mode-grid,
  .telegram__grid,
  .final-card {
    grid-template-columns: 1fr;
  }

  .telegram__phone {
    max-width: 560px;
    margin-inline: auto;
  }

  .telegram-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-perks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band,
  .telegram-band,
  .wide-action {
    grid-template-columns: auto 1fr;
  }

  .cta-band .button,
  .telegram-band .button,
  .wide-action .button {
    grid-column: 2;
    width: fit-content;
  }

  .final-card {
    min-height: 620px;
  }

  .final-card__image {
    width: 100%;
    height: 54%;
    inset: auto 0 0;
  }

  .final-card::after {
    background:
      linear-gradient(180deg, rgba(4, 8, 15, 0.98), rgba(4, 8, 15, 0.88) 44%, rgba(4, 8, 15, 0.2) 78%),
      radial-gradient(circle at 60% 70%, rgba(0, 107, 255, 0.18), transparent 28rem);
  }

  .final-card__content {
    align-self: start;
  }
}

@media (max-width: 860px) {
  :root {
    --side: 18px;
    --section-y: 76px;
  }

  .page {
    padding-top: 74px;
  }

  .site-header {
    min-height: 74px;
    padding-block: 14px;
  }

  .brand {
    gap: 10px;
    font-size: 1.25rem;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  h1 {
    margin-top: 34px;
    font-size: 3rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .lead,
  .section-heading p {
    font-size: 1.12rem;
  }

  .hero__actions {
    gap: 14px;
  }

  .hero__actions .button {
    min-width: 0;
    flex: 1 1 220px;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mini-point {
    display: grid;
    grid-template-columns: 46px 1fr;
    padding: 16px;
    min-height: 70px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
  }

  .mini-point:first-child {
    padding-left: 16px;
  }

  .mini-point svg {
    justify-self: center;
  }

  .mini-point span {
    line-height: 1.35;
  }

  .mode-card,
  .cta-band,
  .wide-action {
    padding: 24px;
  }

  .pricing-table th,
  .pricing-table td {
    padding-inline: 18px;
  }

  .pricing-table td {
    font-size: 1.08rem;
  }

  .button--table {
    min-height: 42px;
    padding-inline: 16px;
  }

  .platform-card {
    min-height: 390px;
    grid-template-rows: auto 212px auto;
  }

  .platform-device {
    height: 212px;
  }

  .platform-device--windows .mini-laptop,
  .platform-device--macos .mini-laptop,
  .platform-device--linux .terminal-window,
  .platform-device--router .router-device {
    transform: none;
  }

  .support-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .benefit-grid,
  .steps,
  .platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table td {
    display: block;
  }

  .pricing-table tbody {
    display: grid;
    gap: 14px;
    padding: 14px;
  }

  .pricing-table tr {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
  }

  .pricing-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 0;
    border-top: 0;
    font-size: 1.1rem;
  }

  .pricing-table td::before {
    color: var(--muted);
    font-size: 0.9rem;
    content: attr(data-label);
  }

  .pricing-table td:last-child {
    display: block;
    padding-top: 16px;
  }

  .pricing-table td:last-child::before {
    display: none;
  }

  .pricing-table .button {
    width: 100%;
  }

  .lte-options {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .lte-options button {
    min-width: 128px;
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  :root {
    --side: 16px;
    --section-y: 62px;
  }

  .page {
    padding-top: 72px;
  }

  .site-header.is-scrolled {
    width: min(var(--container), calc(100% - 20px));
  }

  .mobile-menu {
    top: 78px;
  }

  .brand__name {
    font-size: 1.15rem;
  }

  .hero {
    padding-top: 32px;
    padding-bottom: 58px;
  }

  h1 {
    font-size: 2.48rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  h3 {
    font-size: 1.18rem;
  }

  .eyebrow {
    min-height: 36px;
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .button {
    min-height: 54px;
    width: 100%;
    padding-inline: 18px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__visual {
    margin-top: -14px;
  }

  .hero-device {
    min-height: 390px;
  }

  .phone--hero {
    width: min(82vw, 285px);
  }

  .phone--telegram {
    width: min(86vw, 300px);
  }

  .phone__screen {
    padding: 18px 16px 14px;
  }

  .phone__top,
  .bot-bar {
    margin-bottom: 16px;
  }

  .phone-card,
  .bot-subscription,
  .bot-lte,
  .bot-list {
    padding: 14px;
  }

  .phone-card strong,
  .bot-lte strong {
    font-size: 1.5rem;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .benefit-grid,
  .steps,
  .platform-grid,
  .support-grid,
  .telegram-cards,
  .pricing-perks {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
    padding: 26px 22px;
  }

  .feature-card h3 {
    min-height: 0;
  }

  .info-band {
    align-items: flex-start;
    padding: 22px;
  }

  .info-band .brand__mark {
    width: 42px;
    height: 42px;
  }

  .step-card {
    min-height: auto;
  }

  .mode-card {
    padding: 22px;
  }

  .mode-card__head {
    align-items: flex-start;
  }

  .mode-visual {
    grid-template-columns: 1fr auto 1fr;
    min-height: 120px;
    margin-block: 24px;
  }

  .mode-visual svg,
  .mode-visual strong {
    width: 86px;
    height: 86px;
    font-size: 1.55rem;
  }

  .check-list {
    font-size: 1rem;
  }

  .cta-band,
  .telegram-band,
  .wide-action {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: left;
  }

  .cta-band .button,
  .telegram-band .button,
  .wide-action .button {
    grid-column: auto;
    width: 100%;
  }

  .brand-letter {
    width: 58px;
    height: 58px;
    font-size: 3rem;
  }

  .lte-panel {
    padding: 20px;
  }

  .lte-panel__intro {
    align-items: flex-start;
  }

  .secure-line {
    align-items: flex-start;
    text-align: left;
  }

  .telegram h2 {
    margin-top: 28px;
  }

  .telegram-band > span,
  .wide-action > span {
    width: 58px;
    height: 58px;
  }

  .platform-card {
    min-height: 360px;
    grid-template-rows: auto 190px auto;
  }

  .platform-device {
    height: 190px;
  }

  .mini-phone {
    width: 132px;
    height: 188px;
    padding: 48px 12px 0;
  }

  .mini-laptop {
    width: 136px;
    height: 86px;
  }

  .terminal-window {
    width: 132px;
    min-height: 112px;
  }

  .router-device {
    width: 136px;
    height: 106px;
  }

  .router-device > span:nth-child(2) {
    left: 64px;
  }

  .final-card {
    min-height: 690px;
  }

  .final-card__content {
    padding: 30px 22px;
  }

  .final-card__content h2 {
    font-size: 2.15rem;
  }

  .final-card__image {
    height: 48%;
  }

  .final-card__meta {
    align-items: flex-start;
  }
}

@media (max-width: 380px) {
  .brand__name {
    font-size: 1.02rem;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  h1 {
    font-size: 2.16rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .lead,
  .section-heading p {
    font-size: 1rem;
  }

  .phone--hero {
    width: min(80vw, 260px);
  }

  .phone--telegram {
    width: min(82vw, 276px);
    transform: rotate(4deg);
  }

  .mode-card__head {
    gap: 14px;
  }

  .small-icon {
    width: 58px;
    height: 58px;
  }

  .pricing-table tr,
  .lte-panel,
  .feature-card,
  .step-card,
  .mode-card,
  .support-card {
    padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
