/* ============================================
   GUIDE-VPN.FR — Global Stylesheet
   Design system : dark tech, cyan #00d4ff
   ============================================ */

:root {
  --bg: #070b12;
  --bg2: #0d1420;
  --bg3: #111a2e;
  --cyan: #00d4ff;
  --cyan-dim: rgba(0, 212, 255, 0.12);
  --cyan-border: rgba(0, 212, 255, 0.25);
  --violet: #7c3aed;
  --violet-dim: rgba(124, 58, 237, 0.15);
  --text: #e8edf5;
  --text-muted: #8a9ab5;
  --text-dim: #4a5a75;
  --gold: #f0b429;
  --green: #10d68e;
  --red: #ff4757;
  --border: rgba(255,255,255,0.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(0,212,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(124,58,237,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4 { font-family: 'Rajdhani', sans-serif; letter-spacing: 0.02em; }

a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }

/* ── HEADER / NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 11, 18, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

/* Mobile nav caché par défaut sur TOUS les écrans */
.mobile-nav { display: none; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

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

.logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
}

.logo-text span { color: var(--cyan); }

/* ── NAV DESKTOP ── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

/* Liens simples */
.main-nav > .nav-link {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 6px;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav > .nav-link:hover { color: var(--text); background: var(--bg3); text-decoration: none; }

/* CTA */
.nav-cta {
  background: var(--cyan) !important;
  color: var(--bg) !important;
  font-weight: 600 !important;
  padding: 7px 16px !important;
  border-radius: 6px;
  font-size: 0.88rem;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.88; text-decoration: none; }

/* Dropdown parent */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
  white-space: nowrap;
  background: none;
  border: none;
  font-family: inherit;
}

.nav-dropdown-toggle:hover { color: var(--text); background: var(--bg3); }
.nav-dropdown.open .nav-dropdown-toggle { color: var(--cyan); background: var(--bg3); }

.nav-chevron {
  width: 14px; height: 14px;
  flex-shrink: 0;
  transition: transform 0.25s;
  opacity: 0.5;
}

.nav-dropdown.open .nav-chevron { transform: rotate(180deg); opacity: 1; }

/* Dropdown panel */
.nav-dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  z-index: 200;
}

.nav-dropdown.open .nav-dropdown-panel { display: block; }

.nav-dropdown-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 7px;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.15s;
}

.nav-dropdown-panel a:hover { background: var(--bg3); color: var(--text); text-decoration: none; }

.nav-item-icon { font-size: 1rem; flex-shrink: 0; width: 20px; text-align: center; }
.nav-item-label { font-weight: 500; }
.nav-dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 12px 20px;
  font-size: 0.8rem;
  color: var(--text-dim);
  max-width: 1100px;
  margin: 0 auto;
}
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span { margin: 0 6px; }

/* ── HERO ── */
.hero {
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
}

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

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--cyan), #0099cc);
  color: var(--bg);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 24px rgba(0,212,255,0.25);
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,212,255,0.35);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--cyan-border);
  color: var(--cyan);
  text-decoration: none;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cyan);
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── TABLE DES MATIÈRES ── */
.toc-section { padding: 50px 20px 0; }

.toc-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
  border-radius: 10px;
  padding: 24px 28px;
  max-width: 680px;
}

.toc-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.toc-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.toc-list li { display: flex; align-items: center; gap: 10px; }

.toc-list a {
  color: var(--text);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}

.toc-list a:hover { color: var(--cyan); }

.toc-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
  background: var(--cyan-dim);
  width: 22px; height: 22px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── SECTIONS ── */
section { padding: 60px 20px; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.section-intro {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 640px;
  margin-bottom: 40px;
}

/* ── VPN CARDS ── */
.vpn-cards { display: flex; flex-direction: column; gap: 16px; }

.vpn-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.vpn-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.vpn-card:hover::before { opacity: 1; }
.vpn-card:hover { border-color: var(--cyan-border); transform: translateX(4px); }

.vpn-card.top-pick {
  border-color: rgba(0,212,255,0.3);
  background: linear-gradient(135deg, var(--bg2), rgba(0,212,255,0.03));
}

.vpn-rank {
  width: 42px; height: 42px;
  background: var(--bg3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dim);
  flex-shrink: 0;
}

.vpn-card.top-pick .vpn-rank {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: white;
}

.vpn-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }

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

.vpn-score {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}

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

.tag {
  background: var(--bg3);
  color: var(--text-muted);
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.tag.green { background: rgba(16,214,142,0.1); color: var(--green); }
.tag.cyan { background: var(--cyan-dim); color: var(--cyan); }

.vpn-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.vpn-price { text-align: right; }

.price-amount {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}

.price-period { font-size: 0.75rem; color: var(--text-dim); }
.price-save { font-size: 0.72rem; color: var(--green); font-weight: 600; }

.btn-card {
  background: var(--cyan);
  color: var(--bg);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 9px 20px;
  border-radius: 7px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-card:hover { opacity: 0.88; text-decoration: none; transform: translateY(-1px); }

.btn-card.outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn-card.outline:hover { border-color: var(--cyan-border); color: var(--cyan); }

.top-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── USE CASES ── */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.use-case-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s;
  display: block;
}

.use-case-card:hover {
  border-color: var(--cyan-border);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  text-decoration: none;
}

.use-case-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.use-case-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  display: block;
}
.use-case-desc { font-size: 0.8rem; color: var(--text-muted); }

/* ── COMPARISON TABLE ── */
.comparison-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table th {
  background: var(--bg3);
  padding: 14px 18px;
  text-align: left;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.comparison-table th:first-child { color: var(--text); }

.comparison-table td {
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  vertical-align: middle;
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: rgba(255,255,255,0.02); }

.check { color: var(--green); font-size: 1rem; }
.cross { color: var(--red); font-size: 1rem; }
.partial { color: var(--gold); font-size: 0.85rem; }

.vpn-name-cell { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1rem; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 22px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

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

.faq-icon {
  width: 22px; height: 22px;
  background: var(--bg3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: transform 0.3s;
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--cyan-dim); color: var(--cyan); }

/* ── GUIDES GRID ── */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.guide-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  text-decoration: none;
  display: block;
  transition: all 0.25s;
}

.guide-card:hover {
  border-color: var(--cyan-border);
  transform: translateY(-2px);
  text-decoration: none;
}

.guide-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-dim);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.guide-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.guide-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

.guide-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--cyan);
  margin-top: 10px;
  font-weight: 600;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 20px;
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-icon { color: var(--cyan); font-size: 1rem; }

/* ── PAGES DE CONTENU (à propos, mentions légales, etc.) ── */
.page-content {
  padding: 50px 20px 80px;
}

.page-wrap {
  max-width: 760px;
}

.page-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 36px;
  line-height: 1.15;
}

.page-title .accent { color: var(--cyan); }

.page-updated {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 36px;
  margin-top: -24px;
}

.page-wrap h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 14px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.page-wrap p {
  color: var(--text-muted);
  font-size: 0.97rem;
  margin-bottom: 14px;
  line-height: 1.75;
}

.page-wrap ul {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-wrap ul li {
  color: var(--text-muted);
  font-size: 0.97rem;
  padding-left: 18px;
  position: relative;
}

.page-wrap ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.page-wrap a { color: var(--cyan); }
.page-wrap code {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.85rem;
  color: var(--cyan);
}

/* ── FOOTER GRID VARIANTE ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 20px 24px;
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid--simple {
  grid-template-columns: 2fr 1fr;
}

.footer-grid--4col {
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.footer-col a {
  color: var(--text-muted);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy { font-size: 0.8rem; color: var(--text-dim); }

.affiliation-notice {
  font-size: 0.78rem;
  color: var(--text-dim);
  max-width: 560px;
  line-height: 1.6;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
}

.affiliation-notice strong { color: var(--text-muted); }

/* ── MOBILE NAV ── */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }

  /* Panel mobile — fixed sous le header sticky */
  .mobile-nav.open {
    display: block;
    position: fixed;
    top: 62px; /* hauteur du header */
    left: 0; right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    z-index: 99;
    overflow-y: auto;
    max-height: calc(100vh - 62px);
  }

  /* Lien simple mobile */
  .mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
  }

  .mobile-nav-link:hover { background: var(--bg3); color: var(--text); text-decoration: none; }
  .mobile-nav-link:last-child { border-bottom: none; }

  /* Accordéon mobile */
  .mobile-nav-group { border-bottom: 1px solid var(--border); }

  .mobile-nav-group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    user-select: none;
    background: none;
    border: none;
    width: 100%;
    font-family: inherit;
    text-align: left;
    transition: background 0.15s;
  }

  .mobile-nav-group-toggle:hover { background: var(--bg3); }

  .mobile-nav-group.open .mobile-nav-group-toggle { color: var(--cyan); }

  .mobile-nav-group-toggle .toggle-label { display: flex; align-items: center; gap: 8px; }

  .mobile-nav-chevron {
    width: 16px; height: 16px;
    transition: transform 0.25s;
    color: var(--text-dim);
    flex-shrink: 0;
  }

  .mobile-nav-group.open .mobile-nav-chevron { transform: rotate(180deg); color: var(--cyan); }

  /* Items enfants */
  .mobile-nav-items {
    display: none;
    background: rgba(0,0,0,0.2);
    padding: 4px 0 8px;
  }

  .mobile-nav-group.open .mobile-nav-items { display: block; }

  .mobile-nav-items a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 36px;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: background 0.15s;
  }

  .mobile-nav-items a:hover { background: var(--bg3); color: var(--text); text-decoration: none; }

  /* CTA mobile */
  .mobile-nav-cta {
    display: block;
    margin: 12px 16px;
    padding: 12px;
    background: var(--cyan);
    color: var(--bg) !important;
    text-align: center;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.04em;
    border-radius: 8px;
    text-decoration: none;
  }

  /* Reset desktop dropdown sur mobile */
  .nav-dropdown-panel { display: none !important; }
}

/* ── MOBILE GÉNÉRAL ── */
@media (max-width: 768px) {
  .hero { padding: 50px 20px 40px; }

  .vpn-card {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .vpn-action {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .stats-inner { gap: 20px; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero > * { animation: fadeInUp 0.6s ease both; }
.hero > *:nth-child(1) { animation-delay: 0.1s; }
.hero > *:nth-child(2) { animation-delay: 0.2s; }
.hero > *:nth-child(3) { animation-delay: 0.3s; }
.hero > *:nth-child(4) { animation-delay: 0.45s; }

/* ── CRITERIA GRID (comment choisir) ── */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.criteria-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.2s;
}

.criteria-card:hover { border-color: var(--cyan-border); }

.criteria-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 12px;
}

.criteria-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.criteria-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── ABOUT SITE ── */
.about-site-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 20px 0;
}

.about-site-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}

.about-stat { text-align: center; }

.about-stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan);
  display: block;
  line-height: 1;
}

.about-stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .about-site-wrap {
    grid-template-columns: 1fr;
  }
  .about-site-stats {
    flex-direction: row;
    justify-content: center;
  }
  .criteria-grid {
    grid-template-columns: 1fr;
  }
}
