:root {
  --font: "Inter Tight", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Unbounded", var(--font);
  --bg: #000;
  --w95: rgba(255, 255, 255, .95);
  --w80: rgba(255, 255, 255, .8);
  --w75: rgba(255, 255, 255, .75);
  --w60: rgba(255, 255, 255, .6);
  --w50: rgba(255, 255, 255, .5);
  --w40: rgba(255, 255, 255, .4);
  --w30: rgba(255, 255, 255, .3);
  --w16: rgba(255, 255, 255, .16);
  --w12: rgba(255, 255, 255, .12);
  --w10: rgba(255, 255, 255, .1);
  --w08: rgba(255, 255, 255, .08);
  --w06: rgba(255, 255, 255, .06);
  --w04: rgba(255, 255, 255, .04);
  --w03: rgba(255, 255, 255, .03);
  --green: #4ade80;
  --green-soft: #6ee698;
  --gold: #c8a44e;
  --bi: #424242;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--w80);
  font-family: var(--font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

/* Match the main 1Ex desktop scale on standard non-2K displays. */
@media (min-width: 1280px) and (max-width: 2199px) {
  body {
    zoom: .75;
  }
}

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

button {
  font: inherit;
}

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

.page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, .035), transparent 34rem),
    #000;
}

.container {
  position: relative;
  z-index: 2;
  width: 1328px;
  max-width: calc(100% - 50px);
  margin: 0 auto;
}

.dots-bg {
  position: absolute;
  top: -340px;
  left: 50%;
  width: 1420px;
  height: 892px;
  transform: translateX(-50%);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.glow-top {
  position: absolute;
  top: 0;
  left: 50%;
  width: 984px;
  height: 492px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center top, rgba(255, 255, 255, .035), transparent 70%);
  pointer-events: none;
}

.deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.deco-1 {
  top: 116px;
  right: -205px;
  width: 480px;
}

.deco-2 {
  top: 1030px;
  left: -235px;
  width: 520px;
  transform: scaleX(-1);
  opacity: .82;
}

.deco-3 {
  top: 2860px;
  right: -210px;
  width: 430px;
  opacity: .72;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 21px 0;
  background: transparent;
  transition: background .3s, backdrop-filter .3s, padding .3s;
  font-family: var(--display);
}

.header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .06) 20%, rgba(255, 255, 255, .06) 80%, transparent);
  opacity: 0;
  transition: opacity .3s;
}

.header.scrolled,
.header.menu-active {
  padding: 16px 0;
  background: rgba(10, 10, 10, .85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.header.scrolled::after,
.header.menu-active::after {
  opacity: 1;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-right {
  gap: 10px;
}

.logo {
  width: 78px;
  height: 36px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav a {
  padding: 10px 18px;
  border-radius: 13px;
  color: rgba(255, 255, 255, .55);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -.2px;
  transition: color .2s, background .2s;
}

.nav a:hover {
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .05);
}

.bc-promo {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid rgba(80, 200, 120, .15);
  border-radius: 12px;
  background: rgba(40, 100, 60, .15);
  transition: background .25s, border-color .25s, transform .15s;
}

.bc-promo:hover {
  transform: translateY(-1px);
  background: rgba(40, 100, 60, .25);
  border-color: rgba(80, 200, 120, .3);
}

.bc-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(80, 200, 120, .22), transparent 70%);
  pointer-events: none;
}

.bc-text {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  white-space: nowrap;
}

.bc-text b {
  color: rgba(255, 255, 255, .92);
  font-weight: 600;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 20px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .9);
  color: #000;
  font-size: 14px;
  font-weight: 500;
  transition: background .2s, transform .15s;
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #fff;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--w10);
  border-radius: 12px;
  background: var(--w06);
  cursor: pointer;
}

.burger span {
  width: 18px;
  height: 2px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .78);
  transition: transform .25s, opacity .25s;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  z-index: 1;
  padding-top: 140px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 49px;
  align-items: stretch;
}

.hero-banner {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 418px;
  align-items: center;
  gap: 42px;
  padding: 74px 54px;
  background: #0a0a0a;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .58;
  filter: saturate(.82) contrast(1.08) brightness(.8);
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .62) 45%, rgba(0, 0, 0, .78) 100%),
    radial-gradient(circle at 72% 34%, rgba(74, 222, 128, .12), transparent 22rem);
  pointer-events: none;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px;
  pointer-events: none;
}

.hero-copy,
.vpn-console {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  color: #fff;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .5);
}

.hero-sub {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .75);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 595px;
  margin-top: 38px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 0 28px;
  border-radius: 20px;
  font-size: 23px;
  font-weight: 500;
  transition: transform .25s, background .25s, border-color .25s, box-shadow .25s;
}

.btn-hero--primary {
  background: var(--w80);
  color: #000;
}

.btn-hero--primary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 32px rgba(255, 255, 255, .12);
}

.btn-hero--outline {
  border: 1px solid var(--w10);
  background: var(--w06);
  color: var(--w75);
}

.btn-hero--outline:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .1);
}

.vpn-console {
  min-height: 484px;
  padding: 28px;
  border: 1px solid var(--w10);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .35);
}

.console-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.console-label,
.console-stat span,
.cabinet-list span {
  display: block;
  color: var(--w40);
  font-size: 13px;
  line-height: 1.2;
}

.console-head strong {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-size: 23px;
  line-height: 1.12;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(80, 200, 120, .18);
  border-radius: 100px;
  background: rgba(80, 200, 120, .12);
  color: rgba(215, 255, 226, .9);
  font-family: var(--display);
  font-size: 11px;
  white-space: nowrap;
}

.live-pill i,
.support-online i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(74, 222, 128, .08);
}

.shield-orbit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 182px;
  height: 182px;
  margin: 42px auto 34px;
  border: 1px solid var(--w08);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(74, 222, 128, .12), transparent 62%),
    rgba(255, 255, 255, .025);
}

.shield-orbit::before,
.shield-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.shield-orbit::before {
  inset: -22px;
}

.shield-orbit::after {
  inset: 28px;
  border-color: rgba(74, 222, 128, .16);
}

.shield-orbit svg {
  position: relative;
  z-index: 1;
  width: 110px;
  height: 110px;
}

.route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--w08);
  border-radius: 16px;
  background: rgba(0, 0, 0, .24);
}

.route span {
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  font-weight: 600;
}

.route b {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(74, 222, 128, .2), rgba(74, 222, 128, .8));
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.console-stat {
  min-height: 116px;
  padding: 17px 16px;
  border: 1px solid var(--w08);
  border-radius: 16px;
  background: rgba(255, 255, 255, .035);
}

.console-stat strong {
  display: block;
  margin-top: 9px;
  color: #fff;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.18;
  text-transform: none;
}

.console-stat p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .42);
  font-size: 13px;
  line-height: 1.32;
}

.hero-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mini-card,
.adv-card,
.service-card,
.faq-list details {
  position: relative;
  border: 1px solid var(--w08);
  border-radius: 20px;
  background: rgba(255, 255, 255, .02);
  transition: transform .35s, border-color .35s, background .35s, box-shadow .35s;
  overflow: hidden;
}

.mini-card {
  min-height: 205px;
  padding: 34px 32px;
}

.mini-card::before,
.adv-card::before,
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  width: 48px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: rgba(255, 255, 255, .15);
}

.mini-card:hover,
.adv-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .03);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .3);
}

.mini-card__num {
  display: block;
  color: rgba(255, 255, 255, .16);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 2px;
}

.mini-card h2,
.adv-card h3,
.service-card h3 {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.mini-card p,
.adv-card p,
.service-card p,
.faq-list p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .45);
  font-size: 15px;
  line-height: 1.6;
}

.banner-section {
  position: relative;
  z-index: 1;
  margin-top: 180px;
}

.vpn-banner {
  position: relative;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  padding: 34px 48px;
  border: 1px solid rgba(80, 200, 120, .15);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15, 45, 25, .7) 0%, rgba(10, 10, 10, .85) 45%, rgba(8, 8, 8, .9) 100%);
  transition: border-color .3s, transform .25s, box-shadow .3s;
}

.vpn-banner:hover {
  transform: translateY(-3px);
  border-color: rgba(80, 200, 120, .35);
  box-shadow: 0 12px 48px rgba(80, 200, 120, .1), 0 4px 16px rgba(0, 0, 0, .4);
}

.vpn-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(80, 200, 120, .06), transparent 42%, rgba(80, 200, 120, .03));
  pointer-events: none;
}

.banner-glow-inner {
  position: absolute;
  top: -40px;
  left: -10px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(80, 200, 120, .1), transparent 60%);
  pointer-events: none;
}

.banner-text,
.banner-cta {
  position: relative;
  z-index: 1;
}

.banner-text .bold,
.banner-text .light {
  display: block;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.3px;
}

.banner-text .light {
  margin-top: 8px;
  color: rgba(255, 255, 255, .58);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}

.banner-text em {
  color: var(--green-soft);
  font-style: normal;
}

.banner-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 182px;
  height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  color: #000;
  font-size: 15px;
  font-weight: 700;
}

.section {
  position: relative;
  z-index: 1;
  padding-top: 164px;
}

.section-head,
.adv-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 52px;
}

.s-title {
  margin: 0;
  color: rgba(255, 255, 255, .95);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}

.s-desc {
  max-width: 650px;
  margin: 33px 0 0;
  color: var(--w60);
  font-size: 23px;
  line-height: 1.25;
}

#benefits .s-desc,
#benefits .adv-card p {
  display: none;
}

#benefits .adv-card {
  min-height: auto;
}

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

.step {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  padding: 44px;
  border: 1px solid var(--w10);
  border-radius: 24px;
  background: rgba(0, 0, 0, .15);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  transition: border-color .3s, background .3s, transform .4s;
}

.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 44px;
  width: 48px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: rgba(255, 255, 255, .15);
}

.step:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, .2);
  background: rgba(0, 0, 0, .25);
}

.step-num {
  color: rgba(255, 255, 255, .15);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 2px;
}

.step-title {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.step-desc {
  margin: 0;
  color: rgba(255, 255, 255, .42);
  font-size: 18px;
  line-height: 1.65;
}

.step-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  margin-top: auto;
  border-radius: 14px;
  background: rgba(255, 255, 255, .9);
  color: #000;
  font-size: 15px;
  font-weight: 600;
  transition: background .2s, transform .15s;
}

.step-btn:hover {
  transform: translateY(-2px);
  background: #fff;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.adv-card {
  min-height: 270px;
  padding: 36px 32px;
}

.adv-card:nth-child(4) {
  grid-column: 1 / 2;
}

.adv-card:nth-child(5) {
  grid-column: 2 / 4;
}

.ic-wrap {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: transform .3s;
}

.adv-card:hover .ic-wrap {
  transform: scale(1.08);
}

.ic {
  width: 64px;
  height: 64px;
}

.ic path,
.ic rect,
.ic circle {
  fill: none;
  stroke: rgba(255, 255, 255, .72);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.adv-btns,
.support-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 580px;
  margin: 52px auto 0;
}

.btn-exchange {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 240px;
  height: 92px;
  padding: 0 32px;
  border: 0;
  border-radius: 20px;
  font-family: var(--font);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: .3px;
  cursor: pointer;
  transition: transform .25s, background .25s, border-color .25s, box-shadow .25s;
}

.btn-exchange--primary {
  background: var(--w80);
  color: #000;
}

.btn-exchange--primary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 8px 32px rgba(255, 255, 255, .12);
}

.btn-exchange--outline {
  border: 1px solid var(--w10);
  background: var(--w06);
  color: var(--w75);
}

.btn-exchange--outline:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .1);
}

.cabinet-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 72px;
  align-items: center;
  min-height: 590px;
  padding: 56px;
  overflow: hidden;
  border: 1px solid var(--w08);
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 12% 50%, rgba(200, 164, 78, .075), transparent 54%),
    linear-gradient(135deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012));
}

.cabinet-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.cabinet-list div {
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--w08);
  border-radius: 16px;
  background: rgba(0, 0, 0, .2);
}

.cabinet-list strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
}

.phone-wrap {
  position: relative;
  width: 292px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 34px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 26px 78px rgba(0, 0, 0, .55);
}

.phone-wrap::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 26px;
  pointer-events: none;
}

.phone-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 34px;
  opacity: .96;
  filter: brightness(.92) saturate(.96);
}

.phone-status {
  position: absolute;
  right: -42px;
  bottom: 64px;
  z-index: 2;
  width: 232px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(10, 10, 10, .82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.phone-status strong {
  display: block;
  margin-top: 16px;
  color: #fff;
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.25;
}

.phone-status p {
  margin: 7px 0 0;
  color: var(--w50);
  font-size: 14px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.service-card {
  min-height: 240px;
  padding: 36px 32px;
}

.service-card h3 {
  margin-top: 26px;
  font-size: 28px;
  font-weight: 700;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 16px;
  margin-top: 52px;
}

.faq-list details {
  padding: 0;
  align-self: start;
}

.faq-list summary {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 32px;
  color: rgba(255, 255, 255, .9);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255, 255, 255, .45);
  border-bottom: 2px solid rgba(255, 255, 255, .45);
  transform: rotate(45deg) translateY(-4px);
  transition: transform .25s;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg) translateY(-2px);
}

.faq-list p {
  margin: -6px 32px 30px;
  font-size: 16px;
}

.support-cta {
  position: relative;
  z-index: 1;
  padding-top: 164px;
}

.support-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  gap: 44px;
  align-items: center;
  min-height: 360px;
  padding: 52px;
  overflow: hidden;
  border: 1px solid var(--w10);
  border-radius: 36px;
  background:
    radial-gradient(circle at 86% 30%, rgba(74, 222, 128, .12), transparent 22rem),
    rgba(255, 255, 255, .03);
}

.support-online {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(80, 200, 120, .18);
  border-radius: 100px;
  background: rgba(80, 200, 120, .12);
  color: rgba(215, 255, 226, .9);
  font-family: var(--display);
  font-size: 11px;
}

.support-card h2 {
  margin: 22px 0 0;
  color: #fff;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.support-card p {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--w60);
  font-size: 20px;
  line-height: 1.45;
}

.support-actions {
  justify-content: flex-start;
  margin: 0;
  max-width: none;
}

.footer {
  position: relative;
  z-index: 1;
  padding: 66px 0;
  color: rgba(255, 255, 255, .42);
}

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

.ft-logo {
  width: 69px;
  height: 32px;
  object-fit: contain;
}

.footer p {
  margin: 0;
  font-size: 14px;
}

.footer a {
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy,
.vpn-console,
.mini-card,
.vpn-banner,
.step,
.adv-card,
.cabinet-card,
.service-card,
.faq-list details,
.support-card {
  animation: fadeUp .7s var(--ease) both;
}

.mini-card:nth-child(2),
.step:nth-child(2),
.adv-card:nth-child(2),
.service-card:nth-child(2) {
  animation-delay: .06s;
}

.mini-card:nth-child(3),
.step:nth-child(3),
.adv-card:nth-child(3),
.service-card:nth-child(3) {
  animation-delay: .12s;
}

@media (max-width: 1400px) {
  .container {
    width: 1160px;
  }

  .hero-banner {
    grid-template-columns: minmax(0, 1fr) 390px;
  }
}

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

  .vpn-console {
    max-width: 520px;
  }

  .hero-info-grid,
  .steps,
  .adv-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .adv-card:nth-child(4),
  .adv-card:nth-child(5) {
    grid-column: auto;
  }

  .cabinet-card,
  .support-card {
    grid-template-columns: 1fr;
  }

  .phone-wrap {
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .container {
    max-width: calc(100% - 32px);
  }

  .nav,
  .bc-promo,
  .header-cta,
  .deco,
  .dots-bg {
    display: none;
  }

  .header {
    padding: 16px 0;
  }

  .logo {
    width: 60px;
    height: 28px;
  }

  .burger {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    top: 60px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--w10);
    border-radius: 18px;
    background: rgba(10, 10, 10, .94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .25s, transform .25s;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 14px 16px;
    border-radius: 12px;
    background: var(--w04);
    color: var(--w75);
    font-size: 15px;
  }

  .hero {
    padding-top: 90px;
  }

  .hero-inner {
    gap: 20px;
  }

  .hero-banner {
    min-height: auto;
    padding: 42px 18px 22px;
    border-radius: 18px;
    gap: 28px;
  }

  .hero-banner::after {
    border-radius: 18px;
  }

  .hero h1,
  .s-title,
  .support-card h2 {
    font-size: 32px;
    letter-spacing: -.7px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .btn-hero,
  .btn-exchange {
    min-height: 54px;
    height: auto;
    padding: 16px 24px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
  }

  .vpn-console {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: auto;
    padding: 20px;
    border-radius: 18px;
  }

  .console-head {
    align-items: flex-start;
  }

  .console-head strong {
    font-size: 19px;
  }

  .shield-orbit {
    width: 146px;
    height: 146px;
    margin: 34px auto 28px;
  }

  .route {
    flex-wrap: wrap;
  }

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

  .mini-card,
  .step,
  .adv-card,
  .service-card,
  .cabinet-card,
  .support-card {
    padding: 28px 22px;
    border-radius: 18px;
  }

  #benefits .adv-card {
    min-height: auto;
    padding: 28px 22px;
    gap: 18px;
  }

  .banner-section,
  .section,
  .support-cta {
    margin-top: 0;
    padding-top: 80px;
  }

  .vpn-banner {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding: 28px 22px;
    border-radius: 18px;
  }

  .banner-text .bold {
    font-size: 24px;
  }

  .banner-text .light {
    font-size: 15px;
    line-height: 1.45;
  }

  .banner-cta {
    width: 100%;
  }

  .section-head,
  .adv-header {
    display: block;
    margin-bottom: 32px;
  }

  .s-desc {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.45;
  }

  .step {
    min-height: auto;
  }

  .step-title {
    font-size: 22px;
  }

  .step-desc {
    font-size: 16px;
  }

  .adv-btns,
  .support-actions {
    margin-top: 32px;
  }

  .cabinet-list {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .phone-wrap {
    width: min(100%, 292px);
  }

  .phone-status {
    right: 12px;
    bottom: 30px;
    width: calc(100% - 24px);
  }

  .faq-list {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .faq-list summary {
    min-height: 74px;
    padding: 22px;
    font-size: 17px;
  }

  .faq-list p {
    margin: -4px 22px 24px;
  }

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

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

@media (max-width: 400px) {
  .hero h1,
  .s-title,
  .support-card h2 {
    font-size: 22px;
    letter-spacing: 0;
  }

  .hero-sub,
  .s-desc {
    font-size: 15px;
  }

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

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