:root {
  --vpn-blue: #4f7fe5;
  --vpn-blue-strong: #315fbf;
  --vpn-ink: #172641;
  --vpn-muted: #61769a;
  --vpn-line: #d7e5fa;
  --vpn-card: rgba(255, 255, 255, 0.9);
}

body.vpn-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.96), transparent 30%),
    radial-gradient(circle at 86% 10%, rgba(87, 139, 232, 0.18), transparent 30%),
    linear-gradient(180deg, #f5f9ff 0%, #edf5ff 48%, #f8fbff 100%);
}

body.vpn-page .nav-link-icon {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 13px;
  border: 1px solid #c6d9f7;
  background: #f7fbff;
  color: #355886;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.mobile-menu-toggle span:nth-child(1) {
  top: calc(50% - 5px);
}

.mobile-menu-toggle span:nth-child(3) {
  top: calc(50% + 5px);
}

.header-wrap.is-mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

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

.header-wrap.is-mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.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;
}

.vpn-main {
  width: var(--wrap);
  margin: 22px auto 0;
  padding-bottom: 34px;
}

.vpn-hero {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(213, 227, 248, 0.92);
  border-radius: 28px;
  background:
    radial-gradient(circle at 74% 44%, rgba(89, 140, 226, 0.17), transparent 34%),
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.96), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.94));
  box-shadow:
    0 30px 78px rgba(55, 94, 156, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.vpn-hero-copy {
  min-width: 0;
}

.vpn-kicker {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #d4e4fb;
  border-radius: 999px;
  color: #315fbf;
  background: rgba(239, 246, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 900;
}

.vpn-kicker svg,
.vpn-feature-icon svg,
.vpn-step-icon svg,
.vpn-tunnel-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vpn-kicker svg {
  width: 16px;
  height: 16px;
}

.vpn-hero h1 {
  max-width: 650px;
  margin: 18px 0 14px;
  color: var(--vpn-ink);
  font-family: "Manrope", "Sora", sans-serif;
  font-size: 3rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.vpn-hero-accent {
  color: #315fbf;
}

.vpn-hero-subtitle {
  max-width: 660px;
  margin: 0;
  color: #506992;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 700;
}

.vpn-hero-text {
  max-width: 610px;
  margin: 18px 0 0;
  color: #6b7f9f;
  font-size: 0.98rem;
  line-height: 1.65;
  font-weight: 600;
}

.vpn-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.vpn-feature-pill {
  min-width: 0;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  color: #687a99;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}

.vpn-feature-icon,
.vpn-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--vpn-blue-strong);
  background: #edf4ff;
  border: 1px solid #d3e2fb;
}

.vpn-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  padding: 10px;
  background: #e2ecfc;
  border: 0;
  box-shadow: 0 12px 24px rgba(49, 95, 191, 0.08);
}

.vpn-feature-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 2.05;
}

.vpn-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.vpn-actions .btn {
  min-height: 50px;
  padding-inline: 22px;
}

.vpn-dashboard {
  position: relative;
  min-height: 430px;
  border: 1px solid #d2e1f7;
  border-radius: 26px;
  padding: 16px;
  background:
    radial-gradient(circle at 82% 16%, rgba(90, 143, 232, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.94));
  box-shadow: 0 28px 74px rgba(42, 74, 126, 0.16);
  overflow: hidden;
}

.vpn-dashboard-shell {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 420px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  border: 1px solid #dbe8fb;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.vpn-dashboard-side {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px 14px;
  border-right: 1px solid #e1ecfb;
  background: rgba(247, 251, 255, 0.9);
}

.vpn-dashboard-dot,
.vpn-dashboard-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
}

.vpn-dashboard-dot {
  width: 34px;
  height: 34px;
  color: #315fbf;
  background: #edf4ff;
  border: 1px solid #d3e2fb;
}

.vpn-dashboard-nav {
  width: 40px;
  height: 40px;
  color: #7490bb;
}

.vpn-dashboard-nav.is-active {
  color: #315fbf;
  background: #eaf2ff;
}

.vpn-dashboard-nav svg,
.vpn-dashboard-dot svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vpn-dashboard-content {
  min-width: 0;
  padding: clamp(20px, 2.5vw, 30px);
}

.vpn-dashboard-title {
  margin: 0 0 20px;
  color: #172641;
  font-size: 1.18rem;
  line-height: 1.2;
  font-weight: 900;
}

.vpn-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(220px, 1.05fr);
  gap: 16px;
}

.vpn-status-card,
.vpn-map-card,
.vpn-mini-card {
  border: 1px solid #d9e7fb;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(53, 89, 150, 0.07);
}

.vpn-status-card {
  padding: 18px 18px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.9));
}

.vpn-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.vpn-status-head strong,
.vpn-map-card strong,
.vpn-mini-card strong {
  color: #1d3152;
  font-size: 0.9rem;
  font-weight: 900;
}

.vpn-status-head strong {
  max-width: 130px;
  line-height: 1.25;
}

.vpn-power {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(140deg, #5a8fec, #315fbf);
  box-shadow: 0 12px 24px rgba(49, 95, 191, 0.25);
}

.vpn-status-ok {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #238253;
  background: #eaf8ef;
  border: 1px solid #c6ead4;
  font-size: 0.82rem;
  font-weight: 900;
}

.vpn-status-ok::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #2f9f68;
  box-shadow: 0 0 0 5px rgba(47, 159, 104, 0.14);
}

.vpn-status-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: #5f7397;
  font-size: 0.84rem;
  font-weight: 800;
}

.vpn-status-list span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-height: 30px;
  padding: 6px 8px;
  border-radius: 10px;
  background: rgba(239, 246, 255, 0.62);
}

.vpn-status-list strong {
  color: #244675;
  text-align: right;
}

.vpn-map-card {
  position: relative;
  min-height: 242px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 20px;
  background:
    radial-gradient(circle at 50% 45%, rgba(47, 159, 104, 0.11), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(242, 247, 255, 0.9));
  overflow: hidden;
}

.vpn-map-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  height: 132px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 31% 48%, rgba(49, 95, 191, 0.82) 0 5px, rgba(49, 95, 191, 0.2) 6px 12px, transparent 13px),
    radial-gradient(circle at 64% 34%, rgba(49, 95, 191, 0.62) 0 4px, rgba(49, 95, 191, 0.16) 5px 11px, transparent 12px),
    radial-gradient(circle at 50% 72%, rgba(47, 159, 104, 0.42) 0 5px, rgba(47, 159, 104, 0.12) 6px 14px, transparent 15px),
    linear-gradient(115deg, transparent 0 34%, rgba(78, 122, 207, 0.11) 35% 38%, transparent 39% 100%),
    linear-gradient(25deg, transparent 0 42%, rgba(78, 122, 207, 0.1) 43% 46%, transparent 47% 100%),
    radial-gradient(ellipse at center, rgba(79, 127, 229, 0.16), rgba(79, 127, 229, 0.05) 55%, transparent 70%);
  border: 1px solid rgba(217, 231, 251, 0.78);
  opacity: 0.95;
}

.vpn-map-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 75px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #315fbf;
  box-shadow:
    0 0 0 6px rgba(49, 95, 191, 0.14),
    0 14px 28px rgba(49, 95, 191, 0.18);
  transform: translateX(-50%);
}

.vpn-map-card strong,
.vpn-map-card p {
  position: relative;
  z-index: 1;
}

.vpn-map-card p,
.vpn-mini-body > span {
  margin: 0;
  color: #63789b;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.vpn-dashboard-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.vpn-mini-card {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  padding: 11px 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.9));
}

.vpn-mini-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #315fbf;
  background: #eaf2ff;
  border: 1px solid #d6e5fb;
}

.vpn-mini-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vpn-mini-body {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.vpn-section {
  margin-top: clamp(42px, 6vw, 72px);
}

.vpn-section-head {
  max-width: 760px;
  margin: 0 auto 22px;
  text-align: center;
}

.vpn-section-head h2,
.vpn-tech-copy h2,
.vpn-final-copy h2 {
  margin: 0;
  color: #172641;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 2.05rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.vpn-section-head p {
  margin: 10px auto 0;
  color: var(--vpn-muted);
  line-height: 1.65;
  font-weight: 650;
}

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

.vpn-benefit-card,
.vpn-device-card,
.vpn-step-card,
.vpn-audience-card {
  min-width: 0;
  border: 1px solid var(--vpn-line);
  border-radius: 20px;
  background: var(--vpn-card);
  box-shadow: 0 14px 32px rgba(53, 89, 150, 0.08);
}

.vpn-benefit-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 178px;
  padding: 20px;
}

.vpn-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: -1px 0 0 -3px;
}

.vpn-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  opacity: 0.82;
  filter: saturate(0.72) brightness(1.08) contrast(0.92);
}

.vpn-benefit-body {
  min-width: 0;
  display: grid;
  gap: 14px;
}

.vpn-benefit-card h3,
.vpn-device-card h3,
.vpn-step-card h3,
.vpn-audience-card h3 {
  margin: 0;
  color: #20314e;
  font-size: 1rem;
  line-height: 1.32;
  font-weight: 900;
}

.vpn-benefit-card p,
.vpn-device-card p,
.vpn-step-card p,
.vpn-audience-card p,
.vpn-tech-copy p {
  margin: 0;
  color: var(--vpn-muted);
  line-height: 1.58;
  font-size: 0.93rem;
  font-weight: 650;
}

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

.vpn-device-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 178px;
  padding: 24px 14px 22px;
  text-align: center;
}

.vpn-device-icon {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.vpn-device-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  opacity: 0.88;
  filter: saturate(0.82) contrast(0.96);
}

.vpn-device-icon--windows img {
  width: 82%;
  height: 82%;
}

.vpn-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.vpn-step-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  padding: 20px;
}

.vpn-step-head {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.vpn-step-number {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(140deg, #5a8fec, #315fbf);
  box-shadow: 0 10px 22px rgba(49, 95, 191, 0.2);
  font-weight: 900;
}

.vpn-step-visual {
  position: relative;
  min-height: 268px;
  overflow: hidden;
  border: 1px solid #dce9fc;
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 18%, rgba(79, 127, 229, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.95));
}

.vpn-step-card h3 {
  align-self: center;
}

.vpn-step-ui {
  position: absolute;
  inset: 18px;
  display: grid;
  color: #244675;
  font-size: 0.72rem;
  font-weight: 800;
}

.vpn-step-dashboard {
  grid-template-columns: 46px minmax(0, 1fr);
  border: 1px solid #e0ebfb;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(53, 89, 150, 0.06);
}

.vpn-step-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px 10px;
  border-right: 1px solid #e3eefb;
  background: rgba(246, 250, 255, 0.82);
}

.vpn-step-side-dot,
.vpn-step-side-line {
  border-radius: 999px;
  background: #dce9fc;
}

.vpn-step-side-dot {
  width: 18px;
  height: 18px;
}

.vpn-step-side-line {
  width: 26px;
  height: 8px;
}

.vpn-step-side-line.is-active {
  background: #cfe0fb;
  box-shadow: inset 3px 0 0 #315fbf;
}

.vpn-step-side-label {
  width: 28px;
  height: 7px;
  border-radius: 999px;
  background: #dce9fc;
  opacity: 0.78;
}

.vpn-step-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px;
}

.vpn-step-panel strong {
  display: block;
  color: #1d3152;
  font-size: 0.86rem;
  font-weight: 900;
}

.vpn-step-status-chip {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid #cfeedd;
  border-radius: 999px;
  background: #ecfbf2;
  color: #16804d;
  font-size: 0.68rem;
  font-weight: 900;
}

.vpn-step-status-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #39bd73;
  box-shadow: 0 0 0 5px rgba(57, 189, 115, 0.12);
}

.vpn-step-dashboard-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(58px, 0.42fr);
  gap: 10px;
}

.vpn-step-dashboard-list {
  display: grid;
  gap: 7px;
  padding: 10px;
  border: 1px solid #e2edfb;
  border-radius: 12px;
  background: rgba(247, 251, 255, 0.88);
}

.vpn-step-dashboard-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #6b7f9f;
  font-size: 0.66rem;
  font-weight: 850;
}

.vpn-step-dashboard-list b {
  color: #244675;
  font-size: 0.68rem;
  font-weight: 900;
}

.vpn-step-dashboard-map {
  position: relative;
  min-height: 118px;
  overflow: hidden;
  border: 1px solid #dce9fc;
  border-radius: 14px;
  background:
    radial-gradient(circle at 34% 36%, rgba(49, 95, 191, 0.72) 0 6px, rgba(49, 95, 191, 0.12) 7px 18px, transparent 19px),
    radial-gradient(circle at 68% 58%, rgba(57, 189, 115, 0.55) 0 5px, rgba(57, 189, 115, 0.12) 6px 17px, transparent 18px),
    linear-gradient(32deg, transparent 0 44%, rgba(49, 95, 191, 0.1) 45% 48%, transparent 49%),
    linear-gradient(145deg, transparent 0 38%, rgba(49, 95, 191, 0.09) 39% 42%, transparent 43%),
    #f8fbff;
}

.vpn-step-dashboard-map::before,
.vpn-step-dashboard-map::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(49, 95, 191, 0.16);
}

.vpn-step-dashboard-map::before {
  width: 48px;
  height: 48px;
  right: -14px;
  top: -16px;
}

.vpn-step-dashboard-map::after {
  width: 64px;
  height: 64px;
  left: -24px;
  bottom: -28px;
}

.vpn-step-new-device {
  width: max-content;
  max-width: 100%;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid #d8e7fc;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.9);
  color: #244675;
  box-shadow: 0 8px 18px rgba(53, 89, 150, 0.05);
}

.vpn-step-config {
  align-content: start;
  gap: 10px;
  max-width: 260px;
  margin: auto;
}

.vpn-step-config-panel {
  display: grid;
  gap: 12px;
  padding: 13px;
  border: 1px solid #e0ebfb;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(53, 89, 150, 0.06);
}

.vpn-step-control {
  display: grid;
  gap: 8px;
}

.vpn-step-control label {
  color: #6b7f9f;
  font-size: 0.68rem;
  font-weight: 850;
}

.vpn-step-segment {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.vpn-step-segment span,
.vpn-step-select {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid #d8e7fc;
  border-radius: 9px;
  background: #f7fbff;
  color: #315fbf;
}

.vpn-step-segment svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vpn-step-segment span:first-child {
  background: #eaf2ff;
}

.vpn-step-select {
  justify-content: space-between;
  color: #244675;
}

.vpn-step-download {
  align-content: center;
  gap: 12px;
  max-width: 250px;
  margin: auto;
}

.vpn-step-download-copy {
  margin: 0;
  color: #63789b;
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 750;
}

.vpn-step-file {
  overflow: hidden;
  border: 1px solid #d8e7fc;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 28px rgba(53, 89, 150, 0.06);
}

.vpn-step-file strong,
.vpn-step-file span {
  display: block;
  padding: 11px 14px;
}

.vpn-step-file strong {
  color: #244675;
  border-bottom: 1px solid #e0ebfb;
  font-size: 0.78rem;
}

.vpn-step-file span {
  color: #63789b;
  background: #f7fbff;
}

.vpn-step-clients {
  display: flex;
  gap: 10px;
  align-items: center;
}

.vpn-step-client {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: #315fbf;
  box-shadow: 0 10px 20px rgba(49, 95, 191, 0.18);
  font-weight: 900;
}

.vpn-step-client:first-child {
  background: #b93036;
}

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

.vpn-audience-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 190px;
  padding: 20px 16px;
  text-align: center;
}

.vpn-audience-icon {
  width: 92px;
  height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vpn-audience-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.vpn-tech {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 30px;
  align-items: center;
  border: 1px solid var(--vpn-line);
  border-radius: 24px;
  padding: clamp(24px, 3.6vw, 38px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(53, 89, 150, 0.09);
}

.vpn-tech-copy {
  display: grid;
  gap: 16px;
}

.vpn-text-link {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #315fbf;
  font-weight: 900;
}

.vpn-tunnel {
  display: grid;
  gap: 18px;
  justify-self: center;
  width: min(100%, 340px);
}

.vpn-tunnel-row {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 66px;
}

.vpn-tunnel-row:not(:last-child)::before,
.vpn-tunnel-row:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 33px;
  pointer-events: none;
}

.vpn-tunnel-row:not(:last-child)::before {
  top: calc(100% + 2px);
  width: 2px;
  height: 14px;
  border-radius: 999px;
  background: #93b7f4;
  transform: translateX(-50%);
}

.vpn-tunnel-row:not(:last-child)::after {
  top: calc(100% + 14px);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #93b7f4;
  transform: translateX(-50%);
}

.vpn-tunnel-row--vpn::before {
  height: 30px;
}

.vpn-tunnel-row--vpn::after {
  top: calc(100% + 30px);
}

.vpn-tunnel-icon {
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vpn-tunnel-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  opacity: 0.9;
  filter: saturate(0.82) brightness(1.05) contrast(0.94);
}

.vpn-tunnel-row strong {
  display: block;
  color: #20314e;
  font-weight: 900;
}

.vpn-tunnel-row--vpn strong {
  color: #315fbf;
}

.vpn-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}

.vpn-faq-item {
  height: fit-content;
  border: 1px solid var(--vpn-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(53, 89, 150, 0.06);
  overflow: hidden;
}

.vpn-faq-item summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  color: #20314e;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.vpn-faq-item summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #315fbf;
  background: #edf4ff;
  font-weight: 900;
}

.vpn-faq-item[open] summary::after {
  content: "-";
}

.vpn-faq-answer {
  padding: 0 16px 16px;
  color: var(--vpn-muted);
  line-height: 1.58;
  font-weight: 650;
}

.vpn-final {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  border-radius: 24px;
  padding: clamp(22px, 4vw, 36px);
  color: #fff;
  background:
    radial-gradient(circle at 14% 30%, rgba(255, 255, 255, 0.2), transparent 22%),
    linear-gradient(140deg, #3d6ed6, #5f91f2);
  box-shadow: 0 22px 54px rgba(49, 95, 191, 0.2);
}

.vpn-final-visual {
  position: relative;
  width: 128px;
  height: 112px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  color: #ffffff;
  background:
    radial-gradient(circle at 72% 78%, rgba(255, 255, 255, 0.26), transparent 30%),
    rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.vpn-final-visual svg {
  width: 104px;
  height: 90px;
  overflow: visible;
  filter: drop-shadow(0 16px 22px rgba(17, 49, 117, 0.22));
}

.vpn-final-copy h2,
.vpn-final-copy p {
  color: #fff;
}

.vpn-final-copy p {
  max-width: 620px;
  margin: 10px 0 0;
  line-height: 1.6;
  font-weight: 650;
}

.vpn-final .btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.94);
  color: #315fbf;
  box-shadow: none;
}

.vpn-final .btn-arrow {
  font-size: 1.15em;
  line-height: 1;
  transform: translateY(-1px);
}

@media (max-width: 1040px) {
  .vpn-hero,
  .vpn-tech,
  .vpn-final {
    grid-template-columns: 1fr;
  }

  .vpn-hero {
    padding: 28px;
  }

  .vpn-hero h1 {
    font-size: 2.75rem;
  }

  .vpn-dashboard {
    min-height: 0;
  }

  .vpn-dashboard-grid,
  .vpn-dashboard-mini,
  .vpn-card-grid,
  .vpn-device-grid,
  .vpn-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vpn-steps,
  .vpn-faq-grid {
    grid-template-columns: 1fr;
  }

  .vpn-final {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  :root {
    --wrap: min(1280px, calc(100vw - 18px));
  }

  .header-wrap {
    position: relative;
    z-index: 90;
    padding-top: 10px;
  }

  .header {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    border-radius: 18px;
    padding: 12px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand-mark {
    font-size: 1rem;
  }

  .brand-mark small {
    display: block;
    font-size: 0.62rem;
  }

  .header > .site-nav {
    display: none;
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
  }

  .header-wrap.is-mobile-menu-open .header > .site-nav {
    display: block;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nav li {
    width: 100%;
  }

  .nav a {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 11px 14px;
    border: 1px solid #d8e7fc;
    border-radius: 13px;
    background: rgba(248, 252, 255, 0.96);
    text-align: left;
    box-shadow: 0 8px 18px rgba(53, 89, 150, 0.06);
  }

  .nav-dropdown-panel {
    position: static;
    width: 100%;
    margin-top: 8px;
    padding: 8px;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
  }

  .nav-dropdown:hover .nav-dropdown-panel,
  .nav-dropdown:focus-within .nav-dropdown-panel {
    transform: none;
  }

  .nav-dropdown-item {
    min-height: 0;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 10px;
  }

  .nav-link-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6b86b1;
    flex: 0 0 18px;
  }

  .nav-link-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 8px;
  }

  .header-actions .grm-lang-switch {
    justify-self: start;
  }

  .header-actions .grm-lang-summary {
    min-width: 34px;
    min-height: 36px;
    padding-inline: 8px;
    justify-content: center;
  }

  .header-actions .header-login,
  .header-actions .header-signup {
    min-height: 36px;
    padding: 6px 10px;
    font-size: 15px;
  }

  .header-actions .header-login {
    justify-self: end;
  }

  .header-actions .header-signup {
    justify-self: start;
  }

  .header-signup[data-mobile-label] span {
    display: none;
  }

  .header-signup[data-mobile-label]::after {
    content: attr(data-mobile-label);
  }

  .mobile-menu-toggle {
    display: inline-flex;
    width: 38px;
    height: 38px;
    justify-self: end;
  }

  .vpn-main {
    margin-top: 16px;
  }

  .vpn-hero {
    min-height: 0;
    padding: 20px 16px 24px;
    border-radius: 22px;
  }

  .vpn-hero h1 {
    margin-top: 16px;
    font-size: 2.05rem;
    line-height: 1.1;
  }

  .vpn-section-head h2,
  .vpn-tech-copy h2,
  .vpn-final-copy h2 {
    font-size: 1.62rem;
  }

  .vpn-feature-row,
  .vpn-device-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vpn-dashboard-grid,
  .vpn-dashboard-mini {
    grid-template-columns: 1fr;
  }

  .vpn-card-grid,
  .vpn-audience-grid {
    grid-template-columns: 1fr;
  }

  .vpn-feature-pill {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 9px;
    font-size: 0.8rem;
  }

  .vpn-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    padding: 9px;
  }

  .vpn-actions,
  .vpn-actions .btn,
  .vpn-final .btn {
    width: 100%;
  }

  .vpn-dashboard {
    padding: 12px;
    border-radius: 22px;
    margin-top: 4px;
  }

  .vpn-dashboard-shell {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .vpn-dashboard-side {
    display: flex;
    border-right: 0;
    border-bottom: 1px solid #e1ecfb;
    overflow: auto;
  }

  .vpn-dashboard-content {
    padding: 16px;
  }

  .vpn-status-list {
    font-size: 0.78rem;
  }

  .vpn-map-card {
    min-height: 230px;
  }

  .vpn-map-card::before {
    height: 112px;
  }

  .vpn-section {
    margin-top: 42px;
  }

  .vpn-section-head {
    margin-bottom: 18px;
  }

  .vpn-benefit-card,
  .vpn-device-card,
  .vpn-audience-card {
    min-height: 0;
  }

  .vpn-device-card {
    padding: 18px 10px;
  }

  .vpn-device-icon {
    width: 64px;
    height: 64px;
  }

  .vpn-audience-icon {
    width: 84px;
    height: 84px;
  }

  .vpn-tech,
  .vpn-final {
    border-radius: 20px;
    padding: 20px;
  }

  .vpn-tunnel-row {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .vpn-tunnel-icon {
    width: 56px;
    height: 56px;
  }

  .vpn-tunnel-row:not(:last-child)::after {
    left: 28px;
  }

  .vpn-tunnel-row:not(:last-child)::before {
    left: 28px;
  }

  .vpn-final-visual {
    width: 86px;
    height: 86px;
  }
}
