:root {
  --bg: #020711;
  --bg-deep: #01040b;
  --panel: rgba(5, 15, 34, 0.84);
  --panel-strong: rgba(6, 19, 44, 0.94);
  --line: rgba(54, 156, 255, 0.32);
  --line-soft: rgba(54, 156, 255, 0.16);
  --text: #f7fbff;
  --muted: #aab5c9;
  --cyan: #05c9ff;
  --blue: #1979ff;
  --violet: #7658ff;
  --magenta: #ff4fe7;
  --shadow: 0 0 34px rgba(0, 156, 255, 0.22);
  --button-font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --button-height: 56px;
  --button-font-size: 16px;
  --button-font-weight: 500;
  --button-line-height: 1.15;
  --section-heading-size: clamp(34px, 3.9vw, 46px);
  --section-heading-mobile-size: 34px;
  --section-heading-line-height: 1.06;
  --section-heading-font-weight: 800;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 168, 255, 0.14), transparent 24rem),
    radial-gradient(circle at 88% 32%, rgba(124, 80, 255, 0.12), transparent 26rem),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 52%, #020914 100%);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(33, 113, 210, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 113, 210, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 72%);
}

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

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

.neon-icon {
  display: block;
  overflow: visible;
}

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 76px;
  border-bottom: 1px solid rgba(67, 139, 235, 0.16);
  background: rgba(2, 7, 17, 0.75);
  backdrop-filter: blur(18px);
}

.nav {
  height: 76px;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  width: 230px;
  height: 54px;
  overflow: hidden;
}

.brand-logo {
  width: 214px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 16px rgba(0, 178, 255, 0.48));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.4vw, 52px);
  color: #c9d2e4;
  font-weight: 600;
  font-size: 15px;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 0;
  padding: 8px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 203, 255, 0.55);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.btn {
  min-height: var(--button-height);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background-clip: border-box;
  padding: 0 22px;
  color: #fff;
  font-family: var(--button-font-family);
  font-size: var(--button-font-size);
  font-weight: var(--button-font-weight);
  line-height: var(--button-line-height);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.telegram-icon {
  width: 21px;
  height: 21px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  filter: none;
}

.site-icon {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(0, 190, 255, 0.45)) drop-shadow(0 0 20px rgba(255, 79, 231, 0.14));
}

.btn-site-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.btn-primary {
  background:
    linear-gradient(135deg, var(--cyan) 0%, #2878ff 56%, #7256ff 100%);
  border-color: #7256ff;
  box-shadow: none;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(198, 222, 255, 0.42);
}

.btn-small {
  min-height: var(--button-height);
  padding-inline: 16px;
}

.nav-support {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 15px;
  gap: 9px;
}

.nav-support .telegram-icon {
  width: 18px;
  height: 18px;
}

@media (min-width: 861px) {
  .site-header {
    position: fixed;
    left: 0;
    right: 0;
    border-bottom-color: transparent;
    background: linear-gradient(180deg, rgba(2, 7, 17, 0.66), rgba(2, 7, 17, 0.2) 62%, rgba(2, 7, 17, 0));
    backdrop-filter: none;
    transition: background 0.22s ease, border-color 0.22s ease, backdrop-filter 0.22s ease, box-shadow 0.22s ease;
  }

  .site-header.is-scrolled {
    border-bottom-color: rgba(67, 139, 235, 0.16);
    background: rgba(2, 7, 17, 0.75);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
  }

  .hero .hero-art {
    background-position: center, right top;
  }

  .hero.hero {
    min-height: 800px;
  }

  .hero .hero-inner {
    padding-top: 76px;
  }

  .hero .hero-copy {
    transform: translateY(clamp(56px, 5vw, 72px));
  }

  .hero .quick-stats {
    margin-top: clamp(62px, 5.2vw, 78px);
    padding-bottom: 28px;
  }
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-bottom: 1px solid rgba(30, 119, 225, 0.16);
}

.hero-art {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(2, 7, 17, 0.96) 0%, rgba(2, 7, 17, 0.78) 35%, rgba(2, 7, 17, 0.08) 70%, rgba(2, 7, 17, 0.52) 100%),
    url("assets/hero-mage.webp");
  background-position: center, center right;
  background-size: cover, cover;
  background-repeat: no-repeat;
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 210px;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(610px, 100%);
  padding-top: 26px;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.02;
  font-weight: 760;
}

h1 span {
  display: block;
  background: linear-gradient(90deg, var(--cyan), #228cff 38%, var(--magenta) 86%);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-title {
  margin-bottom: 24px;
  font-size: 0;
  line-height: 1;
}

.hero-title-image {
  display: block;
  width: min(520px, 100%);
  height: auto;
  margin: 0 0 20px;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.55));
}

.hero-title span {
  font-size: clamp(31px, 3.7vw, 43px);
  line-height: 1.08;
  font-weight: 760;
}

.lead {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
  font-weight: 480;
}

.hero-actions,
.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-note {
  max-width: 360px;
  margin: 17px 0 0;
  color: #8f9bb0;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 560;
}

.quick-stats {
  position: relative;
  z-index: 1;
  overflow: visible;
  padding: 0 0 34px;
  background: transparent;
}

.quick-stats::before {
  content: none;
}

.quick-stats-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 0;
}

.quick-stat {
  min-width: 0;
  display: grid;
  grid-template-columns: 78px minmax(0, 170px);
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 clamp(12px, 1.45vw, 20px);
}

.quick-stat:not(:last-child) {
  border-right: 0;
  padding-right: clamp(12px, 1.45vw, 20px);
}

.quick-stat-icon {
  justify-self: center;
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(0, 190, 255, 0.45)) drop-shadow(0 0 20px rgba(255, 79, 231, 0.14));
}

.quick-stat-icon-speed,
.quick-stat-icon-infinity,
.quick-stat-icon-devices {
  width: 78px;
}

.quick-stat h2 {
  margin: 0 0 6px;
  color: var(--cyan);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
}

.quick-stat p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.42;
  font-weight: 480;
  white-space: normal;
}

.quick-stat:first-child p {
  white-space: nowrap;
}

.quick-stat-mobile-only {
  display: none;
}

.section {
  scroll-margin-top: 92px;
  padding: 72px 0;
}

#web-order,
#support-request {
  scroll-margin-top: 92px;
}

.section-title {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 34px;
  padding-bottom: 22px;
  text-align: center;
  color: var(--text);
  font-size: var(--section-heading-size);
  line-height: var(--section-heading-line-height);
  font-weight: var(--section-heading-font-weight);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.18), 0 0 34px rgba(0, 156, 255, 0.1);
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(180px, 72%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 207, 255, 0.86), transparent);
  box-shadow: 0 0 18px rgba(0, 207, 255, 0.38);
  transform: translateX(-50%);
}

.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7, 22, 49, 0.88), rgba(3, 12, 28, 0.8)),
    radial-gradient(circle at 50% 0%, rgba(0, 183, 255, 0.16), transparent 50%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.features-section {
  padding-top: 44px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 272px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 22px;
  text-align: center;
}

.feature-card svg {
  width: 88px;
  height: 88px;
  margin-bottom: 22px;
}

.feature-card .feature-icon {
  width: 88px;
  height: 88px;
  margin-bottom: 22px;
}

.feature-card h3,
.step-card h3,
.support-panel h3,
.web-order-card h3,
.support-form h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.18;
  font-weight: 700;
}

.feature-card p,
.step-card p,
.pricing-copy p,
.telegram-copy p,
.support-panel p,
.web-order-card p,
.support-form > p {
  color: var(--muted);
  line-height: 1.58;
  font-weight: 480;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.pricing-section {
  padding-top: 54px;
}

.pricing-panel {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, 45%) 1fr;
  align-items: center;
  border: 1px solid rgba(0, 190, 255, 0.5);
  border-radius: 8px;
  background: rgba(2, 9, 23, 0.88);
  box-shadow: 0 0 0 1px rgba(77, 206, 255, 0.05), 0 0 52px rgba(0, 124, 255, 0.22);
}

.pricing-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(0, 199, 255, 0.18);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}

.pricing-art-bg {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 420px;
  align-self: stretch;
  background-image: url("assets/pricing-crystal-cutout.webp?v=20260618-pricing-cutout");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  pointer-events: none;
}

.pricing-copy {
  position: relative;
  z-index: 3;
  padding: 56px clamp(26px, 5vw, 76px) 56px 18px;
}

.pricing-mobile-title {
  display: none;
}

.price {
  margin-bottom: 8px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  font-weight: 760;
}

.price span {
  font-size: clamp(52px, 7vw, 78px);
}

.price-sub,
.pricing-copy h3 {
  color: var(--cyan);
  font-size: 18px;
  font-weight: 700;
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
}

.pricing-note {
  margin-top: 12px;
  color: #9aa9c2;
  font-size: 14px;
  line-height: 1.45;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  min-height: 246px;
  padding: 30px 24px;
}

.step-card svg {
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
}

.step-card .step-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
}

.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -31px;
  top: 102px;
  z-index: 2;
  width: 54px;
  height: 26px;
  background: url("assets/icon-arrow.webp?v=20260618-icons") center / contain no-repeat;
  filter: drop-shadow(0 0 10px rgba(0, 199, 255, 0.85)) drop-shadow(0 0 16px rgba(129, 92, 255, 0.48));
}

.order-section {
  padding-top: 50px;
}

.telegram-panel {
  position: relative;
  min-height: 440px;
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 1fr);
  gap: 0;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  border-radius: 0;
  background: #020711;
}

.telegram-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 7, 17, 1) 0%, rgba(2, 7, 17, 0.96) 34%, rgba(2, 7, 17, 0.62) 48%, rgba(2, 7, 17, 0.08) 66%, transparent 100%);
}

.telegram-copy {
  position: relative;
  z-index: 3;
  padding: 56px 0 54px 58px;
}

.telegram-copy h2 {
  margin: 0 0 20px;
  font-size: var(--section-heading-size);
  line-height: var(--section-heading-line-height);
  font-weight: var(--section-heading-font-weight);
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.18);
}

.telegram-copy > p {
  max-width: 560px;
  margin-bottom: 26px;
  color: #d3d9e5;
  font-size: 17px;
  line-height: 1.62;
  font-weight: 420;
}

.telegram-copy .order-actions {
  display: grid;
  grid-template-columns: minmax(282px, max-content) minmax(210px, 224px);
  gap: 14px;
  width: fit-content;
  max-width: 100%;
}

.telegram-copy .order-actions .btn {
  width: 100%;
  min-width: 0;
  padding-inline: 22px;
  white-space: nowrap;
}

.telegram-copy .order-actions .btn-primary {
  min-width: 282px;
}

.telegram-visual {
  position: absolute;
  inset: -18px 0 -18px 41%;
  z-index: 0;
  background-image: url("assets/telegram-settings-cutout.webp?v=20260618-telegram-cutout");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
}

.telegram-visual::after {
  content: none;
}

.web-order-card {
  width: min(620px, 100%);
  margin: 0;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 30px;
  background: rgba(4, 12, 28, 0.76);
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.order-modal[hidden] {
  display: none;
}

.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 5, 14, 0.78);
  backdrop-filter: blur(8px);
}

.order-modal__panel {
  position: relative;
  z-index: 1;
  max-height: min(820px, calc(100vh - 48px));
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(2, 8, 20, 0.72);
  color: #fff;
  cursor: pointer;
}

.modal-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.modal-close i,
.modal-close svg {
  display: none;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

body.order-modal-open {
  overflow: hidden;
}

.web-order-card h3,
.web-order-card > p,
.support-form h3,
.support-form > p {
  text-align: center;
}

.support-section {
  padding-top: 44px;
}

.support-panel {
  position: relative;
  min-height: 460px;
  display: grid;
  grid-template-columns: minmax(360px, 42%) minmax(0, 1fr);
  grid-template-rows: auto auto;
  overflow: hidden;
  border: 1px solid rgba(22, 111, 255, 0.62);
  border-radius: 20px;
  background: #020711;
  box-shadow: inset 0 0 0 1px rgba(0, 207, 255, 0.08), 0 0 54px rgba(0, 124, 255, 0.14);
}

.support-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 7, 17, 0.98) 0%, rgba(2, 7, 17, 0.92) 34%, rgba(2, 7, 17, 0.44) 49%, rgba(2, 7, 17, 0.02) 70%, rgba(2, 7, 17, 0.14) 100%),
    linear-gradient(180deg, rgba(2, 7, 17, 0.86) 0%, rgba(2, 7, 17, 0.2) 24%, rgba(2, 7, 17, 0) 58%, rgba(2, 7, 17, 0.58) 100%);
}

.support-art-bg {
  position: absolute;
  inset: 48px clamp(36px, 4vw, 52px) 48px 47%;
  z-index: 0;
  background-image: url("assets/support-art-cutout.webp?v=20260618-support-bg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.98;
}

.support-heading {
  grid-column: 1;
  padding: 52px 0 0 56px;
  text-align: left;
  z-index: 3;
}

.support-heading h2 {
  margin: 0 0 14px;
  font-size: var(--section-heading-size);
  line-height: var(--section-heading-line-height);
  font-weight: var(--section-heading-font-weight);
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.2);
}

.support-heading p {
  max-width: 520px;
  margin: 0;
  color: #c5cbd8;
  font-size: 17px;
  line-height: 1.56;
  font-weight: 400;
}

.support-copy {
  position: relative;
  z-index: 3;
  grid-column: 1;
  padding: 24px 0 50px 56px;
}

.support-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  color: #e8efff;
  font-size: 18px;
}

.support-label svg {
  width: 40px;
  height: 40px;
}

.support-label .support-label-icon {
  width: 40px;
  height: 40px;
}

.support-label span {
  color: #24afd4;
  font-weight: 500;
}

.support-label strong {
  font-weight: 500;
}

.support-copy h3 {
  margin: 0 0 24px;
  font-size: clamp(38px, 3.7vw, 50px);
  line-height: 1.1;
  font-weight: 720;
}

.support-copy h3 span {
  display: block;
  background: linear-gradient(90deg, #12aef3, #8874ff 45%, var(--magenta) 90%);
  -webkit-background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.support-copy > p {
  max-width: 490px;
  margin-bottom: 30px;
  color: #c9d0dc;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 400;
}

.support-actions {
  display: inline-grid;
  grid-auto-columns: max-content;
  gap: 14px;
  width: auto;
  max-width: 100%;
  justify-items: stretch;
}

.support-actions .btn {
  justify-content: flex-start;
  min-height: var(--button-height);
  padding-inline: 22px;
  font-size: var(--button-font-size);
}

.support-actions .btn svg {
  width: 28px;
  height: 28px;
}

.support-actions .btn .telegram-icon,
.support-actions .btn .btn-site-icon {
  width: 28px;
  height: 28px;
}

.btn-site-icon-white {
  display: block;
  flex: 0 0 auto;
  color: #fff;
  filter: none;
  stroke: currentColor;
}

.support-form {
  width: min(680px, 100%);
  margin: 30px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: var(--panel);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.order-modal .support-form {
  width: min(620px, 100%);
  margin: 0;
}

.web-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
  color: #e8efff;
  font-size: 13px;
  font-weight: 650;
}

.field b {
  color: var(--magenta);
}

.field-label-with-info {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.field-info {
  position: relative;
  display: inline-flex;
}

.info-button {
  width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.info-button:hover,
.info-button:focus-visible {
  color: #fff;
}

.info-button svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.info-button i,
.info-button svg {
  display: none;
}

.info-button::before {
  content: "i";
  width: 17px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.7px solid currentColor;
  border-radius: 50%;
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  font-family: Arial, sans-serif;
}

.field-tooltip {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  z-index: 4;
  width: min(300px, 72vw);
  transform: translateY(-50%);
  border: 1px solid rgba(131, 188, 255, 0.32);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(2, 8, 20, 0.98);
  color: #dbe7ff;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 500;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: none;
}

.field-tooltip::after {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(45deg);
  border-left: 1px solid rgba(131, 188, 255, 0.32);
  border-bottom: 1px solid rgba(131, 188, 255, 0.32);
  background: rgba(2, 8, 20, 0.98);
}

.field-info.is-open .field-tooltip,
.info-button:focus-visible + .field-tooltip,
.field-tooltip.is-visible {
  opacity: 1 !important;
  transform: translateY(-50%) translateX(2px);
  pointer-events: auto !important;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(131, 188, 255, 0.28);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(2, 8, 20, 0.72);
  color: #fff;
  font: inherit;
  outline: none;
}

.order-modal .field input:not([type="checkbox"]),
.order-modal .select-button {
  min-height: var(--button-height);
}

.number-control,
.select-control {
  position: relative;
  width: 100%;
}

.number-control input {
  padding-right: 54px;
  appearance: textfield;
  -moz-appearance: textfield;
}

.number-control input::-webkit-outer-spin-button,
.number-control input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

.number-stepper {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 32px;
  height: 42px;
  display: grid;
  grid-template-rows: 1fr 1fr;
  overflow: hidden;
  transform: translateY(-50%);
  border: 1px solid rgba(131, 188, 255, 0.22);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
}

.number-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
}

.number-step:first-child {
  border-bottom: 1px solid rgba(131, 188, 255, 0.16);
}

.number-step:hover,
.number-step:focus-visible {
  background: rgba(0, 207, 255, 0.12);
  color: #fff;
}

.number-step svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
}

.number-step svg,
.number-step i {
  display: none;
}

.number-step::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.number-step[data-number-step="1"]::before {
  transform: translateY(2px) rotate(225deg);
}

.number-step[data-number-step="-1"]::before {
  transform: translateY(-2px) rotate(45deg);
}

.native-select {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0;
  pointer-events: none;
}

.select-button {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid rgba(131, 188, 255, 0.28);
  border-radius: 8px;
  padding: 0 48px 0 14px;
  background: rgba(2, 8, 20, 0.72);
  color: #fff;
  font-family: var(--button-font-family);
  font-size: var(--button-font-size);
  font-weight: var(--button-font-weight);
  line-height: var(--button-line-height);
  text-align: left;
  outline: none;
  cursor: pointer;
}

.select-button svg {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: #fff;
  stroke: currentColor;
  pointer-events: none;
}

.select-button svg,
.select-button i {
  display: none;
}

.select-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.select-control.is-open .select-button::after {
  transform: translateY(-35%) rotate(225deg);
}

.select-control.is-open .select-button svg {
  transform: translateY(-50%) rotate(180deg);
}

.select-button:focus-visible {
  border-color: rgba(0, 207, 255, 0.86);
  box-shadow: 0 0 0 3px rgba(0, 207, 255, 0.12);
}

.select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 12;
  display: none;
  gap: 4px;
  max-height: 228px;
  overflow: auto;
  border: 1px solid rgba(131, 188, 255, 0.26);
  border-radius: 8px;
  padding: 8px;
  background: rgba(2, 8, 20, 0.98);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.46), 0 0 28px rgba(0, 143, 255, 0.12);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

.select-control.is-open .select-menu {
  display: grid;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.select-option {
  min-height: var(--button-height);
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 7px;
  padding: 0 12px;
  background: transparent;
  color: #dbe7ff;
  font-family: var(--button-font-family);
  font-size: var(--button-font-size);
  font-weight: var(--button-font-weight);
  line-height: var(--button-line-height);
  text-align: left;
  cursor: pointer;
}

.select-option:hover,
.select-option:focus-visible,
.select-option.is-selected {
  background: rgba(0, 207, 255, 0.12);
  color: #fff;
  outline: none;
}

.field textarea {
  min-height: 126px;
  padding-top: 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(0, 207, 255, 0.86);
  box-shadow: 0 0 0 3px rgba(0, 207, 255, 0.12);
}

.order-total {
  min-height: 42px;
  display: flex;
  align-items: center;
  color: var(--cyan);
  font-size: 18px;
  font-weight: 700;
}

.consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: #b8c4d8;
  font-size: 12px;
  line-height: 1.5;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--cyan);
}

.consent-field a {
  color: #dbe7ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.security-note,
.response-note {
  margin: 0;
  color: #8f9bb0;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}

.security-note {
  margin-top: 14px;
  text-align: center;
}

.form-msg {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 540;
}

.form-msg.success {
  border-color: rgba(52, 211, 153, 0.38);
  background: rgba(6, 95, 70, 0.22);
  color: #bbf7d0;
}

.form-msg.error {
  border-color: rgba(248, 113, 113, 0.42);
  background: rgba(127, 29, 29, 0.24);
  color: #fecaca;
}

.hp-field {
  display: none;
}

.btn-submit {
  width: 100%;
}

.site-footer {
  border-top: 1px solid rgba(67, 139, 235, 0.16);
  padding: 28px 0;
  color: #8f9bb1;
  font-size: 14px;
  font-weight: 500;
}

.footer-inner,
.footer-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a:hover {
  color: #fff;
}

.section-title,
.telegram-copy h2,
.support-heading h2,
.web-order-card h3,
.support-form h3 {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 34px;
  padding-bottom: 22px;
  color: var(--text);
  font-size: var(--section-heading-size);
  line-height: var(--section-heading-line-height);
  font-weight: var(--section-heading-font-weight);
  text-align: center;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.18), 0 0 34px rgba(0, 156, 255, 0.1);
}

.section-title::after,
.telegram-copy h2::after,
.support-heading h2::after,
.web-order-card h3::after,
.support-form h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(180px, 72%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 207, 255, 0.86), transparent);
  box-shadow: 0 0 18px rgba(0, 207, 255, 0.38);
  transform: translateX(-50%);
}

.order-modal .web-order-card,
.order-modal .support-form {
  padding: 22px 28px;
}

.order-modal .web-order-card h3,
.order-modal .support-form h3 {
  width: auto;
  margin: 0 auto 8px;
  padding: 0 42px 0 0;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.08;
}

.order-modal .web-order-card h3::after,
.order-modal .support-form h3::after {
  content: none;
}

.order-modal .web-order-card > p,
.order-modal .support-form > p {
  max-width: 500px;
  margin: 0 auto 14px;
  font-size: 14px;
  line-height: 1.36;
}

.order-modal .web-form {
  gap: 9px;
}

.order-modal .form-row {
  gap: 10px;
}

.order-modal .field {
  gap: 5px;
  font-size: 12px;
  line-height: 1.2;
}

.order-modal .field input:not([type="checkbox"]),
.order-modal .select-button {
  min-height: 40px;
  border-radius: 7px;
  padding-block: 0;
}

.order-modal .field textarea {
  height: 90px;
  min-height: 90px;
  padding-top: 8px;
}

.order-modal #webOrderForm .comment-textarea {
  height: 62px;
  min-height: 62px;
  resize: vertical;
}

.order-modal .number-stepper {
  width: 28px;
  height: 34px;
}

.order-modal .select-option {
  min-height: 38px;
}

.order-modal .consent-field {
  grid-template-columns: 16px 1fr;
  gap: 8px;
  font-size: 11px;
  line-height: 1.35;
}

.order-modal .consent-field input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
}

.order-modal .order-total {
  min-height: 24px;
  font-size: 16px;
}

.order-modal .btn-submit {
  min-height: 46px;
}

.order-modal .security-note {
  display: none;
}

.telegram-copy h2 {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.telegram-copy h2::after {
  left: 0;
  transform: none;
}

.support-heading h2 {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.support-heading h2::after {
  left: 0;
  transform: none;
}

@media (max-width: 1080px) {
  .features-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 30px;
  }

  .quick-stat {
    padding-right: 0;
  }

  .quick-stat:not(:last-child) {
    border-right: 0;
  }

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

  .pricing-panel,
  .telegram-panel,
  .support-panel {
    grid-template-columns: 1fr;
  }

  .pricing-art-bg {
    min-height: 320px;
  }

  .pricing-copy,
  .telegram-copy {
    padding: 34px;
  }

  .telegram-panel {
    min-height: 0;
    padding-bottom: 340px;
  }

  .telegram-visual {
    inset: auto 0 0;
    height: 360px;
    min-height: 0;
    background-position: center bottom;
  }

  .support-panel {
    min-height: 430px;
    grid-template-rows: auto auto auto;
  }

  .support-heading {
    padding: 42px 42px 0;
  }

  .support-copy {
    padding: 22px 42px 44px;
  }

  .support-art-bg {
    inset: 92px 34px 42px 45%;
    background-position: center center;
    background-size: contain;
  }
}

@media (max-width: 860px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 32px, 680px);
  }

  .site-header {
    position: absolute;
    left: 0;
    right: 0;
    height: 68px;
    z-index: 80;
    border-bottom: 0;
    background: linear-gradient(180deg, rgba(2, 7, 17, 0.78), rgba(2, 7, 17, 0.34) 58%, rgba(2, 7, 17, 0));
    backdrop-filter: none;
    box-shadow: none;
  }

  .site-header::after {
    content: none;
  }

  body.menu-open .site-header::after {
    opacity: 0;
  }

  .site-header .nav {
    position: relative;
    width: min(calc(100% - 32px), 358px);
    margin-left: 16px;
    margin-right: auto;
  }

  .nav {
    height: 68px;
    min-height: 68px;
  }

  .brand {
    width: 166px;
    height: 48px;
  }

  .brand-logo {
    width: 160px;
    height: 48px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    order: 3;
    position: absolute;
    top: 14px;
    right: 0;
    z-index: 82;
    width: 40px;
    height: 40px;
    margin-left: auto;
    padding: 7px 6px;
  }

  .menu-toggle span {
    width: 28px;
    flex: 0 0 auto;
    height: 2px;
    margin: 4px 0;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  .nav-support {
    display: none;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    z-index: 40;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    background: rgba(3, 10, 24, 1);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 13px 14px;
    border-radius: 6px;
  }

  .nav-links a:hover {
    background: rgba(0, 194, 255, 0.1);
  }

  .hero {
    min-height: clamp(720px, 92svh, 780px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .hero-inner {
    min-height: 0;
    flex: 0 0 auto;
    align-items: flex-start;
    padding-top: 106px;
    padding-bottom: 0;
  }

  .hero-art {
    background-image:
      linear-gradient(90deg, rgba(2, 7, 17, 0.97) 0%, rgba(2, 7, 17, 0.82) 35%, rgba(2, 7, 17, 0.22) 56%, rgba(2, 7, 17, 0.01) 76%, rgba(2, 7, 17, 0.04) 100%),
      linear-gradient(180deg, rgba(2, 7, 17, 0.02) 0%, rgba(2, 7, 17, 0.08) 50%, rgba(2, 7, 17, 0.7) 100%),
      url("assets/hero-mobile-clean.webp?v=20260619-nolips-1");
    background-position: center, center, 43% -22px;
    background-size: cover, cover, auto 106%;
  }

  .hero-art::after {
    height: 150px;
    background: linear-gradient(180deg, transparent, rgba(2, 7, 17, 0.66));
  }

  .hero-copy {
    width: min(318px, 74vw);
    padding-top: 0;
  }

  h1 {
    max-width: 300px;
    margin-bottom: 15px;
    font-size: 34px;
  }

  .hero-title {
    max-width: 300px;
    margin-bottom: 15px;
  }

  .hero-title-image {
    width: min(300px, 100%);
    margin-bottom: 10px;
  }

  .hero-title span {
    font-size: clamp(28px, 7.4vw, 34px);
    line-height: 1.06;
  }

  .lead {
    max-width: 252px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.54;
  }

  .hero-note {
    max-width: 288px;
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.5;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    width: auto;
    max-width: 100%;
  }

  .hero-actions .btn {
    min-height: var(--button-height);
    justify-content: center;
    gap: 8px;
    width: min(232px, 100%);
    max-width: 100%;
    padding-inline: 16px;
    font-size: 15px;
    white-space: nowrap;
  }

  .hero-actions .btn svg {
    width: 22px;
    height: 22px;
  }

  .hero-actions .btn .telegram-icon {
    width: 22px;
    height: 22px;
  }

  .quick-stats {
    overflow: hidden;
    margin-top: clamp(40px, 5.6svh, 54px);
    padding: 0 0 16px;
    background: linear-gradient(180deg, transparent 0%, rgba(1, 5, 14, 0.74) 24%, rgba(1, 5, 14, 0.96) 100%);
  }

  .quick-stats-inner {
    width: min(calc(100% - 40px), 350px);
    max-width: 350px;
    margin-left: 16px;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    min-width: 0;
    gap: 16px;
  }

  .quick-stat {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    min-height: 0;
    gap: 7px;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .quick-stat > div {
    min-width: 0;
  }

  .quick-stat:not(:last-child) {
    border-right: 0;
    padding-right: 0;
  }

  .quick-stat-icon {
    width: 48px;
    height: 48px;
  }

  .quick-stat-icon-speed,
  .quick-stat-icon-infinity,
  .quick-stat-icon-devices {
    width: 48px;
  }

  .quick-stat h2 {
    min-width: 0;
    margin-bottom: 4px;
    font-size: 17px;
    line-height: 1.08;
    white-space: nowrap;
    overflow-wrap: normal;
  }

  .quick-stat:nth-child(2) h2 {
    font-size: 15px;
    line-height: 1.08;
  }

  .quick-stat p {
    color: #c7d2e6;
    font-size: 13px;
    line-height: 1.28;
    font-weight: 480;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .quick-stat:first-child p {
    white-space: normal;
  }

  .quick-stat-desktop-only {
    display: none;
  }

  .quick-stat-mobile-only {
    display: inline;
  }

  .quick-stat:nth-child(n + 3) {
    display: none;
  }

  .btn {
    min-height: var(--button-height);
    padding-inline: 14px;
    white-space: normal;
    text-align: center;
  }

  .pricing-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-actions .btn {
    width: 100%;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    margin-bottom: 24px;
    font-size: var(--section-heading-mobile-size);
  }

  .features-section {
    padding-top: 48px;
  }

  .features-grid,
  .steps-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    text-align: left;
  }

  .feature-card svg {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    margin: 0;
  }

  .feature-card .feature-icon {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    margin: 0;
  }

  .feature-card h3,
  .step-card h3,
  .support-panel h3,
  .web-order-card h3,
  .support-form h3 {
    font-size: 17px;
  }

  .lead,
  .hero-note,
  .feature-card p,
  .step-card p,
  .pricing-copy p,
  .telegram-copy p,
  .support-panel p,
  .web-order-card p,
  .support-form > p,
  .field,
  .security-note,
  .response-note {
    font-size: 13px;
    font-weight: 400;
  }

  .pricing-panel {
    display: block;
    min-height: 0;
    padding: 26px 20px 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(7, 22, 49, 0.88), rgba(3, 12, 28, 0.8)),
      radial-gradient(circle at 78% 18%, rgba(0, 183, 255, 0.14), transparent 42%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    clip-path: none;
  }

  .pricing-section {
    padding: 48px 0;
  }

  .pricing-section .section-title {
    display: block;
    margin-bottom: 24px;
  }

  .pricing-panel::before,
  .pricing-panel::after {
    content: none;
  }

  .pricing-art-bg {
    position: absolute;
    top: clamp(16px, 4.2vw, 22px);
    right: clamp(10px, 3.2vw, 16px);
    bottom: auto;
    z-index: 2;
    width: clamp(150px, 40.625vw, 170px);
    height: clamp(188px, 50.625vw, 210px);
    min-height: 0;
    background-position: center top;
    background-size: contain;
    opacity: 1;
    filter: brightness(1.16) saturate(1.12) drop-shadow(0 0 16px rgba(0, 194, 255, 0.32));
  }

  .pricing-copy {
    position: relative;
    z-index: 3;
    padding: 0;
    text-align: left;
  }

  .pricing-mobile-title {
    display: none;
  }

  .pricing-mobile-title::after {
    content: none;
  }

  .price {
    max-width: 100%;
    margin-bottom: 8px;
    font-size: clamp(17px, 4.6vw, 20px);
    line-height: 1.08;
    white-space: nowrap;
  }

  .price span {
    display: inline;
    margin-right: 6px;
    margin-bottom: 0;
    font-size: clamp(34px, 9.6vw, 42px);
    line-height: 0.98;
    white-space: nowrap;
  }

  .pricing-copy .price-sub {
    max-width: 55%;
    margin-bottom: 13px;
    color: #1b8cff;
    font-size: clamp(15px, 4vw, 17px);
    line-height: 1.1;
    font-weight: 700;
  }

  .pricing-copy > p:nth-of-type(2) {
    display: none;
  }

  .pricing-copy h3 {
    position: relative;
    max-width: 58%;
    margin: clamp(12px, 3.3vw, 16px) 0 5px;
    padding-top: 0;
    color: var(--text);
    font-size: clamp(13.5px, 3.7vw, 15px);
    line-height: 1.15;
  }

  .pricing-copy h3::before {
    content: none;
  }

  .pricing-copy h3::after {
    content: none;
  }

  .pricing-copy > p:nth-of-type(3) {
    max-width: 58%;
    margin-bottom: 0;
    font-size: clamp(11.8px, 3.25vw, 13.2px);
    line-height: 1.28;
  }

  .pricing-key-extra {
    display: none;
  }

  .pricing-actions {
    gap: 10px;
    margin-top: clamp(42px, 11vw, 50px);
  }

  .pricing-actions .btn {
    justify-content: center;
    min-height: var(--button-height);
    font-size: var(--button-font-size);
  }

  .pricing-note {
    margin-top: 8px;
    margin-bottom: 0;
    text-align: center;
  }

  .step-card {
    min-height: 0;
    padding: 22px;
  }

  .step-card svg {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .step-card .step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .telegram-panel {
    display: flex;
    flex-direction: column;
    padding-bottom: clamp(210px, 58vw, 270px);
    border: 1px solid var(--line);
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(5, 14, 33, 0.96), rgba(2, 7, 17, 0.92)),
      radial-gradient(circle at 50% 72%, rgba(0, 156, 255, 0.18), transparent 20rem);
  }

  .telegram-panel::after {
    background:
      linear-gradient(180deg, rgba(5, 14, 33, 1) 0%, rgba(5, 14, 33, 1) 58%, rgba(5, 14, 33, 0.44) 72%, transparent 100%);
  }

  .telegram-copy {
    padding: 34px 22px 0;
    text-align: center;
  }

  .telegram-copy h2 {
    margin: 0 auto 24px;
    font-size: var(--section-heading-mobile-size);
    line-height: var(--section-heading-line-height);
    text-align: center;
  }

  .telegram-copy h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .telegram-copy > p {
    margin-inline: auto;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.58;
  }

  .telegram-copy .order-actions {
    grid-template-columns: 1fr;
    width: min(388px, 100%);
    margin-inline: auto;
  }

  .telegram-visual {
    inset: auto 0 0;
    height: clamp(190px, 55vw, 250px);
    min-height: 0;
    margin-top: 0;
    background-position: center bottom;
    background-size: contain;
  }

  .web-order-card,
  .support-form {
    padding: 22px;
  }

  .order-modal {
    padding: 14px;
  }

  .order-modal__panel {
    max-height: calc(100vh - 28px);
  }

  .modal-close {
    top: 10px;
    right: 10px;
  }

  .field-tooltip {
    left: 0;
    right: auto;
    top: calc(100% + 10px);
    bottom: auto;
    width: min(300px, calc(100vw - 56px));
    transform: none;
  }

  .field-info {
    position: static;
  }

  .field-tooltip::after {
    content: none;
  }

  .field-info.is-open .field-tooltip,
  .info-button:focus-visible + .field-tooltip,
  .field-tooltip.is-visible {
    transform: translateY(0);
  }

  .support-panel {
    display: flex;
    flex-direction: column;
    min-height: 820px;
    border-radius: 22px;
    padding: 26px 20px 24px;
    text-align: center;
  }

  .support-panel::before {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    top: 220px;
    z-index: 0;
    height: clamp(330px, 92vw, 386px);
    pointer-events: none;
    background: url("assets/support-art-mobile-full.webp?v=20260619-support-full-1") center center / contain no-repeat;
    opacity: 0.98;
    filter: brightness(1.08) saturate(1.08) drop-shadow(0 0 26px rgba(0, 150, 255, 0.2));
    mix-blend-mode: screen;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 58%, rgba(0, 0, 0, 0.9) 78%, transparent 100%);
    mask-image: radial-gradient(ellipse at center, #000 58%, rgba(0, 0, 0, 0.9) 78%, transparent 100%);
  }

  .support-panel::after {
    background:
      linear-gradient(180deg, rgba(2, 7, 17, 0.98) 0%, rgba(2, 7, 17, 0.78) 28%, rgba(2, 7, 17, 0.14) 50%, rgba(2, 7, 17, 0.64) 76%, rgba(2, 7, 17, 0.98) 100%);
  }

  .support-heading {
    position: relative;
    order: 1;
    z-index: 3;
    padding: 0;
    text-align: center;
  }

  .support-heading h2 {
    margin: 0 auto 24px;
    font-size: var(--section-heading-mobile-size);
    line-height: var(--section-heading-line-height);
    text-align: center;
  }

  .support-heading h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .support-heading p {
    max-width: 310px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.48;
    text-align: center;
  }

  .support-copy {
    position: relative;
    z-index: 3;
    display: contents;
  }

  .support-label {
    display: none;
  }

  .support-copy h3,
  .support-copy > p {
    display: none;
  }

  .support-art-bg {
    display: none;
  }

  .support-actions {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    order: 3;
    z-index: 3;
    width: 100%;
    margin-top: clamp(388px, 101vw, 428px);
    gap: 12px;
    justify-items: stretch;
  }

  .support-actions .btn {
    justify-content: center;
    width: 100%;
    min-height: var(--button-height);
    padding-inline: 16px;
    font-size: var(--button-font-size);
    text-align: center;
  }

  .support-actions .btn svg {
    width: 24px;
    height: 24px;
  }

  .support-actions .btn .telegram-icon,
  .support-actions .btn .btn-site-icon {
    width: 24px;
    height: 24px;
  }

  .section-title,
  .telegram-copy h2,
  .support-heading h2,
  .web-order-card h3,
  .support-form h3 {
    margin: 0 auto 24px;
    padding-bottom: 18px;
    font-size: var(--section-heading-mobile-size);
    line-height: var(--section-heading-line-height);
    font-weight: var(--section-heading-font-weight);
    text-align: center;
  }

  .section-title::after,
  .telegram-copy h2::after,
  .support-heading h2::after,
  .web-order-card h3::after,
  .support-form h3::after {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }

  .order-modal .web-order-card,
  .order-modal .support-form {
    padding: 16px;
  }

  .order-modal .web-order-card h3,
  .order-modal .support-form h3 {
    margin: 0 auto 7px;
    padding: 0 34px 0 0;
    font-size: clamp(22px, 6.2vw, 28px);
    line-height: 1.06;
    text-align: center;
  }

  .order-modal .web-order-card h3::after,
  .order-modal .support-form h3::after {
    content: none;
  }

  .order-modal .web-order-card > p,
  .order-modal .support-form > p {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.32;
  }

  .order-modal .web-form {
    gap: 7px;
  }

  .order-modal .form-row {
    gap: 7px;
  }

  .order-modal .field {
    gap: 4px;
    font-size: 11px;
  }

  .order-modal .field input:not([type="checkbox"]),
  .order-modal .select-button {
    min-height: 36px;
    padding-inline: 11px;
  }

  .order-modal .field textarea {
    height: 74px;
    min-height: 74px;
    padding-top: 7px;
  }

  .order-modal #webOrderForm .comment-textarea {
    height: 36px;
    min-height: 36px;
    resize: none;
  }

  .order-modal .number-stepper {
    height: 30px;
    right: 6px;
  }

  .order-modal .consent-field {
    grid-template-columns: 14px 1fr;
    gap: 7px;
    font-size: 10px;
    line-height: 1.28;
  }

  .order-modal .consent-field input {
    width: 14px;
    height: 14px;
  }

  .order-modal .order-total {
    min-height: 20px;
    font-size: 15px;
  }

  .order-modal .btn-submit {
    min-height: 40px;
  }
}

@media (max-width: 430px) {
  :root {
    --section-heading-mobile-size: 32px;
  }

  .container {
    width: calc(100% - 28px);
  }

  .hero-art {
    background-position: center, center, 42% -58px;
    background-size: cover, cover, auto 108%;
  }

  .hero-copy {
    width: min(310px, 74vw);
  }

  h1 {
    max-width: 294px;
    font-size: 33px;
  }

  .lead {
    max-width: 238px;
    font-size: 13.8px;
  }

  .hero-actions {
    width: auto;
  }

  .quick-stat {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 6px;
    min-height: 0;
    padding: 0;
  }

  .quick-stat:not(:last-child) {
    padding-right: 0;
  }

  .quick-stat-icon {
    width: 46px;
    height: 46px;
  }

  .quick-stat-icon-speed,
  .quick-stat-icon-infinity,
  .quick-stat-icon-devices {
    width: 46px;
  }

  .quick-stat h2,
  .quick-stat:nth-child(2) h2 {
    font-size: 15px;
  }

  .quick-stat:nth-child(2) h2 {
    font-size: clamp(12.2px, 3.72vw, 15px);
  }

  .btn {
    font-size: var(--button-font-size);
  }

  .hero-actions .btn {
    width: min(224px, 100%);
    font-size: 14px;
  }

  .footer-inner,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) and (min-height: 800px) {
  .hero-inner {
    padding-top: 124px;
  }
}

@media (max-width: 340px) {
  :root {
    --section-heading-mobile-size: 30px;
  }

  .pricing-copy h3,
  .pricing-copy > p:nth-of-type(3) {
    max-width: 54%;
  }
}

@media (max-width: 360px), (max-height: 620px) {
  .order-modal {
    padding: 8px;
  }

  .order-modal__panel {
    max-height: calc(100svh - 16px);
  }

  .order-modal .web-order-card,
  .order-modal .support-form {
    padding: 10px;
  }

  .order-modal .web-order-card h3,
  .order-modal .support-form h3 {
    margin-bottom: 4px;
    padding-right: 30px;
    font-size: 18px;
    line-height: 1.04;
  }

  .order-modal .web-order-card > p,
  .order-modal .support-form > p {
    margin-bottom: 6px;
    font-size: 10.5px;
    line-height: 1.22;
  }

  .order-modal .web-form {
    gap: 5px;
  }

  .order-modal .form-row {
    gap: 5px;
  }

  .order-modal .field {
    gap: 2px;
    font-size: 10px;
    line-height: 1.1;
  }

  .order-modal .field input:not([type="checkbox"]),
  .order-modal .select-button {
    min-height: 30px;
    padding-inline: 9px;
    border-radius: 6px;
  }

  .order-modal .field textarea {
    height: 54px;
    min-height: 54px;
    padding-top: 5px;
  }

  .order-modal #webOrderForm .comment-textarea {
    height: 30px;
    min-height: 30px;
  }

  .order-modal .number-stepper {
    right: 5px;
    width: 24px;
    height: 24px;
    border-radius: 6px;
  }

  .order-modal .number-control input {
    padding-right: 38px;
  }

  .order-modal .select-button {
    padding-right: 34px;
  }

  .order-modal .select-button::after {
    right: 13px;
    width: 8px;
    height: 8px;
  }

  .order-modal .consent-field {
    grid-template-columns: 12px 1fr;
    gap: 5px;
    font-size: 8.8px;
    line-height: 1.12;
  }

  .order-modal .consent-field input {
    width: 12px;
    height: 12px;
  }

  .order-modal .order-total {
    min-height: 16px;
    font-size: 13px;
  }

  .order-modal .btn-submit {
    min-height: 32px;
    font-size: 13px;
  }

  .order-modal .form-msg {
    padding: 8px 10px;
    font-size: 12px;
  }

  .modal-close {
    top: 7px;
    right: 7px;
    width: 30px;
    height: 30px;
  }
}

/* Footer-style support block preview approved for production. */
.support-section {
  padding-top: clamp(58px, 6.6vw, 88px);
  padding-bottom: clamp(48px, 5.8vw, 72px);
}

.support-section .container {
  max-width: 1320px;
}

.support-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(285px, 350px) minmax(0, 1fr) minmax(300px, 340px);
  grid-template-rows: none;
  align-items: center;
  gap: clamp(18px, 2vw, 24px);
  min-height: 320px;
  padding: 0 clamp(28px, 3vw, 42px) 0 0;
  overflow: hidden;
  border: 1px solid rgba(92, 123, 255, 0.76);
  border-radius: 18px;
  background:
    radial-gradient(circle at 9% 50%, rgba(0, 178, 255, 0.16), transparent 27%),
    radial-gradient(circle at 99% 52%, rgba(196, 50, 255, 0.23), transparent 28%),
    linear-gradient(90deg, rgba(1, 7, 19, 0.98) 0%, rgba(3, 12, 31, 0.96) 48%, rgba(3, 9, 23, 0.98) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 42px rgba(23, 108, 255, 0.14);
}

.support-panel::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: -18px;
  display: block;
  width: 520px;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(1, 7, 19, 0) 0%, rgba(1, 7, 19, 0) 46%, rgba(1, 7, 19, 0.68) 66%, rgba(1, 7, 19, 0.98) 84%, rgba(1, 7, 19, 0.98) 100%),
    url("assets/support-footer-mage-dark-bg.webp?v=20260619-support-footer-1");
  background-position: left top, left -24px;
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 100%, 430px auto;
  opacity: 0.86;
  filter: saturate(1.05) contrast(1.04) brightness(0.78);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 72%, rgba(0, 0, 0, 0.72) 88%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 72%, rgba(0, 0, 0, 0.72) 88%, transparent 100%);
}

.support-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(1, 7, 19, 0.04) 0%, rgba(1, 7, 19, 0.18) 20%, rgba(1, 7, 19, 0.72) 34%, rgba(1, 7, 19, 0.18) 70%, rgba(1, 7, 19, 0.22) 100%),
    radial-gradient(circle at 89% 55%, rgba(136, 49, 255, 0.19), transparent 24%);
}

.support-art-bg {
  display: none;
}

.support-heading,
.support-copy {
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 0;
  transform: translateY(0);
}

.support-heading {
  grid-column: 2;
  align-self: center;
  justify-self: start;
  width: 100%;
  text-align: left;
}

.support-heading h2 {
  width: auto;
  max-width: none;
  margin: 0 0 14px;
  padding: 0;
  color: #f4f8ff;
  font-size: clamp(38px, 3.05vw, 44px);
  line-height: 1.08;
  text-align: left;
  text-shadow: 0 0 22px rgba(171, 213, 255, 0.22);
  white-space: nowrap;
}

.support-heading h2::after {
  content: none;
  display: none;
}

.support-heading p {
  width: 100%;
  max-width: none;
  margin: 0;
  color: rgba(218, 230, 247, 0.86);
  font-size: clamp(15.5px, 1.22vw, 17px);
  line-height: 1.55;
  text-align: left;
}

.support-copy {
  grid-column: 3;
  align-self: center;
  justify-self: stretch;
  width: 100%;
}

.support-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  max-width: none;
  margin: 0;
}

.support-actions .btn {
  justify-content: center;
  width: 100%;
  max-width: none;
  min-width: 0;
  height: 68px;
  min-height: 68px;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 17px;
  line-height: 1.1;
  white-space: nowrap;
}

.support-actions .btn svg,
.support-actions .btn .telegram-icon,
.support-actions .btn .btn-site-icon {
  width: 28px;
  height: 28px;
}

.support-actions .btn-outline {
  border-color: rgba(98, 131, 255, 0.72);
  background: rgba(3, 10, 24, 0.52);
  box-shadow: inset 0 0 24px rgba(20, 126, 255, 0.08);
}

@media (max-width: 1080px) and (min-width: 861px) {
  .support-panel {
    grid-template-columns: 265px minmax(0, 1fr) 280px;
    gap: 18px;
    min-height: 300px;
    padding-right: 28px;
  }

  .support-panel::before {
    width: 455px;
    background-position: left top, left -18px;
    background-size: 100% 100%, 380px auto;
  }

  .support-panel::after {
    background:
      linear-gradient(90deg, rgba(1, 7, 19, 0.04) 0%, rgba(1, 7, 19, 0.26) 22%, rgba(1, 7, 19, 0.78) 38%, rgba(1, 7, 19, 0.18) 69%, rgba(1, 7, 19, 0.21) 100%);
  }

  .support-heading,
  .support-copy {
    transform: translateY(0);
  }

  .support-heading h2 {
    font-size: 36px;
  }

  .support-heading p {
    font-size: 15px;
  }

  .support-actions .btn {
    height: 62px;
    min-height: 62px;
    padding: 0 16px;
    font-size: 16px;
  }
}

@media (max-width: 860px) {
  .support-section {
    padding-top: 42px;
    padding-bottom: 40px;
  }

  .support-panel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    min-height: auto;
    padding: 252px 18px 22px;
    border-radius: 18px;
    background:
      radial-gradient(circle at 50% 18%, rgba(0, 178, 255, 0.16), transparent 34%),
      radial-gradient(circle at 92% 69%, rgba(205, 54, 255, 0.17), transparent 31%),
      linear-gradient(180deg, rgba(3, 10, 27, 0.98) 0%, rgba(2, 8, 21, 0.98) 100%);
  }

  .support-panel::before {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 306px;
    background-position: center top;
    background-size: auto 100%;
    opacity: 0.88;
    filter: saturate(1.04) contrast(1.03) brightness(0.88);
  }

  .support-panel::after {
    background:
      linear-gradient(180deg, rgba(2, 8, 22, 0) 0%, rgba(2, 8, 22, 0) 31%, rgba(2, 8, 22, 0.84) 51%, rgba(2, 8, 22, 0.12) 100%);
  }

  .support-heading,
  .support-copy {
    transform: none;
  }

  .support-heading {
    order: 1;
    width: 100%;
    text-align: center;
  }

  .support-heading h2 {
    margin: 0 auto 12px;
    font-size: clamp(31px, 8vw, 36px);
    line-height: 1.08;
    text-align: center;
    white-space: normal;
  }

  .support-heading p {
    max-width: 340px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
  }

  .support-copy {
    order: 2;
    display: block;
    width: 100%;
    margin-top: 42px;
  }

  .support-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin: 0;
  }

  .support-actions .btn {
    height: 58px;
    min-height: 58px;
    padding: 0 16px;
    font-size: 15px;
    text-align: center;
  }

  .support-actions .btn svg,
  .support-actions .btn .telegram-icon,
  .support-actions .btn .btn-site-icon {
    width: 24px;
    height: 24px;
  }
}

/* Soft, no-border backings for Advantages and How-to cards. */
#features.features-section::before,
#how.section::before,
#features .feature-card::before,
#how .step-card::before {
  content: none !important;
  display: none !important;
}

#features .features-grid,
#how .steps-grid {
  gap: clamp(14px, 1.45vw, 18px);
}

#features .feature-card,
#how .step-card {
  border: 0 !important;
  background: rgba(10, 24, 47, 0.54) !important;
  box-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
}

#features .feature-card .feature-icon,
#features .feature-card .site-icon,
#how .step-card .step-icon,
#how .step-card .site-icon {
  filter: none !important;
}

#features .feature-card h3,
#how .step-card h3 {
  text-shadow: none !important;
}

#features .feature-card p,
#how .step-card p {
  color: rgba(190, 203, 225, 0.82);
}

#how .steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin: 0;
}

#how .step-card {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 28px 22px;
  text-align: center;
}

#how .step-card .step-icon {
  width: 72px;
  height: 72px;
  margin: 0 0 20px;
}

#how .step-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.22;
}

#how .step-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

#how .step-card:not(:last-child)::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 860px) {
  #features .features-grid,
  #how .steps-grid {
    gap: 12px;
  }

  #how .steps-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  #how .step-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 18px;
    text-align: left;
  }

  #how .step-card .step-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 58px;
    height: 58px;
    margin: 0;
  }

  #how .step-card h3 {
    grid-column: 2;
    margin: 0 0 8px;
    font-size: 16px;
  }

  #how .step-card p {
    grid-column: 2;
    margin: 0;
    font-size: 13px;
    line-height: 1.48;
  }
}
