:root {
  --bg: #050816;
  --bg-2: #0d1531;
  --bg-3: #160f24;
  --panel: rgba(9, 14, 33, 0.72);
  --panel-strong: rgba(12, 19, 44, 0.9);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(145, 178, 255, 0.18);
  --line-strong: rgba(151, 255, 223, 0.42);
  --text: #f5f8ff;
  --muted: #a0afd7;
  --accent: #69f7c1;
  --accent-2: #7ed0ff;
  --accent-3: #ff7a59;
  --accent-4: #f7cf5a;
  --danger: #ff6489;
  --success: #69f7c1;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 18px 40px rgba(0, 0, 0, 0.34);
  --shadow-md: 0 12px 24px rgba(0, 0, 0, 0.24);
  --container: 1220px;
  --section-pad: 104px;
  --section-pad-mobile: 72px;
  color-scheme: dark;
}

html[data-theme="light"] {
  --bg: #f3f7ff;
  --bg-2: #dcecff;
  --bg-3: #f8efe5;
  --panel: rgba(255, 255, 255, 0.74);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --panel-soft: rgba(8, 21, 57, 0.04);
  --line: rgba(18, 32, 78, 0.12);
  --line-strong: rgba(11, 105, 89, 0.3);
  --text: #08112b;
  --muted: #53617f;
  --accent: #0bc296;
  --accent-2: #1f7cf5;
  --accent-3: #ff6b3d;
  --accent-4: #e6b300;
  --danger: #e84770;
  --success: #0aab81;
  --shadow-xl: 0 30px 70px rgba(24, 53, 113, 0.18);
  --shadow-lg: 0 18px 32px rgba(24, 53, 113, 0.14);
  --shadow-md: 0 10px 20px rgba(24, 53, 113, 0.1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  font-family: "Jura", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 14%, rgba(126, 208, 255, 0.18), transparent 22%),
    radial-gradient(circle at 86% 18%, rgba(255, 122, 89, 0.18), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(105, 247, 193, 0.14), transparent 28%),
    linear-gradient(140deg, var(--bg) 0%, var(--bg-2) 46%, var(--bg-3) 100%);
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 82%);
  opacity: 0.38;
}

body::after {
  background:
    radial-gradient(circle at 20% 30%, rgba(105, 247, 193, 0.12), transparent 18%),
    radial-gradient(circle at 76% 64%, rgba(126, 208, 255, 0.12), transparent 20%);
  filter: blur(26px);
  opacity: 0.8;
}

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

button,
input,
summary {
  font: inherit;
}

button,
a,
summary,
[role="button"] {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

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

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

section[id],
#contacts {
  scroll-margin-top: 108px;
}

.muted {
  color: var(--muted);
  line-height: 1.7;
}

.h2,
.hero__text,
.brand__text,
.card__title,
.quick-contacts__title,
.team__name,
.faq__q,
.btn,
.nav__link,
.fact__value {
  font-family: "Russo One", sans-serif;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 12, 28, 0.62);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

html[data-theme="light"] .header__inner {
  background: rgba(255, 255, 255, 0.72);
}

.header__inner::before {
  content: "";
  position: absolute;
  inset: auto auto -80% -5%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(105, 247, 193, 0.18), transparent 70%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.brand__box {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #051018;
  background: linear-gradient(145deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 28px rgba(105, 247, 193, 0.32);
  font-size: 1.15rem;
}

.brand__text {
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.theme-toggle,
.burger {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel-soft);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.theme-toggle:hover,
.burger:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.theme-toggle__icon--moon {
  display: none;
}

html[data-theme="light"] .theme-toggle__icon--sun {
  display: none;
}

html[data-theme="light"] .theme-toggle__icon--moon {
  display: inline-flex;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.nav__link,
.nav__cta {
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav__link {
  color: var(--muted);
  transition: color 0.25s ease, background 0.25s ease;
}

.nav__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.btn--primary {
  background: linear-gradient(135deg, rgba(105, 247, 193, 0.92), rgba(247, 207, 90, 0.88));
  color: #061017;
  box-shadow: 0 10px 24px rgba(105, 247, 193, 0.14);
}

.btn--primary:hover {
  box-shadow: 0 14px 28px rgba(105, 247, 193, 0.2);
}

.btn--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.btn--whatsapp {
  border-color: rgba(37, 211, 102, 0.34);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.14), rgba(18, 94, 50, 0.24));
  color: #eafff1;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.1);
}

.btn--whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.54);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.22), rgba(18, 94, 50, 0.34));
  box-shadow: 0 14px 26px rgba(37, 211, 102, 0.16);
}

.btn--telegram {
  border-color: rgba(39, 168, 255, 0.34);
  background: linear-gradient(135deg, rgba(39, 168, 255, 0.20), rgba(16, 74, 140, 0.34));
  color: #eef8ff;
  box-shadow: 0 14px 30px rgba(39, 168, 255, 0.16);
}

.btn--telegram:hover {
  border-color: rgba(39, 168, 255, 0.54);
  background: linear-gradient(135deg, rgba(39, 168, 255, 0.30), rgba(16, 74, 140, 0.48));
  box-shadow: 0 18px 36px rgba(39, 168, 255, 0.24);
}

.btn--sm {
  min-height: 46px;
  padding-inline: 18px;
}

.header__vpn {
  min-width: 72px;
  padding-inline: 16px;
}

.hero {
  padding: 34px 0 24px;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 22px;
  align-items: stretch;
  position: relative;
}

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

.hero__inner::before {
  top: 40px;
  left: 20px;
  width: 72px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 18px rgba(105, 247, 193, 0.22);
}

.hero__inner::after {
  right: 20px;
  bottom: 10px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(126, 208, 255, 0.18);
  opacity: 0.35;
}

.hero__copy,
.hero__panel .panel,
.section .container,
.footer .container {
  position: relative;
}

.hero__copy {
  min-height: 620px;
  padding: 44px 38px 36px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015)),
    linear-gradient(180deg, rgba(7,12,30,0.76), rgba(7,12,30,0.92));
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

html[data-theme="light"] .hero__copy {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.84), rgba(255,255,255,0.58)),
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(239,245,255,0.92));
}

.hero__copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 16%, rgba(255, 122, 89, 0.10), transparent 18%),
    radial-gradient(circle at 18% 84%, rgba(105, 247, 193, 0.09), transparent 16%);
  pointer-events: none;
}

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

.hero__subline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--accent-2);
}

.hero__subline::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(105, 247, 193, 0.12);
}

.hero__text {
  margin: 0;
  font-size: clamp(3rem, 7.2vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  max-width: 7.6ch;
  color: #f8fbff;
  text-shadow: 0 0 10px rgba(126, 208, 255, 0.04);
}

.hero__lede {
  max-width: 44ch;
  margin: 20px 0 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #d4def7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  align-items: center;
}

.hero__actions .btn {
  min-height: 50px;
  padding-inline: 20px;
  border-radius: 18px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  flex: 0 0 auto;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.fact {
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  backdrop-filter: blur(16px);
}

.fact__value {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  color: var(--accent-4);
}

.fact__label {
  margin-top: 8px;
  color: #c4d0ea;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.hero__panel {
  display: flex;
}

.panel {
  width: 100%;
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(13, 20, 46, 0.84), rgba(8, 13, 30, 0.96)),
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

html[data-theme="light"] .panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 249, 255, 0.96)),
    linear-gradient(145deg, rgba(255,255,255,0.8), rgba(255,255,255,0.3));
}

.panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: calc(var(--radius-xl) - 10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.quick-contacts {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  min-height: 620px;
}

.quick-contacts__eyebrow,
.quick-contacts__kicker,
.team__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
}

.quick-contacts__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.quick-contacts__lead {
  margin: 0 0 6px;
  max-width: 38ch;
  color: #d1dcf6;
  font-size: 0.98rem;
  line-height: 1.6;
}

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

.quick-contacts__row .btn {
  min-height: 74px;
  padding-inline: 22px;
  border-radius: 24px;
}

.quick-contacts__cta--call {
  box-shadow: 0 18px 34px rgba(176, 255, 196, 0.18);
}

.quick-contacts__info {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.quick-contacts__line {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.quick-contacts__label {
  color: #bdd0ef;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.quick-contacts__value {
  color: #f2f7ff;
  font-size: 1.05rem;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 18px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  opacity: 0.7;
}

.section--alt::after {
  content: "";
  position: absolute;
  inset: 10% 5% auto auto;
  width: 280px;
  height: 280px;
  border-radius: 32px;
  border: 1px solid rgba(126, 208, 255, 0.12);
  transform: rotate(24deg);
  pointer-events: none;
}

.section .container {
  padding: 34px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(8, 13, 30, 0.48);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

html[data-theme="light"] .section .container {
  background: rgba(255, 255, 255, 0.7);
}

.h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section > .container > .muted,
.section .container > .muted {
  max-width: 56ch;
  margin: 14px 0 0;
}

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

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

.card {
  position: relative;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    rgba(7, 12, 30, 0.86);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

html[data-theme="light"] .card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,250,255,0.82)),
    rgba(255,255,255,0.92);
}

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

.card::before {
  inset: auto -18% -34% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.16;
}

.grid .card:nth-child(1)::before { background: var(--accent); }
.grid .card:nth-child(2)::before { background: var(--accent-2); }
.grid .card:nth-child(3)::before { background: var(--accent-3); }
.grid .card:nth-child(4)::before { background: var(--accent-4); }

.card::after {
  top: 16px;
  right: 16px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 60px;
  margin-bottom: 18px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
  font-family: "Russo One", sans-serif;
  font-size: 1.05rem;
}

.card__title {
  position: relative;
  z-index: 1;
  font-size: 1.48rem;
  line-height: 1.08;
  margin-bottom: 14px;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.list li::marker {
  color: var(--accent);
}

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

.team-slider {
  margin-top: 32px;
}

.team-slider__stage {
  position: relative;
  min-height: var(--team-stage-height, 580px);
  transition: min-height 0.3s ease;
}

.team-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.team-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.team__card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
  min-height: 580px;
  padding: 22px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: var(--shadow-lg);
}

.team__photo-wrap {
  position: relative;
  min-height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(126,208,255,0.16), rgba(255,122,89,0.12));
}

.team__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 16px 8px;
}

.team__name {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.team__role {
  color: var(--accent-4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

.team__desc {
  color: var(--muted);
  line-height: 1.8;
  max-width: 44ch;
}

.team-slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  position: relative;
  z-index: 3;
}

.team-slider__btn,
.team-slider__dot {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.team-slider__btn {
  min-height: 52px;
  padding: 12px 18px;
  border-radius: 18px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.team-slider__btn:hover,
.team-slider__dot:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.team-slider__dots {
  display: flex;
  gap: 10px;
}

.team-slider__dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
}

.team-slider__dot.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  box-shadow: 0 0 0 6px rgba(105, 247, 193, 0.12);
}

.faq {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 22px 58px 22px 22px;
  position: relative;
  font-size: 1.04rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--accent);
}

.faq__item[open] .faq__q::after {
  content: "−";
}

.faq__a {
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.75;
}

.footer {
  padding: 0 0 42px;
}

.footer .container {
  padding: 28px 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(8, 13, 30, 0.56);
  backdrop-filter: blur(16px);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@media (max-width: 1100px) {
  .hero__inner,
  .team__card,
  .grid--4,
  .why {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero__copy,
  .quick-contacts {
    min-height: auto;
  }

  .team-slider__stage {
    min-height: 720px;
  }

  .team__card {
    min-height: 720px;
  }
}

@media (max-width: 860px) {
  body::before,
  body::after,
  .header__inner::before,
  .hero__inner::before,
  .hero__inner::after,
  .hero__copy::before,
  .panel::before,
  .section::before,
  .section--alt::after,
  .card::before,
  .card::after {
    display: none;
  }

  .header {
    position: static;
  }

  .header__inner {
    border-radius: 28px;
    align-items: center;
    padding: 14px 16px;
    backdrop-filter: none;
    overflow: visible;
  }

  .header__right {
    position: static;
  }

  .burger {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 12px;
    left: 12px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    background: var(--panel-strong);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 20;
  }

  .nav__link,
  .nav__cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero {
    padding-top: 18px;
  }

  .hero__copy,
  .panel {
    border-radius: 28px;
    backdrop-filter: none;
    box-shadow: var(--shadow-md);
  }

  .hero__copy {
    min-height: auto;
    padding: 28px 22px 24px;
  }

  .hero__text {
    max-width: none;
    font-size: clamp(3.3rem, 16vw, 5.4rem);
  }

  .hero__lede {
    font-size: 1rem;
    margin-top: 20px;
  }

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

  .header.is-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .grid,
  .grid--4,
  .why,
  .hero__facts,
  .team__card {
    grid-template-columns: 1fr;
  }

  .team-slider__controls {
    flex-wrap: wrap;
    justify-content: center;
  }

  .team-slider__stage,
  .team__card {
    min-height: auto;
  }

  .team-slider__stage {
    min-height: 0;
  }

  .team-slide {
    position: relative;
    inset: auto;
    display: none;
    opacity: 1;
    pointer-events: none;
    transform: none;
    transition: none;
  }

  .team-slide.is-active {
    display: block;
    pointer-events: auto;
  }

  .team__card {
    gap: 16px;
  }

  .team__photo-wrap {
    min-height: 340px;
  }

  .team__content {
    padding: 4px 0 0;
  }

  .section .container {
    padding: 24px 20px;
    backdrop-filter: none;
  }
}

@media (min-width: 861px) {
  .burger {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .header {
    padding-top: 8px;
  }

  .header__inner,
  .hero__copy,
  .panel,
  .section .container,
  .footer .container {
    padding: 16px;
  }

  .header__inner {
    gap: 10px;
    border-radius: 22px;
  }

  .nav {
    border-radius: 20px;
    padding: 10px;
  }

  .nav__link,
  .nav__cta {
    min-height: 48px;
  }

  .brand {
    gap: 10px;
  }

  .brand__box {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand__text {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
  }

  .header__right {
    gap: 10px;
  }

  .header__vpn {
    min-width: 64px;
    padding-inline: 14px;
  }

  .hero__text {
    font-size: clamp(2.7rem, 17vw, 4.2rem);
    line-height: 0.92;
  }

  .hero__copy,
  .panel,
  .section .container,
  .footer .container,
  .card,
  .faq__item,
  .team__card {
    box-shadow: none;
  }

  .hero__subline,
  .quick-contacts__kicker,
  .team__kicker {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    padding: 8px 12px;
  }

  .hero__lede {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero__facts {
    gap: 10px;
    margin-top: 24px;
  }

  .fact {
    padding: 16px 14px;
    border-radius: 18px;
  }

  .quick-contacts {
    gap: 18px;
    min-height: auto;
  }

  .quick-contacts__eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .quick-contacts__title {
    font-size: clamp(1.8rem, 9vw, 2.3rem);
  }

  .quick-contacts__lead {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .quick-contacts__row {
    grid-template-columns: 1fr;
  }

  .quick-contacts__row .btn {
    min-height: 62px;
    border-radius: 22px;
  }

  .btn,
  .team-slider__btn {
    width: 100%;
    min-height: 50px;
  }

  .quick-contacts__row,
  .team-slider__controls {
    display: grid;
    width: 100%;
  }

  .team-slider__controls {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
  }

  .team-slider__dots {
    grid-column: 1 / -1;
    order: -1;
    min-height: 24px;
  }

  .theme-toggle,
  .burger {
    width: 44px;
    height: 44px;
  }

  .section {
    padding: var(--section-pad-mobile) 0;
  }

  .h2 {
    font-size: clamp(1.9rem, 11vw, 2.5rem);
  }

  .card {
    padding: 18px;
    border-radius: 22px;
  }

  .card:hover {
    transform: none;
    box-shadow: none;
  }

  .card__title {
    font-size: 1.2rem;
  }

  .team-slider__stage,
  .team__card {
    min-height: auto;
  }

  .team__photo-wrap {
    min-height: 280px;
  }

  .team__photo {
    object-fit: contain;
    background: rgba(4, 10, 24, 0.58);
  }

  .team-slider__btn:hover,
  .team-slider__dot:hover,
  .btn:hover,
  .theme-toggle:hover,
  .burger:hover {
    transform: none;
  }

  .team__name {
    font-size: clamp(1.7rem, 10vw, 2.5rem);
  }

  .team__role {
    font-size: 0.78rem;
  }

  .team__desc {
    line-height: 1.65;
  }

  .team-slider__dots {
    justify-content: center;
  }

  .faq__q {
    padding: 18px 50px 18px 18px;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .faq__a {
    padding: 0 18px 18px;
    line-height: 1.65;
  }

  .team-slider__stage,
  .team__card {
    min-height: auto;
  }
}
