/* CyberAI VPN landing page */

.vpn-page {
  --vpn-cyan: #37c0ff;
  --vpn-orange: #ff8a00;
  --vpn-text: #eaf3f9;
  --vpn-muted: #a6c0d3;
  --vpn-border: rgba(55, 192, 255, .18);
  --vpn-card: rgba(9, 42, 62, .88);
}

.vpn-page {
  background:
    radial-gradient(ellipse 60% 50% at 85% 8%, rgba(55, 192, 255, .1), transparent),
    radial-gradient(ellipse 50% 45% at 8% 88%, rgba(255, 138, 0, .08), transparent),
    radial-gradient(ellipse 40% 38% at 50% 50%, rgba(168, 85, 247, .06), transparent),
    var(--blue-900, #062237);
}

.vpn-page::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(55, 192, 255, .05) 1px, transparent 1px);
  background-size: 34px 34px;
  animation: vpn-grid-drift 90s linear infinite;
}

@keyframes vpn-grid-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 34px 34px; }
}

.vpn-wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.vpn-section { padding: clamp(56px, 8vw, 88px) 0; }

.vpn-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: rgba(55, 192, 255, .1);
  border: 1px solid rgba(55, 192, 255, .3);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--vpn-cyan);
  margin-bottom: 20px;
}

.vpn-h1 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--vpn-text);
  margin-bottom: 18px;
}

.vpn-h1 .accent { color: var(--vpn-cyan); }

.vpn-lead {
  font-size: 1.08rem;
  color: var(--vpn-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.vpn-h2 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--vpn-text);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.vpn-sub {
  font-size: .92rem;
  color: var(--vpn-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Hero */
.vpn-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(72px, 10vw, 110px) 0 clamp(56px, 8vw, 80px);
}

.vpn-hero-band {
  position: relative;
  border-radius: 22px;
  padding: clamp(40px, 6vw, 64px) clamp(24px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(12, 46, 68, .82), rgba(6, 34, 55, .94)),
    radial-gradient(circle at 88% 18%, rgba(255, 138, 0, .18), transparent 36%),
    radial-gradient(circle at 14% 84%, rgba(55, 192, 255, .16), transparent 32%);
  border: 1px solid var(--vpn-border);
  box-shadow: 0 28px 72px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.vpn-hero-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--vpn-cyan), var(--vpn-orange), #a855f7, var(--vpn-cyan));
  background-size: 200% 100%;
  animation: vpn-shimmer 4s linear infinite;
}

@keyframes vpn-shimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.vpn-shield-wrap {
  position: relative;
  width: 180px;
  height: 200px;
  margin: 0 auto 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vpn-shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(55, 192, 255, .22);
  animation: vpn-ring-pulse 3s ease-out infinite;
}

.vpn-shield-ring:nth-child(1) { inset: -20px; animation-delay: 0s; }
.vpn-shield-ring:nth-child(2) { inset: -40px; animation-delay: 1s; }
.vpn-shield-ring:nth-child(3) { inset: -60px; animation-delay: 2s; }

@keyframes vpn-ring-pulse {
  0%   { transform: scale(.9); opacity: .5; }
  100% { transform: scale(1.4); opacity: 0; }
}

.vpn-shield-svg { position: relative; z-index: 2; animation: vpn-shield-breathe 4s ease-in-out infinite; }

@keyframes vpn-shield-breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.03); }
}

.vpn-hero-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55, 192, 255, .7), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.vpn-hero-particle--1 { width: 6px; height: 6px; top: 18%; left: 22%; animation: vpn-particle-float 7s ease-in-out infinite; }
.vpn-hero-particle--2 { width: 4px; height: 4px; top: 62%; left: 18%; animation: vpn-particle-float 9s ease-in-out infinite 1s; }
.vpn-hero-particle--3 { width: 5px; height: 5px; top: 28%; right: 20%; animation: vpn-particle-float 8s ease-in-out infinite .5s; background: radial-gradient(circle, rgba(255,138,0,.6), transparent 70%); }
.vpn-hero-particle--4 { width: 3px; height: 3px; bottom: 20%; right: 28%; animation: vpn-particle-float 6s ease-in-out infinite 2s; }
.vpn-hero-particle--5 { width: 4px; height: 4px; bottom: 32%; left: 30%; animation: vpn-particle-float 10s ease-in-out infinite 1.5s; }

@keyframes vpn-particle-float {
  0%, 100% { transform: translate(0, 0); opacity: .5; }
  50%      { transform: translate(8px, -12px); opacity: 1; }
}

.vpn-actions--hero .vpn-reveal-cta {
  opacity: 0;
  animation: vpn-cta-in .55s ease forwards;
}

.vpn-actions--hero .vpn-reveal-cta:nth-child(1) { animation-delay: 1.1s; }
.vpn-actions--hero .vpn-reveal-cta:nth-child(2) { animation-delay: 1.2s; }
.vpn-actions--hero .vpn-reveal-cta:nth-child(3) { animation-delay: 1.3s; }
.vpn-actions--hero .vpn-reveal-cta:nth-child(4) { animation-delay: 1.45s; }
.vpn-actions--hero .vpn-reveal-cta:nth-child(5) { animation-delay: 1.6s; }

@keyframes vpn-cta-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.vpn-actions--platforms { max-width: 1040px; margin-left: auto; margin-right: auto; }

.vpn-actions--platforms .vpn-btn--primary {
  flex: 1 1 200px;
  min-width: 180px;
  justify-content: flex-start;
}

.vpn-btn-ext {
  font-size: .82em;
  font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
  color: rgba(55, 192, 255, .92);
  font-weight: 600;
}

.vpn-btn-platform {
  display: block;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.25;
}

.vpn-btn--suggested {
  box-shadow: 0 0 0 2px rgba(55, 192, 255, .55), 0 6px 28px rgba(55, 192, 255, .48);
}

.vpn-actions--hero .vpn-reveal-cta:nth-child(6) { animation-delay: 1.75s; }

/* Pricing billing toggle */
.vpn-billing-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(9, 42, 62, .75);
  border: 1px solid var(--vpn-border);
  margin: 20px auto 28px;
}

.vpn-billing-toggle button {
  border: none;
  background: transparent;
  color: var(--vpn-muted);
  font-family: inherit;
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.vpn-billing-toggle button.is-active {
  background: rgba(55, 192, 255, .18);
  color: var(--vpn-cyan);
}

.vpn-price-billing-note {
  font-size: .72rem;
  color: var(--vpn-muted);
  margin-top: 6px;
  min-height: 1.2em;
}

.vpn-pricing-footnote {
  margin-top: 24px;
  font-size: .78rem;
  color: var(--vpn-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

.vpn-bundle-upsell {
  margin-top: 28px;
  padding: 18px 22px;
  border-radius: 14px;
  border: 1px solid var(--vpn-border);
  background: rgba(9, 42, 62, .55);
  font-size: .88rem;
  color: var(--vpn-muted);
}

.vpn-bundle-upsell a {
  color: var(--vpn-cyan);
  font-weight: 700;
  text-decoration: none;
}

.vpn-bundle-upsell a:hover { text-decoration: underline; }

.vpn-ext-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.vpn-win-logo,
.vpn-apple-logo,
.vpn-linux-logo { width: 22px; height: 22px; }

.vpn-check-path {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: vpn-stroke-draw 1.2s ease forwards .6s;
}

@keyframes vpn-stroke-draw {
  to { stroke-dashoffset: 0; }
}

/* CTA buttons */
.vpn-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.vpn-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: none;
  font-family: inherit;
  transition: transform .2s, box-shadow .2s, background .2s;
}

.vpn-btn--primary {
  background: linear-gradient(135deg, #0b2a45, #1383ff, #23c4ff);
  background-size: 200%;
  color: #fff;
  box-shadow: 0 4px 22px rgba(55, 192, 255, .35);
}

.vpn-btn--primary:hover {
  background-position: right;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(55, 192, 255, .48);
}

.vpn-btn--primary.vpn-btn--soon {
  opacity: .72;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
  box-shadow: 0 4px 18px rgba(55, 192, 255, .2);
}

.vpn-btn--primary.vpn-btn--soon:hover {
  transform: none;
  box-shadow: 0 4px 18px rgba(55, 192, 255, .2);
}

.vpn-btn--ghost {
  background: rgba(55, 192, 255, .08);
  border: 1px solid rgba(55, 192, 255, .28);
  color: var(--vpn-cyan);
}

.vpn-btn--ghost:hover {
  background: rgba(55, 192, 255, .16);
  transform: translateY(-2px);
}

.vpn-btn--disabled {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}

.vpn-btn-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vpn-btn-icon svg { width: 22px; height: 22px; }

.vpn-btn-text { text-align: left; }
.vpn-btn-os { font-size: .7rem; font-weight: 400; opacity: .75; display: block; }

.vpn-fine { margin-top: 18px; font-size: .78rem; color: var(--vpn-muted); }

/* Icon badge (features) */
.vpn-icon-badge {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(55, 192, 255, .1);
  border: 1px solid rgba(55, 192, 255, .25);
  color: var(--vpn-cyan);
  margin-bottom: 16px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.vpn-icon-badge svg { width: 32px; height: 32px; }

.vpn-feat-card[data-accent="cyan"]:hover .vpn-icon-badge {
  border-color: rgba(55, 192, 255, .55);
  box-shadow: 0 8px 28px rgba(55, 192, 255, .25);
}

.vpn-feat-card[data-accent="orange"]:hover .vpn-icon-badge {
  border-color: rgba(255, 138, 0, .5);
  box-shadow: 0 8px 28px rgba(255, 138, 0, .2);
}

.vpn-feat-card[data-accent="purple"]:hover .vpn-icon-badge {
  border-color: rgba(168, 85, 247, .5);
  box-shadow: 0 8px 28px rgba(168, 85, 247, .2);
}

.vpn-feat-card:hover .vpn-icon-badge {
  transform: translateY(-3px) scale(1.04);
}

.vpn-icon-pulse { animation: vpn-icon-pulse 2.4s ease-in-out infinite; }
.vpn-icon-float { animation: vpn-float-y 3s ease-in-out infinite; }
.vpn-icon-orbit { animation: vpn-orbit 8s linear infinite; transform-origin: center; }
.vpn-icon-dash { animation: vpn-dash-flow 2s linear infinite; }

@keyframes vpn-icon-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .75; transform: scale(1.06); }
}

@keyframes vpn-float-y {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

@keyframes vpn-orbit {
  to { transform: rotate(360deg); }
}

@keyframes vpn-dash-flow {
  to { stroke-dashoffset: -20; }
}

/* Feature grid */
.vpn-features { background: rgba(4, 26, 39, .55); }

.vpn-feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.vpn-feat-card {
  background: var(--vpn-card);
  border: 1px solid var(--vpn-border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  transform-style: preserve-3d;
  will-change: transform;
}

.vpn-feat-card[data-accent="cyan"]:hover  { border-color: rgba(55, 192, 255, .35); box-shadow: 0 16px 40px rgba(55, 192, 255, .08); }
.vpn-feat-card[data-accent="orange"]:hover { border-color: rgba(255, 138, 0, .3); box-shadow: 0 16px 40px rgba(255, 138, 0, .06); }
.vpn-feat-card[data-accent="purple"]:hover { border-color: rgba(168, 85, 247, .3); box-shadow: 0 16px 40px rgba(168, 85, 247, .06); }

.vpn-feat-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--vpn-text);
  margin-bottom: 8px;
  font-family: 'Montserrat', 'Inter', sans-serif;
}

.vpn-feat-desc { font-size: .84rem; color: var(--vpn-muted); line-height: 1.6; }

/* Interactive world map */
.vpn-map-section { background: rgba(4, 26, 39, .45); text-align: center; }

.vpn-map-stage {
  display: grid;
  grid-template-columns: 1fr min(320px, 34%);
  gap: 24px;
  margin-top: 40px;
  text-align: left;
  align-items: start;
}

.vpn-map-canvas-wrap {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--vpn-border);
  background: rgba(4, 18, 32, .95);
  overflow: hidden;
  transition: transform .15s ease-out;
  min-height: 280px;
  aspect-ratio: 2 / 1;
}

.vpn-map-svg {
  width: 100%;
  height: 100%;
  display: block;
  min-height: 100%;
}

.vpn-map-ocean { fill: rgba(4, 18, 32, .95); }

.vpn-map-borders {
  stroke: rgba(55, 192, 255, .12);
  stroke-width: .4;
  vector-effect: non-scaling-stroke;
}

.vpn-map-arcs { pointer-events: none; }

.vpn-map-arc {
  fill: none;
  stroke: url(#vpnArcGrad);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 6 4;
  animation: vpn-arc-flow 1.2s linear infinite;
  opacity: .85;
}

@keyframes vpn-arc-flow {
  to { stroke-dashoffset: -20; }
}

.vpn-map-node {
  cursor: pointer;
  outline: none;
  transition: opacity .25s;
}

.vpn-map-node.is-hidden { opacity: 0; pointer-events: none; }
.vpn-map-node.is-selected .vpn-map-node-core { fill: var(--vpn-orange); }
.vpn-map-node.is-selected .vpn-map-node-pulse { stroke: var(--vpn-orange); }

.vpn-map-node-core {
  fill: var(--vpn-cyan);
  stroke: rgba(255, 255, 255, .5);
  stroke-width: 1;
}

.vpn-map-node--hub .vpn-map-node-core { fill: var(--vpn-orange); }

.vpn-map-node-pulse {
  fill: none;
  stroke: var(--vpn-cyan);
  stroke-width: 1;
  opacity: 0;
  animation: vpn-node-pulse 2.5s ease-out infinite;
}

.vpn-map-node--hub .vpn-map-node-pulse { stroke: var(--vpn-orange); animation-duration: 1.8s; }

.vpn-map-node-hub-ring {
  fill: none;
  stroke: rgba(255, 138, 0, .35);
  stroke-width: 1;
  animation: vpn-hub-ring 3s ease-in-out infinite;
}

@keyframes vpn-node-pulse {
  0%   { r: 5; opacity: .7; }
  100% { r: 18; opacity: 0; }
}

@keyframes vpn-hub-ring {
  0%, 100% { r: 10; opacity: .5; }
  50%      { r: 14; opacity: .2; }
}

.vpn-map-tooltip {
  position: absolute;
  z-index: 5;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(6, 34, 55, .96);
  border: 1px solid rgba(55, 192, 255, .35);
  color: var(--vpn-text);
  font-size: .78rem;
  font-weight: 600;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
  transform: translate(-50%, -120%);
}

.vpn-map-tooltip small {
  display: block;
  font-weight: 400;
  color: var(--vpn-muted);
  margin-top: 2px;
}

.vpn-map-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--vpn-border);
  background: var(--vpn-card);
  min-height: 280px;
}

.vpn-map-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vpn-map-filter {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(55, 192, 255, .22);
  background: transparent;
  color: var(--vpn-muted);
  font-size: .72rem;
  font-weight: 650;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}

.vpn-map-filter:hover { color: var(--vpn-cyan); border-color: rgba(55, 192, 255, .4); }

.vpn-map-filter.is-active {
  background: rgba(55, 192, 255, .15);
  color: var(--vpn-cyan);
  border-color: rgba(55, 192, 255, .45);
}

.vpn-map-selected {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(55, 192, 255, .06);
  border: 1px solid rgba(55, 192, 255, .18);
}

.vpn-map-selected-flag { font-size: 2rem; line-height: 1; }

.vpn-map-selected-city {
  font-size: 1.15rem;
  font-weight: 800;
  font-family: 'Montserrat', 'Inter', sans-serif;
  color: var(--vpn-text);
}

.vpn-map-selected-meta {
  font-size: .82rem;
  color: var(--vpn-cyan);
  margin-top: 4px;
}

.vpn-map-selected-note {
  font-size: .75rem;
  color: var(--vpn-muted);
  margin-top: 8px;
  line-height: 1.45;
}

.vpn-map-city-list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  max-height: 220px;
  flex: 1;
}

.vpn-map-city-list li { margin-bottom: 4px; }

.vpn-map-city-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--vpn-text);
  font-family: inherit;
  font-size: .84rem;
  cursor: pointer;
  transition: background .15s;
}

.vpn-map-city-btn:hover { background: rgba(55, 192, 255, .08); }

.vpn-map-city-btn.is-active {
  background: rgba(255, 138, 0, .12);
  color: var(--vpn-orange);
}

.vpn-map-city-btn.is-filtered-out { display: none; }

.vpn-map-city-ping {
  font-size: .75rem;
  color: var(--vpn-muted);
  font-variant-numeric: tabular-nums;
}

.vpn-map-city-btn.is-active .vpn-map-city-ping { color: var(--vpn-orange); }

/* Stats */
.vpn-stats {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 6vw, 56px);
  flex-wrap: wrap;
  margin-top: 48px;
}

.vpn-stat-num {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  font-family: 'Montserrat', 'Inter', sans-serif;
  color: var(--vpn-cyan);
  font-variant-numeric: tabular-nums;
}

.vpn-stat-label {
  font-size: .82rem;
  color: var(--vpn-muted);
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.vpn-stat-icon { width: 14px; height: 14px; opacity: .7; flex-shrink: 0; }

.vpn-stat-num.is-counted {
  animation: vpn-stat-glow .6s ease;
}

@keyframes vpn-stat-glow {
  0%   { text-shadow: none; }
  50%  { text-shadow: 0 0 20px rgba(55, 192, 255, .6); }
  100% { text-shadow: none; }
}

/* Pricing */
.vpn-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.vpn-price-card {
  background: var(--vpn-card);
  border: 1px solid var(--vpn-border);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: border-color .25s, transform .25s;
  transform-style: preserve-3d;
  will-change: transform;
}

.vpn-price-card--featured {
  border-color: rgba(55, 192, 255, .4);
  background: rgba(55, 192, 255, .07);
  box-shadow: 0 0 40px rgba(55, 192, 255, .12);
}

.vpn-price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0b2a45, #1383ff, #23c4ff);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.vpn-price-name {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--vpn-muted);
  margin-bottom: 12px;
}

.vpn-price-num {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: 'Montserrat', 'Inter', sans-serif;
  color: var(--vpn-text);
}

.vpn-price-period { font-size: .82rem; color: var(--vpn-muted); }

.vpn-price-list {
  list-style: none;
  margin: 18px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.vpn-price-list li {
  font-size: .84rem;
  color: var(--vpn-muted);
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.vpn-price-list li::before {
  content: '✓';
  color: var(--vpn-cyan);
  font-weight: 700;
  flex-shrink: 0;
}

/* Download CTA */
.vpn-download {
  text-align: center;
  background: linear-gradient(to bottom, transparent, rgba(55, 192, 255, .06), transparent);
}

.vpn-dl-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  justify-items: stretch;
  margin-top: 32px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.vpn-dl-grid .vpn-btn {
  width: 100%;
  justify-content: flex-start;
}

/* FAQ */
.vpn-faq-list { margin-top: 36px; max-width: 720px; margin-left: auto; margin-right: auto; }

.vpn-faq-item {
  border: 1px solid var(--vpn-border);
  border-radius: 12px;
  margin-bottom: 10px;
  background: var(--vpn-card);
  overflow: hidden;
}

.vpn-faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 18px;
  border: none;
  background: transparent;
  color: var(--vpn-text);
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.vpn-faq-btn:hover { color: var(--vpn-cyan); }

.vpn-faq-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform .25s;
  color: var(--vpn-muted);
}

.vpn-faq-item.open .vpn-faq-chevron { transform: rotate(180deg); }

.vpn-faq-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 18px;
  font-size: .85rem;
  line-height: 1.6;
  color: var(--vpn-muted);
  transition: max-height .3s ease, opacity .25s, padding .25s;
}

.vpn-faq-item.open .vpn-faq-body {
  max-height: 200px;
  opacity: 1;
  padding: 0 18px 16px;
}

/* Extension CTA */
.vpn-ext-card {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
  padding: 28px 32px;
  border-radius: 16px;
  border: 1px solid var(--vpn-border);
  background: var(--vpn-card);
  text-align: left;
}

.vpn-ext-text h3 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--vpn-text);
  margin-bottom: 6px;
}

.vpn-ext-text p { font-size: .85rem; color: var(--vpn-muted); line-height: 1.55; max-width: 480px; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

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

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@media (max-width: 900px) {
  .vpn-map-stage { grid-template-columns: 1fr; }
  .vpn-map-canvas-wrap { aspect-ratio: 16 / 10; min-height: 240px; }
  .vpn-map-panel { min-height: auto; }
  .vpn-dl-grid { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 640px) {
  .vpn-ext-card { flex-direction: column; text-align: center; }
  .vpn-ext-text p { max-width: none; }
  .vpn-map-filters { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .vpn-page::after,
  .vpn-shield-ring,
  .vpn-shield-svg,
  .vpn-check-path,
  .vpn-icon-pulse,
  .vpn-icon-float,
  .vpn-icon-orbit,
  .vpn-icon-dash,
  .vpn-map-node-pulse,
  .vpn-map-node-hub-ring,
  .vpn-map-arc,
  .vpn-hero-band::before,
  .vpn-hero-particle,
  .vpn-actions--hero .vpn-reveal-cta {
    animation: none !important;
  }
  .vpn-check-path { stroke-dashoffset: 0; }
  .vpn-actions--hero .vpn-reveal-cta { opacity: 1; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .vpn-map-canvas-wrap { transition: none; }
}
