/* ─────────────────────────────────────────────
   FONTS — self-hosted Inter
───────────────────────────────────────────── */
@font-face { font-family: 'Inter'; src: url('/fonts/inter-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/fonts/inter-500.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/fonts/inter-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/fonts/inter-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/fonts/inter-800.woff2') format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }


/* ═══════════════════════════════════════════
   RESET & TOKENS
═══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white: #ffffff;
  --bg: #f8fafc;
  --bg-2: #f1f5f9;
  --bg-card: #ffffff;
  --border: #e2e8f0;
  --border-dark: #cbd5e1;
  --navy: #0f172a;
  --navy-2: #1e293b;
  --text: #334155;
  --text-2: #64748b;
  --text-3: #94a3b8;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #eff6ff;
  --blue-mid: #dbeafe;
  --fire: #f97316;
  --fire-light: #fff7ed;
  --fire-mid: #fed7aa;
  --green: #16a34a;
  --green-light: #dcfce7;
  --radius: 8px;
  --radius-lg: 10px;
  --radius-xl: 12px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Inter", system-ui, -apple-system, sans-serif;
  --mono: "Cascadia Code", "Consolas", monospace;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.09), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.13), 0 6px 16px rgba(0, 0, 0, 0.06);
  --shadow-blue: 0 6px 24px rgba(37, 99, 235, 0.28);
  --shadow-fire: 0 6px 24px rgba(249, 115, 22, 0.28);
}

/* ═══════════════════════════════════════════
   DARK THEME — warm, not generic grey
═══════════════════════════════════════════ */
[data-theme="dark"] {
  --white: #1a1510;
  --bg: #201b14;
  --bg-2: #28221a;
  --bg-card: #1a1510;
  --border: #3a3028;
  --border-dark: #4a3e34;
  --navy: #f0e8dc;
  --navy-2: #d8cfc4;
  --text: #b0a090;
  --text-2: #8a7a68;
  --text-3: #6a5c4c;
  --blue: #5b9cf6;
  --blue-dark: #4488f0;
  --blue-light: #1a2535;
  --blue-mid: #213045;
  --fire: #fb923c;
  --fire-light: #1c0d00;
  --fire-mid: #3d1a00;
  --green: #34d470;
  --green-light: #0d2018;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.35);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.55), 0 2px 6px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.65), 0 6px 16px rgba(0, 0, 0, 0.45);
  --shadow-blue: 0 6px 24px rgba(91, 156, 246, 0.2);
  --shadow-fire: 0 6px 24px rgba(251, 146, 60, 0.2);
}

/* Smooth theme transitions */
.theme-transitioning,
.theme-transitioning *,
.theme-transitioning *::before,
.theme-transitioning *::after {
  transition:
    background-color 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    opacity 0.28s ease !important;
}

html {
  scroll-behavior: smooth;
  color-scheme: light dark;
}
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
}
a {
  color: var(--blue);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}
.section {
  padding: 96px 0;
}
.section-alt {
  background: var(--bg);
}

.section-intro {
  margin-bottom: 56px;
}
.section-intro .section-eyebrow {
  margin-bottom: 12px;
}
.section-intro h2 {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-intro .section-desc {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 520px;
}

.section-eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  font-family: var(--font);
}
.section-eyebrow::before,
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  text-decoration: none !important;
  line-height: 1.3;
  font-family: var(--font);
}
.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}
.btn-primary:active {
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-dark);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy-2);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: #fff;
}

.btn-ghost-sm {
  background: transparent;
  color: var(--text-2);
  border: 1.5px solid var(--border);
  font-size: 0.85rem;
  padding: 7px 14px;
  border-radius: 8px;
  font-family: var(--font);
}
.btn-ghost-sm:hover {
  background: var(--bg-2);
  color: var(--navy);
  border-color: var(--border-dark);
}

.btn-white {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
  font-weight: 700;
}
.btn-white:hover {
  background: var(--bg-2);
  border-color: var(--bg-2);
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: 12px;
}
.btn-sm {
  padding: 7px 14px;
  font-size: 0.85rem;
}
.btn-full {
  width: 100%;
}
.btn-download-full {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ═══════════════════════════════════════════
   TAGS / BADGES
═══════════════════════════════════════════ */
.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-2);
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  font-family: var(--font);
}
.card-tag--blue {
  background: var(--blue-light);
  color: var(--blue);
  border-color: var(--blue-mid);
}
.card-tag--fire {
  background: var(--fire-light);
  color: var(--fire);
  border-color: var(--fire-mid);
}

.vpn-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
  font-family: var(--font);
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.3);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  height: 64px;
  transition: box-shadow 0.2s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-decoration: none !important;
  flex-shrink: 0;
  font-family: var(--font-display);
  transition: opacity 0.18s;
}
.logo:hover {
  opacity: 0.75;
}
.logo-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.logo-accent {
  color: var(--blue);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  flex: 1;
}
.nav-links a {
  color: var(--text-2);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 7px;
  transition: all 0.15s;
  white-space: nowrap;
  position: relative;
  font-family: var(--font);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--bg);
  text-decoration: none;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ═══════════════════════════════════════════
   HERO (HOME)
═══════════════════════════════════════════ */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    #f4f4f5,
    #ffffff
  ); /* ← change hero bg here */
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.055) 1px,
    transparent 1px
  );
  background-size: 3px 3px;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 0;
  align-items: stretch;
  /* Break out of container to extend image to viewport edge */
  max-width: 100vw;
  margin-left: 0;
  margin-right: 0;
  padding-left: max(28px, calc((100vw - 1140px) / 2 + 28px));
  padding-right: 0;
}

.hero-text {
  padding-top: 56px;
  padding-bottom: 56px;
  padding-right: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-text h1 {
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--navy);
  margin-bottom: 24px;
}

.hero-sub {
  color: var(--text-2);
  font-size: 1.1rem;
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.75;
  font-family: var(--font);
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sp-avatars {
  display: flex;
}
.sp-avatars img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--white);
  object-fit: cover;
  margin-left: -8px;
}
.sp-avatars img:first-child {
  margin-left: 0;
}
.hero-social-proof p {
  font-size: 0.875rem;
  color: var(--text-2);
  font-family: var(--font);
}
.hero-social-proof strong {
  color: var(--navy);
}

.hero-image {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  animation: heroFadeUp 0.8s 0.14s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  display: block;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 65%,
    rgba(15, 23, 42, 0.08) 100%
  );
  pointer-events: none;
}

.hero-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  box-shadow: var(--shadow);
  font-family: var(--font);
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
}
.hero-image-badge strong {
  color: var(--green);
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════════ */
.trust-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-family: var(--font);
}
.trust-label {
  color: var(--text-3);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.trust-inner span:not(.trust-label):not(.dot) {
  color: var(--text-2);
  font-weight: 600;
}
.dot {
  color: var(--border-dark);
}

/* ═══════════════════════════════════════════
   SERVICES (HOME)
═══════════════════════════════════════════ */
.services-section {
  background: var(--bg);
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.svc-main-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.svc-main-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--border-dark);
}
.svc-main-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: var(--bg-2);
}
.svc-main-card-body {
  padding: 30px;
}
.svc-main-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.svc-main-card-body p {
  color: var(--text-2);
  font-size: 0.925rem;
  margin-bottom: 16px;
  font-family: var(--font);
}

.svc-side-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svc-side-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  flex: 1;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.svc-side-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--border-dark);
}
.svc-side-card--vpn {
  background: var(--navy);
  border-color: transparent;
}
.svc-side-card--vpn .svc-side-card-body {
  padding: 24px 28px;
}
.svc-side-card--vpn h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}

.svc-side-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.svc-side-card-body {
  padding: 22px 24px;
}
.svc-side-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.svc-side-card-body p {
  font-size: 0.875rem;
  color: var(--text-2);
  margin-bottom: 14px;
  font-family: var(--font);
}

.svc-side-card-body--plain {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.text-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s;
  font-family: var(--font);
}
.text-link:hover {
  text-decoration: underline;
  gap: 7px;
}

/* ═══════════════════════════════════════════
   PHOTO FEATURE
═══════════════════════════════════════════ */
.photo-feature {
  padding: 96px 0;
  background: var(--white);
}
.photo-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.pf-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-2);
}
.pf-image img {
  width: 100%;
  height: 460px;
  object-fit: contain;
}

.pf-text .section-eyebrow {
  margin-bottom: 12px;
}
.pf-text h2 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.2;
}
.pf-text > p {
  color: var(--text-2);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.75;
  font-family: var(--font);
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 34px;
}
.check-list li {
  font-size: 0.925rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
}
.check-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  background: var(--blue-light);
  border: 1.5px solid var(--blue-mid);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' stroke='%232563eb' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ═══════════════════════════════════════════
   STATS
═══════════════════════════════════════════ */
.stats-section {
  padding: 72px 0;
  background: var(--navy);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat:last-child {
  border-right: none;
}
.stat strong {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font);
}

/* ═══════════════════════════════════════════
   VPN CTA (HOME)
═══════════════════════════════════════════ */
.vpn-cta-section {
  padding: 96px 0;
  background: var(--bg);
}
.vpn-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.vpn-cta-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-2);
}
.vpn-cta-image img {
  width: 100%;
  height: 380px;
  object-fit: contain;
}
.vpn-cta-text .section-eyebrow {
  margin-bottom: 12px;
}
.vpn-cta-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  line-height: 1.2;
}
.vpn-cta-text p {
  color: var(--text-2);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.75;
  font-family: var(--font);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 52px 0 36px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer .logo {
  color: #fff;
}
.site-footer .logo-accent {
  color: #93c5fd;
}
.footer-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 6px 12px;
  border-radius: 7px;
  transition:
    color 0.14s,
    background 0.14s;
  font-family: var(--font);
}
.footer-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font);
}

/* ═══════════════════════════════════════════
   VPN PAGE HERO
═══════════════════════════════════════════ */
.vpn-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
}
.vpn-hero-bg {
  position: absolute;
  inset: 0;
}
.vpn-hero-bg {
  background: linear-gradient(135deg, #0a1438 0%, #0f1740 50%, #142354 100%);
}
.vpn-hero-bg img {
  width: 48%;
  height: 92%;
  max-height: 580px;
  object-fit: contain;
  object-position: center;
  position: absolute;
  right: 4%;
  top: 4%;
  filter: drop-shadow(0 12px 40px rgba(37, 99, 235, 0.35));
}
.vpn-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(37, 99, 235, 0.22) 0%, transparent 50%),
    linear-gradient(to right, rgba(10, 20, 56, 0.88) 0%, rgba(10, 20, 56, 0.6) 45%, rgba(10, 20, 56, 0) 70%);
}
.vpn-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  transform: translateX(-32%);
}
.vpn-hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.vpn-hero-content > p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 8px;
  font-family: var(--font);
}
.vpn-hero-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.vpn-hero-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  transition: all 0.15s;
  font-family: var(--font);
}
.vpn-hero-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
}

/* Hero primary download button */
.hero-download {
  margin: 28px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.btn-hero-download {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 22px 16px 18px;
  border-radius: 14px;
  text-decoration: none !important;
  box-shadow:
    0 8px 24px rgba(37, 99, 235, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 -2px 0 rgba(0, 0, 0, 0.12) inset;
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.18s;
  position: relative;
  overflow: hidden;
  font-family: var(--font);
  min-width: 320px;
}
.btn-hero-download::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
  transition: left 0.6s ease;
}
.btn-hero-download:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px rgba(37, 99, 235, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 -2px 0 rgba(0, 0, 0, 0.12) inset;
}
.btn-hero-download:hover::before {
  left: 120%;
}
.btn-hero-download:active {
  transform: translateY(0);
}
.hero-dl-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-dl-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}
.hero-dl-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  line-height: 1.25;
  flex: 1;
  min-width: 0;
}
.hero-dl-label {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}
.hero-dl-sub {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.01em;
}
.hero-dl-arrow {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.2s, color 0.2s;
}
.btn-hero-download:hover .hero-dl-arrow {
  transform: translateX(3px);
  color: #fff;
}
.hero-dl-arrow svg { width: 100%; height: 100%; }

/* Version toggle for hero download */
.hero-dl-toggle {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px;
  border-radius: 12px;
  width: fit-content;
  margin-bottom: 4px;
}
.hero-dl-toggle-btn {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-dl-toggle-btn:not(.active):hover {
  color: #fff;
}
.hero-dl-toggle-btn.active {
  background: #fff;
  color: #1e3a8a;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.hero-dl-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
}
.hero-dl-meta a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  text-decoration: none;
}
.hero-dl-meta a:hover { color: #fff; text-decoration: underline; }
.hero-dl-platform {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-dl-platform svg {
  width: 13px;
  height: 13px;
  color: #00adef;
}
.hero-dl-divider {
  opacity: 0.5;
}

@media (max-width: 600px) {
  .btn-hero-download {
    min-width: unset;
    width: 100%;
    padding: 14px 16px;
    gap: 14px;
  }
  .hero-dl-icon { width: 42px; height: 42px; }
  .hero-dl-label { font-size: 0.95rem; }
  .hero-dl-sub { font-size: 0.72rem; }
}

/* ═══════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-3);
  margin-bottom: 18px;
  font-family: var(--font);
}
.breadcrumb a {
  color: var(--text-3);
}
.breadcrumb a:hover {
  color: var(--blue);
  text-decoration: none;
}
.breadcrumb svg {
  width: 12px;
  height: 12px;
}
.breadcrumb--light {
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb--light a {
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb--light a:hover {
  color: #fff;
}
.breadcrumb--light svg {
  color: rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════════
   DOWNLOAD GRID
═══════════════════════════════════════════ */
.dl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.dl-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.dl-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--blue-mid);
}
.dl-card--featured {
  border-color: var(--blue-mid);
  box-shadow:
    0 0 0 2px rgba(37, 99, 235, 0.1),
    var(--shadow-sm);
  position: relative;
}
.dl-card--featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--blue), #60a5fa);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.dl-card--store {
  opacity: 0.9;
}
.dl-card--legacy {
  position: relative;
  background: var(--bg-2);
}
.dl-card--legacy .dl-os-logo {
  opacity: 0.7;
}
.dl-card-recommended {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--blue), #60a5fa);
  color: #fff;
  padding: 4px 10px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.dl-card--soon {
  opacity: 0.6;
  position: relative;
}
.dl-card--soon .btn[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}
.dl-soon-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text-2);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.dl-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.dl-os-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dl-os-logo svg {
  width: 22px;
  height: 22px;
}
.dl-card-top h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
  font-family: var(--font-display);
}
.dl-platform-note {
  font-size: 0.74rem;
  color: var(--text-3);
  font-family: var(--font);
}

.dl-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 14px;
}
.dl-filename {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--blue);
}
.dl-size {
  font-size: 0.75rem;
  color: var(--text-3);
  font-family: var(--font);
}
.dl-store-badge {
  font-size: 0.75rem;
  color: var(--text-2);
  font-weight: 500;
  font-family: var(--font);
}

.dl-instructions {
  font-size: 0.875rem;
  color: var(--text-2);
  flex: 1;
  margin-bottom: 20px;
  line-height: 1.6;
  font-family: var(--font);
}

.admin-note {
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text);
  font-family: var(--font);
}
.admin-note svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
}
.admin-note p {
  margin: 0;
}

/* ═══════════════════════════════════════════
   CODE
═══════════════════════════════════════════ */
code {
  font-family: var(--mono);
  font-size: 0.82em;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 2px 6px;
  color: var(--blue);
}
.code-pill {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 0.875rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 9px 16px;
  color: var(--blue);
}

/* ═══════════════════════════════════════════
   TABS
═══════════════════════════════════════════ */
.tab-bar {
  display: flex;
  gap: 2px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 44px;
}
.tab-btn {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-2);
  padding: 10px 18px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition:
    color 0.14s,
    border-color 0.14s;
}
.tab-btn:hover {
  color: var(--navy);
}
.tab-btn.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}

/* ═══════════════════════════════════════════
   SETUP LAYOUT
═══════════════════════════════════════════ */
.setup-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}
.setup-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: sticky;
  top: 88px;
  background: var(--bg-2);
}
.setup-photo img {
  width: 100%;
  height: 320px;
  object-fit: contain;
}

/* ═══════════════════════════════════════════
   STEPS
═══════════════════════════════════════════ */
.steps {
  list-style: none;
}
.step {
  display: flex;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child {
  border-bottom: none;
}
.step-n {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
  font-family: var(--font-display);
  box-shadow: var(--shadow-blue);
}
.step-content h3 {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.step-content p {
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.65;
  font-family: var(--font);
}

/* ═══════════════════════════════════════════
   TROUBLESHOOTING
═══════════════════════════════════════════ */
.trouble-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.trouble-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.trouble-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--border-dark);
}
.trouble-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.trouble-item ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trouble-item li {
  font-size: 0.875rem;
  color: var(--text-2);
  padding-left: 16px;
  position: relative;
  font-family: var(--font);
}
.trouble-item li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-wrap {
  max-width: 760px;
}
.faq-list {
  margin-top: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.14s;
}
.faq-item summary:hover {
  color: var(--blue);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding: 0 4px 22px;
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.7;
  font-family: var(--font);
}

/* ═══════════════════════════════════════════
   SUPPORT CTA (VPN PAGE)
═══════════════════════════════════════════ */
.support-cta {
  background: var(--bg);
  padding: 80px 0;
}
.support-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sc-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-2);
}
.sc-image img {
  width: 100%;
  height: 320px;
  object-fit: contain;
}
.sc-text h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.sc-text p {
  color: var(--text-2);
  font-size: 1rem;
  margin-bottom: 28px;
  font-family: var(--font);
}

/* ═══════════════════════════════════════════
   PAGE HERO (INNER)
═══════════════════════════════════════════ */
.page-hero {
  padding: 72px 0 56px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06), transparent 65%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--navy);
  margin-bottom: 14px;
}
.page-hero .hero-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 480px;
  margin-bottom: 0;
  line-height: 1.7;
  font-family: var(--font);
}

/* ═══════════════════════════════════════════
   SERVICES FULL (SERVICES PAGE)
═══════════════════════════════════════════ */
.svc-full-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.svc-full-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--border-dark);
}

.svc-full-card--featured {
  border-top: 3px solid var(--fire);
  border-color: var(--fire-mid);
  background: linear-gradient(to bottom right, var(--white), var(--fire-light));
}
.svc-full-card--featured:hover {
  border-color: var(--fire-mid);
  box-shadow: var(--shadow-fire);
}

.sfc-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 2px;
}
.sfc-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.svc-full-card--featured .sfc-icon-wrap {
  background: var(--fire-light);
  border-color: var(--fire-mid);
  color: var(--fire);
}

.sfc-text h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.sfc-text p {
  color: var(--text-2);
  font-size: 0.925rem;
  margin-bottom: 16px;
  line-height: 1.7;
  font-family: var(--font);
}
.sfc-text ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.sfc-text li {
  font-size: 0.875rem;
  color: var(--text-2);
  padding-left: 16px;
  position: relative;
  font-family: var(--font);
}
.sfc-text li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.svc-full-card--featured .sfc-text li::before {
  color: var(--fire);
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2,
.contact-form-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.channel-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 32px;
}
.channel-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.channel-icon svg {
  width: 18px;
  height: 18px;
}
.channel-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.channel-item p {
  font-size: 0.875rem;
  color: var(--text-2);
  margin: 0;
  font-family: var(--font);
}
.channel-note {
  font-size: 0.78rem;
  color: var(--text-3);
  font-family: var(--font);
}

.vpn-shortcut {
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.vpn-shortcut svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
}
.vpn-shortcut p {
  font-size: 0.875rem;
  color: var(--text-2);
  margin: 0;
  font-family: var(--font);
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--blue), #60a5fa);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-2);
  font-family: var(--font);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 11px 14px;
  color: var(--navy);
  font-family: var(--font);
  font-size: 0.9rem;
  width: 100%;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-3);
}
.contact-form textarea {
  resize: vertical;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.will-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.will-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grid children */
.dl-grid .dl-card:nth-child(2).will-reveal {
  transition-delay: 0.07s;
}
.dl-grid .dl-card:nth-child(3).will-reveal {
  transition-delay: 0.14s;
}
.dl-grid .dl-card:nth-child(4).will-reveal {
  transition-delay: 0.21s;
}
.svc-full-list .svc-full-card:nth-child(2).will-reveal {
  transition-delay: 0.06s;
}
.svc-full-list .svc-full-card:nth-child(3).will-reveal {
  transition-delay: 0.12s;
}
.svc-full-list .svc-full-card:nth-child(4).will-reveal {
  transition-delay: 0.18s;
}
.svc-full-list .svc-full-card:nth-child(5).will-reveal {
  transition-delay: 0.24s;
}
.trouble-grid .trouble-item:nth-child(2).will-reveal {
  transition-delay: 0.08s;
}
.services-layout .svc-side-card:nth-child(1).will-reveal {
  transition-delay: 0.08s;
}
.services-layout .svc-side-card:nth-child(2).will-reveal {
  transition-delay: 0.16s;
}
.stats-inner .stat:nth-child(2).will-reveal {
  transition-delay: 0.07s;
}
.stats-inner .stat:nth-child(3).will-reveal {
  transition-delay: 0.14s;
}
.stats-inner .stat:nth-child(4).will-reveal {
  transition-delay: 0.21s;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.hiw-step {
  background: var(--bg-card);
  padding: 36px 28px;
}
.hiw-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.35;
}
.hiw-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.hiw-step p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testi-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.testi-quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testi-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}
.testi-author span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-2);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════
   PARTNERS STRIP
═══════════════════════════════════════════ */
.partners-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding: 18px 0;
}
.partners-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-2);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   INDUSTRIES
═══════════════════════════════════════════ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.industry-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}
.industry-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.industry-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
}
.industry-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.industry-card p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.faq-inner .section-intro {
  margin-bottom: 0;
  position: sticky;
  top: 100px;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-3);
  transition: transform 0.2s;
}
.faq-chevron svg { width: 100%; height: 100%; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item[open] .faq-question { color: var(--blue); }
.faq-answer {
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════ */
.final-cta-section {
  background: var(--navy);
  padding: 96px 0;
  text-align: center;
}
.final-cta-inner {
  max-width: 620px;
}
.final-cta-section .section-eyebrow {
  color: var(--blue);
  margin-bottom: 16px;
}
[data-theme="dark"] .final-cta-section .section-eyebrow {
  color: var(--blue);
}
.final-cta-section h2 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}
[data-theme="dark"] .final-cta-section h2 {
  color: var(--navy);
}
.final-cta-section p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 36px;
}
[data-theme="dark"] .final-cta-section p {
  color: var(--text-2);
}
[data-theme="dark"] .final-cta-section {
  background: var(--bg-2);
}
.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.final-cta-section .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.final-cta-section .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
[data-theme="dark"] .final-cta-section .btn-outline {
  color: var(--navy);
  border-color: var(--border-dark);
}

/* ═══════════════════════════════════════════
   VPN PAGE — NEW SECTIONS
═══════════════════════════════════════════ */
.quick-dl {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.quick-dl::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(to right, var(--blue), #60a5fa);
}
.quick-dl-head h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.quick-dl-head p {
  font-size: 0.95rem;
  color: var(--text-2);
  margin-bottom: 22px;
}
.quick-dl-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.quick-dl-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.quick-dl-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-dl-steps strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 4px;
  line-height: 1.3;
}
.quick-dl-steps p {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.55;
}
@media (max-width: 768px) {
  .quick-dl-steps { grid-template-columns: 1fr; }
}


.req-table,
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  font-size: 0.92rem;
}
.req-table th, .req-table td,
.compare-table th, .compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th, .compare-table td {
  padding: 12px 16px;
  text-align: center;
}
.compare-table td:first-child, .compare-table th:first-child {
  text-align: left;
  font-weight: 600;
}
.req-table th,
.compare-table th {
  background: var(--bg-2);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.req-table tr:last-child td,
.compare-table tr:last-child td {
  border-bottom: none;
}
.req-table td:first-child {
  font-weight: 600;
  color: var(--navy);
}
.compare-yes { color: #16a34a; font-weight: 700; }
.compare-no  { color: #ef4444; }

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 22px;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.module-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}
.module-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.module-card p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.55;
}
.module-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
  display: block;
}

.auth-list,
.resource-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  list-style: none;
  padding: 0;
}
.auth-list li,
.resource-list li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.92rem;
}
.auth-list li strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}
.auth-list li span {
  color: var(--text-2);
  font-size: 0.85rem;
}
.resource-list a {
  font-weight: 600;
  color: var(--navy);
}
.resource-list a:hover { color: var(--blue); }
.resource-list p {
  font-size: 0.85rem;
  color: var(--text-2);
  margin-top: 4px;
}

.error-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.error-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
}
.error-code {
  display: inline-block;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  padding: 2px 10px;
  border-radius: 6px;
  font-family: "Cascadia Code", "Consolas", monospace;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 10px;
}
[data-theme="dark"] .error-code {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.3);
}
.error-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.error-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}
.error-card ul {
  margin-top: 10px;
  padding-left: 20px;
  font-size: 0.88rem;
  color: var(--text-2);
}
.error-card ul li { margin-bottom: 4px; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    padding: 64px 0 0;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 28px;
  }
  .hero-text {
    padding-top: 0;
    padding-bottom: 48px;
    padding-right: 0;
  }
  .hero-image {
    border-radius: var(--radius-xl);
    align-self: auto;
  }
  .hero-image img {
    height: 360px;
    min-height: unset;
  }
  .photo-feature-inner {
    grid-template-columns: 1fr;
  }
  .vpn-cta-inner {
    grid-template-columns: 1fr;
  }
  .services-layout {
    grid-template-columns: 1fr;
  }
  .dl-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stat:nth-child(2n) {
    border-right: none;
  }
  .stat:last-child {
    border-bottom: none;
  }
  .support-cta-inner {
    grid-template-columns: 1fr;
  }
  .setup-layout {
    grid-template-columns: 1fr;
  }
  .setup-photo {
    position: static;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .hiw-steps        { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .industries-grid  { grid-template-columns: repeat(2, 1fr); }
  .faq-inner        { grid-template-columns: 1fr; gap: 32px; }
  .faq-inner .section-intro { position: static; }
}

@media (max-width: 600px) {
  .hiw-steps        { grid-template-columns: 1fr; }
  .industries-grid  { grid-template-columns: 1fr; }
  .final-cta-section h2 { font-size: 2.2rem; }
  .modules-grid     { grid-template-columns: 1fr; }
  .error-grid       { grid-template-columns: 1fr; }
  .auth-list        { grid-template-columns: 1fr; }
  .resource-list    { grid-template-columns: 1fr; }
  .req-table        { font-size: 0.82rem; }
  .req-table th, .req-table td { padding: 10px 12px; }
  .compare-table    { font-size: 0.78rem; }
  .compare-table th, .compare-table td { padding: 8px 10px; }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 3rem;
  }
  .hero {
    padding: 60px 0 0;
  }
  .hero-image {
    display: none;
  }
  .hero-social-proof {
    display: none;
  }
  .vpn-hero {
    min-height: 520px;
  }
  .vpn-hero-bg img {
    display: none;
  }
  .vpn-hero-overlay {
    background: linear-gradient(135deg, rgba(10, 20, 56, 0.92) 0%, rgba(15, 30, 80, 0.8) 100%);
  }
  .vpn-hero-content {
    transform: none;
    margin-left: 0;
  }
  .vpn-hero-content h1 {
    font-size: 2.4rem;
  }
  .trouble-grid {
    grid-template-columns: 1fr;
  }
  .svc-full-card {
    flex-direction: column;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-intro h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .dl-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .header-actions .btn-ghost-sm {
    display: none;
  }
  .section {
    padding: 64px 0;
  }
  .hero {
    padding: 60px 0 0;
  }
  .page-hero h1 {
    font-size: 2.2rem;
  }
}

/* ═══════════════════════════════════════════
   THEME TOGGLE BUTTON
═══════════════════════════════════════════ */
.theme-toggle {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  transition:
    background 0.18s,
    border-color 0.18s,
    color 0.18s,
    box-shadow 0.18s;
}
.theme-toggle:hover {
  background: var(--bg-2);
  border-color: var(--border-dark);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.theme-toggle:active {
  transform: scale(0.93);
}

.theme-icon {
  position: absolute;
  width: 17px;
  height: 17px;
  transition:
    opacity 0.22s ease,
    transform 0.3s ease;
}
.theme-icon--sun {
  opacity: 0;
  transform: rotate(-90deg) scale(0.75);
}
.theme-icon--moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
[data-theme="dark"] .theme-icon--sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
[data-theme="dark"] .theme-icon--moon {
  opacity: 0;
  transform: rotate(90deg) scale(0.75);
}

/* ═══════════════════════════════════════════
   DARK MODE — COMPONENT OVERRIDES
═══════════════════════════════════════════ */
[data-theme="dark"] .site-header {
  background: rgba(26, 21, 16, 0.9);
  border-bottom-color: var(--border);
}
[data-theme="dark"] .site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

[data-theme="dark"] .hero {
  background: #0d2340;
}
[data-theme="dark"] .hero-text {
  background: transparent;
}
[data-theme="dark"] .hero::before {
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.045) 1px,
    transparent 1px
  );
}

[data-theme="dark"] .hero-image-badge {
  background: rgba(26, 21, 16, 0.92);
  border-color: var(--border);
}

[data-theme="dark"] .stats-section {
  background: #110e0a;
}
[data-theme="dark"] .stat {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .stat strong {
  color: #f0e8dc;
}
[data-theme="dark"] .stat span {
  color: rgba(240, 232, 220, 0.45);
}

[data-theme="dark"] .vpn-banner {
  background: linear-gradient(110deg, #0a1428 0%, #0d2860 100%);
}
[data-theme="dark"] .vpn-hero-overlay {
  background: linear-gradient(
    to right,
    rgba(20, 14, 8, 0.92) 35%,
    rgba(20, 14, 8, 0.5) 100%
  );
}

[data-theme="dark"] .site-footer {
  background: #110e0a;
}
[data-theme="dark"] .footer-top {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .footer-nav a {
  color: rgba(240, 232, 220, 0.4);
}
[data-theme="dark"] .footer-nav a:hover {
  color: #f0e8dc;
}
[data-theme="dark"] .footer-bottom p {
  color: rgba(240, 232, 220, 0.25);
}

[data-theme="dark"] .svc-side-card--vpn {
  background: #1a1510;
  border-color: var(--border-dark);
}
[data-theme="dark"] .svc-side-card--vpn h3 {
  color: var(--navy);
}

[data-theme="dark"] .nav-links a:hover,
[data-theme="dark"] .nav-links a.active {
  background: var(--bg-2);
  color: var(--navy);
}

[data-theme="dark"] .btn-outline-dark {
  border-color: var(--border-dark);
  color: var(--navy);
}
[data-theme="dark"] .btn-outline-dark:hover {
  background: var(--bg-2);
  color: var(--navy);
}
[data-theme="dark"] .btn-ghost-sm {
  border-color: var(--border);
  color: var(--text-2);
}
[data-theme="dark"] .btn-ghost-sm:hover {
  background: var(--bg-2);
  color: var(--navy);
}

[data-theme="dark"] .check-list li::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' stroke='%235b9cf6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form select,
[data-theme="dark"] .contact-form textarea {
  background: var(--bg-2);
  color: var(--navy);
}
[data-theme="dark"] .contact-form select option {
  background: var(--bg-2);
  color: var(--navy);
}

[data-theme="dark"] code,
[data-theme="dark"] .code-pill {
  color: #93c5fd;
  background: var(--bg-2);
  border-color: var(--border);
}

[data-theme="dark"] .admin-note {
  background: rgba(91, 156, 246, 0.08);
  border-color: rgba(91, 156, 246, 0.2);
}

[data-theme="dark"] .svc-full-card--featured {
  background: linear-gradient(
    to bottom right,
    var(--bg-card),
    var(--fire-light)
  );
  border-color: rgba(251, 146, 60, 0.3);
}
[data-theme="dark"] .svc-full-card--featured .sfc-icon-wrap {
  background: linear-gradient(
    135deg,
    var(--fire-light),
    rgba(251, 146, 60, 0.2)
  );
  border-color: rgba(251, 146, 60, 0.3);
}

[data-theme="dark"] .page-hero::after {
  background: radial-gradient(
    circle,
    rgba(91, 156, 246, 0.05),
    transparent 65%
  );
}

[data-theme="dark"] .dl-card--featured::before {
  background: linear-gradient(to right, var(--blue), #4488f0);
}
[data-theme="dark"] .contact-form-card::before {
  background: linear-gradient(to right, var(--blue), #4488f0);
}

/* ═══════════════════════════════════════════
   MOBILE HAMBURGER MENU
═══════════════════════════════════════════ */
.mobile-menu-btn {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  color: var(--text-2);
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}
.mobile-menu-btn svg {
  width: 20px;
  height: 20px;
}
.menu-icon--close {
  display: none;
}
.mobile-menu-btn[aria-expanded="true"] .menu-icon--open {
  display: none;
}
.mobile-menu-btn[aria-expanded="true"] .menu-icon--close {
  display: block;
}

.mobile-nav {
  display: none;
  padding: 12px 20px 20px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}
.mobile-nav a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text-2);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--font);
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--navy);
  background: var(--bg);
  text-decoration: none;
}
.mobile-nav .btn-full {
  display: block;
  text-align: center;
}

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

@media (max-width: 600px) {
  .mobile-menu-btn {
    display: flex;
  }
  .site-header.menu-open {
    height: auto;
  }
}

[data-theme="dark"] .mobile-menu-btn {
  background: var(--bg-card);
  border-color: var(--border);
  color: var(--text-2);
}
[data-theme="dark"] .mobile-nav {
  background: var(--bg-card);
  border-top-color: var(--border);
}
[data-theme="dark"] .mobile-nav a:hover,
[data-theme="dark"] .mobile-nav a.active {
  background: var(--bg-2);
  color: var(--navy);
}
