:root {
  --bg: #05070b;
  --surface: rgba(18, 23, 32, 0.84);
  --surface-strong: rgba(21, 26, 36, 0.95);
  --stroke: rgba(109, 141, 170, 0.16);
  --text: #eef3f7;
  --muted: #b9c4cf;
  --green: #37f4a4;
  --green-2: #0fb96f;
  --green-3: #7dffcb;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(35, 82, 62, 0.18), transparent 30%),
    radial-gradient(circle at left 10% top 12%, rgba(14, 94, 62, 0.15), transparent 18%),
    linear-gradient(180deg, #020409 0%, #05070b 55%, #03060a 100%);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.page-glow {
  position: fixed;
  inset: auto;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.18;
  z-index: 0;
}

.page-glow--left {
  top: 12%;
  left: -12rem;
  background: radial-gradient(circle, rgba(55, 244, 164, 0.45), transparent 65%);
}

.page-glow--right {
  top: 58%;
  right: -10rem;
  background: radial-gradient(circle, rgba(49, 133, 255, 0.18), transparent 65%);
}

.wrapper {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 32px));
  margin: 42px auto 64px;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--stroke);
  background:
    linear-gradient(120deg, rgba(255,255,255,0.03), rgba(255,255,255,0) 25%),
    radial-gradient(circle at 85% 15%, rgba(69, 255, 184, 0.07), transparent 25%),
    linear-gradient(180deg, rgba(22, 27, 39, 0.96), rgba(10, 13, 20, 0.94));
  box-shadow: var(--shadow);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(76, 255, 190, 0.10), transparent 18%, transparent 82%, rgba(120, 210, 255, 0.06));
  pointer-events: none;
}

.hero {
  min-height: 580px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
}

.hero__media {
  position: relative;
  min-height: 500px;
}

.hero__frame,
.hero__orbit {
  position: absolute;
  border-radius: 36px;
}

.hero__frame {
  inset: 28px auto auto 24px;
  width: 74%;
  height: 66%;
  border: 1px dashed rgba(190, 200, 220, 0.1);
  opacity: 0.6;
}

.hero__orbit {
  left: 8%;
  top: 6%;
  width: 88%;
  height: 84%;
  border: 1px dashed rgba(144, 157, 182, 0.15);
  border-radius: 50%;
}

.device {
  position: absolute;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.45));
}

.device--laptop {
  left: 3%;
  top: -2%;
  width: min(630px, 100%);
  transform: rotate(-16deg);
  transform-origin: center;
}

.device--phone {
  left: 55%;
  bottom: 10%;
  width: min(150px, 26%);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 6px 8px 8px;
}

.hero h1,
.pricing h2,
.info-card h3 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 4.25rem);
  line-height: 0.98;
  max-width: 560px;
}

.feature-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.feature-list__badge,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(146, 255, 205, 0.4);
  background: linear-gradient(180deg, rgba(86, 255, 182, 0.22), rgba(0, 0, 0, 0.06));
  box-shadow: inset 0 0 18px rgba(77, 255, 178, 0.18), 0 8px 24px rgba(24, 255, 163, 0.08);
  color: var(--green-3);
  font-size: 0.77rem;
  font-weight: 600;
}

.pill {
  width: fit-content;
  min-width: unset;
  height: 34px;
  padding-inline: 14px;
  margin-bottom: 24px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  margin-top: 34px;
}

.hero__note {
  color: rgba(215, 225, 233, 0.52);
  font-size: 0.95rem;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.18);
  opacity: 0.45;
  pointer-events: none;
}

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

.btn--primary,
.btn--secondary {
  background: linear-gradient(135deg, #19c77a, #39f4a5 48%, #18b977 100%);
  color: #0d1017;
  font-weight: 700;
  box-shadow: 0 18px 44px rgba(36, 241, 159, 0.22), inset 0 1px 0 rgba(255,255,255,0.28);
}

.btn--secondary {
  width: 100%;
  min-height: 58px;
  font-weight: 600;
}

.plans-grid,
.bottom-grid {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

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


.purchase-assist {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
  align-items: center;
  gap: 30px;
  min-height: 250px;
  margin-top: 18px;
  padding: 30px 32px;
  border-color: rgba(87, 224, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(22, 46, 78, 0.38), rgba(7, 12, 22, 0.92) 44%, rgba(5, 9, 16, 0.98)),
    radial-gradient(circle at 15% 18%, rgba(60, 255, 180, 0.12), transparent 25%),
    radial-gradient(circle at 88% 24%, rgba(70, 178, 255, 0.18), transparent 32%);
}

.purchase-assist::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(110deg, transparent 8%, rgba(255,255,255,0.06) 22%, transparent 34%, transparent 66%, rgba(120, 225, 255, 0.08) 82%, transparent 92%);
  transform: translateX(-30%);
  opacity: 0.85;
  animation: assistSweep 7s ease-in-out infinite;
  pointer-events: none;
}

.purchase-assist__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.purchase-assist__pill {
  margin-bottom: 18px;
}

.purchase-assist h3 {
  margin: 0;
  font-size: clamp(1.9rem, 2.65vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.purchase-assist p {
  margin: 16px 0 0;
  max-width: 640px;
  color: rgba(232, 240, 247, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.purchase-assist strong {
  color: var(--text);
}

.purchase-assist__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.purchase-assist__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(117, 220, 255, 0.18);
  background: rgba(9, 16, 28, 0.68);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 10px 24px rgba(0, 0, 0, 0.16);
  color: rgba(231, 241, 248, 0.85);
  font-size: 0.93rem;
}

.purchase-assist__meta span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #35f4a5, #0fb96f);
  box-shadow: 0 0 0 5px rgba(55, 244, 164, 0.12);
}

.purchase-assist .btn--telegram {
  margin-top: 24px;
}

.btn--telegram {
  min-width: min(100%, 320px);
  background: linear-gradient(135deg, #1699f6 0%, #35c2ff 44%, #0d7ae8 100%);
  color: #f8fbff;
  font-weight: 700;
  box-shadow: 0 22px 44px rgba(18, 143, 235, 0.28), inset 0 1px 0 rgba(255,255,255,0.24);
}

.btn--telegram:hover {
  filter: brightness(1.05);
}

.purchase-assist__visual {
  position: relative;
  min-height: 210px;
  display: grid;
  place-items: center;
  perspective: 1400px;
  z-index: 1;
}

.purchase-assist__beam,
.purchase-assist__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.purchase-assist__beam {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(47, 191, 255, 0.24), rgba(47, 191, 255, 0.05) 48%, transparent 70%);
  filter: blur(14px);
  animation: beamPulse 4.6s ease-in-out infinite;
}

.purchase-assist__orb {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(65, 255, 189, 0.15), transparent 68%);
  transform: translate(-16%, -10%);
  filter: blur(10px);
}

.telegram-spotlight {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 210px;
}

.telegram-spotlight__ring {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(77, 212, 255, 0.14);
  box-shadow: 0 0 0 24px rgba(77, 212, 255, 0.03);
  animation: signalRing 3.8s ease-out infinite;
}

.telegram-spotlight__ring--delay {
  animation-delay: 1.9s;
}

.telegram-3d {
  --tilt: rotateX(16deg) rotateY(-17deg) rotateZ(-9deg);
  position: relative;
  width: clamp(152px, 18vw, 214px);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  transform: var(--tilt);
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.42));
}

.telegram-3d__image,
.telegram-3d__gloss {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.telegram-3d__image {
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.telegram-3d__image--back {
  transform: translate3d(16px, 38px, -54px);
  filter: saturate(1.4) brightness(0.55) hue-rotate(4deg) blur(0.8px);
  opacity: 0.9;
}

.telegram-3d__image--mid {
  transform: translate3d(8px, 20px, -28px);
  filter: saturate(1.22) brightness(0.76) hue-rotate(-4deg);
  opacity: 0.98;
}

.telegram-3d__image--front {
  transform: translateZ(28px);
}

.telegram-3d__gloss {
  inset: 12% 16% auto;
  height: 18%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.65), rgba(255,255,255,0));
  transform: translateZ(40px) rotate(-12deg);
  filter: blur(8px);
  opacity: 0.78;
  pointer-events: none;
}

.purchase-assist__chat-badge {
  position: absolute;
  right: 8px;
  bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(105, 228, 255, 0.16);
  background: rgba(7, 14, 25, 0.82);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  color: rgba(238, 243, 247, 0.82);
  font-size: 0.9rem;
  white-space: nowrap;
}

.purchase-assist__chat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #35f4a5;
  box-shadow: 0 0 0 0 rgba(53, 244, 165, 0.6);
  animation: chatPing 2.2s ease-out infinite;
}

@keyframes assistSweep {
  0%, 100% { transform: translateX(-34%); opacity: 0.65; }
  50% { transform: translateX(24%); opacity: 1; }
}

@keyframes signalRing {
  0% { transform: scale(0.88); opacity: 0; }
  20% { opacity: 0.55; }
  100% { transform: scale(1.12); opacity: 0; }
}

@keyframes beamPulse {
  0%, 100% { transform: scale(0.95); opacity: 0.65; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes chatPing {
  0% { box-shadow: 0 0 0 0 rgba(53, 244, 165, 0.42); }
  75%, 100% { box-shadow: 0 0 0 12px rgba(53, 244, 165, 0); }
}


.pricing {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  min-height: 560px;
}

.pricing .pill {
  white-space: nowrap;
}

.pricing h2 {
  font-size: clamp(2rem, 2.6vw, 3rem);
  line-height: 1.02;
}

.checks {
  list-style: none;
  padding: 26px 0 0;
  margin: 26px 0 0;
  border-top: 1px solid rgba(197, 214, 230, 0.08);
  display: grid;
  gap: 16px;
  color: var(--muted);
}

.checks li {
  position: relative;
  padding-left: 28px;
  line-height: 1.45;
}

.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  font-size: 0.72rem;
  background: linear-gradient(180deg, rgba(71, 255, 184, 0.2), rgba(71, 255, 184, 0.08));
  color: var(--green-3);
  border: 1px solid rgba(132, 255, 207, 0.24);
}

.pricing__footer {
  margin-top: auto;
  padding-top: 30px;
}

.price {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 6px 10px;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 3vw, 3.55rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.price span {
  font-size: 0.6em;
  color: var(--text);
}

.price small {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 67, 104, 0.14);
  color: #ff5b84;
  font-size: 0.2em;
  letter-spacing: 0;
}

.pricing--featured {
  border-color: rgba(102, 255, 191, 0.26);
  box-shadow: 0 28px 90px rgba(0,0,0,0.48), 0 0 0 1px rgba(87, 255, 182, 0.08), inset 0 0 100px rgba(49, 229, 154, 0.04);
}


.pricing--easter {
  isolation: isolate;
  border-color: rgba(255, 205, 100, 0.34);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 210, 112, 0.16), transparent 22%),
    radial-gradient(circle at 84% 20%, rgba(65, 255, 182, 0.12), transparent 26%),
    linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0) 28%),
    linear-gradient(180deg, rgba(24, 30, 43, 0.98), rgba(10, 13, 20, 0.96));
  box-shadow:
    0 28px 90px rgba(0,0,0,0.52),
    0 0 0 1px rgba(255, 207, 115, 0.12),
    inset 0 0 120px rgba(255, 191, 72, 0.06),
    0 0 42px rgba(255, 200, 92, 0.12);
}

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

.pricing--easter > .pricing__easter-decor {
  z-index: 0;
}

.pricing--easter::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 196, 78, 0.18), transparent 68%);
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
}

.pricing__easter-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.easter-egg {
  position: absolute;
  border-radius: 52% 52% 48% 48% / 58% 58% 42% 42%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255,255,255,0.75), transparent 18%),
    linear-gradient(180deg, #7dffcb 0 22%, #ffcf67 22% 45%, #36e89c 45% 68%, #4aa3ff 68% 100%);
  box-shadow:
    inset 0 -10px 18px rgba(0,0,0,0.18),
    0 10px 24px rgba(0,0,0,0.24),
    0 0 18px rgba(255, 213, 120, 0.22);
  opacity: 0.95;
}

.easter-egg::before {
  content: "";
  position: absolute;
  inset: 18% 24%;
  border-radius: 999px;
  border: 2px dashed rgba(10, 13, 20, 0.16);
}

.easter-egg--left {
  top: 90px;
  left: -18px;
  width: 44px;
  height: 58px;
  transform: rotate(-18deg);
}

.easter-egg--right {
  top: 70px;
  right: 22px;
  width: 58px;
  height: 74px;
  transform: rotate(14deg);
}

.easter-egg--mini {
  right: 86px;
  bottom: 132px;
  width: 28px;
  height: 36px;
  transform: rotate(-12deg);
  opacity: 0.88;
}

.pricing__easter-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 214, 124, 0.34);
  background: linear-gradient(180deg, rgba(255, 221, 146, 0.18), rgba(255, 182, 62, 0.12));
  color: #ffd975;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 0 24px rgba(255, 197, 76, 0.14);
}

.pricing__easter-badge::before {
  content: "🐣";
  font-size: 1rem;
}

.pricing__campaign {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 220, 146, 0.18);
  background: linear-gradient(135deg, rgba(255, 205, 108, 0.14), rgba(56, 236, 161, 0.07));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.pricing__campaign-logo {
  width: 46px;
  height: 46px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(4, 11, 18, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.pricing__campaign strong,
.pricing__campaign span {
  display: block;
}

.pricing__campaign strong {
  font-size: 1rem;
  font-weight: 700;
  color: #fff4d3;
}

.pricing__campaign span {
  margin-top: 4px;
  color: #d9e5dc;
  line-height: 1.45;
}

.price--discounted {
  align-items: center;
  gap: 8px 10px;
}

.price--discounted s {
  order: -1;
  font-size: 0.42em;
  color: rgba(219, 230, 240, 0.6);
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 101, 132, 0.9);
}

.price--discounted::before {
  content: "-38%";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 10px;
  margin-right: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 92, 126, 0.24), rgba(255, 75, 118, 0.14));
  color: #ff7c9d;
  font-size: 0.26em;
  font-weight: 700;
  letter-spacing: 0;
}

.pricing--easter .checks strong {
  color: #fff1c4;
}

@media (max-width: 780px) {
  .pricing__easter-badge {
    top: 14px;
    right: 14px;
    font-size: 0.76rem;
    padding: 0 12px;
  }

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

  .pricing__campaign-logo {
    width: 40px;
    height: 40px;
  }

  .easter-egg--left {
    left: auto;
    right: 62px;
    top: 54px;
    width: 34px;
    height: 44px;
  }

  .easter-egg--right {
    right: 18px;
    top: 82px;
    width: 40px;
    height: 52px;
  }

  .easter-egg--mini {
    display: none;
  }
}

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

.info-card {
  min-height: 280px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
}

.info-card h3 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.02;
  margin-bottom: 14px;
}

.info-card p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.stat {
  position: relative;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: #54ffb8;
  text-shadow: 0 0 22px rgba(56, 255, 170, 0.22);
  filter: drop-shadow(0 16px 34px rgba(38, 255, 173, 0.1));
}

.stat::before {
  content: "";
  position: absolute;
  inset: -22px;
  background: radial-gradient(circle, rgba(43, 255, 168, 0.16), transparent 65%);
  z-index: -1;
  filter: blur(18px);
}

.stat--ref {
  font-size: clamp(4.8rem, 10vw, 8rem);
}

.stat--days {
  font-size: clamp(5.4rem, 11vw, 9rem);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.floating {
  animation: float 5s ease-in-out infinite;
}

.floating--slow {
  animation-duration: 7s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rotate, 0deg)); }
  50% { transform: translateY(-12px) rotate(var(--rotate, 0deg)); }
}

.device--laptop { --rotate: -16deg; }
.device--phone { --rotate: 0deg; }

@media (max-width: 1320px) {
  .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .hero__media {
    min-height: 420px;
  }

  .hero__content {
    padding: 0 8px 10px;
  }

  .pricing {
    min-height: auto;
  }
}

@media (max-width: 780px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .wrapper {
    width: min(100% - 20px, 900px);
    margin-top: 20px;
    margin-bottom: 32px;
  }

  .hero {
    border-radius: 28px;
  }

  .hero__media {
    min-height: 290px;
  }

  .device--laptop {
    width: 96%;
    left: -4%;
    top: 4%;
  }

  .device--phone {
    left: 66%;
    width: 25%;
    bottom: 8%;
  }

  .feature-list li {
    font-size: 0.95rem;
  }

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

  .info-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .stat {
    justify-self: end;
  }
}

@media (max-width: 520px) {
  .hero,
  .pricing,
  .info-card {
    padding: 20px;
    border-radius: 24px;
  }

  .hero__frame,
  .hero__orbit {
    display: none;
  }

  .hero__media {
    min-height: 240px;
  }

  .device--laptop {
    width: 102%;
    left: -8%;
    top: 0;
  }

  .device--phone {
    width: 30%;
    left: 64%;
    bottom: 4%;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .pricing h2,
  .info-card h3 {
    font-size: 2rem;
  }

  .btn,
  .btn--secondary {
    width: 100%;
  }

  .hero__actions {
    align-items: stretch;
  }

  .hero__note {
    font-size: 0.88rem;
  }
}



.how-it-works {
  margin-top: 18px;
  padding: 28px 30px 30px;
}

.how-it-works__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px 24px;
  margin-bottom: 24px;
}

.how-it-works__head h3 {
  margin: 10px 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.how-it-works__head p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  line-height: 1.6;
}

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

.step-card {
  position: relative;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(circle at 85% 10%, rgba(55, 244, 164, 0.09), transparent 25%),
    linear-gradient(180deg, rgba(17, 23, 33, 0.86), rgba(11, 15, 23, 0.96));
  min-height: 200px;
}

.step-card__num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin-bottom: 22px;
  border: 1px solid rgba(132, 255, 207, 0.24);
  background: linear-gradient(180deg, rgba(71, 255, 184, 0.2), rgba(71, 255, 184, 0.08));
  color: var(--green-3);
  font-weight: 700;
}

.step-card h4 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  max-width: 290px;
}

@media (max-width: 1100px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .how-it-works {
    padding: 24px;
  }

  .how-it-works__head {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .how-it-works {
    padding: 20px;
    border-radius: 24px;
  }

  .step-card {
    min-height: auto;
    padding: 20px;
    border-radius: 22px;
  }
}


.happ-note {
  margin-top: 20px;
  display: inline-block;
  padding: 10px 16px;
  border-radius: 20px;
  background: rgba(0,255,150,0.1);
  border: 1px solid rgba(0,255,150,0.2);
  color: #9fffcf;
  font-size: 14px;
}


/* --- layout widen pass --- */
.container,
.shell,
.page,
.site-shell,
.wrapper,
.main-wrap {
  max-width: 1520px !important;
  width: min(1520px, calc(100% - 40px)) !important;
}

.hero,
.hero-card,
.pricing,
.pricing-grid,
.bottom-grid,
.how-it-works {
  width: 100%;
}

@media (max-width: 900px) {
  .container,
  .shell,
  .page,
  .site-shell,
  .wrapper,
  .main-wrap {
    width: min(100%, calc(100% - 24px)) !important;
  }
}

/* --- vk promo block --- */
.vk-promo {
  margin-top: 18px;
  padding: 0;
  overflow: hidden;
}

.vk-promo__content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
  min-height: 360px;
}

.vk-promo__copy {
  padding: 30px 30px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vk-promo__copy h3 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.vk-promo__copy p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 640px;
}

.vk-promo__list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.vk-promo__list li {
  position: relative;
  padding-left: 24px;
  color: rgba(238, 245, 255, 0.92);
}

.vk-promo__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(82, 234, 255, 1), rgba(26, 193, 255, 0.75));
  box-shadow: 0 0 18px rgba(29, 205, 255, 0.55);
}

.vk-promo__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 20px 22px 20px 0;
}

.vk-promo__media::before {
  content: "";
  position: absolute;
  inset: 12% 10% 12% 15%;
  border-radius: 28px;
  background:
    radial-gradient(circle at 70% 30%, rgba(49, 190, 255, 0.28), transparent 28%),
    radial-gradient(circle at 28% 66%, rgba(77, 255, 193, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(17, 23, 33, 0.4), rgba(11, 15, 23, 0.1));
  filter: blur(12px);
}

.vk-promo__media img {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  height: auto;
  filter: drop-shadow(0 26px 40px rgba(0,0,0,0.42));
}

@media (max-width: 1100px) {
  .vk-promo__content {
    grid-template-columns: 1fr;
  }

  .vk-promo__media {
    padding: 0 20px 24px;
  }

  .vk-promo__media::before {
    inset: 10% 12%;
  }
}

@media (max-width: 640px) {
  .vk-promo__copy {
    padding: 24px 20px 20px;
  }

  .vk-promo__copy h3 {
    font-size: clamp(1.8rem, 9vw, 2.7rem);
  }
}


/* --- vk 3d icon --- */
.vk-promo__media {
  overflow: hidden;
}

.vk-hero3d {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  isolation: isolate;
  animation: vkFloat 7s ease-in-out infinite;
}

.vk-hero3d__icon {
  position: relative;
  z-index: 3;
  width: min(82%, 320px);
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.42));
  animation: vkIconTilt 7s ease-in-out infinite;
}

.vk-hero3d__ring {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(74, 214, 255, 0.18);
  z-index: 1;
}

.vk-hero3d__ring--1 {
  inset: 18%;
  transform: rotate(10deg);
  box-shadow: 0 0 40px rgba(39, 192, 255, 0.12);
}

.vk-hero3d__ring--2 {
  inset: 7%;
  transform: rotate(-14deg);
  border-style: dashed;
  opacity: 0.55;
}

.vk-hero3d__glow {
  position: absolute;
  inset: 22%;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(48, 201, 255, 0.34), transparent 34%),
    radial-gradient(circle at 40% 60%, rgba(65, 255, 190, 0.22), transparent 42%);
  filter: blur(26px);
  animation: vkGlowPulse 5.5s ease-in-out infinite;
}

@keyframes vkFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes vkIconTilt {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  50% { transform: rotate(6deg) scale(1.03); }
}

@keyframes vkGlowPulse {
  0%, 100% { transform: scale(0.96); opacity: 0.85; }
  50% { transform: scale(1.06); opacity: 1; }
}

.support-contacts {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  width: min(1520px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 32px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 16% 18%, rgba(65, 255, 176, 0.16), transparent 20%),
    radial-gradient(circle at 84% 16%, rgba(50, 182, 255, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(11, 18, 28, 0.96), rgba(7, 11, 18, 0.96));
}

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

.support-contacts::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(77, 255, 178, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(77, 255, 178, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.68), transparent 92%);
  opacity: 0.35;
}

.support-contacts::after {
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.support-contacts__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
}

.support-contacts__glow,
.support-contacts__halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.support-contacts__glow {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(77, 255, 178, 0.28), rgba(77, 255, 178, 0));
  animation: pulseGlow 5s ease-in-out infinite;
}

.support-contacts__halo {
  width: 300px;
  height: 300px;
  border: 1px solid rgba(77, 255, 178, 0.14);
  box-shadow: inset 0 0 40px rgba(32, 150, 99, 0.12), 0 0 30px rgba(17, 120, 214, 0.12);
}

.support-contacts__icon-wrap {
  position: relative;
  width: min(300px, 72vw);
  aspect-ratio: 1;
  z-index: 1;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.46));
}

.support-contacts__icon {
  width: 100%;
  height: 100%;
  display: block;
}

.support-contacts__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.support-contacts__pill {
  background: linear-gradient(135deg, rgba(31, 255, 154, 0.18), rgba(27, 196, 255, 0.16));
}

.support-contacts h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.support-contacts p {
  margin: 16px 0 0;
  max-width: 680px;
  color: rgba(215, 225, 233, 0.78);
  line-height: 1.75;
  font-size: 1.03rem;
}

.support-contacts__list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.support-link {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.support-link:hover {
  transform: translateY(-2px);
  border-color: rgba(77, 255, 178, 0.32);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255,255,255,0.08);
}

.support-link__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.2), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.09);
}

.support-link__icon {
  display: block;
  object-fit: contain;
}

.support-link__icon--telegram {
  width: 40px;
  height: 40px;
}

.support-link__icon--vk {
  width: 42px;
  height: 42px;
}

.support-link__text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.support-link__text strong {
  font-size: 1.06rem;
  color: #f2f7fb;
}

.support-link__text small {
  color: rgba(215, 225, 233, 0.6);
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

.support-link__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(77, 255, 178, 0.12);
  color: var(--green-3);
  font-weight: 700;
  white-space: nowrap;
}

.support-link--telegram .support-link__cta {
  background: rgba(88, 199, 255, 0.14);
  color: #9de9ff;
}

.support-link--vk .support-link__cta {
  background: rgba(38, 136, 255, 0.16);
  color: #a6d0ff;
}

.support-contacts__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.support-contacts__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(240, 247, 255, 0.82);
  font-size: 0.9rem;
}

/* --- footer / legal --- */
.site-footer {
  width: min(1520px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 28px 30px 24px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(circle at 90% 0%, rgba(55, 244, 164, 0.08), transparent 26%),
    radial-gradient(circle at 0% 100%, rgba(43, 194, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(17, 23, 33, 0.88), rgba(10, 15, 24, 0.98));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}

.site-footer__logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.site-footer__brand p,
.site-footer__legal p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 780px;
}

.site-footer__links {
  display: grid;
  gap: 12px;
  justify-content: end;
  text-align: right;
}

.site-footer__links a {
  color: rgba(240, 247, 255, 0.92);
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.site-footer__links a:hover {
  color: var(--green-3);
  transform: translateX(-3px);
}

.site-footer__legal {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: grid;
  gap: 8px;
}

.legal-docs {
  width: min(1520px, calc(100% - 40px));
  margin: 18px auto 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.legal-doc {
  padding: 24px;
}

.legal-doc h3 {
  margin: 10px 0 12px;
  font-size: 1.65rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.legal-doc p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .site-footer__inner,
  .legal-docs {
    grid-template-columns: 1fr;
  }

  .site-footer__links {
    justify-content: start;
    text-align: left;
  }
}

@media (max-width: 900px) {
  .site-footer,
  .legal-docs {
    width: min(100%, calc(100% - 24px));
  }

  .site-footer {
    padding: 24px 20px 20px;
    border-radius: 28px;
  }
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.network-overview {
  margin-top: 18px;
}

.network-overview__panel {
  padding: 28px 30px 30px;
}

.network-overview__intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}

.network-overview__intro h3 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.network-overview__intro p {
  margin: 0;
  max-width: 700px;
  color: var(--muted);
  line-height: 1.65;
}

.network-overview__hero {
  display: grid;
  place-items: center;
  min-height: 210px;
}

.network-cube {
  position: relative;
  width: min(100%, 230px);
  aspect-ratio: 1;
  border-radius: 36px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.16), transparent 26%),
    linear-gradient(145deg, rgba(52, 255, 176, 0.18), rgba(26, 41, 58, 0.82) 45%, rgba(13, 18, 28, 0.96));
  border: 1px solid rgba(131, 255, 206, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 26px 64px rgba(0, 0, 0, 0.34);
  transform: perspective(1000px) rotateX(14deg) rotateY(-16deg);
}

.network-cube::before,
.network-cube::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.network-cube::before {
  inset: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

.network-cube::after {
  inset: -18px;
  background: radial-gradient(circle, rgba(49, 255, 174, 0.16), transparent 62%);
  filter: blur(18px);
  z-index: -1;
}

.network-cube__glow {
  position: absolute;
  inset: 18%;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 50%, rgba(53, 255, 180, 0.3), transparent 62%);
  filter: blur(16px);
  animation: vkGlowPulse 5s ease-in-out infinite;
}

.network-cube__logo {
  position: relative;
  z-index: 2;
  width: 46%;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.32));
}

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

.metric-card {
  position: relative;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(circle at 85% 10%, rgba(55, 244, 164, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(17, 23, 33, 0.88), rgba(10, 15, 24, 0.98));
  min-height: 210px;
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background-position .35s ease;
  will-change: transform;
}

.metric-card--wide {
  grid-column: 1 / -1;
  min-height: 0;
}

.metric-card__icon {
  position: relative;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(71, 255, 184, 0.2), rgba(71, 255, 184, 0.08));
  border: 1px solid rgba(132, 255, 207, 0.24);
  box-shadow: inset 0 0 18px rgba(77, 255, 178, 0.12), 0 12px 28px rgba(24, 255, 163, 0.08);
}

.metric-card__icon::before,
.metric-card__icon::after {
  content: "";
  position: absolute;
}

.metric-card__icon--users::before {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 12px;
  left: 14px;
  background: rgba(232, 245, 255, 0.92);
  box-shadow: 16px 7px 0 -1px rgba(232, 245, 255, 0.72);
}

.metric-card__icon--users::after {
  left: 11px;
  bottom: 11px;
  width: 36px;
  height: 18px;
  border-radius: 14px 14px 10px 10px;
  border: 2px solid rgba(232, 245, 255, 0.86);
  border-top: 0;
}

.metric-card__icon--servers::before {
  inset: 12px 14px auto;
  height: 8px;
  border-radius: 999px;
  background: rgba(232, 245, 255, 0.92);
  box-shadow: 0 13px 0 rgba(232, 245, 255, 0.76), 0 26px 0 rgba(232, 245, 255, 0.58);
}

.metric-card__icon--servers::after {
  right: 13px;
  top: 11px;
  width: 7px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(71,255,184,0.98), rgba(71,255,184,0.18));
  box-shadow: 0 0 14px rgba(71,255,184,0.38);
}

.metric-card__label {
  display: block;
  color: rgba(215, 225, 233, 0.68);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.metric-card__value {
  display: block;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.metric-card__value--small {
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  margin-top: 8px;
}

.metric-card__delta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--green-3);
  font-size: 0.95rem;
}

.metric-card__delta::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}

.metric-card__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.metric-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(146, 255, 205, 0.28);
  background: rgba(71,255,184,0.09);
  color: var(--green-3);
  font-size: 0.88rem;
  white-space: nowrap;
}

.stability-chart {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(180deg, rgba(9, 13, 22, 0.82), rgba(13, 18, 28, 0.96));
  padding: 18px 18px 14px;
}

.stability-chart canvas {
  display: block;
  width: 100%;
  height: auto;
}

.stability-chart__labels {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
  color: rgba(185, 196, 207, 0.72);
  font-size: 0.78rem;
}

@media (max-width: 1100px) {
  .network-overview__intro,
  .metrics-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .network-overview__panel {
    padding: 24px;
  }

  .metric-card__head {
    flex-direction: column;
    align-items: start;
  }

  .stability-chart {
    padding: 14px 14px 12px;
  }
}

@media (max-width: 520px) {
  .network-overview__panel,
  .metric-card {
    padding: 20px;
    border-radius: 24px;
  }

  .stability-chart__labels {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


.metric-card:hover {
  border-color: rgba(132, 255, 207, 0.14);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255,255,255,0.03);
}

.metric-card__icon {
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease, background .32s ease;
  will-change: transform;
}

.metric-card:hover .metric-card__icon {
  transform: translateY(-2px) scale(1.035);
  border-color: rgba(132, 255, 207, 0.34);
  box-shadow: inset 0 0 20px rgba(77, 255, 178, 0.14), 0 16px 32px rgba(24, 255, 163, 0.12);
}

.metric-card__value,
.metric-card__value--small,
.metric-card__delta,
.metric-chip {
  transition: transform .26s ease, opacity .26s ease;
}

.metric-card:hover .metric-card__value,
.metric-card:hover .metric-card__value--small {
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .metric-card,
  .metric-card__icon,
  .metric-card__value,
  .metric-card__value--small,
  .metric-card__delta,
  .metric-chip {
    transition: none;
  }
}


.download-happ {
  margin-top: 34px;
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.download-happ::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 20%, rgba(69, 255, 182, 0.12), transparent 34%),
              radial-gradient(circle at 86% 18%, rgba(72, 153, 255, 0.14), transparent 32%);
  pointer-events: none;
}

.download-happ__head,
.download-happ__grid {
  position: relative;
  z-index: 1;
}

.download-happ__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.download-happ__head h3 {
  margin: 12px 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.download-happ__head p {
  max-width: 760px;
  color: var(--muted);
}

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

.download-card {
  min-height: 146px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(10, 16, 28, 0.86), rgba(9, 15, 27, 0.96));
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.download-card:hover {
  transform: translateY(-3px);
  border-color: rgba(132, 255, 207, 0.2);
  box-shadow: 0 22px 40px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.03);
}

.download-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(132, 255, 207, 0.16);
  background: linear-gradient(180deg, rgba(88, 255, 199, 0.18), rgba(88, 255, 199, 0.08));
  box-shadow: inset 0 0 20px rgba(84, 255, 184, 0.1), 0 12px 20px rgba(0, 0, 0, 0.18);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.download-card:hover .download-card__icon {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(132, 255, 207, 0.34);
  box-shadow: inset 0 0 22px rgba(84, 255, 184, 0.16), 0 16px 28px rgba(18, 255, 159, 0.12);
}

.download-card__icon::before,
.download-card__icon::after {
  content: '';
  position: absolute;
}

.download-card__icon--ios::before {
  width: 24px;
  height: 28px;
  border: 2px solid rgba(237, 244, 255, 0.9);
  border-radius: 8px;
}

.download-card__icon--ios::after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(237, 244, 255, 0.92);
  bottom: 10px;
}

.download-card__icon--android::before {
  width: 24px;
  height: 18px;
  border: 2px solid rgba(237, 244, 255, 0.9);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  bottom: 14px;
}

.download-card__icon--android::after {
  width: 20px;
  height: 2px;
  top: 14px;
  left: 18px;
  background: rgba(237, 244, 255, 0.92);
  box-shadow: -8px -4px 0 rgba(237,244,255,0.92), 8px -4px 0 rgba(237,244,255,0.92), -5px 12px 0 0 rgba(237,244,255,0.92), 5px 12px 0 0 rgba(237,244,255,0.92);
  width: 2px;
  height: 10px;
}

.download-card__icon--windows::before {
  width: 24px;
  height: 24px;
  background: linear-gradient(90deg, rgba(237,244,255,0.95) 46%, transparent 46% 54%, rgba(237,244,255,0.95) 54%),
              linear-gradient(rgba(237,244,255,0.95) 46%, transparent 46% 54%, rgba(237,244,255,0.95) 54%);
}

.download-card__icon--mac::before {
  width: 10px;
  height: 18px;
  border-radius: 50%;
  background: rgba(237, 244, 255, 0.92);
  box-shadow: -7px 0 0 rgba(237, 244, 255, 0.92), 7px 0 0 rgba(237, 244, 255, 0.92), 0 8px 0 5px rgba(237, 244, 255, 0.92);
  top: 16px;
}

.download-card__icon--mac::after {
  width: 8px;
  height: 8px;
  background: rgba(237, 244, 255, 0.92);
  border-radius: 0 80% 0 80%;
  top: 10px;
  right: 14px;
  transform: rotate(-28deg);
}

.download-card__icon--tv::before {
  width: 26px;
  height: 18px;
  border: 2px solid rgba(237, 244, 255, 0.9);
  border-radius: 6px;
}

.download-card__icon--tv::after {
  width: 14px;
  height: 2px;
  bottom: 12px;
  background: rgba(237, 244, 255, 0.92);
  box-shadow: 0 -18px 0 -0 rgba(237,244,255,0), -8px -18px 0 -6px rgba(237,244,255,0.92), 8px -18px 0 -6px rgba(237,244,255,0.92);
}

.download-card__meta {
  display: grid;
  gap: 4px;
}

.download-card__meta strong {
  font-size: 1.05rem;
}

.download-card__meta small {
  color: rgba(185, 196, 207, 0.76);
  font-size: 0.86rem;
}

.download-card__action {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-3);
  font-weight: 600;
}

.download-card__action::after {
  content: '↗';
  opacity: 0.9;
}

@media (max-width: 1120px) {
  .download-happ__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .download-happ {
    padding: 24px;
  }

  .download-happ__head {
    flex-direction: column;
    align-items: start;
  }

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

@media (max-width: 520px) {
  .download-happ__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .download-card,
  .download-card__icon {
    transition: none;
  }
}


.reviews-showcase {
  padding: 28px;
  margin-top: 18px;
}

.reviews-showcase__head {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.reviews-showcase__head h3 {
  margin: 0;
  font-size: clamp(2rem, 2.6vw, 2.8rem);
}

.reviews-showcase__head p {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.6;
}

.reviews-score {
  position: relative;
  min-width: 240px;
  padding: 20px 22px;
  border-radius: 26px;
  border: 1px solid rgba(124, 255, 205, 0.2);
  background: linear-gradient(180deg, rgba(18, 26, 36, 0.88), rgba(10, 14, 22, 0.94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 14px 36px rgba(0,0,0,0.22);
}

.reviews-score::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top right, rgba(90,255,198,0.18), transparent 38%);
  pointer-events: none;
}

.reviews-score strong {
  display: block;
  font-size: 3rem;
  line-height: 0.95;
}

.reviews-score span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.review-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(116, 139, 170, 0.16);
  background: linear-gradient(180deg, rgba(15, 20, 31, 0.96), rgba(8, 12, 20, 0.98));
  box-shadow: 0 20px 40px rgba(0,0,0,0.24);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.review-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), transparent 30%, transparent 70%, rgba(127,255,211,0.06));
  pointer-events: none;
}

.review-card:hover {
  border-color: rgba(124,255,205,0.26);
  box-shadow: 0 26px 50px rgba(0,0,0,0.28);
}

.review-card--featured {
  grid-row: span 2;
  min-height: 100%;
  justify-content: space-between;
}

.review-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-card__avatar {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #f5fbff;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 12px 28px rgba(0,0,0,0.24);
  transform: translateZ(0);
}

.review-card__avatar::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  opacity: 0.7;
}

.review-card__avatar--emerald { background: linear-gradient(145deg, #1e9e74, #5cffc3); }
.review-card__avatar--violet { background: linear-gradient(145deg, #6f5cff, #ca8cff); }
.review-card__avatar--cyan { background: linear-gradient(145deg, #258de8, #66f3ff); }
.review-card__avatar--sunset { background: linear-gradient(145deg, #ff7a59, #ffcb5c); }

.review-card__identity {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.review-card__identity strong {
  font-size: 1rem;
}

.review-card__identity span {
  color: var(--muted);
  font-size: 0.92rem;
}

.review-badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(130,255,206,0.26);
  background: rgba(24, 56, 47, 0.52);
  color: #9affd2;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.review-badge::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 7px;
  background: linear-gradient(145deg, rgba(124,255,205,0.95), rgba(34,187,127,0.95));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.24), 0 8px 14px rgba(39, 237, 154, 0.26);
  position: relative;
  -webkit-mask: radial-gradient(circle at center, transparent 55%, #000 56%);
}

.review-card__stars {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: #7dffcb;
  font-size: 1.12rem;
  letter-spacing: 0.12em;
}

.review-card p {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: #e8eef6;
  line-height: 1.65;
  max-width: 38ch;
}

.review-card__glow {
  position: absolute;
  inset: auto auto -50px -20px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.18;
  pointer-events: none;
}

.review-card__glow--emerald { background: rgba(84,255,184,0.72); }
.review-card__glow--violet { background: rgba(172,122,255,0.72); }
.review-card__glow--cyan { background: rgba(78,219,255,0.7); }
.review-card__glow--sunset { background: rgba(255,177,96,0.7); }

@media (max-width: 980px) {
  .reviews-showcase__head {
    flex-direction: column;
    align-items: stretch;
  }

  .reviews-score {
    min-width: 0;
  }

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

  .review-card--featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .reviews-showcase {
    padding: 22px;
  }

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

  .review-card__top {
    flex-wrap: wrap;
  }

  .review-badge {
    margin-left: 0;
  }
}


.speedtest-showcase {
  margin-top: 32px;
  padding: 34px;
}

.speedtest-showcase::after {
  content: "";
  position: absolute;
  inset: auto 10% -35% auto;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 213, 255, 0.18), rgba(34, 213, 255, 0));
  filter: blur(12px);
  pointer-events: none;
}

.speedtest-showcase__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: center;
}

.speedtest-showcase__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.speedtest-showcase__copy h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
}

.speedtest-showcase__copy p {
  margin: 0;
  max-width: 34rem;
  color: rgba(226, 235, 244, 0.78);
  font-size: 1.05rem;
  line-height: 1.72;
}

.speedtest-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.speedtest-start {
  position: relative;
  min-width: 230px;
  justify-content: center;
  overflow: hidden;
}

.speedtest-start__pulse {
  position: absolute;
  inset: -35%;
  background: radial-gradient(circle, rgba(255,255,255,0.34), transparent 55%);
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.speedtest-start.is-running .speedtest-start__pulse {
  animation: speedtestPulse 1.9s ease-out infinite;
  opacity: 1;
}

.speedtest-showcase__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(120, 148, 180, 0.18);
  background: rgba(9, 14, 24, 0.58);
  color: rgba(232, 240, 247, 0.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.speedtest-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(181, 190, 205, 0.42);
  box-shadow: 0 0 0 0 rgba(181, 190, 205, 0.2);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.speedtest-showcase[data-speedtest-state="running"] .speedtest-dot {
  background: #57fff4;
  box-shadow: 0 0 0 7px rgba(87, 255, 244, 0.12), 0 0 18px rgba(87, 255, 244, 0.32);
}

.speedtest-showcase[data-speedtest-state="done"] .speedtest-dot {
  background: #4effac;
  box-shadow: 0 0 0 7px rgba(78, 255, 172, 0.12), 0 0 18px rgba(78, 255, 172, 0.28);
}

.speedtest-showcase[data-speedtest-state="error"] .speedtest-dot {
  background: #ff7b7b;
  box-shadow: 0 0 0 7px rgba(255, 123, 123, 0.11), 0 0 18px rgba(255, 123, 123, 0.22);
}

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

.speedtest-mini-card,
.speedtest-stat-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(126, 147, 178, 0.14);
  background: linear-gradient(180deg, rgba(12, 18, 31, 0.86), rgba(8, 12, 22, 0.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.speedtest-mini-card {
  min-height: 96px;
  padding: 18px 20px;
}

.speedtest-mini-card span,
.speedtest-stat-card span {
  display: block;
  color: rgba(183, 196, 212, 0.72);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.speedtest-mini-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.08rem;
  font-weight: 700;
}

.speedtest-console {
  position: relative;
  padding: 24px;
  border-radius: 32px;
  border: 1px solid rgba(125, 150, 194, 0.16);
  background:
    radial-gradient(circle at 18% 18%, rgba(40, 205, 255, 0.10), transparent 26%),
    radial-gradient(circle at 80% 20%, rgba(81, 255, 203, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(9, 13, 27, 0.98), rgba(6, 10, 20, 0.95));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 28px 60px rgba(0, 0, 0, 0.34);
}

.speedtest-console::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

.speedtest-console__topline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.speedtest-chip {
  min-height: 66px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(121, 147, 181, 0.12);
  background: rgba(12, 17, 31, 0.72);
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 7px;
}

.speedtest-chip small,
.speedtest-chip em {
  font-style: normal;
  color: rgba(186, 197, 210, 0.72);
  font-size: 0.82rem;
}

.speedtest-chip strong {
  font-size: 1.18rem;
  font-weight: 700;
}

.speedtest-gauge {
  position: relative;
  min-height: 360px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.speedtest-gauge__svg {
  width: min(100%, 520px);
  height: auto;
  overflow: visible;
}

.speedtest-gauge__track,
.speedtest-gauge__progress {
  fill: none;
  stroke-linecap: round;
  stroke-width: 26;
}

.speedtest-gauge__track {
  stroke: rgba(58, 86, 140, 0.58);
}

.speedtest-gauge__progress {
  stroke: url(#speedGaugeGradient);
  filter: url(#speedGaugeGlow);
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.42s ease;
}

.speedtest-gauge__needle-wrap {
  transform-origin: 160px 176px;
  transition: transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.speedtest-gauge__needle,
.speedtest-gauge__needle-shadow {
  stroke-linecap: round;
}

.speedtest-gauge__needle-shadow {
  stroke: rgba(0, 0, 0, 0.45);
  stroke-width: 9;
}

.speedtest-gauge__needle {
  stroke: rgba(245, 250, 255, 0.98);
  stroke-width: 7;
}

.speedtest-gauge__hub {
  fill: #f7fbff;
  stroke: rgba(89, 232, 255, 0.45);
  stroke-width: 5;
}

.speedtest-gauge__center {
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.speedtest-gauge__center strong {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.speedtest-gauge__center span {
  color: rgba(181, 196, 214, 0.76);
  font-size: 1rem;
}

.speedtest-gauge__phase {
  position: absolute;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  color: rgba(211, 221, 232, 0.8);
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.speedtest-gauge__scale {
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: rgba(194, 204, 219, 0.7);
  font-weight: 700;
  font-size: 0.95rem;
}

.speedtest-gauge__scale span {
  position: absolute;
}

.speedtest-gauge__scale-0 { left: 15%; bottom: 18%; }
.speedtest-gauge__scale-1 { left: 18%; top: 42%; }
.speedtest-gauge__scale-2 { left: 29%; top: 20%; }
.speedtest-gauge__scale-3 { left: 43%; top: 12%; }
.speedtest-gauge__scale-4 { right: 24%; top: 28%; }
.speedtest-gauge__scale-5 { right: 14%; bottom: 27%; }

.speedtest-result-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.speedtest-stat-card {
  min-height: 118px;
  padding: 18px 18px 16px;
}

.speedtest-stat-card strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 0.95;
}

.speedtest-stat-card small {
  display: block;
  margin-top: 8px;
  color: rgba(180, 194, 211, 0.72);
  font-size: 0.88rem;
}

.speedtest-stat-card--accent {
  background:
    radial-gradient(circle at 18% 20%, rgba(83, 255, 222, 0.17), transparent 35%),
    linear-gradient(180deg, rgba(12, 22, 35, 0.96), rgba(9, 12, 20, 0.98));
}

@keyframes speedtestPulse {
  0% { transform: scale(0.65); opacity: 0.18; }
  60% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.22); opacity: 0; }
}

@media (max-width: 1024px) {
  .speedtest-showcase__grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .speedtest-showcase {
    padding: 24px;
  }

  .speedtest-showcase__copy h3 {
    font-size: 1.9rem;
  }

  .speedtest-inline-grid,
  .speedtest-console__topline,
  .speedtest-result-grid {
    grid-template-columns: 1fr;
  }

  .speedtest-gauge {
    min-height: 300px;
  }

  .speedtest-gauge__scale {
    font-size: 0.8rem;
  }

  .speedtest-gauge__phase {
    bottom: 28px;
    width: calc(100% - 32px);
    text-align: center;
  }
}


@media (max-width: 1100px) {
  .support-contacts {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .support-contacts__visual {
    order: -1;
    min-height: 250px;
  }
}

@media (max-width: 780px) {
  .support-contacts {
    width: min(100%, calc(100% - 24px));
    padding: 22px 18px;
    gap: 20px;
    border-radius: 28px;
  }

  .support-contacts h3 {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
  }

  .support-link {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 16px;
  }

  .support-link__cta {
    grid-column: 1 / -1;
    width: 100%;
  }

  .support-contacts__icon-wrap {
    width: min(220px, 62vw);
  }

  .support-contacts__halo {
    width: 220px;
    height: 220px;
  }

  .support-contacts__glow {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 1100px) {
  .purchase-assist {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .purchase-assist__content {
    max-width: none;
  }

  .purchase-assist__visual {
    order: -1;
    min-height: 250px;
  }

  .purchase-assist__chat-badge {
    position: static;
    margin-top: -8px;
    justify-self: center;
  }
}

@media (max-width: 780px) {
  .purchase-assist {
    gap: 20px;
    padding: 22px 18px;
  }

  .purchase-assist p {
    font-size: 0.96rem;
  }

  .purchase-assist__meta span {
    width: 100%;
    justify-content: flex-start;
  }

  .purchase-assist .btn--telegram {
    width: 100%;
    min-width: 0;
  }

  .telegram-3d {
    width: min(180px, 52vw);
  }

  .telegram-spotlight__ring {
    width: 180px;
    height: 180px;
  }

  .purchase-assist__beam {
    width: 260px;
    height: 260px;
  }

  .purchase-assist__chat-badge {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .support-contacts__glow,
  .support-contacts__icon-wrap {
    animation: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .purchase-assist::after,
  .purchase-assist__beam,
  .telegram-spotlight__ring,
  .purchase-assist__chat-dot,
  .floating {
    animation: none !important;
  }

  .telegram-3d,
  .magnetic,
  [data-tilt] {
    transform: none !important;
  }
}
