/* ═══════════════════════════════════════════════════════════════
   LaurayWeb — Design System v2
   styles.css — partagé par toutes les pages
   Palette : noir / gris / blanc uniquement — zéro bleu, zéro néon
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── Tokens ── */
:root {
  /* Backgrounds */
  --bg:       #000000;
  --bg-2:     #0d0d0d;
  --s1:       #111111;
  --s2:       #181818;
  --s3:       #222222;
  --s4:       #2a2a2a;
  --s5:       #333333;

  /* Text */
  --text:     rgba(255,255,255,.92);
  --muted:    rgba(255,255,255,.50);
  --muted-2:  rgba(255,255,255,.28);
  --muted-3:  rgba(255,255,255,.10);

  /* Borders */
  --border:   rgba(255,255,255,.08);
  --border-2: rgba(255,255,255,.14);
  --border-3: rgba(255,255,255,.24);
  --border-4: rgba(255,255,255,.36);

  /* Glass — accentué */
  --glass-bg:      rgba(255,255,255,.04);
  --glass-bg-h:    rgba(255,255,255,.075);
  --glass-bg-str:  rgba(255,255,255,.09);
  --glass-border:  rgba(255,255,255,.10);
  --glass-border-h:rgba(255,255,255,.20);

  /* Blur niveaux */
  --blur-sm:   blur(12px);
  --blur-md:   blur(20px);
  --blur-lg:   blur(32px);
  --blur-xl:   blur(48px);

  /* Glass shadows */
  --glass-shadow:   0 8px 32px rgba(0,0,0,.55), 0 1px 0 rgba(255,255,255,.06) inset;
  --glass-shadow-h: 0 20px 60px rgba(0,0,0,.70), 0 1px 0 rgba(255,255,255,.10) inset;
  --glass-shadow-lg:0 32px 80px rgba(0,0,0,.80), 0 1px 0 rgba(255,255,255,.10) inset;

  /* Typography */
  --font-d: 'Manrope', sans-serif;
  --font-b: 'Inter', sans-serif;

  /* Radii */
  --r:    10px;
  --rl:   16px;
  --rxl:  22px;
  --rxxl: 28px;

  /* Layout */
  --nav-h: 62px;
  --w:     1160px;

  /* Misc */
  --green: rgba(130,220,120,.80);

  /* Accents couleur */
  --accent-blue:   #60a5fa;
  --accent-purple: #a78bfa;
  --accent-teal:   #2dd4bf;
  --glow-blue:   rgba(96,165,250,.10);
  --glow-purple: rgba(167,139,250,.10);
  --glow-teal:   rgba(45,212,191,.08);
}

/* ── Base ── */
body {
  font-family: var(--font-b);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

.wrap, .container {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ═══════════════════════════════════════
   BACKGROUND AMBIANCE
═══════════════════════════════════════ */
.bg-orbs {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
}
.orb-1 {
  width: 700px; height: 700px; top: -250px;
  left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(99,102,241,.09) 0%, transparent 70%);
}
.orb-2 {
  width: 450px; height: 450px; bottom: 20%; left: -120px;
  background: radial-gradient(circle, rgba(20,184,166,.07) 0%, transparent 70%);
}
.orb-3 {
  width: 380px; height: 380px; top: 40%; right: -100px;
  background: radial-gradient(circle, rgba(168,85,247,.07) 0%, transparent 70%);
}

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

/* Background scène alternative (laurayhost) */
.bg-scene {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.bg-scene .dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, black 0%, transparent 100%);
}
.bg-scene .lines {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,8,8,1) 100%);
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200; height: var(--nav-h);
}
.nav-blur {
  position: absolute; inset: 0;
  background: rgba(8,8,8,.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--border);
  /* highlight line en haut */
  box-shadow: 0 1px 0 rgba(255,255,255,.05) inset;
}
.nav-inner, .nav-content {
  position: relative; z-index: 1;
  max-width: var(--w); margin: 0 auto; padding: 0 28px;
  height: var(--nav-h);
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.nav-logo img, .brand img { height: 24px; }
.brand { display: flex; align-items: center; }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-item > a,
.nav-item > button {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 14px; font-weight: 500; color: var(--muted);
  padding: 8px 14px; border-radius: var(--r);
  background: none; border: none;
  transition: color .18s, background .18s;
  cursor: pointer; white-space: nowrap;
}
.nav-item > a:hover,
.nav-item > button:hover,
.nav-item.open > button,
.nav-links > a:hover,
.nav-links > a.active {
  color: var(--text);
  background: var(--glass-bg);
}
.nav-links > a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  padding: 8px 14px; border-radius: var(--r);
  transition: color .18s, background .18s;
}

/* Chevron */
.nav-chevron {
  width: 12px; height: 12px; opacity: .5;
  transition: transform .22s, opacity .18s; flex-shrink: 0;
}
.nav-item.open .nav-chevron { transform: rotate(180deg); opacity: .8; }

/* ── Dropdown panel ── */
.dropdown {
  position: absolute; top: calc(100% + 10px);
  left: 50%; transform: translateX(-50%) translateY(-8px);
  background: rgba(12,12,12,.96);
  border: 1px solid var(--border-2);
  border-radius: var(--rl);
  backdrop-filter: blur(36px);
  -webkit-backdrop-filter: blur(36px);
  /* inset glow top */
  box-shadow:
    0 24px 70px rgba(0,0,0,.75),
    0 0 0 1px rgba(255,255,255,.05) inset,
    0 1px 0 rgba(255,255,255,.10) inset;
  padding: 8px; min-width: 220px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 300;
  /* highlight top border */
  border-top: 1px solid rgba(255,255,255,.14);
}
.nav-item.open .dropdown {
  opacity: 1; visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dd-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: var(--r);
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: background .15s, color .15s; cursor: pointer;
}
.dd-item:hover { background: var(--glass-bg-h); color: var(--text); }
.dd-icon {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--s2); border: 1px solid var(--border);
  display: grid; place-items: center; flex-shrink: 0;
}
.dd-icon svg { width: 14px; height: 14px; opacity: .7; }
.dd-text strong { display: block; font-size: 13.5px; font-weight: 600; color: var(--text); margin-bottom: 1px; }
.dd-text span { font-size: 12px; color: var(--muted-2); }
.dd-sep { height: 1px; background: var(--border); margin: 6px 8px; }

/* LaurayHost dropdown — large */
.dropdown-lg { min-width: 380px; padding: 16px; }
.dd-game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

/* Image-based game cards in nav dropdown */
.dd-game-img {
  position: relative; border-radius: var(--r);
  overflow: hidden; height: 76px;
  border: 1px solid var(--border);
  display: block;
  transition: border-color .2s, transform .2s;
}
.dd-game-img-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .5; transition: opacity .22s;
}
.dd-game-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 100%);
}
.dd-game-img-name {
  position: absolute; bottom: 9px; left: 11px;
  font-family: var(--font-d); font-size: 13px; font-weight: 800;
  color: rgba(255,255,255,.95); letter-spacing: .01em;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.dd-game-img:hover { border-color: var(--border-3); transform: translateY(-2px); }
.dd-game-img:hover .dd-game-img-bg { opacity: .7; }

/* Legacy icon-based game cards (kept for compat) */
.dd-game {
  display: flex; flex-direction: column; gap: 6px;
  padding: 14px; border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--glass-bg);
  transition: background .18s, border-color .18s;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset;
}
.dd-game:hover { background: var(--glass-bg-h); border-color: var(--border-2); }
.dd-game-head { display: flex; align-items: center; gap: 10px; }
.dd-game-ico { width: 28px; height: 28px; border-radius: 8px; background: var(--s3); display: grid; place-items: center; flex-shrink: 0; }
.dd-game-ico svg { width: 13px; height: 13px; opacity: .75; }
.dd-game strong { font-size: 13px; font-weight: 700; color: var(--text); }
.dd-game-packs { display: flex; gap: 5px; flex-wrap: wrap; }
.dd-pack-pill { font-size: 11px; font-weight: 600; color: var(--muted-2); background: var(--s3); border: 1px solid var(--border); padding: 2px 8px; border-radius: 999px; transition: all .15s; }
.dd-game:hover .dd-pack-pill { color: var(--text); border-color: var(--border-2); }

/* Workflow dropdown */
.dropdown-workflow { min-width: 300px; padding: 14px; }
.dd-wf-header { margin-bottom: 12px; padding: 0 6px; }
.dd-wf-header strong { font-size: 14px; font-weight: 700; color: var(--text); display: block; margin-bottom: 4px; }
.dd-wf-header p { font-size: 13px; color: var(--muted-2); line-height: 1.5; }
.dd-wf-beta {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-radius: var(--r);
  background: var(--s2); border: 1px solid var(--border-2);
  margin-top: 10px;
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset;
}
.beta-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-teal); flex-shrink: 0;
  animation: betaBlink 2s ease-in-out infinite;
}
@keyframes betaBlink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.dd-wf-beta-text { flex: 1; }
.dd-wf-beta-text strong { font-size: 13px; font-weight: 600; color: var(--text); display: block; }
.dd-wf-beta-text span { font-size: 11px; color: var(--muted-2); }
.dd-wf-beta-btn {
  font-size: 12px; font-weight: 700; color: var(--text);
  background: var(--s3); border: 1px solid var(--border-2);
  padding: 6px 12px; border-radius: var(--r);
  transition: all .16s; white-space: nowrap;
}
.dd-wf-beta-btn:hover { background: var(--s4); border-color: var(--border-3); }

/* Auth nav buttons */
.nav-auth, .nav-cta { display: flex; align-items: center; gap: 8px; }
.btn-connexion {
  font-size: 13.5px; font-weight: 600; color: var(--muted);
  padding: 7px 16px; border-radius: var(--r);
  border: 1px solid var(--border-2);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  transition: all .18s;
}
.btn-connexion:hover { color: var(--text); background: var(--glass-bg-h); border-color: var(--border-3); }

.btn-register {
  font-size: 13.5px; font-weight: 700; color: var(--bg);
  padding: 7px 16px; border-radius: var(--r);
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(255,255,255,.20);
  transition: all .2s;
}
.btn-register:hover { background: rgba(255,255,255,1); transform: translateY(-1px); }

/* Burger */
.burger, .burger-btn {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: var(--r);
  border: 1px solid var(--border); background: none; cursor: pointer;
}
.burger span, .burger-btn span {
  display: block; width: 18px; height: 1.5px;
  background: var(--muted); border-radius: 2px; transition: all .22s;
}
.burger.open span:nth-child(1),
.burger-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2),
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3),
.burger-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mob-menu, .mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(8,8,8,.97);
  backdrop-filter: blur(28px);
  border-bottom: 1px solid var(--border);
  padding: 16px 28px 28px; z-index: 199;
}
.mob-menu.open, .mobile-menu.open { display: flex; }
.mob-menu a, .mobile-menu a {
  font-size: 15px; font-weight: 500; color: var(--muted);
  padding: 12px 0; border-bottom: 1px solid var(--border);
  transition: color .16s;
}
.mob-menu a:hover, .mobile-menu a:hover,
.mob-menu a.active, .mobile-menu a.active { color: var(--text); }
.mob-menu a:last-of-type, .mobile-menu a:last-of-type { border: none; }
.mob-auth {
  display: flex; gap: 10px; margin-top: 12px;
}
.mob-auth a {
  flex: 1; text-align: center; padding: 11px;
  border-radius: var(--r); font-size: 14px; font-weight: 600;
  border: none !important;
}

/* ═══════════════════════════════════════
   BUTTONS — shared
═══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-size: 14px; font-weight: 600; color: var(--muted);
  padding: 9px 20px; border-radius: var(--r);
  border: 1px solid var(--border-2);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  transition: all .2s; cursor: pointer; white-space: nowrap;
}
.btn:hover { color: var(--text); border-color: var(--border-3); background: var(--glass-bg-h); }
.btn.primary {
  color: var(--bg); background: rgba(255,255,255,.90);
  border-color: rgba(255,255,255,.20);
}
.btn.primary:hover { background: #fff; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(255,255,255,.10); }
.btn.large { font-size: 15px; padding: 12px 26px; border-radius: var(--rl); }
.btn.full { width: 100%; }

/* Hero CTA variants */
.btn-hcta {
  font-size: 15px; font-weight: 700; color: var(--bg);
  padding: 13px 28px; border-radius: var(--rl);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.15);
  transition: all .2s;
}
.btn-hcta:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,255,255,.12); }
.btn-hsec {
  font-size: 15px; font-weight: 500; color: var(--muted);
  padding: 13px 28px; border-radius: var(--rl);
  border: 1px solid var(--border-2);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  transition: all .2s;
}
.btn-hsec:hover { color: var(--text); border-color: var(--border-3); background: var(--glass-bg-h); }

/* ═══════════════════════════════════════
   GLASS CARD — composant central
═══════════════════════════════════════ */
.glass, .gc {
  border: 1px solid var(--glass-border);
  border-radius: var(--rxl);
  background: var(--glass-bg);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  overflow: hidden; position: relative;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  box-shadow: var(--glass-shadow);
}
/* Highlight top border (inset glow sur les cards) */
.glass::before, .gc::before {
  content: '';
  position: absolute; top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  pointer-events: none;
  transition: opacity .25s;
}
/* Inset glow subtil */
.glass::after, .gc::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset;
  pointer-events: none;
}
.glass:hover, .gc:hover {
  border-color: var(--glass-border-h);
  transform: translateY(-3px);
  box-shadow: var(--glass-shadow-h);
}
.glass:hover::before, .gc:hover::before { opacity: 1; }

/* ═══════════════════════════════════════
   HERO — commun
═══════════════════════════════════════ */
.hero-wrap, .hero {
  position: relative; z-index: 2;
  padding: calc(var(--nav-h) + 100px) 0 0;
  text-align: center;
}
.hero-pill, .hero-tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .10em; text-transform: uppercase;
  color: var(--muted);
  background: var(--glass-bg);
  border: 1px solid var(--border-2);
  padding: 7px 18px; border-radius: 999px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  animation: fadeUp .5s ease both;
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset;
}
.hero-pill-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent-blue); animation: betaBlink 2.5s ease-in-out infinite; }
.hero-tag span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.4); display: inline-block;
}

.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(42px, 7vw, 92px);
  font-weight: 900; line-height: 1.0; letter-spacing: -.03em;
  max-width: 860px; margin: 0 auto 22px;
  animation: fadeUp .6s .08s ease both;
}
.hero h1 em { font-style: normal; color: rgba(255,255,255,.40); }
.hero-sub, .lead {
  font-size: clamp(15px, 1.8vw, 18px); color: var(--muted);
  max-width: 480px; margin: 0 auto 40px; line-height: 1.7;
  animation: fadeUp .6s .16s ease both;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap; margin-bottom: 72px;
  animation: fadeUp .6s .24s ease both;
}

/* Trust strip */
.trust-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
  animation: fadeUp .6s .32s ease both;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--muted-2);
}

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.mq {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.012);
  padding: 13px 0;
  animation: fadeUp .6s .32s ease both;
}
.mq-track {
  display: flex;
  animation: mqScroll 32s linear infinite;
  width: max-content;
}
.mq-track:hover { animation-play-state: paused; }
.mq-item {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 0 30px; font-size: 12.5px; font-weight: 500;
  color: var(--muted-2); white-space: nowrap; letter-spacing: .02em;
}
.mq-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--muted-3); }
@keyframes mqScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════ */
.sh { text-align: center; margin-bottom: 56px; }
.sh-label {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 14px;
}
.sh-h2 {
  font-family: var(--font-d);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900; letter-spacing: -.03em; line-height: 1.06;
  margin-bottom: 14px;
}
.sh-p { font-size: 16px; color: var(--muted); max-width: 420px; margin: 0 auto; }

/* Sections spacing */
.section { position: relative; z-index: 2; padding: 90px 0; }
.section.compact { padding: 60px 0; }
.bento-section { position: relative; z-index: 2; padding: 90px 0 0; }

/* ═══════════════════════════════════════
   BENTO GRID
═══════════════════════════════════════ */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 10px; }
.gc1 { grid-column: span 8; min-height: 340px; }
.gc2 { grid-column: span 4; min-height: 340px; }
.gc3 { grid-column: span 4; min-height: 265px; }
.gc4 { grid-column: span 4; min-height: 265px; }
.gc5 { grid-column: span 4; min-height: 265px; }
.gc6 { grid-column: span 6; min-height: 245px; }
.gc7 { grid-column: span 6; min-height: 245px; }
.gi { padding: 30px; height: 100%; display: flex; flex-direction: column; }
.g-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted-2);
  background: var(--glass-bg); border: 1px solid var(--border);
  padding: 4px 11px; border-radius: 999px; margin-bottom: 16px;
  width: fit-content; backdrop-filter: blur(8px);
}
.g-title {
  font-family: var(--font-d); font-size: 20px;
  font-weight: 800; line-height: 1.2; margin-bottom: 9px;
}
.g-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; flex: 1; }
.g-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--muted);
  margin-top: 20px; transition: color .18s, gap .18s;
}
.g-cta:hover { color: var(--text); gap: 10px; }
.g-cta svg { width: 14px; height: 14px; }

/* Large card split */
.gc1 .gi { padding: 0; flex-direction: row; }
.g-left {
  padding: 36px 32px; display: flex;
  flex-direction: column; justify-content: space-between; flex: 1;
}
.g-viz {
  width: 250px; flex-shrink: 0;
  background: rgba(255,255,255,.02);
  border-left: 1px solid var(--border);
  padding: 16px 14px; display: flex;
  flex-direction: column; gap: 8px;
  position: relative; overflow: hidden;
}
.g-viz::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 70px;
  background: linear-gradient(to top, var(--bg), transparent);
}

/* Mock UI bars */
.m-bar { height: 6px; border-radius: 3px; background: rgba(255,255,255,.06); }
.m-w100{width:100%}.m-w80{width:80%}.m-w65{width:65%}.m-w50{width:50%}.m-w40{width:40%}
.m-card {
  padding: 9px 11px; border-radius: var(--r);
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
}
.m-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.m-pill { height: 14px; width: 36px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid var(--border); }

/* Feature list */
.flist { display: flex; flex-direction: column; gap: 9px; margin-top: 14px; }
.fi { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--muted); }
.fdot {
  width: 14px; height: 14px; border-radius: 4px;
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  display: grid; place-items: center; flex-shrink: 0;
}
.fdot svg { width: 8px; height: 8px; color: var(--accent-teal); opacity: .85; }

/* Stats */
.g-stats { display: flex; gap: 20px; margin-top: 20px; }
.g-sv { font-family: var(--font-d); font-size: 24px; font-weight: 900; line-height: 1; color: rgba(255,255,255,.85); }
.g-sl { font-size: 11px; color: var(--muted-2); margin-top: 3px; }

/* Beta badge */
.badge-beta {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted-2);
  background: var(--s2); border: 1px solid var(--border-2);
  padding: 3px 10px; border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.t-card {
  padding: 20px; display: flex; flex-direction: column; gap: 12px;
  height: 100%;
}
.t-text { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 10px; }
.t-av {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--s3); display: grid; place-items: center;
  font-size: 11px; font-weight: 800; color: var(--muted-2);
}
.t-name { font-size: 13px; font-weight: 600; }
.t-role { font-size: 11px; color: var(--muted-2); }

/* ═══════════════════════════════════════
   FEATURES SPLIT SECTIONS
═══════════════════════════════════════ */
.feat-s { position: relative; z-index: 2; padding: 100px 0; }
.feat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.feat-grid.rev { direction: rtl; }
.feat-grid.rev > * { direction: ltr; }
.f-content { display: flex; flex-direction: column; gap: 18px; }
.f-h2 {
  font-family: var(--font-d);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900; letter-spacing: -.03em; line-height: 1.1;
}
.f-p { font-size: 15.5px; color: var(--muted); line-height: 1.7; }
.f-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--muted);
  padding: 9px 18px; border-radius: var(--r);
  background: var(--glass-bg); border: 1px solid var(--border-2);
  width: fit-content; transition: all .18s;
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset;
}
.f-link:hover { color: var(--text); border-color: var(--border-3); background: var(--glass-bg-h); }

/* Mock dashboard */
.mock-ui {
  border: 1px solid var(--border); border-radius: var(--rxl);
  background: var(--s1); overflow: hidden;
  box-shadow: var(--glass-shadow);
}
.mock-top {
  padding: 11px 16px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px;
}
.m-d { width: 8px; height: 8px; border-radius: 50%; }
.m-d.r { background: rgba(255,80,80,.5); }
.m-d.a { background: rgba(255,190,50,.5); }
.m-d.g { background: rgba(80,200,100,.5); }
.mock-lbl { margin-left: 6px; font-size: 11px; color: var(--muted-2); font-weight: 600; }
.mock-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.mock-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--r);
  background: var(--s2); border: 1px solid var(--border);
}
.m-ico {
  width: 28px; height: 28px; border-radius: 7px;
  display: grid; place-items: center; flex-shrink: 0;
  background: var(--s3); border: 1px solid var(--border);
}
.m-ico svg { width: 12px; height: 12px; opacity: .6; }
.m-tc { flex: 1; }
.m-t1 { height: 6px; border-radius: 3px; background: var(--s3); margin-bottom: 5px; }
.m-t2 { height: 5px; border-radius: 2px; background: var(--s3); width: 55%; }
.m-chip {
  font-size: 10px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; padding: 3px 8px; border-radius: 999px;
  flex-shrink: 0; color: var(--muted-2);
  background: var(--s3); border: 1px solid var(--border);
}

/* Pack preview */
.pack-prev { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pp-card {
  padding: 14px; border-radius: var(--rl);
  background: var(--s2); border: 1px solid var(--border);
  transition: border-color .2s;
  box-shadow: 0 1px 0 rgba(255,255,255,.05) inset;
}
.pp-card:hover { border-color: var(--border-2); }
.pp-game { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 5px; }
.pp-pack-name { font-family: var(--font-d); font-size: 15px; font-weight: 800; margin-bottom: 3px; }
.pp-price { font-size: 13px; color: var(--muted-2); }
.pp-specs { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.pp-spec {
  font-size: 11px; color: var(--muted-2);
  background: var(--s3); border: 1px solid var(--border);
  padding: 2px 8px; border-radius: 999px;
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-s { position: relative; z-index: 2; padding: 80px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
details { border-bottom: 1px solid var(--border); }
details:first-child { border-top: 1px solid var(--border); }
summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding: 18px 0; cursor: pointer; list-style: none;
  font-size: 14.5px; font-weight: 600; color: var(--text);
  transition: color .18s;
}
summary::-webkit-details-marker { display: none; }
summary:hover { color: rgba(255,255,255,.75); }
.si {
  width: 20px; height: 20px; border-radius: 6px;
  background: var(--s2); border: 1px solid var(--border-2);
  display: grid; place-items: center; flex-shrink: 0;
  transition: background .18s;
}
.si svg { transition: transform .22s; }
details[open] .si { background: var(--s3); }
details[open] .si svg { transform: rotate(45deg); }
details p { padding: 0 0 18px; font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════════════════
   CTA BLOCK
═══════════════════════════════════════ */
.cta-s, .cta-section { position: relative; z-index: 2; padding: 80px 0 120px; }
.cta-box, .cta-block {
  text-align: center; padding: 80px 48px;
  border: 1px solid var(--border);
  border-top: 1px solid rgba(255,255,255,.12);
  border-radius: var(--rxxl);
  background: var(--glass-bg);
  backdrop-filter: var(--blur-lg);
  -webkit-backdrop-filter: var(--blur-lg);
  position: relative; overflow: hidden;
  box-shadow: var(--glass-shadow-lg);
}
/* Inset glow + top highlight */
.cta-box::before, .cta-block::before {
  content: ''; position: absolute;
  top: -50%; left: 50%; transform: translateX(-50%);
  width: 500px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.04), transparent 65%);
  pointer-events: none;
}
.cta-lbl {
  font-size: 11px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px;
}
.cta-h2, .cta-block h2 {
  font-family: var(--font-d);
  font-size: clamp(28px, 5vw, 58px);
  font-weight: 900; letter-spacing: -.03em; line-height: 1.05; margin-bottom: 14px;
}
.cta-p, .cta-block p { font-size: 16px; color: var(--muted); margin-bottom: 32px; }
.cta-acts, .cta-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   HOSTING PACKS
═══════════════════════════════════════ */
.pack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pack {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 1px solid rgba(255,255,255,.14);
  backdrop-filter: var(--blur-md); -webkit-backdrop-filter: var(--blur-md);
  border-radius: var(--rxl); overflow: hidden;
  box-shadow: var(--glass-shadow);
  transition: border-color .25s, transform .25s, box-shadow .25s;
  display: flex; flex-direction: column; position: relative;
}
/* Top highlight line */
.pack::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
}
.pack:hover {
  border-color: var(--glass-border-h);
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-h);
}
.pack.pop {
  border-color: var(--glass-border-h);
  background: var(--glass-bg-str);
}
.pack-banner {
  height: 100px; position: relative;
  overflow: hidden; background: var(--s3);
}
.pack-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: .45;
}
.pack-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.85) 100%);
}
.pack-banner-label {
  position: absolute; bottom: 10px; left: 14px;
  font-family: var(--font-d); font-size: 13px; font-weight: 800;
  color: rgba(255,255,255,.9); letter-spacing: .02em;
}
.pack-body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.pack-head { display: flex; justify-content: space-between; align-items: start; gap: 8px; margin-bottom: 6px; }
.pack-name { font-family: var(--font-d); font-weight: 800; font-size: 15px; }
.pack-price { display: flex; align-items: flex-end; gap: 4px; margin: 8px 0 10px; }
.pack-price strong { font-family: var(--font-d); font-size: 26px; font-weight: 800; line-height: 1; }
.pack-price span { font-size: 13px; color: var(--muted-2); margin-bottom: 2px; }
.pack-desc { font-size: 13px; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.specs { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; flex: 1; }
.spec {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 11px; border-radius: 9px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  font-size: 12.5px;
}
.spec b { color: var(--text); font-weight: 700; }
.spec span { color: var(--muted-2); }
.spec-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.45); flex-shrink: 0; }
.spec-left { display: flex; align-items: center; gap: 7px; }

/* Pill badges */
.pill {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted-2);
  background: var(--s3); border: 1px solid var(--border);
  padding: 3px 10px; border-radius: 999px;
}
.pill.cyan { color: rgba(200,240,255,.75); border-color: rgba(200,240,255,.18); background: rgba(200,240,255,.06); }

/* Chip filters */
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-size: 13px; font-weight: 500; color: var(--muted);
  padding: 7px 16px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--glass-bg);
  cursor: pointer; transition: all .18s;
  backdrop-filter: blur(8px);
}
.chip:hover { color: var(--text); border-color: var(--border-2); }
.chip.active { color: var(--text); border-color: var(--border-3); background: var(--glass-bg-h); }

/* Game section headers */
.game-section { margin-bottom: 72px; }
.game-section:last-child { margin-bottom: 0; }
.game-header {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 20px; gap: 16px;
}
.game-title { display: flex; align-items: center; gap: 12px; }
.game-ico {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--glass-bg-h); border: 1px solid var(--glass-border);
  display: grid; place-items: center;
}
.game-ico svg { width: 18px; height: 18px; opacity: .7; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border);
  padding: 52px 0 30px;
}
.f-grid, .footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.f-brand img, .footer-brand img { height: 22px; margin-bottom: 12px; }
.f-brand p, .footer-brand p { font-size: 13px; color: var(--muted-2); line-height: 1.65; max-width: 220px; }
.f-col h4, .footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 12px;
}
.f-col a, .footer-col a {
  display: block; font-size: 13.5px; color: var(--muted);
  margin-bottom: 8px; transition: color .16s;
}
.f-col a:hover, .footer-col a:hover { color: var(--text); }
.f-bot, .footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border); padding-top: 20px;
}
.f-bot span, .footer-bottom span { font-size: 13px; color: var(--muted-2); }
.f-links, .footer-links { display: flex; gap: 18px; }
.f-links a, .footer-links a { font-size: 13px; color: var(--muted-2); transition: color .16s; }
.f-links a:hover, .footer-links a:hover { color: var(--text); }

/* ═══════════════════════════════════════
   FORM ELEMENTS
═══════════════════════════════════════ */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; font-family: var(--font-b); font-size: 14px;
  color: var(--text);
  background: var(--s2); border: 1px solid var(--border-2);
  border-radius: var(--r); padding: 11px 14px;
  transition: border-color .18s, background .18s;
  outline: none; appearance: none;
  box-shadow: 0 1px 0 rgba(255,255,255,.04) inset;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--border-3);
  background: var(--s3);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted-2); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--s2); }

/* ═══════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════ */
.portfolio-s { position: relative; z-index: 2; padding: 90px 0; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pf-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--rxl);
  background: var(--glass-bg);
  backdrop-filter: var(--blur-md);
  -webkit-backdrop-filter: var(--blur-md);
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  box-shadow: var(--glass-shadow);
  position: relative;
}
.pf-card:hover {
  border-color: var(--glass-border-h);
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-h);
}
.pf-card::before {
  content: '';
  position: absolute; top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  pointer-events: none;
}
/* Barre d'accent colorée en haut de chaque carte */
.pf-accent { height: 2px; width: 100%; }
.pf-accent-blue   { background: linear-gradient(90deg, transparent, rgba(96,165,250,.75) 40%, rgba(99,102,241,.55) 100%); }
.pf-accent-purple { background: linear-gradient(90deg, transparent, rgba(167,139,250,.75) 40%, rgba(236,72,153,.55) 100%); }
.pf-accent-teal   { background: linear-gradient(90deg, transparent, rgba(45,212,191,.75) 40%, rgba(56,189,248,.55) 100%); }

/* Mock browser */
.pf-mock {
  margin: 14px 14px 0;
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  background: var(--s1);
}
.pf-mock-bar {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 11px;
  background: var(--s2);
  border-bottom: 1px solid var(--border);
}
.pf-mock-url { margin-left: 4px; font-size: 10px; color: var(--muted-2); font-weight: 500; }
.pf-mock-screen { padding: 10px; display: flex; flex-direction: column; gap: 6px; min-height: 105px; }

.pf-screen-hero {
  height: 34px; border-radius: 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.pf-screen-hero::after {
  content: ''; position: absolute; inset: 0; opacity: .30;
}
.pf-screen-hero.blue::after   { background: linear-gradient(135deg, rgba(96,165,250,.6), transparent 70%); }
.pf-screen-hero.purple::after { background: linear-gradient(135deg, rgba(167,139,250,.6), transparent 70%); }
.pf-screen-hero.teal::after   { background: linear-gradient(135deg, rgba(45,212,191,.6), transparent 70%); }

.pf-screen-row { display: flex; gap: 5px; }
.pf-screen-block {
  height: 18px; border-radius: 5px; flex: 1;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
}

/* Infos carte */
.pf-info { padding: 14px 16px 18px; }
.pf-type {
  display: inline-flex; align-items: center;
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 3px 10px;
  border-radius: 999px; margin-bottom: 8px; width: fit-content;
}
.pf-type-blue   { color: #93c5fd; background: rgba(96,165,250,.08);  border: 1px solid rgba(96,165,250,.18); }
.pf-type-purple { color: #c4b5fd; background: rgba(167,139,250,.08); border: 1px solid rgba(167,139,250,.18); }
.pf-type-teal   { color: #5eead4; background: rgba(45,212,191,.08);  border: 1px solid rgba(45,212,191,.18); }
.pf-name { font-family: var(--font-d); font-size: 15px; font-weight: 800; margin-bottom: 3px; }
.pf-client { font-size: 12px; color: var(--muted-2); }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .55s ease both; }
.d1 { animation-delay: .06s; }
.d2 { animation-delay: .14s; }
.d3 { animation-delay: .22s; }
.d4 { animation-delay: .32s; }

.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .05s; }
.reveal.d2 { transition-delay: .12s; }
.reveal.d3 { transition-delay: .20s; }
.reveal.d4 { transition-delay: .30s; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .gc1,.gc2,.gc3,.gc4,.gc5,.gc6,.gc7 { grid-column: span 2; }
  .g-viz { display: none; }
  .gc1 .gi { flex-direction: column; padding: 30px; }
  .g-left { padding: 0; }
  .pack-prev { grid-template-columns: 1fr 1fr; }
  .f-grid,.footer-grid { grid-template-columns: 1fr 1fr; }
  .dropdown-lg { min-width: 420px; }
}

@media (max-width: 1100px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .burger, .burger-btn { display: flex; }
  .nav-auth .btn-register, .nav-cta .btn-register { display: none; }
  .bento { grid-template-columns: 1fr; }
  .gc1,.gc2,.gc3,.gc4,.gc5,.gc6,.gc7 { grid-column: span 1; }
  .feat-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-box,.cta-block { padding: 48px 24px; }
  .f-grid,.footer-grid { grid-template-columns: 1fr; }
  .f-bot,.footer-bottom { flex-direction: column; gap: 12px; }
  .pack-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .pack-grid { grid-template-columns: 1fr; }
  .pack-prev { grid-template-columns: 1fr; }
  .trust-strip { flex-direction: column; align-items: center; gap: 10px; }
}

@media (max-width: 480px) {
  .wrap, .container { padding: 0 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-hcta, .btn-hsec { text-align: center; justify-content: center; }
}

/* ═══════════════════════════════════════
   TESTIMONIALS CAROUSEL
═══════════════════════════════════════ */
.testi-wrap {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 2;
  margin-top: 80px; overflow: hidden;
  background: rgba(255,255,255,.008);
}
/* Auto-scroll marquee mode (index.html uses .testi-track) */
.testi-track {
  display: flex; gap: 14px;
  animation: mqScroll 44s linear infinite;
  width: max-content;
}
.testi-track:hover { animation-play-state: paused; }
.t-card {
  width: 300px; flex-shrink: 0;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-top: 1px solid rgba(255,255,255,.12);
  border-radius: var(--rl);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  box-shadow: var(--glass-shadow);
}
.t-q {
  font-size: 13.5px; color: var(--muted);
  line-height: 1.65; margin-bottom: 14px; font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 9px; }
.t-av {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--s3); display: grid; place-items: center;
  font-size: 11px; font-weight: 800; color: var(--muted-2);
}
.t-name { font-size: 13px; font-weight: 600; }
.t-role { font-size: 11px; color: var(--muted-2); }

/* Dots carousel (manual) */
.carousel-wrap { position: relative; }
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex; gap: 14px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.carousel-track .t-card { width: 320px; }
.carousel-dots {
  display: flex; justify-content: center;
  gap: 7px; margin-top: 22px;
}
.carousel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--muted-3);
  border: 1px solid var(--border);
  cursor: pointer; transition: all .2s;
}
.carousel-dot.active { background: var(--muted); border-color: var(--border-3); width: 18px; border-radius: 999px; }
.carousel-arrows {
  display: flex; justify-content: center; gap: 8px; margin-top: 16px;
}
.carousel-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border-2);
  background: var(--glass-bg);
  display: grid; place-items: center;
  cursor: pointer; color: var(--muted);
  transition: all .18s;
}
.carousel-arrow:hover { border-color: var(--border-3); color: var(--text); background: var(--glass-bg-h); }
.carousel-arrow svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════
   SEARCH BAR (LaurayHost)
═══════════════════════════════════════ */
.search-bar {
  position: relative; max-width: 480px;
}
.search-bar input {
  width: 100%; font-family: var(--font-b); font-size: 14px;
  color: var(--text);
  background: var(--s2); border: 1px solid var(--border-2);
  border-radius: 999px; padding: 11px 44px 11px 44px;
  outline: none; transition: border-color .18s, background .18s;
  box-shadow: 0 1px 0 rgba(255,255,255,.04) inset;
}
.search-bar input:focus { border-color: var(--border-3); background: var(--s3); }
.search-bar input::placeholder { color: var(--muted-2); }
.search-bar-icon {
  position: absolute; left: 15px; top: 50%;
  transform: translateY(-50%); pointer-events: none;
  color: var(--muted-2);
}
.search-bar-icon svg { width: 15px; height: 15px; }
.search-bar-clear {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--s4); border: 1px solid var(--border);
  display: none; place-items: center;
  cursor: pointer; color: var(--muted-2);
}
.search-bar-clear.visible { display: grid; }
.search-bar-clear svg { width: 10px; height: 10px; }

/* No results message */
.no-results {
  text-align: center; padding: 60px 0;
  font-size: 14px; color: var(--muted-2); display: none;
}
.no-results.visible { display: block; }

/* ═══════════════════════════════════════
   PAGE STYLES — services-web & dashboard
═══════════════════════════════════════ */
/* Hero split */
.hero-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-card {
  padding: 28px; border-radius: var(--rxl);
}

/* Format cards (services-web) */
.format-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 40px;
}
.format-card {
  border: 1px solid var(--glass-border);
  border-top: 1px solid rgba(255,255,255,.14);
  border-radius: var(--rxl);
  background: var(--glass-bg);
  backdrop-filter: var(--blur-md);
  box-shadow: var(--glass-shadow);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.format-card::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
}
.format-card:hover { border-color: var(--glass-border-h); transform: translateY(-4px); box-shadow: var(--glass-shadow-h); }
.format-card.featured { border-color: var(--glass-border-h); background: var(--glass-bg-str); }
.format-icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: var(--s2); border: 1px solid var(--border);
  display: grid; place-items: center; margin-bottom: 20px;
}
.format-icon svg { width: 20px; height: 20px; opacity: .6; }
.format-tag {
  display: inline-flex; align-items: center;
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted-2);
  background: var(--s3); border: 1px solid var(--border);
  padding: 3px 10px; border-radius: 999px; margin-bottom: 14px; width: fit-content;
}
.format-title { font-family: var(--font-d); font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.format-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 20px; }
.format-checks { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.format-check { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.fcheck-ico {
  width: 16px; height: 16px; border-radius: 5px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  display: grid; place-items: center; flex-shrink: 0;
}
.fcheck-ico svg { width: 9px; height: 9px; opacity: .7; }

/* Process steps */
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 40px;
}
.process-step {
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  padding: 28px 24px;
  position: relative; overflow: hidden;
}
.process-step::after {
  content: attr(data-step);
  position: absolute; top: 12px; right: 18px;
  font-family: var(--font-d); font-size: 52px; font-weight: 900;
  color: rgba(255,255,255,.04); line-height: 1; pointer-events: none;
}
.process-num {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--s3); border: 1px solid var(--border-2);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 800; color: var(--muted);
  margin-bottom: 16px;
}
.process-title { font-family: var(--font-d); font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.process-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* Included grid */
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.included-block h4 { font-family: var(--font-d); font-size: 14px; font-weight: 800; margin-bottom: 16px; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; font-size: 11px; }
.incl-list { display: flex; flex-direction: column; gap: 10px; }
.incl-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--muted); }
.incl-dot {
  width: 16px; height: 16px; border-radius: 5px;
  background: rgba(130,220,120,.06); border: 1px solid rgba(130,220,120,.18);
  display: grid; place-items: center; flex-shrink: 0; margin-top: 1px;
}
.incl-dot svg { width: 9px; height: 9px; }

/* Section eyebrow */
.section-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 10px;
  display: block;
}

/* Section h2 */
.section h2, .section-h2 {
  font-family: var(--font-d);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900; letter-spacing: -.03em; line-height: 1.08;
  margin-bottom: 12px;
}

/* Workflow module grid */
.wf-modules {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-top: 40px;
}
.wf-module {
  border: 1px solid var(--border);
  border-radius: var(--rl);
  background: var(--glass-bg);
  padding: 22px 20px;
  transition: border-color .2s, box-shadow .2s;
}
.wf-module:hover { border-color: var(--border-2); box-shadow: var(--glass-shadow); }
.wf-module-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--s2); border: 1px solid var(--border);
  display: grid; place-items: center; margin-bottom: 14px;
}
.wf-module-icon svg { width: 16px; height: 16px; opacity: .6; }
.wf-module-title { font-family: var(--font-d); font-size: 14px; font-weight: 800; margin-bottom: 6px; }
.wf-module-desc { font-size: 12.5px; color: var(--muted); line-height: 1.55; }

/* ── Responsive additions ── */
@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; gap: 36px; }
  .format-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .wf-modules { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .wf-modules { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   UI ENHANCEMENTS
═══════════════════════════════════════ */

/* Nav: hover opens dropdown on pointer devices */
@media (hover: hover) {
  .nav-item:hover .dropdown {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

/* Nav: active button state (when on that page) */
.nav-item > button.active {
  color: var(--text);
  background: var(--glass-bg);
}

/* Pack "Populaire" — accent cyan distinct */
.pack.pop {
  border-color: rgba(45,212,191,.28);
  background: rgba(45,212,191,.03);
}
.pack.pop::before {
  background: linear-gradient(90deg, transparent, rgba(45,212,191,.5), transparent);
}
.pack.pop .pill.cyan {
  color: rgba(45,212,191,.9);
  border-color: rgba(45,212,191,.35);
  background: rgba(45,212,191,.08);
}

/* Format icons — couleur par type */
.format-icon.blue {
  background: rgba(96,165,250,.10);
  border-color: rgba(96,165,250,.22);
}
.format-icon.blue svg { stroke: var(--accent-blue); opacity: 1; }

.format-icon.purple {
  background: rgba(167,139,250,.10);
  border-color: rgba(167,139,250,.22);
}
.format-icon.purple svg { stroke: var(--accent-purple); opacity: 1; }

.format-icon.teal {
  background: rgba(45,212,191,.08);
  border-color: rgba(45,212,191,.20);
}
.format-icon.teal svg { stroke: var(--accent-teal); opacity: 1; }

/* Format card featured — accent violet */
.format-card.featured {
  border-color: rgba(167,139,250,.28);
  background: rgba(167,139,250,.04);
}
.format-card.featured::before {
  background: linear-gradient(90deg, transparent, rgba(167,139,250,.45), transparent);
}

/* Game section headers — teinte par jeu */
#section-fivem .game-ico {
  background: rgba(251,146,60,.08);
  border-color: rgba(251,146,60,.22);
}
#section-fivem .game-ico svg { stroke: rgba(251,146,60,.9); opacity: 1; }

#section-minecraft .game-ico {
  background: rgba(134,239,172,.08);
  border-color: rgba(134,239,172,.22);
}
#section-minecraft .game-ico svg { stroke: rgba(134,239,172,.9); opacity: 1; }

#section-arma .game-ico {
  background: rgba(163,177,138,.08);
  border-color: rgba(163,177,138,.22);
}
#section-arma .game-ico svg { stroke: rgba(163,177,138,.9); opacity: 1; }

#section-teamspeak .game-ico {
  background: rgba(96,165,250,.08);
  border-color: rgba(96,165,250,.22);
}
#section-teamspeak .game-ico svg { stroke: var(--accent-blue); opacity: 1; }
