/* ============================================================
   UniHeberg - Design System
   ============================================================ */

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

:root {
  --bg: #070a13;
  --bg2: #0c0f1a;
  --surface: #0f1225;
  --surface2: #141833;
  --border: rgba(255,255,255,0.06);
  --border2: rgba(255,255,255,0.12);
  --white: #fff;
  --w80: rgba(255,255,255,0.80);
  --w70: rgba(255,255,255,0.70);
  --w50: rgba(255,255,255,0.50);
  --w40: rgba(255,255,255,0.40);
  --w20: rgba(255,255,255,0.20);
  --w10: rgba(255,255,255,0.10);
  --w06: rgba(255,255,255,0.06);
  --purple: #9b6dff;
  --purple2: #6f42c1;
  --purple-glow: rgba(111,66,193,0.15);
  --cyan: #b388ff;
  --green: #00e87a;
  --green-dim: rgba(0,232,122,0.15);
  --amber: #f59e0b;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
}

/* ── NAV ──
   Scoped to header nav only - a bare `nav {}` selector also matches the
   three <nav class="footer-col"> elements in the footer (Produits /
   Informations / Légal), forcing them into a 64px-tall flex row with
   sticky positioning and a blurred background. That was silently
   breaking the footer layout on every page, desktop and mobile. */
header nav {
  position: sticky; top: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 64px;
  background: rgba(7,10,19,0.8);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 19px;
  letter-spacing: 0em; color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 9px;
}
.logo-mark {
  width: 28px; height: 28px; border-radius: 7px;
  background: linear-gradient(135deg, var(--purple2), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: #fff; flex-shrink: 0;
  box-shadow: 0 0 16px rgba(111,66,193,0.3);
}
.nav-desktop { display: flex; align-items: center; gap: 6px; flex-shrink: 1; min-width: 0; }
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; flex-shrink: 1; min-width: 0; flex-wrap: nowrap; }

/* Dropdown nav items */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500; color: var(--w60, rgba(255,255,255,0.6));
  text-decoration: none;
  padding: 8px 14px; border-radius: 10px;
  transition: color 0.15s, background 0.15s;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 5px;
  letter-spacing: 0em;
  white-space: nowrap;
}
.nav-dropdown-btn:hover { color: var(--white); background: var(--w06); }
.nav-dropdown-btn svg { width: 13px; height: 13px; transition: transform 0.2s; opacity: 0.5; }
.nav-dropdown-btn:hover svg { opacity: 1; }

.nav-dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 0;
  padding-top: 6px;
  z-index: 10001;
}
.nav-dropdown-menu-inner {
  width: 340px;
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 16px; padding: 10px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
  animation: fadeIn 0.15s ease;
}
.nav-dropdown:hover > .nav-dropdown-menu,
.nav-dropdown.open > .nav-dropdown-menu { display: block; }
.nav-dropdown:hover > .nav-dropdown-btn svg,
.nav-dropdown.open > .nav-dropdown-btn svg { transform: rotate(180deg); opacity: 1; }

.nav-dropdown-item {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 14px; border-radius: 12px;
  text-decoration: none; color: var(--white);
  transition: background 0.15s;
}
.nav-dropdown-item:hover { background: var(--w06); }
.nav-dropdown-item:hover .nav-dropdown-item-name { color: var(--purple); }
.nav-dropdown-icon {
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--purple-glow); border: 1px solid rgba(111,66,193,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--purple); flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}
.nav-dropdown-item:hover .nav-dropdown-icon {
  background: rgba(111,66,193,0.18); border-color: rgba(111,66,193,0.4);
}
.nav-dropdown-item-name { font-size: 14px; font-weight: 600; letter-spacing: 0em; transition: color 0.15s; }
.nav-dropdown-item-desc {
  font-size: 12px; color: var(--w40); margin-top: 2px;
  line-height: 1.35; max-width: 240px;
}

/* ── Nav icon color variants ── */
.nav-icon-green  { background: rgba(34,197,94,0.1)!important;  border-color: rgba(34,197,94,0.25)!important;  color: #4ade80!important; }
.nav-icon-blue   { background: rgba(59,130,246,0.1)!important; border-color: rgba(59,130,246,0.25)!important; color: #60a5fa!important; }
.nav-icon-indigo { background: rgba(99,102,241,0.12)!important;border-color: rgba(99,102,241,0.3)!important;  color: #818cf8!important; }
.nav-icon-red    { background: rgba(239,68,68,0.1)!important;  border-color: rgba(239,68,68,0.2)!important;   color: #f87171!important; }
.nav-icon-amber  { background: rgba(245,158,11,0.1)!important; border-color: rgba(245,158,11,0.2)!important;  color: #fbbf24!important; }
.nav-icon-purple { background: var(--purple-glow)!important;   border-color: rgba(111,66,193,0.25)!important; color: var(--purple)!important; }
.nav-icon-cyan   { background: rgba(6,182,212,0.1)!important;  border-color: rgba(6,182,212,0.2)!important;   color: #22d3ee!important; }
.nav-icon-mc     { background: rgba(74,222,128,0.1)!important; border-color: rgba(74,222,128,0.2)!important;  color: #4ade80!important; }
.nav-icon-hytale { background: rgba(96,165,250,0.1)!important; border-color: rgba(96,165,250,0.2)!important;  color: #60a5fa!important; }
.nav-icon-fivem { background: rgba(245,158,11,0.12)!important; border-color: rgba(245,158,11,0.25)!important; color: #f59e0b!important; }
.nav-icon-unibox { background: rgba(111,66,193,0.12)!important; border-color: rgba(111,66,193,0.3)!important; color: #7c3aed!important; }
/* ── Nav Badges ── */
.nav-badge {
  display: inline-flex; align-items: center;
  font-family: 'Syne', sans-serif; font-size: 9px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 100px;
  line-height: 1.6; flex-shrink: 0;
}
.nav-dropdown-item-name {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
}
.nav-badge-pop {
  background: linear-gradient(135deg, var(--purple2), var(--purple));
  color: #fff;
  box-shadow: 0 2px 8px rgba(111,66,193,0.35);
}
.nav-badge-new {
  background: linear-gradient(135deg, #0d9f5a, #4ade80);
  color: #fff;
  box-shadow: 0 2px 8px rgba(74,222,128,0.35);
}


.nav-btn {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px;
  background: linear-gradient(135deg, var(--purple2), var(--purple));
  color: #fff;
  padding: 9px 20px; border-radius: 9px; text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(111,66,193,0.3);
}
.nav-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-login {
  font-size: 13px; color: var(--w50); text-decoration: none;
  padding: 7px 14px; border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav-login:hover { color: var(--white); background: var(--w06); }
.nav-auth { display: flex; align-items: center; gap: 8px; }
.nav-aff {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 12px;
  color: #4ade80; border: 1px solid rgba(34,197,94,0.3);
  background: rgba(34,197,94,0.06);
  padding: 7px 14px; border-radius: 100px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.nav-aff:hover { background: rgba(34,197,94,0.12); border-color: rgba(34,197,94,0.5); }

/* Mobile hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--white); font-size: 22px; padding: 8px;
}
.mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--surface); border-bottom: 1px solid var(--border2);
  padding: 16px 16px 24px; z-index: 9999;
  max-height: calc(100vh - 64px); overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.mobile-menu.open { display: block; }
.mobile-section-title {
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--w40);
  padding: 12px 12px 6px; margin-top: 8px;
}
.mobile-link {
  display: flex; align-items: center; gap: 10px;
  padding: 12px; border-radius: 10px; text-decoration: none;
  color: var(--w50); font-size: 14px; transition: background 0.15s, color 0.15s;
}
.mobile-link:hover { background: var(--w06); color: var(--white); }
.mobile-link i { color: var(--purple); width: 18px; text-align: center; }
.mobile-divider { border: none; border-top: 1px solid var(--border); margin: 12px 0; }
.mobile-auth { display: flex; flex-direction: column; gap: 8px; padding: 8px; }
.mobile-auth-login {
  text-align: center; font-size: 14px; color: var(--w70);
  padding: 12px; border-radius: 10px; border: 1px solid var(--border2);
  text-decoration: none; transition: background 0.15s;
}
.mobile-auth-login:hover { background: var(--w06); }
.mobile-auth-signup {
  text-align: center; font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 14px; background: linear-gradient(135deg, var(--purple2), var(--purple));
  color: #fff; padding: 12px; border-radius: 10px; text-decoration: none;
  box-shadow: 0 0 20px rgba(111,66,193,0.3);
}


nav > .logo {
  transition: opacity 0.2s ease, max-width 0.2s ease, margin 0.2s ease;
  max-width: 220px;
  overflow: hidden;
  white-space: nowrap;
}
body.menu-open { overflow: hidden; }
.product-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}
.nav-dropdown-icon .product-emoji { font-size: 20px; }
.mobile-link .product-emoji { width: 18px; font-size: 18px; }
.prod-icon-box .product-emoji { font-size: 28px; }
.product-emoji-minecraft { transform: translateY(1px); }
.product-emoji-hytale,
.product-emoji-unibox { transform: translateY(1px); }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  min-height: 88vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 52px 24px 36px;
}
@media (max-height: 780px) {
  .hero { min-height: 100vh; padding: 48px 24px 32px; }
  .hero h1 { font-size: clamp(2rem, 6vw, 4.2rem); }
  .hero-badge { margin-bottom: 24px; }
  .hero-sub { margin-top: 16px; }
  .hero-actions { margin-top: 28px; }
  .trust-bar { margin-top: 32px; }
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, black 10%, transparent 100%);
}
.hero-glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: min(900px, 140vw); height: min(900px, 140vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111,66,193,0.18) 0%, rgba(155,109,255,0.06) 40%, transparent 65%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; top: 10%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(179,136,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-badge {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border2); background: var(--w06);
  border-radius: 100px; padding: 6px 16px 6px 8px;
  font-size: 12.5px; color: var(--w70);
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both 0.1s;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 10px var(--green);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.hero h1 {
  position: relative;
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.01em;
  max-width: 800px;
  animation: fadeUp 0.7s ease both 0.2s;
}
.hero h1 .grad, .grad {
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  position: relative;
  font-size: clamp(14px, 2.5vw, 16px); color: var(--w50);
  max-width: 480px; line-height: 1.7;
  margin: 24px auto 0;
  animation: fadeUp 0.7s ease both 0.3s;
}
.hero-actions {
  position: relative;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-top: 36px;
  animation: fadeUp 0.7s ease both 0.4s;
}
.btn-purple {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13.5px;
  background: linear-gradient(135deg, var(--purple2), var(--purple));
  color: #fff; padding: 12px 24px; border-radius: 11px;
  text-decoration: none; letter-spacing: 0em;
  box-shadow: 0 4px 32px rgba(111,66,193,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-purple:hover { transform: translateY(-2px); box-shadow: 0 6px 44px rgba(111,66,193,0.55); }
.btn-ghost {
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: 13.5px;
  color: var(--w70); padding: 12px 22px; border-radius: 11px;
  text-decoration: none; border: 1px solid var(--border2);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); color: var(--white); background: var(--w06); }

.trust-bar {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
  margin-top: 44px;
  animation: fadeUp 0.7s ease both 0.5s;
}
.trust-item {
  font-size: 12.5px; color: var(--w50); display: flex; align-items: center; gap: 7px;
  background: var(--w06); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 100px;
}
.trust-item i { color: var(--purple); font-size: 11px; }

/* ── TICKER ── */
.ticker-wrap {
  overflow: hidden; padding: 13px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg2);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track {
  display: flex; width: max-content;
  animation: ticker-anim 44s linear infinite;
  will-change: transform;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
.ticker-group { display: flex; align-items: center; }
.ticker-item {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  color: var(--w50); letter-spacing: 0.12em; text-transform: uppercase;
  white-space: nowrap; display: flex; align-items: center; gap: 9px;
  padding: 0 26px; position: relative;
}
.ticker-item::after {
  content: ''; position: absolute; right: -2px; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--w20);
}
.ticker-item i { color: var(--purple); font-size: 12px; opacity: 0.9; }
@keyframes ticker-anim { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ── STATS ── */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.stat {
  padding: 40px 20px; text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
}
.stat:hover { background: rgba(111,66,193,0.05); }
.stat:last-child { border-right: none; }
.stat-icon {
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--purple-glow); border: 1px solid rgba(111,66,193,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--purple); margin: 0 auto 14px;
}
.stat-val {
  font-family: 'Syne', sans-serif; font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 800; letter-spacing: -0.015em; line-height: 1;
  background: linear-gradient(135deg, var(--white), var(--w50));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 12.5px; color: var(--w40); margin-top: 10px;
  line-height: 1.5; max-width: 190px; margin-inline: auto;
}

/* ── SECTION ── */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.s-tag {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.s-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800; letter-spacing: -0.015em; line-height: 1.1;
}
.s-desc {
  font-size: 15px; color: var(--w40); margin-top: 14px;
  max-width: 460px; line-height: 1.75;
}

/* ── PRODUCTS ── */
.prod-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 20px; margin-bottom: 44px; flex-wrap: wrap;
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden;
}
.prod-card {
  background: var(--bg); padding: 30px 24px;
  position: relative; overflow: hidden;
  transition: background 0.25s;
  display: flex; flex-direction: column;
}
.prod-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, var(--purple-glow), transparent 55%);
  opacity: 0; transition: opacity 0.3s;
}
.prod-card:hover { background: var(--surface); }
.prod-card:hover::after { opacity: 1; }
.prod-card > * { position: relative; z-index: 1; }
.prod-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  background: var(--w06); color: var(--w50); border: 1px solid var(--border);
  margin-bottom: 24px; align-self: flex-start;
}
.prod-pill.purple { background: rgba(111,66,193,0.12); color: var(--purple); border-color: rgba(111,66,193,0.25); }
.prod-pill.green { background: var(--green-dim); color: #00c96a; border-color: rgba(0,232,122,0.2); }
.prod-icon-box {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--purple-glow); border: 1px solid rgba(111,66,193,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--purple); margin-bottom: 18px;
}
.prod-name {
  font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 800;
  letter-spacing: -0.005em; margin-bottom: 8px;
}
.prod-desc { font-size: 13.5px; color: var(--w40); line-height: 1.7; margin-bottom: 16px; }

.prod-specs {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px;
}
.prod-spec {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--w50);
  background: var(--w06); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 6px;
}
.prod-spec i { font-size: 10px; color: var(--purple); }

.prod-price {
  font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800;
  letter-spacing: -0.01em; margin-top: auto;
}
.prod-price small { font-size: 12px; font-weight: 400; color: var(--w40); letter-spacing: 0; }
.prod-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--purple);
  text-decoration: none; margin-top: 16px;
  transition: gap 0.2s;
}
.prod-card:hover .prod-link { gap: 10px; }
.prod-card.featured { background: rgba(111,66,193,0.06); }
.prod-card.wide { grid-column: span 2; }

/* ── FEATURES ── */
.feat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--border);
  border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
  margin-top: 36px;
}
.feat-card {
  background: var(--bg); padding: 30px 24px; position: relative; overflow: hidden;
}
.feat-num {
  position: absolute; top: 20px; right: 24px;
  font-family: 'Syne', sans-serif; font-size: 60px; font-weight: 800;
  color: var(--w06); line-height: 1; pointer-events: none;
}
.feat-icon-box {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--purple-glow); border: 1px solid rgba(111,66,193,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--purple); margin-bottom: 20px;
}
.feat-title {
  font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700;
  letter-spacing: 0em; margin-bottom: 10px;
}
.feat-desc { font-size: 13.5px; color: var(--w40); line-height: 1.75; }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 36px;
}
.review-card { display: flex; flex-direction: column; }
.review-card .r-text { flex: 1; }
.review-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.review-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.r-stars { color: var(--amber); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.r-text { font-size: 14.5px; color: var(--w70); line-height: 1.75; margin-bottom: 20px; }
.r-author { display: flex; align-items: center; gap: 12px; }
.r-av {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple2), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 14px;
}
.r-name { font-size: 13.5px; font-weight: 600; }
.r-role { font-size: 11px; color: var(--purple); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; margin-top: 1px; }
.r-date { font-size: 11px; color: var(--w40); }

/* ── CTA ── */
.cta-wrap { padding: 0 24px 96px; }
.cta-box {
  max-width: 1100px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 22px; overflow: hidden; position: relative;
}
.cta-box::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 80% at 85% 50%, rgba(111,66,193,0.12), transparent),
    radial-gradient(ellipse 40% 60% at 15% 50%, rgba(179,136,255,0.06), transparent);
}
.cta-inner {
  position: relative; padding: 56px 44px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: nowrap;
}
.cta-box h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800; letter-spacing: 0em; line-height: 1.15;
  margin-bottom: 14px;
}
.cta-box p { font-size: 15px; color: var(--w40); line-height: 1.7; max-width: 420px; }
.cta-right { flex-shrink: 0; text-align: center; min-width: 160px; }
.cta-from {
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--w40);
}
.cta-price {
  font-family: 'Syne', sans-serif; font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 800; letter-spacing: -0.015em; line-height: 1;
  background: linear-gradient(135deg, var(--white), var(--w50));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-period { font-size: 13px; color: var(--w40); margin-top: 4px; }
.cta-btns { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

/* ── PAYMENT BAR ── */
.payment-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}
.payment-bar span {
  font-size: 12px; color: var(--w40); display: flex; align-items: center; gap: 6px;
}
.payment-bar i { color: var(--w50); font-size: 14px; }

/* ── FAQ ACCORDION (pages produit : minecraft, hytale, ...) ── */
.faq-acc-head { text-align: center; margin-bottom: 36px; }
.faq-acc-head .s-tag, .faq-acc-head .s-title { justify-content: center; text-align: center; }
.faq-acc-head .s-title { margin-bottom: 10px; }
.faq-acc-head p { color: var(--w40); font-size: 15px; margin: 0; }
.faq-acc details {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 14px; margin-bottom: 10px; overflow: hidden;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.faq-acc details:hover { border-color: rgba(111,66,193,0.4); }
.faq-acc details[open] {
  border-color: var(--purple);
  background: linear-gradient(180deg, var(--purple-glow), transparent 60%);
  box-shadow: 0 12px 32px rgba(111,66,193,0.14);
}
.faq-acc summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; cursor: pointer; list-style: none;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; color: var(--white);
  transition: color .15s;
}
.faq-acc summary::-webkit-details-marker { display: none; }
.faq-acc summary:hover { color: var(--purple); }
.faq-acc summary .faq-ico {
  flex-shrink: 0; width: 26px; height: 26px; display: grid; place-items: center;
  border-radius: 50%; background: var(--w06); color: var(--purple); font-size: 11px;
  transition: transform .3s ease, background .2s, color .2s;
}
.faq-acc details[open] summary .faq-ico { transform: rotate(45deg); background: var(--purple); color: #fff; }
.faq-acc .faq-body { padding: 0 22px 20px; font-size: 14px; line-height: 1.75; color: var(--w50); }
.faq-acc .faq-body p { margin: 0; }
[data-theme="light"] .faq-acc details { background: #fff; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .faq-acc details[open] { box-shadow: 0 12px 32px rgba(111,66,193,0.08); }
[data-theme="light"] .faq-acc summary .faq-ico { background: rgba(0,0,0,0.04); }

/* ── FOOTER ── */




/* ── USECASE TAGS (pricing cards) ── */
.pricing-usecase-wrap {
  display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px;
}
.uc-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 500; color: var(--w50);
  background: rgba(245,158,11,0.05); border: 1px solid rgba(245,158,11,0.14);
  padding: 4px 9px; border-radius: 7px; line-height: 1;
}
.uc-tag i { font-size: 9px; color: var(--amber); }

/* ── VPS-GAME PAGE ── */
.page-hero {
  position: relative; overflow: hidden;
  padding: 80px 24px 60px; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.page-hero .hero-grid,
.page-hero .hero-glow { position: absolute; }
.page-back {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--w40); text-decoration: none;
  margin-bottom: 32px; transition: color 0.15s;
}
.page-back:hover { color: var(--white); }
.page-hero h1 {
  position: relative;
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  font-weight: 800; letter-spacing: -0.01em; line-height: 1.05;
  margin-bottom: 18px; text-align: center; max-width: 760px;
}
.page-hero .hero-sub { margin: 0 auto; }

.specs-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; max-width: 1100px; margin: 32px auto 0; padding: 0 24px;
  position: relative; z-index: 2;
}
.spec-card {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 14px; padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.spec-card:hover { border-color: rgba(111,66,193,0.3); transform: translateY(-3px); }
.spec-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--purple-glow); border: 1px solid rgba(111,66,193,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--purple); margin-bottom: 18px;
}
.spec-card h3 {
  font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 800;
  letter-spacing: 0em; margin-bottom: 8px;
}
.spec-card p { font-size: 13px; color: var(--w40); line-height: 1.7; }

/* Security section */
.security-section {
  max-width: 1100px; margin: 0 auto; padding: 80px 24px;
}
.security-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  margin-top: 36px;
}
.security-features { display: flex; flex-direction: column; gap: 24px; }
.security-feat {
  display: flex; gap: 16px; align-items: flex-start;
}
.security-feat-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: var(--purple-glow); border: 1px solid rgba(111,66,193,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--purple);
}
.security-feat h4 {
  font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700;
  margin-bottom: 4px;
}
.security-feat p { font-size: 13px; color: var(--w40); line-height: 1.7; }

.backup-widget {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: 16px; padding: 28px; overflow: hidden;
}
.backup-widget-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
}
.backup-widget-title {
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--w50);
}
.backup-widget-dots { display: flex; gap: 4px; }
.backup-widget-dots span {
  width: 8px; height: 8px; border-radius: 50%;
}
.backup-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-top: 1px solid var(--border);
}
.backup-row-label {
  font-size: 13px; color: var(--w70); display: flex; align-items: center; gap: 8px;
}
.backup-row-label i { color: var(--purple); font-size: 12px; }
.backup-status {
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.backup-status.active { color: var(--green); }
.backup-status.synced { color: #4dabf7; }
.backup-progress {
  margin-top: 16px; height: 4px; border-radius: 4px;
  background: var(--w06); overflow: hidden;
}
.backup-progress-bar {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--purple2), var(--purple));
  width: 100%;
}

/* Pricing table */
.pricing-section { max-width: 1140px; margin: 0 auto; padding: 0 24px 80px; }
.pricing-section .s-tag { justify-content: center; }
.pricing-section .s-title { text-align: center; margin-bottom: 48px; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pricing-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px;
  position: relative; overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
  display: flex; flex-direction: column;
}
.pricing-card:hover { border-color: var(--border2); transform: translateY(-4px); }
.pricing-card.popular { border-color: rgba(111,66,193,0.4); }
.pricing-card.popular::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(111,66,193,0.08), transparent 60%);
}
.pricing-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Syne', sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--purple2), var(--purple));
  color: #fff; padding: 5px 14px; border-radius: 100px;
  margin-bottom: 14px; align-self: flex-start;
  box-shadow: 0 2px 12px rgba(111,66,193,0.4);
}
.pricing-badge.trial {
  background: linear-gradient(135deg, #0d9f5a, #4ade80);
  box-shadow: 0 2px 12px rgba(74,222,128,0.35);
  color: #041b0d;
}
.pricing-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 6px;
}
.pricing-category { font-size: 12px; color: var(--w40); }
.pricing-auto {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; color: var(--w40); padding: 3px 8px;
  border: 1px solid var(--border); border-radius: 6px;
}
.pricing-auto i { font-size: 9px; color: var(--purple); }
.pricing-name {
  font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 800;
  letter-spacing: 0em; margin-bottom: 6px;
}
.pricing-backup { font-size: 12px; color: var(--green); margin-bottom: 16px; display: flex; align-items: center; gap: 5px; }
.pricing-backup i { font-size: 10px; }
.pricing-from {
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--w40);
  margin-bottom: 4px;
}
.pricing-note {
  font-size: 11.5px; line-height: 1.5; color: var(--w40); margin-bottom: 4px;
}
.pricing-note strong { color: var(--w70); font-weight: 600; }
.pricing-note-off { color: var(--purple); font-weight: 700; }
[data-theme="light"] .pricing-from { color: rgba(17,24,39,0.45); }
[data-theme="light"] .pricing-note { color: rgba(17,24,39,0.5); }
[data-theme="light"] .pricing-note strong { color: rgba(17,24,39,0.8); }
.pricing-price {
  font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800;
  letter-spacing: 0em; margin-bottom: 4px;
}
.pricing-price small { font-size: 13px; font-weight: 400; color: var(--w40); letter-spacing: 0; }
.pricing-trial { font-size: 11px; color: var(--green); margin-bottom: 16px; display: flex; align-items: center; gap: 5px; }
.pricing-trial i { font-size: 10px; }

.pricing-rewards {
  background: var(--w06); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px; margin: 16px 0;
}
.pricing-rewards-title {
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--w40); margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.pricing-rewards-title i { color: var(--purple); }
.pricing-reward-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--w50); padding: 3px 0;
}
.pricing-reward-row .pts { color: var(--green); font-weight: 600; }
.pricing-reward-row .jeton { color: var(--amber); font-weight: 600; }
.pricing-credit { font-size: 10px; color: var(--w20); margin-top: 6px; }

.pricing-specs {
  display: flex; flex-direction: column; gap: 6px;
  margin: 16px 0;
}
.pricing-spec-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; color: var(--w70);
  background: var(--w06); border: 1px solid var(--border);
  padding: 6px 10px; border-radius: 7px; width: fit-content;
}
.pricing-spec-badge i { font-size: 10px; color: var(--purple); }
.pricing-spec-row {
  display: flex; gap: 6px; flex-wrap: wrap;
}

.pricing-features {
  display: flex; flex-direction: column; gap: 6px;
  margin: 12px 0; flex-grow: 1;
}
.pricing-feature {
  font-size: 12px; color: var(--w50);
  display: flex; align-items: center; gap: 6px;
}
.pricing-feature i { font-size: 10px; color: var(--green); }
.pricing-feature i.warn { color: var(--amber); }

.pricing-stock {
  font-size: 11px; color: var(--amber); margin: 12px 0 0;
  display: flex; align-items: center; gap: 5px;
}
.pricing-stock i { font-size: 10px; }
.pricing-stock.last { color: var(--purple); }

.pricing-btn {
  display: block; text-align: center; width: 100%;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px;
  padding: 14px; border-radius: 10px; text-decoration: none;
  margin-top: 16px;
  border: 1px solid var(--border2); color: var(--white);
  background: transparent;
  transition: background 0.15s, border-color 0.15s;
}
.pricing-btn:hover { background: var(--w06); border-color: rgba(255,255,255,0.25); }
.pricing-btn.primary {
  background: linear-gradient(135deg, var(--purple2), var(--purple));
  border-color: transparent; color: #fff;
  box-shadow: 0 4px 24px rgba(111,66,193,0.3);
}
.pricing-btn.primary:hover { opacity: 0.9; transform: translateY(-1px); }
.pricing-btn.trial {
  background: linear-gradient(135deg, #00c96a, var(--green));
  border-color: transparent; color: #fff;
  box-shadow: 0 4px 24px rgba(0,232,122,0.2);
}

/* ── OS GRID ── */
.os-section {
  max-width: 1100px; margin: 0 auto; padding: 0 24px 80px;
}
.os-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px; margin-top: 36px;
}
.os-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 20px; text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.os-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.os-card-icon {
  width: 56px; height: 56px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: var(--w70);
}
.os-card-name {
  font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--white);
  margin-bottom: 12px;
}
.os-versions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 5px;
}
.os-version {
  font-size: 11px; color: var(--w50);
  background: var(--w06); border: 1px solid var(--border);
  padding: 3px 10px; border-radius: 6px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.on { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nav-dropdown-btn { font-size: 13px; padding: 7px 10px; }
  .nav-btn { font-size: 12px; padding: 8px 16px; }
  .nav-login { font-size: 12px; padding: 6px 10px; }
}
@media (max-width: 1024px) {
  .specs-row { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  header nav { padding: 0 20px; }
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .prod-card.wide { grid-column: span 1; }
  .feat-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat:last-child, .stat:nth-last-child(2) { border-bottom: none; }
  
  .nav-desktop { display: none; }
  .hamburger { display: block; }
  nav.menu-open { justify-content: flex-end; }
  nav.menu-open > .logo {
    opacity: 0;
    max-width: 0;
    margin-right: 0;
    pointer-events: none;
  }
  nav.menu-open .hamburger { margin-left: auto; }
  .specs-row { grid-template-columns: 1fr; margin-top: 32px; }
  .security-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .os-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .prod-grid { grid-template-columns: 1fr; }
  .prod-card.wide { grid-column: span 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; padding: 44px 28px; }
  .cta-right { width: 100%; }
  .cta-btns { flex-direction: column; }
  .btn-purple, .btn-ghost { text-align: center; }
  .trust-bar { gap: 10px; }
  .hero { padding: 60px 20px 40px; }
  .section { padding: 68px 0; }
  .wrap { padding: 0 16px; }
  
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-purple, .btn-ghost { width: 100%; max-width: 300px; justify-content: center; }
  .payment-bar { gap: 16px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .os-grid { grid-template-columns: 1fr 1fr; }
  .specs-row { grid-template-columns: 1fr; gap: 12px; }
  .page-hero { padding: 80px 20px 48px; }
}

/* ── NAV ALIGNMENT FIX & ACTIVE STATE ── */
.nav-dropdown-menu-inner {
  min-width: 260px;
}
.nav-dropdown-item {
  align-items: center;
}
.nav-dropdown-icon {
  margin-top: 0;
  flex-shrink: 0;
}
.active-nav-item .nav-dropdown-item-name {
  color: var(--purple);
}

/* ── PAGE HERO TRUST BAR ── */
.page-trust-bar {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 10px;
  margin-top: 28px;
}
.page-trust-item {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: var(--w60, rgba(255,255,255,0.6));
  background: var(--w06); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 100px;
  white-space: nowrap;
}
.page-trust-item i { color: var(--green); font-size: 11px; }

.page-hero-actions {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  margin-top: 28px;
}

/* ── PRICING USE-CASE TAG ── */
.pricing-usecase {
  font-size: 12px; color: var(--w50);
  background: var(--w06); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 12px;
  margin-bottom: 14px;
  display: flex; align-items: flex-start; gap: 7px;
  line-height: 1.5;
}
.pricing-usecase i { color: var(--amber); font-size: 11px; margin-top: 2px; flex-shrink: 0; }

/* ── COMPARE TABLE ── */
.compare-section {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px 80px;
}
.compare-wrap {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid var(--border2);
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.03);
}
.compare-wrap::-webkit-scrollbar { height: 5px; }
.compare-wrap::-webkit-scrollbar-track { background: transparent; }
.compare-wrap::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 10px; }

.compare-table {
  width: 100%; min-width: 800px;
  border-collapse: collapse;
  font-size: 13px;
}

/* Header */
.compare-table thead tr {
  border-bottom: 1px solid var(--border2);
}
.compare-table thead th {
  padding: 22px 18px 18px;
  text-align: center; vertical-align: bottom;
  font-weight: 600; color: var(--white);
  border-right: 1px solid var(--border);
  position: relative;
}
.compare-table thead th:last-child { border-right: none; }
.compare-table thead th.cmp-label {
  text-align: left; width: 145px;
  color: var(--w40); font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-right: 1px solid var(--border2);
}

/* Popular column */
.compare-table thead th.cmp-th-popular {
  background: rgba(111,66,193,0.12);
  border-right: 1px solid rgba(111,66,193,0.25);
  border-left: 1px solid rgba(111,66,193,0.25);
  position: relative;
}
.compare-table thead th.cmp-th-popular::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple2), var(--purple));
  border-radius: 2px 2px 0 0;
}
td.cmp-pop-col {
  background: rgba(111,66,193,0.06) !important;
  border-right: 1px solid rgba(111,66,193,0.18) !important;
  border-left: 1px solid rgba(111,66,193,0.18) !important;
}

/* Badges */
.cmp-badge {
  display: inline-block; margin: 0 auto 8px;
  font-family: 'Syne', sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--purple2), var(--purple));
  color: #fff; padding: 3px 10px; border-radius: 100px;
}
.cmp-badge:empty { display: none; }
.cmp-badge-trial {
  background: linear-gradient(135deg, #0d9f5a, var(--green));
}
.cmp-name {
  display: block;
  font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: 0em; margin-bottom: 6px;
  color: var(--white);
}
.cmp-price {
  display: block;
  font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800;
  letter-spacing: 0em; color: var(--white);
}
.cmp-price small { font-size: 11px; font-weight: 400; color: var(--w40); letter-spacing: 0; }

/* Rows */
.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: rgba(255,255,255,0.025); }
.compare-table tbody tr:hover td.cmp-pop-col { background: rgba(111,66,193,0.1) !important; }

.compare-table tbody th.cmp-label {
  padding: 14px 16px; text-align: left;
  color: var(--w50); font-size: 12px; font-weight: 500;
  white-space: nowrap;
  border-right: 1px solid var(--border2);
  background: rgba(255,255,255,0.015);
}
.compare-table tbody td {
  padding: 14px 18px; text-align: center;
  color: var(--w70); border-right: 1px solid var(--border);
  font-weight: 500;
}
.compare-table tbody td:last-child { border-right: none; }

/* Inline helpers */
.cmp-use {
  display: block; font-size: 11.5px; color: var(--w50);
  line-height: 1.5; max-width: 130px; margin: 0 auto;
}
.cmp-check {
  color: var(--green); font-weight: 700; font-size: 13px;
}
.cmp-highlight {
  color: var(--cyan); font-weight: 600; font-size: 12.5px;
}

/* CTA buttons */
.cmp-btn {
  display: inline-block; padding: 8px 18px;
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  border: 1px solid var(--border2); border-radius: 9px;
  color: var(--white); text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
  white-space: nowrap; letter-spacing: 0.02em;
}
.cmp-btn:hover { background: var(--w06); border-color: rgba(255,255,255,0.2); transform: translateY(-1px); }
.cmp-btnpop {
  background: linear-gradient(135deg, var(--purple2), var(--purple));
  border-color: transparent;
  box-shadow: 0 2px 14px rgba(111,66,193,0.4);
}
.cmp-btnpop:hover { opacity: 0.9; border-color: transparent; }
.cmp-btn-trial {
  border-color: rgba(0,232,122,0.3); color: var(--green);
}
.cmp-btn-trial:hover { background: rgba(0,232,122,0.08); border-color: rgba(0,232,122,0.5); }

@media (max-width: 600px) {
  .page-trust-bar { gap: 8px; }
  .page-trust-item { font-size: 11.5px; padding: 5px 11px; }
  .page-hero-actions { flex-direction: column; align-items: center; }
  .compare-section { padding: 0 0 64px; }
  .compare-wrap { border-radius: 0; border-left: none; border-right: none; }
}



/* ── Detail Visual Images ── */
.detail-visual img { max-width: 100%; height: auto; border-radius: 12px; }

/* ── CPU PERF SECTION RESPONSIVE ── */
.cpu-stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 600px) {
  .cpu-stats-grid { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 900px) {
  .cpu-stats-grid { grid-template-columns: 1fr 1fr; }
  .cpu-stats-grid > *:last-child { grid-column: span 2; }
}
@media (max-width: 600px) {
  .cpu-bench-box { padding: 24px 18px !important; }
}

/* ── STICKY PRICING BAR ── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: rgba(13,16,34,0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  border-top: 1px solid rgba(111,66,193,0.25);
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.35);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-left { display: flex; align-items: baseline; gap: 10px; min-width: 0; }
.sticky-bar-name { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); white-space: nowrap; }
.sticky-bar-from { font-size: 11px; color: rgba(255,255,255,0.35); }
.sticky-bar-price { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; letter-spacing: -0.01em; color: #fff; white-space: nowrap; }
.sticky-bar-period { font-size: 11px; color: rgba(255,255,255,0.4); }
.sticky-bar-cta {
  font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700;
  background: linear-gradient(135deg, var(--purple2), var(--purple));
  color: #fff; padding: 10px 22px; border-radius: 10px; text-decoration: none;
  white-space: nowrap; flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(111,66,193,0.4);
  transition: opacity 0.15s, transform 0.15s;
}
.sticky-bar-cta:hover { opacity: 0.9; transform: translateY(-1px); }
@media (max-width: 480px) {
  .sticky-bar { padding: 10px 16px; }
  .sticky-bar-name { display: none; }
  .sticky-bar-cta { font-size: 12px; padding: 9px 16px; }
}


/* ══════════════════════════════════════════════════════════════
   LIGHT THEME - Premium
   ══════════════════════════════════════════════════════════════ */

[data-theme="light"] {
  --bg: #f8f9fc;
  --bg2: #f0f1f6;
  --surface: #ffffff;
  --surface2: #f5f6fa;
  --border: rgba(0,0,0,0.06);
  --border2: rgba(0,0,0,0.10);
  --white: #111827;
  --w80: rgba(17,24,39,0.80);
  --w70: rgba(17,24,39,0.70);
  --w50: rgba(17,24,39,0.50);
  --w40: rgba(17,24,39,0.40);
  --w20: rgba(17,24,39,0.20);
  --w10: rgba(17,24,39,0.10);
  --w06: rgba(17,24,39,0.04);
  --purple: #7c3aed;
  --purple2: #6d28d9;
  --purple-glow: rgba(124,58,237,0.08);
  --cyan: #8b5cf6;
  --green: #059669;
  --green-dim: rgba(5,150,105,0.08);
  --amber: #d97706;
}

/* Body & global overrides */
[data-theme="light"] body {
  background: var(--bg);
  color: #1f2937;
}

/* Nav */
[data-theme="light"] nav {
  background: rgba(255,255,255,0.85);
  border-bottom-color: rgba(0,0,0,0.06);
}
[data-theme="light"] .logo { color: #111827; }
[data-theme="light"] .nav-dropdown-btn { color: rgba(17,24,39,0.55); }
[data-theme="light"] .nav-dropdown-btn:hover { color: #111827; background: rgba(0,0,0,0.04); }
[data-theme="light"] .nav-dropdown-menu-inner {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
}
[data-theme="light"] .nav-dropdown-item { color: #1f2937; }
[data-theme="light"] .nav-dropdown-item:hover { background: rgba(0,0,0,0.03); }
[data-theme="light"] .nav-dropdown-item-desc { color: rgba(17,24,39,0.45); }
[data-theme="light"] .nav-login { color: rgba(17,24,39,0.55); }
[data-theme="light"] .nav-login:hover { color: #111827; background: rgba(0,0,0,0.04); }
[data-theme="light"] .nav-aff { color: #059669; border-color: rgba(5,150,105,0.25); background: rgba(5,150,105,0.05); }
[data-theme="light"] .nav-aff:hover { background: rgba(5,150,105,0.1); }
[data-theme="light"] .hamburger { color: #111827; }

/* Mobile menu */
[data-theme="light"] .mobile-menu { background: #fff; border-bottom-color: rgba(0,0,0,0.08); }
[data-theme="light"] .mobile-section-title { color: rgba(17,24,39,0.4); }
[data-theme="light"] .mobile-link { color: rgba(17,24,39,0.5); }
[data-theme="light"] .mobile-link:hover { color: #111827; background: rgba(0,0,0,0.03); }
[data-theme="light"] .mobile-divider { border-top-color: rgba(0,0,0,0.06); }
[data-theme="light"] .mobile-auth-login { color: rgba(17,24,39,0.7); border-color: rgba(0,0,0,0.1); }
[data-theme="light"] .mobile-auth-login:hover { background: rgba(0,0,0,0.03); }

/* Hero */
[data-theme="light"] .hero-glow {
  background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, rgba(139,92,246,0.03) 40%, transparent 65%);
}
[data-theme="light"] .hero-glow-2 {
  background: radial-gradient(circle, rgba(139,92,246,0.04) 0%, transparent 60%);
}
[data-theme="light"] .hero-grid {
  background-image: linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
}
[data-theme="light"] .hero h1 { color: #111827; }
[data-theme="light"] .hero-sub { color: rgba(17,24,39,0.5); }
[data-theme="light"] .hero-badge { border-color: rgba(0,0,0,0.08); background: rgba(0,0,0,0.03); color: rgba(17,24,39,0.6); }
[data-theme="light"] .badge-dot { background: #059669; box-shadow: 0 0 10px rgba(5,150,105,0.5); }
[data-theme="light"] .btn-ghost { color: rgba(17,24,39,0.6); border-color: rgba(0,0,0,0.12); }
[data-theme="light"] .btn-ghost:hover { color: #111827; border-color: rgba(0,0,0,0.2); background: rgba(0,0,0,0.03); }
[data-theme="light"] .trust-item { color: rgba(17,24,39,0.5); background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.06); }

/* Ticker */
[data-theme="light"] .ticker-wrap { background: #f0f1f6; border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .ticker-item { color: rgba(17,24,39,0.2); }

/* Stats */
[data-theme="light"] .stats-row { background: #fff; border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .stat { border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .stat-val {
  background: linear-gradient(135deg, #111827, rgba(17,24,39,0.55));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
[data-theme="light"] .stat-label { color: rgba(17,24,39,0.4); }

/* Products */
[data-theme="light"] .prod-grid { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .prod-card { background: #fff; }
[data-theme="light"] .prod-card:hover { background: #f8f9fc; }
[data-theme="light"] .prod-card::after {
  background: radial-gradient(circle at 20% 20%, rgba(124,58,237,0.04), transparent 55%);
}
[data-theme="light"] .prod-pill { background: rgba(0,0,0,0.03); color: rgba(17,24,39,0.5); border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .prod-pill.purple { background: rgba(124,58,237,0.06); color: var(--purple); border-color: rgba(124,58,237,0.15); }
[data-theme="light"] .prod-pill.green { background: rgba(5,150,105,0.06); color: #059669; border-color: rgba(5,150,105,0.15); }
[data-theme="light"] .prod-name { color: #111827; }
[data-theme="light"] .prod-desc { color: rgba(17,24,39,0.45); }
[data-theme="light"] .prod-spec { color: rgba(17,24,39,0.5); background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .prod-price { color: #111827; }
[data-theme="light"] .prod-price small { color: rgba(17,24,39,0.4); }
[data-theme="light"] .prod-card.featured { background: rgba(124,58,237,0.02); }

/* Section text */
[data-theme="light"] .s-title { color: #111827; }
[data-theme="light"] .s-desc { color: rgba(17,24,39,0.45); }

/* Features */
[data-theme="light"] .feat-grid { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.05); }
[data-theme="light"] .feat-card { background: #fff; }
[data-theme="light"] .feat-num { color: rgba(0,0,0,0.04); }
[data-theme="light"] .feat-title { color: #111827; }
[data-theme="light"] .feat-desc { color: rgba(17,24,39,0.45); }

/* Reviews */
[data-theme="light"] .review-card { background: #fff; border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .review-card:hover { border-color: rgba(0,0,0,0.12); }
[data-theme="light"] .r-text { color: rgba(17,24,39,0.65); }
[data-theme="light"] .r-name { color: #111827; }
[data-theme="light"] .r-date { color: rgba(17,24,39,0.35); }

/* CTA */
[data-theme="light"] .cta-box { background: #fff; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .cta-box::before {
  background: radial-gradient(ellipse 50% 80% at 85% 50%, rgba(124,58,237,0.04), transparent),
              radial-gradient(ellipse 40% 60% at 15% 50%, rgba(139,92,246,0.03), transparent);
}
[data-theme="light"] .cta-box h2 { color: #111827; }
[data-theme="light"] .cta-box p { color: rgba(17,24,39,0.45); }
[data-theme="light"] .cta-price {
  background: linear-gradient(135deg, #111827, rgba(17,24,39,0.55));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
[data-theme="light"] .cta-from, [data-theme="light"] .cta-period { color: rgba(17,24,39,0.4); }
[data-theme="light"] .payment-bar { border-top-color: rgba(0,0,0,0.06); }
[data-theme="light"] .payment-bar span { color: rgba(17,24,39,0.4); }
[data-theme="light"] .payment-bar i { color: rgba(17,24,39,0.5); }



/* Pricing */
[data-theme="light"] .pricing-card { background: #fff; border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .pricing-card:hover { border-color: rgba(0,0,0,0.12); }
[data-theme="light"] .pricing-card.popular { border-color: rgba(124,58,237,0.3); }
[data-theme="light"] .pricing-card.popular::before {
  background: radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.04), transparent 60%);
}
[data-theme="light"] .pricing-name { color: #111827; }
[data-theme="light"] .pricing-price { color: #111827; }
[data-theme="light"] .pricing-price small { color: rgba(17,24,39,0.4); }
[data-theme="light"] .pricing-category { color: rgba(17,24,39,0.4); }
[data-theme="light"] .pricing-btn { border-color: rgba(0,0,0,0.1); color: #111827; }
[data-theme="light"] .pricing-btn:hover { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.18); }
[data-theme="light"] .pricing-spec-badge { color: rgba(17,24,39,0.65); background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .pricing-feature { color: rgba(17,24,39,0.5); }
[data-theme="light"] .pricing-rewards { background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .pricing-rewards-title { color: rgba(17,24,39,0.4); }
[data-theme="light"] .pricing-reward-row { color: rgba(17,24,39,0.5); }
[data-theme="light"] .pricing-credit { color: rgba(17,24,39,0.25); }
[data-theme="light"] .pricing-usecase { background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.06); color: rgba(17,24,39,0.5); }
[data-theme="light"] .pricing-auto { color: rgba(17,24,39,0.4); border-color: rgba(0,0,0,0.06); }

/* Spec cards */
[data-theme="light"] .spec-card { background: #fff; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .spec-card:hover { border-color: rgba(124,58,237,0.2); }
[data-theme="light"] .spec-card h3 { color: #111827; }
[data-theme="light"] .spec-card p { color: rgba(17,24,39,0.45); }

/* Security */
[data-theme="light"] .security-feat h4 { color: #111827; }
[data-theme="light"] .security-feat p { color: rgba(17,24,39,0.45); }
[data-theme="light"] .backup-widget { background: #fff; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .backup-widget-title { color: rgba(17,24,39,0.45); }
[data-theme="light"] .backup-row { border-top-color: rgba(0,0,0,0.06); }
[data-theme="light"] .backup-row-label { color: rgba(17,24,39,0.65); }
[data-theme="light"] .backup-progress { background: rgba(0,0,0,0.05); }

/* Compare table */
[data-theme="light"] .compare-wrap { background: #fff; border-color: rgba(0,0,0,0.08); box-shadow: 0 16px 48px rgba(0,0,0,0.06); }
[data-theme="light"] .compare-table thead th { color: #111827; border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .compare-table thead th.cmp-label { color: rgba(17,24,39,0.4); border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .compare-table thead th.cmp-th-popular { background: rgba(124,58,237,0.05); border-color: rgba(124,58,237,0.15); }
[data-theme="light"] td.cmp-pop-col { background: rgba(124,58,237,0.02) !important; border-color: rgba(124,58,237,0.1) !important; }
[data-theme="light"] .compare-table tbody tr { border-color: rgba(0,0,0,0.05); }
[data-theme="light"] .compare-table tbody tr:hover { background: rgba(0,0,0,0.015); }
[data-theme="light"] .compare-table tbody th.cmp-label { color: rgba(17,24,39,0.5); border-color: rgba(0,0,0,0.08); background: rgba(0,0,0,0.015); }
[data-theme="light"] .compare-table tbody td { color: rgba(17,24,39,0.65); border-color: rgba(0,0,0,0.05); }
[data-theme="light"] .cmp-name { color: #111827; }
[data-theme="light"] .cmp-price { color: #111827; }
[data-theme="light"] .cmp-price small { color: rgba(17,24,39,0.4); }
[data-theme="light"] .cmp-use { color: rgba(17,24,39,0.5); }
[data-theme="light"] .cmp-btn { border-color: rgba(0,0,0,0.1); color: #111827; }
[data-theme="light"] .cmp-btn:hover { background: rgba(0,0,0,0.03); }
[data-theme="light"] .cmp-btn-trial { color: #059669; border-color: rgba(5,150,105,0.25); }

/* OS cards */
[data-theme="light"] .os-card { background: #fff; border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .os-card:hover { border-color: rgba(0,0,0,0.12); }
[data-theme="light"] .os-card-icon { color: rgba(17,24,39,0.6); }
[data-theme="light"] .os-card-name { color: #111827; }
[data-theme="light"] .os-version { color: rgba(17,24,39,0.5); background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.06); }

/* Page hero */
[data-theme="light"] .page-back { color: rgba(17,24,39,0.4); }
[data-theme="light"] .page-back:hover { color: #111827; }
[data-theme="light"] .page-hero h1 { color: #111827; }
[data-theme="light"] .page-trust-item { color: rgba(17,24,39,0.55); background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.06); }

/* Sticky bar */
[data-theme="light"] .sticky-bar { background: rgba(255,255,255,0.92); border-top-color: rgba(124,58,237,0.15); box-shadow: 0 -4px 24px rgba(0,0,0,0.08); }
[data-theme="light"] .sticky-bar-name { color: rgba(17,24,39,0.55); }
[data-theme="light"] .sticky-bar-from { color: rgba(17,24,39,0.35); }
[data-theme="light"] .sticky-bar-price { color: #111827; }
[data-theme="light"] .sticky-bar-period { color: rgba(17,24,39,0.4); }

/* Usecase tags */
[data-theme="light"] .uc-tag { color: rgba(17,24,39,0.5); background: rgba(217,119,6,0.04); border-color: rgba(217,119,6,0.12); }

/* Usecase tooltip */
[data-theme="light"] .usecase-item-row { color: rgba(17,24,39,0.55); background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .usecase-item-row:hover { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.1); }
[data-theme="light"] .usecase-info-btn { background: rgba(124,58,237,0.06); border-color: rgba(124,58,237,0.15); }
[data-theme="light"] .usecase-detail { color: rgba(17,24,39,0.5); background: rgba(124,58,237,0.02); }
[data-theme="light"] .usecase-detail strong { color: rgba(17,24,39,0.7); }
[data-theme="light"] .usecase-item.open .usecase-item-row { background: rgba(124,58,237,0.03); border-color: rgba(124,58,237,0.15); }

/* Section background gradients */
[data-theme="light"] .products-section::before { background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(124,58,237,0.03), transparent 70%); }
[data-theme="light"] .features-section::before,
[data-theme="light"] .trust-section::before { background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(124,58,237,0.02), transparent 65%); }
[data-theme="light"] .reviews-section::before { background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(124,58,237,0.02), transparent 60%); }
[data-theme="light"] .faq-section::before { background: radial-gradient(circle, rgba(124,58,237,0.03), transparent 70%); }

/* ── Theme Toggle Button ── */
.theme-toggle-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5); font-size: 15px;
  cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  padding: 0; flex-shrink: 0;
}
.theme-toggle-btn:hover { background: rgba(255,255,255,0.1); color: #fff; transform: scale(1.05); }
[data-theme="light"] .theme-toggle-btn {
  background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.08); color: rgba(17,24,39,0.5);
}
[data-theme="light"] .theme-toggle-btn:hover { background: rgba(0,0,0,0.08); color: #111827; }

/* Top banner in light */
[data-theme="light"] #top-banner {
  background: linear-gradient(90deg, rgba(109,40,217,0.95), rgba(124,58,237,0.9)) !important;
}

/* Exit popup in light */
[data-theme="light"] #exit-popup #exit-overlay { background: rgba(0,0,0,0.3) !important; }

/* ── Legal pages light ── */
[data-theme="light"] .legal-hero-bg {
  background-image: linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px) !important;
}
[data-theme="light"] .legal-hero-glow {
  background: radial-gradient(circle, rgba(124,58,237,0.05) 0%, rgba(139,92,246,0.02) 40%, transparent 65%) !important;
}
[data-theme="light"] .legal-h1 { color: #111827 !important; }
[data-theme="light"] .legal-sub { color: rgba(17,24,39,0.45) !important; }
[data-theme="light"] .legal-tag { border-color: rgba(0,0,0,0.08) !important; background: rgba(0,0,0,0.03) !important; color: rgba(17,24,39,0.5) !important; }
[data-theme="light"] .legal-id-card { background: #fff !important; border-color: rgba(0,0,0,0.08) !important; }

/* ── FAQ light ── */
[data-theme="light"] .faq-item { background: #fff; border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .faq-q { color: #111827; }
[data-theme="light"] .faq-a { color: rgba(17,24,39,0.55); }

/* ══════════════════════════════════════════
   LIGHT THEME - COMPREHENSIVE FIXES
   ══════════════════════════════════════════ */

/* ── Exit Popup Light ── */
[data-theme="light"] #exit-popup > div:not(#exit-overlay) {
  background: #fff !important;
  border-color: rgba(124,58,237,0.2) !important;
  box-shadow: 0 32px 80px rgba(0,0,0,0.15), 0 0 0 1px rgba(124,58,237,0.08) !important;
}
[data-theme="light"] #exit-popup #exit-close {
  color: rgba(17,24,39,0.35) !important;
}
[data-theme="light"] #exit-popup h2 {
  color: #111827 !important;
}
[data-theme="light"] #exit-popup p {
  color: rgba(17,24,39,0.5) !important;
}
[data-theme="light"] #exit-popup p strong {
  color: #111827 !important;
}
[data-theme="light"] #exit-popup .fa-gift {
  color: var(--purple) !important;
}
[data-theme="light"] #exit-popup div[style*="background:rgba(111,66,193,0.12)"] {
  background: rgba(124,58,237,0.08) !important;
  border-color: rgba(124,58,237,0.2) !important;
  color: var(--purple) !important;
}
[data-theme="light"] #exit-popup div[style*="dashed"] {
  background: rgba(124,58,237,0.04) !important;
  border-color: rgba(124,58,237,0.3) !important;
}
[data-theme="light"] #exit-popup div[style*="dashed"] div:first-child {
  color: rgba(17,24,39,0.4) !important;
}
[data-theme="light"] #exit-popup div[style*="dashed"] span {
  color: rgba(17,24,39,0.4) !important;
}
[data-theme="light"] #exit-popup div[style*="text-transform:uppercase"][style*="letter-spacing"] {
  color: rgba(17,24,39,0.35) !important;
}
[data-theme="light"] #exit-popup a[style*="rgba(255,255,255,0.04)"],
[data-theme="light"] #exit-popup div[style*="grid-template-columns"] a {
  background: rgba(0,0,0,0.03) !important;
  border-color: rgba(0,0,0,0.08) !important;
  color: #111827 !important;
}
[data-theme="light"] #exit-popup div[style*="grid-template-columns"] a div div:last-child {
  color: rgba(17,24,39,0.4) !important;
}

/* ── CPU Benchmark Light ── */
[data-theme="light"] #cpu-search {
  background: rgba(0,0,0,0.03) !important;
  border-color: rgba(0,0,0,0.1) !important;
  color: #111827 !important;
}
[data-theme="light"] #cpu-search::placeholder {
  color: rgba(17,24,39,0.35) !important;
}
[data-theme="light"] #cpu-dropdown {
  background: #fff !important;
  border-color: rgba(0,0,0,0.1) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12) !important;
}
[data-theme="light"] .cpu-cat-btn {
  background: rgba(0,0,0,0.03) !important;
  color: rgba(17,24,39,0.5) !important;
  border-color: rgba(0,0,0,0.1) !important;
}
[data-theme="light"] .cpu-cat-btn[style*="background:var(--purple)"],
[data-theme="light"] .cpu-cat-btn.active {
  background: var(--purple) !important;
  color: #fff !important;
  border-color: var(--purple) !important;
}
[data-theme="light"] #cpu-bars span[style*="color:rgba(255,255,255"] {
  color: rgba(17,24,39,0.5) !important;
}
[data-theme="light"] #cpu-bars div[style*="background:rgba(255,255,255,0.06)"] {
  background: rgba(0,0,0,0.06) !important;
}
[data-theme="light"] .perf-grid > div {
  background: #fff !important;
  border-color: rgba(0,0,0,0.08) !important;
}
[data-theme="light"] .perf-grid > div > div[style*="radial-gradient"] {
  background: radial-gradient(ellipse 70% 40% at 50% 100%,rgba(124,58,237,0.03),transparent) !important;
}

/* ── Version Tags Light ── */
[data-theme="light"] .version-tag {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
  color: rgba(17,24,39,0.55);
}
[data-theme="light"] .version-tag:hover {
  background: rgba(124,58,237,0.04);
  border-color: rgba(124,58,237,0.25);
  color: #111827;
}

/* ── CPU Stats / Spec Cards Light (VPS pages) ── */
[data-theme="light"] .cpu-stats-grid > * {
  background: #fff !important;
  border-color: rgba(0,0,0,0.08) !important;
}
[data-theme="light"] .cpu-stats-grid h3 {
  color: #111827 !important;
}
[data-theme="light"] .cpu-stats-grid p,
[data-theme="light"] .cpu-stats-grid span[style*="color:var(--w40)"],
[data-theme="light"] .cpu-stats-grid div[style*="color:var(--w40)"] {
  color: rgba(17,24,39,0.4) !important;
}

/* ── Footer fix - ensure it looks correct in both themes ── */
[data-theme="light"] .footer-col a {
  color: rgba(17,24,39,0.45);
}
[data-theme="light"] .footer-col a:hover {
  color: #111827;
}
[data-theme="light"] .logo-mark {
  filter: none;
}

/* ── CGV/CGU Light ── */
[data-theme="light"] .cgv-toc {
  background: #fff !important;
  border-color: rgba(0,0,0,0.08) !important;
}
[data-theme="light"] .cgv-toc-header {
  border-bottom-color: rgba(0,0,0,0.06) !important;
}
[data-theme="light"] .cgv-toc-list a {
  color: rgba(17,24,39,0.5) !important;
}
[data-theme="light"] .cgv-toc-list a:hover {
  color: #111827 !important;
}
[data-theme="light"] .cgv-toc-list .toc-num {
  background: rgba(124,58,237,0.06) !important;
}
[data-theme="light"] .legal-sec-ttl {
  color: #111827 !important;
}
[data-theme="light"] .legal-sec-date {
  color: rgba(17,24,39,0.35) !important;
  background: rgba(0,0,0,0.03) !important;
  border-color: rgba(0,0,0,0.06) !important;
}
[data-theme="light"] .legal-sec-hdr {
  border-bottom-color: rgba(0,0,0,0.06) !important;
}
[data-theme="light"] .legal-body {
  color: rgba(17,24,39,0.6) !important;
}
[data-theme="light"] .legal-body strong {
  color: rgba(17,24,39,0.85) !important;
}
[data-theme="light"] .legal-warning {
  background: rgba(245,158,11,0.04) !important;
  border-color: rgba(245,158,11,0.12) !important;
  color: rgba(17,24,39,0.55) !important;
}
[data-theme="light"] .legal-notice {
  background: rgba(124,58,237,0.03) !important;
  border-color: rgba(124,58,237,0.1) !important;
  color: rgba(17,24,39,0.55) !important;
}

/* ── Generic subtitle/desc text fix for light ── */
[data-theme="light"] [style*="color:rgba(255,255,255"] {
  color: rgba(17,24,39,0.5) !important;
}
[data-theme="light"] [style*="color:var(--w40)"] {
  color: rgba(17,24,39,0.4) !important;
}
[data-theme="light"] [style*="color:var(--w50)"] {
  color: rgba(17,24,39,0.5) !important;
}
[data-theme="light"] [style*="color:var(--white)"] {
  color: #111827 !important;
}
[data-theme="light"] [style*="color:var(--w70)"] {
  color: rgba(17,24,39,0.7) !important;
}
[data-theme="light"] [style*="color:var(--w80)"] {
  color: rgba(17,24,39,0.8) !important;
}

/* ── Inline background overrides for light ── */
[data-theme="light"] [style*="background:var(--surface)"] {
  background: #fff !important;
}
[data-theme="light"] [style*="background:rgba(255,255,255,0.05)"],
[data-theme="light"] [style*="background:rgba(255,255,255,0.04)"],
[data-theme="light"] [style*="background:rgba(255,255,255,0.03)"] {
  background: rgba(0,0,0,0.03) !important;
}
[data-theme="light"] [style*="border:1px solid var(--border2)"] {
  border-color: rgba(0,0,0,0.1) !important;
}
[data-theme="light"] [style*="border:1px solid var(--border)"] {
  border-color: rgba(0,0,0,0.06) !important;
}

/* ── Section backgrounds in light ── */
[data-theme="light"] .section-alt {
  background: linear-gradient(180deg, rgba(124,58,237,0.02) 0%, var(--bg) 100%);
}
[data-theme="light"] .section-alt2 {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(0,0,0,0.01) 50%, var(--bg) 100%);
}

/* ── Guide TOC / Sommaire ── */
.guide-toc {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 48px;
}
.guide-toc-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.guide-toc-title i {
  color: var(--purple);
}
.guide-toc ol {
  padding-left: 20px;
  font-size: 14px;
  color: var(--w70);
  line-height: 1.6;
  margin: 0;
}
.guide-toc ol li {
  padding: 4px 0;
}
.guide-toc ol li a {
  color: var(--w70);
  text-decoration: none;
  transition: color 0.15s;
}
.guide-toc ol li a:hover {
  color: var(--purple);
}
/* ── Comparison table ── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: var(--w70);
}
.compare-table thead tr {
  border-bottom: 2px solid var(--border2);
}
.compare-table th {
  text-align: center;
  padding: 12px 16px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--w50);
}
.compare-table th:first-child {
  text-align: left;
}
.compare-table th.th-uh {
  color: var(--purple);
}
.compare-table td {
  padding: 10px 16px;
  text-align: center;
}
.compare-table td:first-child {
  text-align: left;
}
.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
}
.compare-table tbody tr:last-child {
  border-bottom: none;
}
.compare-table .uh-val {
  color: var(--green);
  font-weight: 600;
}

[data-theme="light"] .guide-toc {
  background: #f8f9fc;
  border-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .guide-toc-title {
  color: #111827;
}
[data-theme="light"] .guide-toc ol li a {
  color: #4b5563;
}
[data-theme="light"] .guide-toc ol li a:hover {
  color: var(--purple);
}

/* ── Guide promotion banner ── */
.guide-promo {
  padding: 32px 24px 48px;
  max-width: 800px;
  margin: 0 auto;
}
.guide-promo a {
  display: block;
  background: linear-gradient(135deg, var(--surface), var(--surface2));
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 28px 32px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
}
.guide-promo a:hover {
  border-color: var(--purple);
  transform: translateY(-2px);
}
[data-theme="light"] .guide-promo a {
  background: linear-gradient(135deg, #f8f9fc, #f1f3f9);
  border-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .guide-promo a:hover {
  border-color: var(--purple);
}

.nav-badge-soon {
  background: linear-gradient(135deg, rgba(111,66,193,0.15), rgba(111,66,193,0.25));
  color: #a78bfa;
  border: 1px solid rgba(111,66,193,0.3);
  box-shadow: 0 2px 8px rgba(111,66,193,0.15);
}

/* ── Z-index fixes ── */
header nav { z-index: 10000 !important; }
.nav-dropdown-menu { z-index: 10001 !important; }
.nav-dropdown-menu-inner { z-index: 10001 !important; }
main { position: relative; z-index: 1; }
footer { position: relative; z-index: 1; }

/* ── Blog link button style ── */
.blog-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border2);
  color: var(--purple);
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s, background 0.15s;
}
.blog-link-btn:hover {
  border-color: rgba(111,66,193,0.4);
  transform: translateY(-2px);
  background: rgba(111,66,193,0.06);
}
[data-theme="light"] .blog-link-btn {
  background: #fff;
  border-color: rgba(0,0,0,0.08);
  color: #6f42c1;
}
[data-theme="light"] .blog-link-btn:hover {
  border-color: rgba(111,66,193,0.3);
  background: rgba(111,66,193,0.04);
}

/* ── Blog preview cards ── */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.blog-links { display: flex; gap: 10px; flex-wrap: wrap; }
.blog-section { padding-top: 0; }
.blog-preview-card { display: flex; flex-direction: column; }
.blog-preview-card p { flex: 1; }
.blog-preview-card .bp-badge { white-space: nowrap; }
.bp-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 12px; }
.blog-preview-card .bp-badge { margin-bottom: 0; }
.blog-preview-card .bp-date { margin-left: 0; white-space: nowrap; }
@media (max-width: 1000px) { .blog-preview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-preview-grid { grid-template-columns: 1fr; } .blog-links { width: 100%; } .blog-link-btn { flex: 1; justify-content: center; } }
.blog-preview-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.18s, box-shadow 0.18s;
}
.blog-preview-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
  background: linear-gradient(90deg, var(--purple2), var(--purple), var(--cyan));
}
.blog-preview-card::after {
  content: ''; position: absolute; top: -30%; right: -20%; width: 140px; height: 140px;
  border-radius: 50%; background: radial-gradient(circle, rgba(111,66,193,0.10), transparent 70%);
  pointer-events: none; opacity: 0; transition: opacity .2s;
}
.blog-preview-card:hover {
  border-color: rgba(111,66,193,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.28);
}
.blog-preview-card:hover::before { transform: scaleX(1); }
.blog-preview-card:hover::after { opacity: 1; }
.blog-preview-card .bp-badge {
  font-size: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-glow);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(111,66,193,0.25);
  display: inline-block;
  margin-bottom: 12px;
}
.blog-preview-card .bp-date {
  font-size: 11px;
  color: var(--w40);
  margin-left: 8px;
}
.blog-preview-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.blog-preview-card p {
  font-size: 13px;
  color: var(--w50);
  line-height: 1.55;
  margin: 0 0 14px;
}
.blog-preview-card .bp-read {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 12px;
  color: var(--purple); display: inline-flex; align-items: center; gap: 6px;
}
.blog-preview-card .bp-read i { font-size: 10px; transition: transform .2s; }
.blog-preview-card:hover .bp-read i { transform: translateX(3px); }
[data-theme="light"] .blog-preview-card {
  background: #fff;
  border-color: rgba(0,0,0,0.06);
}
[data-theme="light"] .blog-preview-card:hover {
  border-color: rgba(111,66,193,0.3);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}
[data-theme="light"] .blog-preview-card h3 { color: #111827; }
[data-theme="light"] .blog-preview-card p { color: rgba(17,24,39,0.5); }
@media (max-width: 768px) {
  .blog-preview-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Floating orbs animation (shared) ── */
.floating-orbs {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.floating-orb {
  position: absolute;
  animation: floatOrb linear infinite;
  opacity: 0;
}
@keyframes floatOrb {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  8%   { opacity: 0.7; }
  50%  { transform: translateY(-60vh) scale(1.1); opacity: 0.4; }
  100% { transform: translateY(-120vh) scale(0.8); opacity: 0; }
}

/* ── VPS Game hero glow ── */
.hero-glow-vpsg {
  position: absolute; top: -15%; left: 50%; transform: translateX(-50%);
  width: min(1000px, 150vw); height: min(800px, 120vw); border-radius: 50%;
  background: radial-gradient(circle, rgba(251,191,36,0.08) 0%, rgba(111,66,193,0.10) 35%, transparent 65%);
  pointer-events: none;
}

/* ── VPS Windows hero glow ── */
.hero-glow-vpsw {
  position: absolute; top: -15%; left: 50%; transform: translateX(-50%);
  width: min(1000px, 150vw); height: min(800px, 120vw); border-radius: 50%;
  background: radial-gradient(circle, rgba(96,165,250,0.08) 0%, rgba(111,66,193,0.10) 35%, transparent 65%);
  pointer-events: none;
}

/* Light theme */
[data-theme="light"] .hero-glow-vpsg { background: radial-gradient(circle, rgba(251,191,36,0.04) 0%, rgba(124,58,237,0.03) 35%, transparent 65%); }
[data-theme="light"] .hero-glow-vpsw { background: radial-gradient(circle, rgba(59,130,246,0.04) 0%, rgba(124,58,237,0.03) 35%, transparent 65%); }
[data-theme="light"] .floating-orb { opacity: 0.5; }


/* ══════════════════════════════════════════
   FOOTER - Rewritten from scratch
   ══════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 0;
  background: transparent;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  display: flex;
  gap: 48px;
  padding: 64px 0 48px;
}
.footer-brand {
  flex: 0 0 240px;
}
.footer-brand .logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--w40);
  line-height: 1.7;
  max-width: 220px;
}
.footer-columns {
  display: flex;
  flex: 1;
  gap: 48px;
}
.footer-col {
  flex: 1;
  min-width: 120px;
}
.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--w50);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-col a {
  font-size: 13px;
  color: var(--w40);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover {
  color: var(--white);
}

/* Payments bar */
.footer-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.footer-payments span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--w50);
  font-weight: 500;
  padding: 6px 20px;
}
.footer-payments i {
  font-size: 18px;
  color: var(--w40);
}
.footer-pay-sep {
  width: 1px;
  height: 18px;
  background: var(--border);
  flex-shrink: 0;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  font-size: 12px;
  color: var(--w20);
  margin: 0;
}
.tp {
  font-size: 12px;
  color: var(--w40);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color 0.15s;
}
.tp:hover { color: var(--white); }
.tp-s {
  color: #00b67a;
  display: flex;
  gap: 2px;
}

/* ── FOOTER MOBILE ── */
@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    gap: 32px;
    padding: 48px 0 40px;
  }
  .footer-brand {
    flex: none;
  }
  .footer-columns {
    flex-wrap: wrap;
    gap: 32px;
  }
  .footer-col {
    min-width: calc(50% - 16px);
    flex: 0 0 calc(50% - 16px);
  }
}
@media (max-width: 600px) {
  .footer-inner {
    padding: 0 20px;
  }
  .footer-top {
    gap: 28px;
    padding: 40px 0 32px;
  }
  .footer-columns {
    gap: 24px;
  }
  .footer-col {
    min-width: 100%;
    flex: 0 0 100%;
  }
  .footer-payments {
    gap: 4px;
    padding: 16px 0;
  }
  .footer-payments span {
    padding: 4px 10px;
    font-size: 12px;
  }
  .footer-pay-sep {
    display: none;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 20px 0;
  }
}

/* ── FOOTER LIGHT THEME ── */
[data-theme="light"] footer { border-top-color: rgba(0,0,0,0.06); }
[data-theme="light"] .footer-tagline { color: rgba(17,24,39,0.45); }
[data-theme="light"] .footer-col h4 { color: rgba(17,24,39,0.45); }
[data-theme="light"] .footer-col a { color: rgba(17,24,39,0.4); }
[data-theme="light"] .footer-col a:hover { color: #111827; }
[data-theme="light"] .footer-payments { border-top-color: rgba(0,0,0,0.06); }
[data-theme="light"] .footer-payments span { color: rgba(17,24,39,0.45); }
[data-theme="light"] .footer-payments i { color: rgba(17,24,39,0.35); }
[data-theme="light"] .footer-pay-sep { background: rgba(0,0,0,0.1); }
[data-theme="light"] .footer-bottom { border-top-color: rgba(0,0,0,0.06); }
[data-theme="light"] .footer-bottom p { color: rgba(17,24,39,0.25); }
[data-theme="light"] .tp { color: rgba(17,24,39,0.4); }
[data-theme="light"] .tp:hover { color: #111827; }

/* ══════════════════════════════════════════
   CUSTOM SCROLLBAR - DA UniHeberg
   ══════════════════════════════════════════ */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--purple2), var(--purple));
  border-radius: 100px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--purple), #b388ff);
}
::-webkit-scrollbar-corner { background: var(--bg); }

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--purple2) var(--bg);
}

/* Light theme */
[data-theme="light"] ::-webkit-scrollbar-track { background: #f8f9fc; }
[data-theme="light"] ::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #7c3aed, #a78bfa);
  border-color: #f8f9fc;
}
[data-theme="light"] ::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #6d28d9, #7c3aed);
}
[data-theme="light"] ::-webkit-scrollbar-corner { background: #f8f9fc; }
[data-theme="light"] { scrollbar-color: #7c3aed #f8f9fc; }

/* ══════════════════════════════════════════
   FOOTER FIX - Remove white boxes & grey blocks
   ══════════════════════════════════════════ */
footer, .footer-inner, .footer-top, .footer-columns,
.footer-col, .footer-brand, .footer-payments, .footer-bottom {
  background: transparent !important;
  box-shadow: none !important;
}
.footer-pay-sep {
  width: 1px !important;
  height: 18px !important;
  background: var(--border) !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  flex-shrink: 0 !important;
}
[data-theme="light"] footer,
[data-theme="light"] .footer-inner,
[data-theme="light"] .footer-top,
[data-theme="light"] .footer-columns,
[data-theme="light"] .footer-col,
[data-theme="light"] .footer-brand,
[data-theme="light"] .footer-payments,
[data-theme="light"] .footer-bottom {
  background: transparent !important;
  box-shadow: none !important;
}
[data-theme="light"] .footer-pay-sep {
  background: rgba(0,0,0,0.08) !important;
}

/* MOBILE MENU FIX: full overlay with close button inside */
@media (max-width: 900px) {
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 100vh;
    z-index: 10001;
    padding: 0 16px 24px;
  }
  .mobile-menu .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1;
  }
  .mobile-menu .mobile-menu-header .logo {
    opacity: 1 !important;
    max-width: none !important;
    pointer-events: auto !important;
  }
  .mobile-menu .mobile-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    font-size: 22px;
    padding: 8px;
  }
  /* Hide the hamburger when menu is open since close is inside menu */
  nav.menu-open .hamburger {
    display: none;
  }
  nav.menu-open > .logo {
    opacity: 0;
    max-width: 0;
    margin-right: 0;
    pointer-events: none;
  }
}
[data-theme="light"] .mobile-close-btn { color: #111827; }

/* ===== EXTRACTED INLINE STYLES ===== */

/* Top banner */
#top-banner {
  background: linear-gradient(90deg, rgba(111,66,193,0.95), rgba(96,0,254,0.9));
  padding: 9px 16px;
  text-align: center;
  position: relative;
  z-index: 101;
}
.top-banner-text {
  margin: 0;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.top-banner-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-banner-dot {
  opacity: 0.5;
}
.top-banner-link {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 11px;
  padding: 3px 12px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.top-banner-link:hover {
  background: rgba(255,255,255,0.25);
}

/* Logo mark sizing (navbar + footer) */
.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

/* Nav icon images */
.nav-icon-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Nav dropdown divider */
.nav-dropdown-divider {
  border-top: 1px solid var(--border2);
  margin: 6px 0;
}

/* Guides nav link */
.nav-link-guides {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 10px;
  transition: color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.nav-link-guides:hover {
  color: var(--white);
  background: var(--w06);
}
.nav-link-guides i {
  font-size: 12px;
  color: var(--purple);
}

/* Purple badge/tag */
.purple-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(111,66,193,0.12);
  border: 1px solid rgba(111,66,193,0.25);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: 16px;
}

/* Disabled nav item */
.nav-item-disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: default;
}

/* Section label small */
.section-label-sm {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* Subtle text */
.text-subtle {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  line-height: 1.65;
}

/* Section heading syne */
.section-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 10px;
}

/* Light theme overrides */
[data-theme="light"] .nav-link-guides {
  color: rgba(0,0,0,0.5);
}
[data-theme="light"] .nav-link-guides:hover {
  color: #111827;
  background: rgba(0,0,0,0.04);
}
[data-theme="light"] .top-banner-link {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* ── MOBILE FONT READABILITY FIX ── */
@media (max-width: 600px) {
  .page-hero h1, .hero h1, .s-title {
    letter-spacing: 0;
    line-height: 1.15;
  }
  .page-hero p, .hero p {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.01em;
  }
}

/* ── OFFERS (section #produits, présentation bento) ── */
.offer-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; margin-bottom: 44px; flex-wrap: wrap;
}
.offer-allprices {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--purple); text-decoration: none; padding-bottom: 6px;
  border-bottom: 1px solid rgba(155,109,255,0.3); transition: gap 0.2s, color 0.2s;
}
.offer-allprices:hover { gap: 12px; color: var(--white); }
.offer-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.offer-lg { grid-column: span 7; }
.offer-sm { grid-column: span 5; }
.offer-full { grid-column: span 12; }
.offer-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.offer-card::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 15% 0%, var(--purple-glow), transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.offer-card:hover { transform: translateY(-3px); border-color: rgba(155,109,255,0.35); }
.offer-card:hover::after { opacity: 1; }
.offer-card > * { position: relative; z-index: 1; }
.offer-card.featured {
  background: linear-gradient(150deg, rgba(111,66,193,0.14), rgba(15,18,37,0.9) 55%);
  border-color: rgba(155,109,255,0.28);
}
.offer-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.offer-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--purple-glow); border: 1px solid rgba(111,66,193,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--purple); flex-shrink: 0;
}
.offer-icon .nav-icon-img { width: 24px; height: 24px; }
.offer-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  background: var(--w06); color: var(--w50); border: 1px solid var(--border);
}
.offer-pill.purple { background: rgba(111,66,193,0.16); color: var(--purple); border-color: rgba(111,66,193,0.3); }
.offer-pill.green { background: var(--green-dim); color: #00c96a; border-color: rgba(0,232,122,0.2); }
.offer-name {
  font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800;
  letter-spacing: -0.01em; margin-bottom: 4px;
}
.offer-sub { font-size: 13.5px; font-weight: 500; color: var(--w70); margin-bottom: 10px; }
.offer-desc { font-size: 13.5px; color: var(--w40); line-height: 1.7; margin-bottom: 18px; max-width: 52ch; }
.offer-list { list-style: none; display: grid; gap: 9px; margin-bottom: 24px; }
.offer-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--w70); }
.offer-list i { font-size: 11px; color: var(--green); margin-top: 3px; }
.offer-foot {
  margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.offer-price {
  font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; letter-spacing: -0.01em;
  display: flex; align-items: baseline; gap: 6px;
}
.offer-price .offer-from {
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 400;
  color: var(--w40); letter-spacing: 0;
}
.offer-price small { font-size: 12px; font-weight: 400; color: var(--w40); letter-spacing: 0; }
.offer-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  padding: 10px 18px; border-radius: 10px;
  color: var(--white); background: var(--w06); border: 1px solid var(--border2);
  transition: gap 0.2s, background 0.2s, border-color 0.2s;
}
.offer-btn:hover { gap: 12px; background: var(--w10); border-color: rgba(155,109,255,0.4); }
.offer-btn.primary {
  background: linear-gradient(135deg, var(--purple2), var(--purple));
  border-color: transparent; box-shadow: 0 8px 24px rgba(111,66,193,0.28);
}
.offer-btn.primary:hover { filter: brightness(1.08); }

@media (max-width: 900px) {
  .offer-lg, .offer-sm, .offer-full { grid-column: span 12; }
}

[data-theme="light"] .offer-card { background: #fff; border-color: rgba(0,0,0,0.07); }
[data-theme="light"] .offer-card.featured { background: linear-gradient(150deg, rgba(124,58,237,0.07), #fff 55%); border-color: rgba(124,58,237,0.18); }
[data-theme="light"] .offer-name, [data-theme="light"] .offer-price { color: #111827; }
[data-theme="light"] .offer-sub { color: rgba(17,24,39,0.72); }
[data-theme="light"] .offer-desc, [data-theme="light"] .offer-price small, [data-theme="light"] .offer-price .offer-from { color: rgba(17,24,39,0.5); }
[data-theme="light"] .offer-list li { color: rgba(17,24,39,0.7); }
[data-theme="light"] .offer-list i { color: #059669; }
[data-theme="light"] .offer-pill { background: rgba(0,0,0,0.03); color: rgba(17,24,39,0.5); border-color: rgba(0,0,0,0.07); }
[data-theme="light"] .offer-foot { border-top-color: rgba(0,0,0,0.07); }
[data-theme="light"] .offer-btn { color: #111827; background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.1); }
[data-theme="light"] .offer-btn.primary { color: #fff; }
.offer-header > div { flex: 1 1 420px; }
.offer-header .s-desc { margin-bottom: 0; }
.offer-header .offer-allprices { margin-bottom: 6px; }
.offer-foot { flex-wrap: nowrap; }
.offer-price { white-space: nowrap; }
.offer-sm .offer-price { font-size: 22px; }
.offer-btn { white-space: nowrap; }
@media (max-width: 560px) { .offer-foot { flex-wrap: wrap; } }

/* ── STATS 6 COLONNES ── */
.stats-row-6 { grid-template-columns: repeat(6, 1fr); }
.stats-row-6 .stat { padding: 34px 16px; }
.stats-row-6 .stat-label { font-size: 12px; line-height: 1.5; }
@media (max-width: 1100px) {
  .stats-row-6 { grid-template-columns: repeat(3, 1fr); }
  .stats-row-6 .stat:nth-child(3n) { border-right: none; }
  .stats-row-6 .stat:nth-child(-n+3) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 640px) {
  .stats-row-6 { grid-template-columns: repeat(2, 1fr); }
  .stats-row-6 .stat { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .stats-row-6 .stat:nth-child(2n) { border-right: none; }
  .stats-row-6 .stat:nth-child(n+5) { border-bottom: none; }
}

/* ── INFRA SPECS ── */
.infra-specs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.infra-spec {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(111,66,193,0.08); border: 1px solid rgba(111,66,193,0.22);
  font-size: 12.5px; font-weight: 600; color: var(--w70, rgba(255,255,255,0.7));
}
.infra-spec i { color: var(--purple); font-size: 11px; }
.feat-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .feat-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .feat-grid-3 { grid-template-columns: 1fr; } }

/* ── SECTION ÉCOLOGIQUE ── */
.eco-section { position: relative; }
.eco-tag { color: #34d399 !important; }
.eco-grad {
  background: linear-gradient(135deg, #34d399, #10b981);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.eco-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px;
}
.eco-stat {
  padding: 26px 22px; border-radius: 16px;
  background: linear-gradient(160deg, rgba(52,211,153,0.07), rgba(255,255,255,0.01));
  border: 1px solid rgba(52,211,153,0.18);
}
.eco-val {
  font-family: 'Syne', sans-serif; font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1; letter-spacing: -0.02em;
  background: linear-gradient(135deg, #6ee7b7, #10b981);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.eco-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; margin-top: 12px; }
.eco-txt { font-size: 13px; color: var(--w40); line-height: 1.7; margin-top: 8px; }
.eco-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  margin-top: 24px; background: var(--border);
  border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
}
.eco-card { background: var(--bg); padding: 26px 22px; }
.eco-icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.22);
  display: flex; align-items: center; justify-content: center;
  color: #34d399; font-size: 17px; margin-bottom: 16px;
}
.eco-card-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.eco-card-desc { font-size: 13px; color: var(--w40); line-height: 1.7; }
@media (max-width: 980px) {
  .eco-stats { grid-template-columns: 1fr; }
  .eco-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) { .eco-grid { grid-template-columns: 1fr; } }
[data-theme="light"] .eco-card { background: #fff; }
[data-theme="light"] .eco-grid { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.05); }

/* ── AVIS CLIENTS (design v2) ── */
.reviews-section-v2 .reviews-layout {
  display: grid; grid-template-columns: 320px 1fr; gap: 24px; align-items: start;
}
.reviews-score {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 26px 24px; position: sticky; top: 96px;
  overflow: hidden;
}
.reviews-score::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 90% 60% at 20% 0%, rgba(111,66,193,0.12), transparent 70%);
}
.rs-top { display: flex; align-items: center; gap: 14px; position: relative; }
.rs-note {
  font-family: 'Syne', sans-serif; font-size: 44px; font-weight: 800;
  letter-spacing: -0.04em; line-height: 1; color: var(--white);
}
.rs-note span { font-size: 17px; color: var(--w40); font-weight: 700; }
.rs-stars { color: var(--amber); font-size: 13px; letter-spacing: 2px; }
.rs-sub { font-size: 11.5px; color: var(--w40); margin-top: 4px; }
.rs-bars { margin-top: 22px; display: flex; flex-direction: column; gap: 8px; position: relative; }
.rs-bar { display: flex; align-items: center; gap: 10px; }
.rs-bar-label { font-size: 11px; color: var(--w50); width: 30px; display: flex; align-items: center; gap: 3px; }
.rs-bar-label i { font-size: 8px; color: var(--amber); }
.rs-bar-track { flex: 1; height: 6px; border-radius: 999px; background: rgba(255,255,255,0.07); overflow: hidden; }
.rs-bar-fill { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--purple), #a78bfa); }
.rs-bar-val { font-size: 11px; color: var(--w40); width: 30px; text-align: right; }
.rs-foot { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 7px; position: relative; }
.rs-pill {
  font-size: 10.5px; color: var(--w50); display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  padding: 4px 9px; border-radius: 7px;
}
.rs-pill i { color: var(--purple); font-size: 9px; }
.reviews-section-v2 .reviews-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
.reviews-section-v2 .review-card { position: relative; padding-top: 22px; }
.reviews-section-v2 .review-card::after {
  content: "\201C"; position: absolute; top: 4px; right: 18px;
  font-family: 'Syne', sans-serif; font-size: 62px; line-height: 1;
  color: rgba(111,66,193,0.16); pointer-events: none;
}
.r-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.reviews-section-v2 .r-stars { margin-bottom: 0; }
.r-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--purple); background: rgba(111,66,193,0.10);
  border: 1px solid rgba(111,66,193,0.22); border-radius: 6px; padding: 3px 8px;
  position: relative; z-index: 1;
}
.r-verified { color: var(--purple); font-size: 11px; margin-left: 3px; }
@media (max-width: 1024px) {
  .reviews-section-v2 .reviews-layout { grid-template-columns: 1fr; }
  .reviews-score { position: static; }
}
@media (max-width: 720px) {
  .reviews-section-v2 .reviews-grid { grid-template-columns: 1fr; }
  .rs-note { font-size: 36px; }
  .reviews-score { padding: 22px 18px; }
}
[data-theme="light"] .reviews-score { background: #fff; border-color: rgba(0,0,0,0.07); }
[data-theme="light"] .rs-note { color: #111827; }
[data-theme="light"] .rs-bar-track { background: rgba(17,24,39,0.08); }
[data-theme="light"] .r-tag { background: rgba(124,58,237,0.08); border-color: rgba(124,58,237,0.2); }


/* ── Lien inline vers la page Anti-DDoS ── */
.ddos-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(248,113,113,0.55);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.ddos-link:hover { color: #f87171; text-decoration-color: #f87171; }

/* Badge Nouveau dans le footer */
.footer-col .footer-badge-new{display:inline-block;margin-left:6px;font-size:9px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:#4ade80;background:rgba(74,222,128,.12);border:1px solid rgba(74,222,128,.3);border-radius:100px;padding:2px 6px;vertical-align:middle;}


/* Liens inline de conversion */
.uh-inline-link {
  color: inherit; text-decoration: none;
  border-bottom: 1px dashed rgba(155,109,255,0.55);
  transition: color .2s ease, border-color .2s ease;
}
.uh-inline-link:hover { color: var(--purple2, #9b6dff); border-bottom-color: var(--purple2, #9b6dff); }
