/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:   #f5a623;
  --gold2:  #e8860a;
  --amber:  #fbbf24;
  --orange: #f97316;
  --dark:   #0a0a0a;
  --dark2:  #111111;
  --card:   rgba(255,255,255,0.04);
  --border: rgba(245,166,35,0.15);
  --text:   #f0e6d3;
  --muted:  #7a6a52;
  --radius: 20px;
  --font:   'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ─── Background Blobs ──────────────────────────────────────── */
.bg-blobs {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  animation: blobFloat 18s ease-in-out infinite alternate;
}

.blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #c96c00, transparent 70%);
  top: -200px; left: -200px;
  animation-duration: 20s;
}

.blob-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #7a3a00, transparent 70%);
  bottom: -150px; right: -150px;
  animation-duration: 24s;
  animation-delay: -8s;
}

.blob-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #f5a623, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 16s;
  animation-delay: -4s;
}

@keyframes blobFloat {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, -30px) scale(1.08); }
  100% { transform: translate(-20px, 20px) scale(0.95); }
}

.blob-3 {
  animation-name: blobFloat3;
}
@keyframes blobFloat3 {
  0%   { transform: translate(-50%, -50%) scale(1); }
  50%  { transform: translate(calc(-50% + 30px), calc(-50% - 40px)) scale(1.1); }
  100% { transform: translate(calc(-50% - 20px), calc(-50% + 20px)) scale(0.92); }
}

/* ─── Noise ─────────────────────────────────────────────────── */
.noise {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* ─── Container ─────────────────────────────────────────────── */
.container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

/* ─── Header ────────────────────────────────────────────────── */
.header {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeUp 0.7s ease both;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.logo-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 30px rgba(245,166,35,0.4);
}

.logo-icon svg {
  width: 28px; height: 28px;
  fill: white;
}

.logo-text {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
}

.logo-text .accent {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-sub {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 20px;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

/* ─── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 32px;
  margin-bottom: 48px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: fadeUp 0.7s 0.1s ease both;
  flex-wrap: wrap;
  gap: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.stat-icon {
  font-size: 1rem;
}

.stat-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
}

/* ─── Cards Grid ────────────────────────────────────────────── */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.cards-grid .card {
  flex: 1 1 270px;
  max-width: 360px;
}

/* ─── Card ──────────────────────────────────────────────────── */
.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 0.6s var(--delay, 0ms) ease both;
  cursor: default;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,166,35,0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,166,35,0.1);
}

.card-glow {
  position: absolute;
  top: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.12), transparent 70%);
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
}

.card:hover .card-glow {
  opacity: 1;
}

/* Card header */
.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.proxy-flag {
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.flag-svg {
  font-size: 0;
  width: 42px;
  height: 28px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.flag-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.proxy-meta {
  flex: 1;
}

.proxy-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.proxy-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: #22c55e;
  font-weight: 500;
}

.status-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 5px #22c55e;
  animation: pulse 2s ease-in-out infinite;
}

.proxy-index {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 3px 8px;
}

/* Proxy details */
.proxy-details {
  background: rgba(0,0,0,0.25);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.04);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}

.detail-row + .detail-row {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.detail-right {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
}

.copy-hint {
  width: 11px; height: 11px;
  flex-shrink: 0;
  stroke: var(--muted);
  opacity: 0;
  transition: opacity 0.15s, stroke 0.15s;
}

.copyable {
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s;
  margin: 0 -4px;
  padding: 5px 4px;
}

.copyable:hover {
  background: rgba(245,166,35,0.06);
}

.copyable:hover .copy-hint {
  opacity: 1;
  stroke: var(--gold);
}

.copyable.field-copied {
  background: rgba(34,197,94,0.08);
}

.copyable.field-copied .copy-hint {
  opacity: 1;
  stroke: #22c55e;
}

.detail-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.detail-value {
  font-size: 0.78rem;
  color: var(--text);
  font-weight: 400;
  text-align: right;
}

.detail-value.mono {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.75rem;
  color: var(--gold);
}

.secret-row .secret-text {
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.7rem;
}

/* Card Actions */
.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 10px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-width: 0;
}

.btn::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.2s;
  background: rgba(255,255,255,0.08);
}

.btn:hover::before { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn-icon {
  width: 13px; height: 13px;
  flex-shrink: 0;
}

.btn-copy {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: #c8b89a;
}

.btn-copy:hover {
  border-color: rgba(245,166,35,0.3);
  background: rgba(255,255,255,0.11);
  color: #fff;
}

.btn-copy.copied {
  background: rgba(34,197,94,0.15);
  border-color: rgba(34,197,94,0.3);
  color: #22c55e;
}

.btn-connect {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0a0a0a;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(245,166,35,0.35);
}

.btn-connect:hover {
  box-shadow: 0 6px 28px rgba(245,166,35,0.5);
  transform: translateY(-1px);
}

/* ─── VPN Promo Banner ──────────────────────────────────────── */
.vpn-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg,
    rgba(180,90,0,0.18) 0%,
    rgba(245,166,35,0.08) 60%,
    rgba(120,50,0,0.12) 100%
  );
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 24px;
  padding: 40px 44px;
  margin-bottom: 48px;
  overflow: hidden;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  animation: fadeUp 0.7s 0.35s ease both;
}

.vpn-banner-glow {
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.18), transparent 70%);
  pointer-events: none;
}

.vpn-banner-left {
  flex: 1;
  min-width: 0;
}

.vpn-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.vpn-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.vpn-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 460px;
}

.vpn-desc strong {
  color: var(--amber);
  font-weight: 600;
}

.vpn-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 26px;
}

.vpn-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: #cbd5e1;
  font-weight: 400;
}

.vpn-feat-icon {
  font-size: 1rem;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}

/* Trial badge */
.vpn-trial {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(245,166,35,0.15), rgba(232,134,10,0.1));
  border: 1px solid rgba(245,166,35,0.4);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.vpn-trial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.08), transparent);
  transform: translateX(-100%);
  animation: trialShine 2.4s ease-in-out infinite;
}

@keyframes trialShine {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

.vpn-trial svg {
  width: 13px; height: 13px;
  stroke: var(--gold);
  flex-shrink: 0;
  animation: starPulse 1.8s ease-in-out infinite;
}

@keyframes starPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(1.2); }
}

/* CTA Button */
.vpn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0a0a0a;
  text-decoration: none;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow: 0 6px 30px rgba(245,166,35,0.4), 0 0 0 1px rgba(255,255,255,0.08) inset;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.vpn-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.25s;
}

.vpn-cta:hover::before { background: rgba(255,255,255,0.08); }

.vpn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(245,166,35,0.55), 0 0 0 1px rgba(255,255,255,0.1) inset;
}

.vpn-cta:active { transform: scale(0.98); }

.vpn-cta svg:first-child {
  width: 16px; height: 16px;
  flex-shrink: 0;
}

.vpn-arrow {
  width: 15px; height: 15px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.vpn-cta:hover .vpn-arrow { transform: translateX(3px); }

/* Right side — Globe */
.vpn-banner-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.vpn-globe {
  position: relative;
  width: 130px; height: 130px;
  display: flex; align-items: center; justify-content: center;
}

.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,166,35,0.3);
  animation: spin 8s linear infinite;
}

.globe-ring-1 { width: 130px; height: 130px; animation-duration: 10s; }
.globe-ring-2 { width: 96px;  height: 96px;  animation-duration: 7s; animation-direction: reverse; border-color: rgba(232,134,10,0.25); }
.globe-ring-3 { width: 62px;  height: 62px;  animation-duration: 5s; border-color: rgba(251,191,36,0.3); }

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.globe-core {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px rgba(245,166,35,0.55);
  z-index: 1;
}

.globe-core svg {
  width: 22px; height: 22px;
  fill: white;
}

.vpn-stat-chips {
  display: flex;
  gap: 8px;
}

.vpn-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 12px;
  min-width: 52px;
}

.chip-num {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 2px;
}

.chip-label {
  font-size: 0.62rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 700px) {
  .vpn-banner {
    flex-direction: column;
    padding: 28px 20px;
    gap: 28px;
    text-align: center;
  }
  .vpn-title { font-size: 1.25rem; }
  .vpn-desc { max-width: 100%; }
  .vpn-features { align-items: flex-start; }
  .vpn-cta { width: 100%; justify-content: center; }
  .vpn-banner-right { width: 100%; }
}

/* ─── How To ─────────────────────────────────────────────────── */
.howto {
  animation: fadeUp 0.7s 0.5s ease both;
}

.howto-title {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}

.steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 0.3s, transform 0.3s;
}

.step:hover {
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-3px);
}

.step-num {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.step-body h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.step-body p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.step-arrow {
  font-size: 1.4rem;
  color: var(--muted);
  align-self: center;
  padding: 0 4px;
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  text-align: center;
  margin-top: 48px;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ─── Toast ─────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: rgba(10, 8, 4, 0.95);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
}

.toast svg {
  width: 15px; height: 15px;
  stroke: var(--gold);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ─── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 768px) {
  .container { padding: 48px 20px 72px; }

  .vpn-banner {
    flex-direction: column;
    padding: 32px 28px;
    gap: 28px;
  }
  .vpn-banner-right { width: 100%; }
  .vpn-title { font-size: 1.35rem; }
  .vpn-desc { max-width: 100%; }
  .vpn-cta { width: 100%; justify-content: center; }
}

/* Mobile ≤ 480px */
@media (max-width: 480px) {

  /* Layout */
  .container { padding: 28px 14px 80px; }

  /* Header */
  .header { margin-bottom: 28px; }
  .logo-wrap { gap: 10px; margin-bottom: 12px; }
  .logo-icon { width: 44px; height: 44px; border-radius: 13px; }
  .logo-icon svg { width: 22px; height: 22px; }
  .logo-text { font-size: 1.5rem; }
  .header-sub { font-size: 0.85rem; }
  .header-badge { font-size: 0.75rem; padding: 5px 13px; }

  /* Stats bar — stack into 2x2 grid */
  .stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    border-radius: 16px;
    margin-bottom: 28px;
    overflow: hidden;
  }
  .stat-divider { display: none; }
  .stat-item {
    padding: 14px 10px;
    font-size: 0.78rem;
    justify-content: center;
    border-bottom: 1px solid var(--border);
  }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  /* Cards — full width, tighter */
  .cards-grid {
    gap: 14px;
    margin-bottom: 28px;
  }
  .cards-grid .card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .card { padding: 22px 18px 18px; border-radius: 18px; }
  .proxy-flag { font-size: 1.7rem; }
  .proxy-name { font-size: 0.9rem; }
  .proxy-details { padding: 12px 14px; border-radius: 10px; }
  .detail-label { font-size: 0.68rem; }
  .detail-value { font-size: 0.74rem; }
  .detail-value.mono { font-size: 0.7rem; }
  .secret-row .secret-text { max-width: 130px; }

  /* Buttons — single row, equal width */
  .card-actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .btn {
    padding: 11px 8px;
    font-size: 0.75rem;
    border-radius: 11px;
    gap: 5px;
  }
  .btn-icon { width: 12px; height: 12px; }

  /* VPN Banner */
  .vpn-banner {
    flex-direction: column;
    padding: 24px 18px;
    gap: 24px;
    border-radius: 18px;
    margin-bottom: 28px;
  }
  .vpn-badge { font-size: 0.68rem; padding: 4px 11px; margin-bottom: 10px; }
  .vpn-title { font-size: 1.2rem; line-height: 1.3; margin-bottom: 10px; }
  .vpn-desc { font-size: 0.82rem; margin-bottom: 16px; }
  .vpn-features { gap: 7px; margin-bottom: 20px; }
  .vpn-features li { font-size: 0.78rem; gap: 8px; }
  .vpn-feat-icon { font-size: 0.9rem; width: 18px; }
  .vpn-cta {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.85rem;
    border-radius: 12px;
  }

  /* Globe — smaller */
  .vpn-banner-right {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }
  .vpn-globe { width: 90px; height: 90px; }
  .globe-ring-1 { width: 90px; height: 90px; }
  .globe-ring-2 { width: 66px; height: 66px; }
  .globe-ring-3 { width: 42px; height: 42px; }
  .globe-core { width: 32px; height: 32px; }
  .globe-core svg { width: 17px; height: 17px; }

  .vpn-stat-chips { gap: 6px; }
  .vpn-chip { padding: 7px 10px; min-width: 48px; border-radius: 10px; }
  .chip-num { font-size: 0.85rem; }
  .chip-label { font-size: 0.58rem; }

  /* How to */
  .howto { margin-bottom: 0; }
  .howto-title { font-size: 1.1rem; margin-bottom: 20px; }
  .steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .step {
    max-width: 100%;
    padding: 18px 16px;
    border-radius: 0;
    border-bottom: none;
    border-left: 3px solid rgba(245,166,35,0.25);
    border-right: none;
    border-top: none;
    background: transparent;
    backdrop-filter: none;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-left: 16px;
  }
  .step:first-child { border-top: 1px solid var(--border); border-top-left-radius: 14px; border-top-right-radius: 14px; }
  .step:last-child  { border-bottom: 1px solid var(--border); border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; }
  .step-num {
    font-size: 1.3rem;
    margin-bottom: 0;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .step-arrow { display: none; }
  .step-body h4 { font-size: 0.85rem; }
  .step-body p  { font-size: 0.75rem; }

  /* Footer */
  .footer { margin-top: 36px; font-size: 0.72rem; }

  /* Toast */
  .toast {
    bottom: 20px;
    font-size: 0.78rem;
    padding: 10px 18px;
    width: calc(100% - 40px);
    justify-content: center;
  }
  .toast.show { transform: translateX(-50%) translateY(0); }
}

