/* ============================================================
   inyx.io — Feuille de style partagée
   Éditez les variables CSS ci-dessous pour ajuster le design
   ============================================================ */

/* ─── Variables ────────────────────────────────────────────── */
:root {
  --bg:           #0B1120;
  --bg-alt:       #111827;
  --surface:      #1A2237;
  --border:       #243048;
  --accent:       #00D4AA;
  --accent-dim:   #009E80;
  --accent-glow:  rgba(0, 212, 170, 0.14);
  --eu:           #3B82F6;
  --eu-glow:      rgba(59, 130, 246, 0.14);
  --text:         #F1F5F9;
  --muted:        #94A3B8;
  --faint:        #475569;
  --success:      #10B981;
  --warning:      #F59E0B;
  --font:         'Inter', system-ui, -apple-system, sans-serif;
  --mono:         'JetBrains Mono', 'Fira Code', monospace;
  --r-sm:  6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --shadow-glow: 0 0 0 1px var(--accent), 0 20px 48px rgba(0,212,170,0.1);
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; }
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ─── Utilitaires ───────────────────────────────────────────── */
.container    { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 24px; }
.gradient-text {
  background: linear-gradient(135deg, #00D4AA 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.section-title  { font-size: clamp(28px,4vw,40px); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 12px; }
.section-sub    { font-size: 16px; color: var(--muted); max-width: 600px; line-height: 1.7; }
.text-center    { text-align: center; }
.text-center .section-sub { margin-inline: auto; }

/* ─── Badge ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 11px; border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.03em;
}
.badge-accent  { background: var(--accent-glow); color: var(--accent); border: 1px solid rgba(0,212,170,0.25); }
.badge-eu      { background: var(--eu-glow); color: var(--eu); border: 1px solid rgba(59,130,246,0.25); }
.badge-neutral { background: rgba(148,163,184,0.08); color: var(--muted); border: 1px solid rgba(148,163,184,0.15); }
.badge-success { background: rgba(16,185,129,0.1); color: var(--success); border: 1px solid rgba(16,185,129,0.2); }
.badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

/* ─── Boutons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--r-md);
  font-size: 14px; font-weight: 600; cursor: pointer;
  border: none; transition: all 0.2s ease; white-space: nowrap;
}
.btn-primary  { background: var(--accent); color: #0B1120; }
.btn-primary:hover  { background: var(--accent-dim); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,212,170,0.28); }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost    { background: transparent; color: var(--muted); }
.btn-ghost:hover { color: var(--accent); }
.btn-lg       { padding: 14px 32px; font-size: 15px; border-radius: var(--r-lg); }
.btn-sm       { padding: 8px 16px; font-size: 13px; }
.btn-full     { width: 100%; }

/* ─── Logo ───────────────────────────────────────────────────── */
/*
  Trois variantes disponibles — changez la classe sur l'élément .logo :
    .logo-a  → Icône réseau + texte (défaut)
    .logo-b  → Texte seul
    .logo-c  → Texte + barre dégradée
*/
.logo         { display: inline-flex; align-items: center; gap: 10px; }
.logo-icon    { width: 34px; height: 34px; flex-shrink: 0; }
.logo-wordmark { font-size: 20px; font-weight: 800; letter-spacing: -0.035em; color: var(--text); }
.logo-wordmark em { font-style: normal; color: var(--accent); }
.logo-wordmark small { font-weight: 300; color: var(--muted); font-size: inherit; }

/* Variante B — texte seul */
.logo-b .logo-icon { display: none; }

/* Variante C — texte + underline */
.logo-c .logo-icon { display: none; }
.logo-c .logo-wordmark { position: relative; padding-bottom: 5px; }
.logo-c .logo-wordmark::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--eu));
  border-radius: 2px;
}

/* ─── Navbar ─────────────────────────────────────────────────── */
#navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 17, 32, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.4); }
.nav-inner {
  display: flex; align-items: center;
  height: 64px; gap: 32px;
}
.nav-links {
  display: flex; align-items: center; gap: 28px; flex: 1;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: color 0.2s; padding-block: 4px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { border-bottom-color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-lang {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--faint); font-weight: 500;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 4px 10px; transition: all 0.2s;
}
.nav-lang:hover { color: var(--text); border-color: var(--muted); }
.nav-hamburger { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 4px; }

/* ─── Hero ───────────────────────────────────────────────────── */
#hero {
  position: relative; overflow: hidden;
  padding-block: 96px 80px;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,212,170,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,170,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-glow-a {
  position: absolute; top: -10%; left: 30%; transform: translateX(-50%);
  width: 700px; height: 700px; pointer-events: none;
  background: radial-gradient(circle, rgba(0,212,170,0.07) 0%, transparent 65%);
}
.hero-glow-b {
  position: absolute; bottom: -20%; right: -10%;
  width: 500px; height: 500px; pointer-events: none;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 65%);
}
.hero-content { position: relative; max-width: 760px; }
.hero-eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.hero-title {
  font-size: clamp(44px, 6.5vw, 72px); font-weight: 800;
  line-height: 1.04; letter-spacing: -0.035em; margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 18px; color: var(--muted); max-width: 560px;
  margin-bottom: 40px; line-height: 1.7;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); }
.trust-item svg { color: var(--accent); flex-shrink: 0; }
.trust-sep { width: 1px; height: 14px; background: var(--border); }

/* ─── Hero split layout ──────────────────────────────────────── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: center;
}

/* ─── Hero performance panel ─────────────────────────────────── */
.hero-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px;
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.06);
}
.panel-status {
  display: flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 600; color: var(--accent);
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.panel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,212,170,0.18);
  animation: panel-pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes panel-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0,212,170,0.18); }
  50%       { box-shadow: 0 0 0 7px rgba(0,212,170,0.04); }
}
.panel-label {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--faint);
  margin-bottom: 14px;
}
.panel-dc {
  display: grid;
  grid-template-columns: 1fr 52px 42px;
  align-items: center; gap: 10px;
  margin-bottom: 11px;
}
.panel-dc-name { font-size: 12px; color: var(--muted); white-space: nowrap; }
.panel-dc-bar  {
  height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.07); overflow: hidden;
}
.panel-dc-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(0,212,170,0.4));
  transition: width 0.9s cubic-bezier(.4,0,.2,1);
}
.panel-dc-ms {
  font-size: 12px; font-weight: 700; color: var(--text);
  font-variant-numeric: tabular-nums; text-align: right;
}
.panel-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--border); margin-top: 14px;
}
.panel-uptime        { font-size: 12px; color: var(--muted); }
.panel-uptime strong { color: var(--accent); font-weight: 700; }
.panel-refresh       { font-size: 11px; color: var(--faint); display: flex; align-items: center; gap: 4px; }
.panel-spinner {
  display: inline-block; width: 9px; height: 9px;
  border: 1.5px solid var(--faint); border-top-color: var(--accent);
  border-radius: 50%; animation: spin 1.4s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Stats bar ─────────────────────────────────────────────── */
#stats {
  border-block: 1px solid var(--border);
  background: var(--bg-alt);
  padding-block: 40px;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.stat-item  { text-align: center; padding-inline: 20px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num   { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; color: var(--accent); line-height: 1; }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 6px; }

/* ─── Section générique ─────────────────────────────────────── */
.section { padding-block: 88px; }
.section-header { margin-bottom: 56px; }

/* ─── Products ───────────────────────────────────────────────── */
.products-grid { display: flex; flex-direction: column; gap: 48px; }

/* ─── Section label ──────────────────────────────────────────── */
.products-section-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.products-section-label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); padding: 4px 14px;
  background: var(--accent-glow); border: 1px solid rgba(0,212,170,0.2);
  border-radius: 100px; white-space: nowrap;
}
.products-section-line { flex: 1; height: 1px; background: var(--border); }
.products-section-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ─── Private Node block ─────────────────────────────────────── */
.private-node-block {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 36px; align-items: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 32px;
  transition: border-color 0.3s;
}
.private-node-block:hover { border-color: rgba(245,158,11,0.35); }
.pn-header   { display: flex; align-items: flex-start; gap: 16px; }
.pn-icon-wrap {
  width: 48px; height: 48px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; background: rgba(245,158,11,0.1); flex-shrink: 0;
}
.pn-name     { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.pn-desc     { font-size: 13px; color: var(--muted); line-height: 1.55; max-width: 260px; }
.pn-features-row { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.pn-feature  {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--muted);
}
.pn-feature::before { content: '✓'; color: var(--accent); font-weight: 800; flex-shrink: 0; }
.pn-cta      { text-align: right; flex-shrink: 0; }
.pn-quote    { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 4px; white-space: nowrap; }
.pn-quote-sub { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.product-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 28px;
  position: relative; transition: all 0.3s;
  display: flex; flex-direction: column;
}
.product-card:hover { border-color: rgba(0,212,170,0.5); box-shadow: 0 24px 48px rgba(0,0,0,0.3); transform: translateY(-4px); }
.product-card.featured {
  border-color: var(--accent);
  background: linear-gradient(150deg, #1A2237 0%, #162030 100%);
}
.product-card.featured:hover { box-shadow: var(--shadow-glow); }
.product-featured-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #0B1120;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 16px; border-radius: 100px;
  white-space: nowrap;
}
.product-icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.icon-green  { background: rgba(0,212,170,0.1); }
.icon-blue   { background: rgba(59,130,246,0.1); }
.icon-amber  { background: rgba(245,158,11,0.1); }
.product-name  { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.product-desc  { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; flex: 1; }
.product-price { margin-bottom: 24px; }
.price-main    { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.price-cur     { font-size: 22px; font-weight: 700; vertical-align: super; line-height: 1; }
.price-period  { font-size: 13px; color: var(--muted); margin-left: 2px; }
.price-annual  { font-size: 12px; color: var(--accent); margin-top: 6px; }
.price-quote   { font-size: 24px; font-weight: 700; color: var(--text); }
.price-quote-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }
.product-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.product-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--muted); line-height: 1.45;
}
.product-features li::before {
  content: '✓'; color: var(--accent); font-weight: 800;
  font-size: 12px; margin-top: 1px; flex-shrink: 0;
}

/* ─── Features ───────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px;
  transition: border-color 0.3s;
}
.feature-card:hover { border-color: rgba(0,212,170,0.35); }
.feature-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--accent-glow); display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 18px;
}
.feature-title { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.feature-desc  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ─── Localisation ───────────────────────────────────────────── */
#locations { background: var(--bg-alt); }
.locations-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.locations-text .section-sub { margin-bottom: 32px; }
.location-list { display: flex; flex-direction: column; gap: 14px; }
.location-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 14px 18px;
  transition: all 0.2s;
}
.location-item:hover { border-color: rgba(0,212,170,0.4); }
.location-flag { font-size: 24px; }
.location-info { flex: 1; }
.location-country { font-size: 14px; font-weight: 600; }
.location-city    { font-size: 12px; color: var(--muted); }
.location-status  { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--success); font-weight: 600; }
.location-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--success); animation: pulse 2s infinite; }
.location-soon { color: var(--faint); font-size: 11px; font-weight: 500; font-style: italic; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.locations-visual {
  display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
}
.data-sovereignty-card {
  background: var(--surface); border: 1px solid var(--accent);
  border-radius: var(--r-lg); padding: 28px 24px; width: 100%;
  box-shadow: 0 0 40px rgba(0,212,170,0.06);
}
.dsov-title { font-size: 15px; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.dsov-items { display: flex; flex-direction: column; gap: 12px; }
.dsov-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--muted);
}
.dsov-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ─── Comparatif ─────────────────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 14px 20px; text-align: center;
  border-bottom: 1px solid var(--border); font-size: 13px;
}
.compare-table thead th { font-size: 15px; font-weight: 700; padding-block: 20px; }
.compare-table thead th.col-feature { text-align: left; color: var(--muted); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.compare-table tbody td.col-feature { text-align: left; color: var(--muted); font-size: 13px; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.check-yes { color: var(--accent); font-size: 16px; font-weight: 700; }
.check-no  { color: var(--faint); font-size: 16px; }
.col-featured { background: rgba(0,212,170,0.04); border-inline: 1px solid rgba(0,212,170,0.2); }

/* ─── About ──────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-text p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.about-values { display: flex; flex-direction: column; gap: 20px; }
.value-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-md);
  transition: border-color 0.2s;
}
.value-item:hover { border-color: rgba(0,212,170,0.35); }
.value-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.value-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.value-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── Contact ─────────────────────────────────────────────────── */
#contact { background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.contact-info-item { display: flex; gap: 12px; align-items: flex-start; }
.contact-info-icon {
  width: 38px; height: 38px; border-radius: var(--r-md);
  background: var(--accent-glow); display: flex; align-items: center;
  justify-content: center; font-size: 18px; flex-shrink: 0;
}
.contact-info-label { font-size: 12px; color: var(--muted); font-weight: 500; }
.contact-info-value { font-size: 14px; font-weight: 600; margin-top: 2px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group   { display: flex; flex-direction: column; gap: 6px; }
.form-label   { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: 0.04em; }
.form-control {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 12px 16px;
  color: var(--text); font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control::placeholder { color: var(--faint); }
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,212,170,0.12); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }
.form-notice { font-size: 11px; color: var(--faint); line-height: 1.5; }
.form-success { display: none; padding: 16px 20px; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.25); border-radius: var(--r-md); color: var(--success); font-size: 14px; font-weight: 500; }

/* ─── Footer ─────────────────────────────────────────────────── */
#footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-top: 64px; padding-bottom: 32px;
}
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 13px; color: var(--muted); margin-top: 14px; max-width: 260px; line-height: 1.7; }
.footer-badges { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--faint); flex-wrap: wrap; gap: 12px;
}
.footer-rgpd {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 100px;
  background: var(--eu-glow); border: 1px solid rgba(59,130,246,0.2);
  font-size: 11px; color: var(--eu); font-weight: 600;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-section-grid { grid-template-columns: 1fr 1fr; }
  .private-node-block    { grid-template-columns: 1fr; }
  .pn-cta                { text-align: left; }
  .features-grid   { grid-template-columns: 1fr 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .about-grid      { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid    { grid-template-columns: 1fr; gap: 40px; }
  .locations-wrapper { grid-template-columns: 1fr; }
  .hero-split      { grid-template-columns: 1fr; }
  .hero-panel      { display: none; }
}
@media (max-width: 768px) {
  .nav-links       { display: none; }
  .nav-hamburger   { display: block; }
  .products-section-grid { grid-template-columns: 1fr; }
  .features-grid   { grid-template-columns: 1fr; }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .form-row        { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; }
  .compare-table   { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--faint); }

/* ─── Selection ──────────────────────────────────────────────── */
::selection { background: rgba(0,212,170,0.2); color: var(--text); }

/* ─── Smooth reveal (optionnel) ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
