/* ============================================================
   PlayHosted — Feuille de style principale
   Palette : bleu marine profond + gradient orange→violet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* -------- Variables globales -------- */
:root {
  /* Couleurs de fond (bleu marine du logo) */
  --bg-deep:       #070d1f;
  --bg-primary:    #0a1228;
  --bg-secondary:  #0d1630;
  --bg-card:       #101d3a;
  --bg-card-hover: #132143;
  --bg-card-light: #162548;

  /* Gradient du logo : orange #f97316 → rose #ec4899 → violet #7c3aed */
  --grad-start:    #f97316;
  --grad-mid:      #d946ef;
  --grad-end:      #7c3aed;
  --gradient:      linear-gradient(135deg, #f97316 0%, #d946ef 55%, #7c3aed 100%);
  --gradient-h:    linear-gradient(135deg, #fb923c 0%, #e879f9 55%, #8b5cf6 100%);

  /* Accents */
  --accent-orange: #f97316;
  --accent-pink:   #d946ef;
  --accent-purple: #7c3aed;
  --accent-glow:   rgba(217, 70, 239, 0.25);

  /* Textes */
  --text-primary:   #eef2ff;
  --text-secondary: #8ba4d4;
  --text-muted:     #4d6899;

  /* Bordures */
  --border:        rgba(124, 58, 237, 0.18);
  --border-hover:  rgba(217, 70, 239, 0.4);
  --border-orange: rgba(249, 115, 22, 0.25);

  /* Statuts */
  --success:  #10b981;
  --warning:  #f59e0b;
  --danger:   #ef4444;

  /* Typo */
  --font-display: 'Exo 2', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Misc */
  --radius:     10px;
  --radius-lg:  18px;
  --radius-xl:  28px;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 4px 32px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--gradient); border-radius: 3px; }

/* -------- Typo -------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { color: var(--text-secondary); }
a  { text-decoration: none; color: inherit; }

/* -------- Utilitaires -------- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.text-grad  { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* -------- Section header -------- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .badge { margin-bottom: 14px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p  { max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 16px; border-radius: 999px;
  font-family: var(--font-display); font-size: 0.76rem;
  font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
}
.badge-grad {
  background: linear-gradient(135deg, rgba(249,115,22,.15), rgba(217,70,239,.15));
  border: 1px solid rgba(217,70,239,0.3);
  color: #e879f9;
}
.badge-green  { background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.25); color: #34d399; }
.badge-orange { background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.25); color: #fb923c; }
.badge-purple { background: rgba(124,58,237,.15); border: 1px solid rgba(124,58,237,.3);  color: #a78bfa; }
.badge-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gradient); color: #fff;
  padding: 5px 22px; border-radius: 999px;
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap;
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 28px; border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 700; font-size: 0.92rem;
  cursor: pointer; border: none; transition: var(--transition);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn-grad {
  background: var(--gradient); color: #fff;
  box-shadow: 0 0 28px rgba(217,70,239,0.4);
}
.btn-grad:hover {
  background: var(--gradient-h);
  transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(217,70,239,0.55);
}
.btn-outline {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover {
  border-color: var(--accent-pink);
  color: #e879f9;
  background: rgba(217,70,239,0.08);
  transform: translateY(-2px);
}
.btn-sm  { padding: 9px 20px; font-size: 0.84rem; }
.btn-lg  { padding: 16px 38px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   ICÔNES SVG inline (couleur unique : text-secondary ou grad)
   ============================================================ */
.icon {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon svg { width: 100%; height: 100%; }

/* Icon box (fond coloré) */
.icon-box {
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px; flex-shrink: 0;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.22);
  transition: var(--transition);
}
.icon-box.orange { background: rgba(249,115,22,0.12); border-color: rgba(249,115,22,0.22); }
.icon-box.pink   { background: rgba(217,70,239,0.12); border-color: rgba(217,70,239,0.22); }
.icon-box.green  { background: rgba(16,185,129,0.12); border-color: rgba(16,185,129,0.22); }
.icon-box.blue   { background: rgba(59,130,246,0.12); border-color: rgba(59,130,246,0.22); }
.icon-box.red    { background: rgba(239,68,68,0.12);  border-color: rgba(239,68,68,0.22);  }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition);
}
.header-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
#header.scrolled {
  background: rgba(7,13,31,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

/* Logo image */
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-link img { height: 38px; width: auto; display: block; }

/* Nav desktop */
nav.main-nav { display: flex; align-items: center; gap: 2px; }
nav.main-nav > a,
nav.main-nav > .nav-item > a {
  padding: 8px 15px; border-radius: 8px;
  font-family: var(--font-display); font-size: 0.88rem; font-weight: 600;
  color: var(--text-secondary); transition: var(--transition); display: block;
}
nav.main-nav > a:hover,
nav.main-nav > a.active,
nav.main-nav > .nav-item > a:hover,
nav.main-nav > .nav-item > a.active {
  color: var(--text-primary);
  background: rgba(124,58,237,0.1);
}

/* Dropdown */
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 5px; }
.nav-item > a svg.chevron {
  width: 12px; height: 12px;
  transition: transform var(--transition);
  color: var(--text-secondary);
}
.nav-item:hover > a svg.chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  margin-top: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 10px;
  min-width: 520px;
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  z-index: 200;
}
/* FIX: zone tampon entre le lien et le dropdown */
.dropdown::before {
  content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
}
.dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: var(--radius);
  transition: var(--transition);
}
.dropdown a:hover { background: rgba(124,58,237,0.1); }
.dropdown .d-icon {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.18);
}
.dropdown .d-icon svg { width: 18px; height: 18px; color: #a78bfa; }
.dropdown .d-label { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--text-primary); }
.dropdown .d-desc  { font-size: 0.76rem; color: var(--text-muted); margin-top: 1px; }
.dropdown-footer {
  margin-top: 8px; padding-top: 10px;
  border-top: 1px solid var(--border);
  display: flex; gap: 8px;
}
.dropdown-footer a {
  flex: 1; justify-content: center;
  background: rgba(124,58,237,0.08); border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  color: var(--text-secondary);
}
.dropdown-footer a:hover { border-color: var(--accent-pink); color: #e879f9; background: rgba(217,70,239,0.08); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 10px; }

/* Mobile toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border-radius: 8px;
  border: 1px solid var(--border); background: transparent;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); border-radius: 2px; transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: 74px; left: 0; right: 0;
  background: rgba(7,13,31,0.98); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px; flex-direction: column; gap: 2px;
  z-index: 999; max-height: calc(100vh - 74px); overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 10px 14px; border-radius: 8px; color: var(--text-secondary); font-size: 0.92rem; font-family: var(--font-display); font-weight: 600; display: flex; align-items: center; gap: 10px; }
.mobile-nav a:hover { color: var(--text-primary); background: rgba(124,58,237,0.1); }
.mobile-nav .mn-section { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); padding: 12px 14px 4px; }
.mobile-nav .mn-divider { height: 1px; background: var(--border); margin: 8px 0; }
.mobile-nav .mn-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.mobile-nav .mn-actions .btn { justify-content: center; }

@media (max-width: 1000px) {
  nav.main-nav { display: none; }
  .header-actions .btn-outline { display: none; }
  .nav-toggle { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 74px;
}
/* Fond bleu marine du logo */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(249,115,22,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 80% 70%, rgba(124,58,237,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(217,70,239,0.08) 0%, transparent 50%),
    var(--bg-deep);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
}
/* Orbes décoratifs */
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); z-index: 0; pointer-events: none;
}
.hero-orb-1 { width: 600px; height: 600px; background: rgba(249,115,22,0.07); top: -200px; left: -200px; }
.hero-orb-2 { width: 700px; height: 700px; background: rgba(124,58,237,0.08); bottom: -300px; right: -200px; }
.hero-orb-3 { width: 400px; height: 400px; background: rgba(217,70,239,0.06); top: 30%; left: 55%; }

.hero .container { position: relative; z-index: 1; padding: 80px 28px 60px; text-align: center; }
.hero-badge { margin-bottom: 28px; }
.hero h1 { margin-bottom: 28px; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 620px; margin: 0 auto 44px;
  color: var(--text-secondary); font-weight: 400; line-height: 1.8;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 72px; }

/* Stats */
.hero-stats {
  display: inline-flex; flex-wrap: wrap; justify-content: center;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 0 0 1px var(--border), 0 24px 64px rgba(0,0,0,0.4);
}
.hero-stat {
  padding: 26px 36px; text-align: center;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .val {
  font-family: var(--font-display); font-size: 2rem; font-weight: 900;
  background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block; line-height: 1;
}
.hero-stat .lbl { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px; }

/* ============================================================
   CARDS GÉNÉRIQUES
   ============================================================ */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.card::after {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient); opacity: 0;
  transition: opacity var(--transition); pointer-events: none;
  border-radius: inherit;
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px var(--border-hover);
}
.card:hover::after { opacity: 0.03; }

/* Icon dans card */
.card .card-icon {
  width: 52px; height: 52px; margin-bottom: 22px;
  transition: var(--transition);
}
.card:hover .card-icon .icon-box {
  background: rgba(124,58,237,0.2);
  box-shadow: 0 0 24px rgba(124,58,237,0.2);
}
.card h3 { margin-bottom: 10px; }
.card p  { font-size: 0.9rem; line-height: 1.7; }

/* ============================================================
   GRILLES
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 20px; }

/* ============================================================
   AVANTAGES (liste icône + texte)
   ============================================================ */
.adv-item {
  display: flex; align-items: flex-start; gap: 18px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px;
  transition: var(--transition);
}
.adv-item:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.adv-item .icon-box { width: 48px; height: 48px; flex-shrink: 0; }
.adv-item .icon-box svg { width: 22px; height: 22px; }
.adv-item h4 { font-size: 0.95rem; margin-bottom: 5px; }
.adv-item p  { font-size: 0.85rem; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; align-items: start; }

.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 30px;
  position: relative; transition: var(--transition);
  display: flex; flex-direction: column;
}
.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: 0 24px 72px rgba(0,0,0,0.4);
}
.pricing-card.featured {
  border: 1px solid rgba(217,70,239,0.5);
  background: linear-gradient(145deg, rgba(124,58,237,0.06), var(--bg-card) 60%);
  box-shadow: 0 0 0 1px rgba(217,70,239,0.35), 0 32px 80px rgba(124,58,237,0.18);
}

/* Prix */
.plan-name { font-family: var(--font-display); font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 8px; }
.plan-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 6px; }
.plan-price .currency { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--text-secondary); margin-top: 6px; }
.plan-price .amount   { font-family: var(--font-display); font-size: 3.2rem; font-weight: 900; line-height: 1; }
.plan-price.grad-price .amount { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.plan-price .period   { font-size: 0.85rem; color: var(--text-muted); margin-left: 4px; }
.plan-desc { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 28px; }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 24px; }

/* Features list */
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; flex: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--text-secondary); }
.plan-features li .feat-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.plan-features li .feat-icon svg { width: 18px; height: 18px; }
.plan-features li.off { color: var(--text-muted); }
.plan-features li.off .feat-icon svg { color: var(--text-muted); }

/* ============================================================
   TABLEAU COMPARATIF
   ============================================================ */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 15px 20px; font-family: var(--font-display); font-size: 0.82rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--text-secondary); text-align: left;
}
.compare-table th.highlight { color: #e879f9; }
.compare-table td {
  border: 1px solid var(--border); padding: 14px 20px;
  font-size: 0.88rem; color: var(--text-secondary);
}
.compare-table td.feature-name { font-weight: 600; color: var(--text-primary); }
.compare-table td.highlight { color: #e879f9; font-weight: 600; }
.compare-table tr:hover td { background: rgba(124,58,237,0.04); }
.compare-table .check { color: #34d399; font-weight: 700; }
.compare-table .cross { color: var(--text-muted); }
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }

/* ============================================================
   PAGE HÉRO (pages intérieures)
   ============================================================ */
.page-hero {
  padding: 150px 0 80px; position: relative; overflow: hidden; text-align: center;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(217,70,239,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 60%, rgba(249,115,22,0.07) 0%, transparent 50%),
    var(--bg-deep);
}
.page-hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 30%, transparent 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin: 16px 0; }
.page-hero > .container > p { max-width: 580px; margin: 0 auto 36px; font-size: 1.08rem; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: #e879f9; }
.breadcrumb svg { width: 12px; height: 12px; }

/* ============================================================
   SECTION ALTERNÉE (gauche/droite)
   ============================================================ */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-content .badge { margin-bottom: 16px; }
.split-content h2 { margin-bottom: 18px; }
.split-content p  { margin-bottom: 28px; font-size: 1rem; }
.split-visual {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px;
  position: relative; overflow: hidden;
}
.split-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(217,70,239,0.08) 0%, transparent 60%);
}
.spec-list { list-style: none; display: flex; flex-direction: column; gap: 12px; position: relative; }
.spec-list li { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: var(--bg-secondary); border-radius: 8px; font-size: 0.88rem; }
.spec-list li .spec-key { color: var(--text-secondary); font-weight: 500; display: flex; align-items: center; gap: 10px; }
.spec-list li .spec-key svg { width: 16px; height: 16px; color: #a78bfa; }
.spec-list li .spec-val { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

@media (max-width: 900px) {
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .split-section.reverse { direction: ltr; }
}

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.testi-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; transition: var(--transition);
  display: flex; flex-direction: column; gap: 16px;
}
.testi-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.testi-stars { display: flex; gap: 3px; }
.testi-stars svg { width: 16px; height: 16px; color: #fbbf24; fill: #fbbf24; }
.testi-text { font-size: 0.92rem; color: var(--text-secondary); font-style: italic; line-height: 1.75; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 0.9rem; color: #fff;
}
.testi-name { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; }
.testi-role { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-block {
  position: relative; overflow: hidden; text-align: center;
  background: var(--bg-secondary);
}
.cta-block::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(217,70,239,0.08) 0%, transparent 70%);
}
.cta-block .container { position: relative; z-index: 1; }
.cta-block h2 { margin-bottom: 16px; }
.cta-block p  { max-width: 500px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-actions  { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-aside h2 { margin-bottom: 14px; }
.contact-aside > p { margin-bottom: 32px; }
.contact-channels { display: flex; flex-direction: column; gap: 12px; }
.ch-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 18px 22px; transition: var(--transition);
}
.ch-item:hover { border-color: var(--border-hover); }
.ch-item .icon-box { width: 44px; height: 44px; }
.ch-item .icon-box svg { width: 20px; height: 20px; }
.ch-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 2px; }
.ch-value { font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; }

/* Formulaire */
.form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 44px;
}
.form-card h3 { margin-bottom: 30px; font-size: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-family: var(--font-display); font-size: 0.82rem; font-weight: 700; color: var(--text-secondary); letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 13px 17px;
  color: var(--text-primary); font-family: var(--font-body); font-size: 0.92rem;
  transition: var(--transition); outline: none; resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-pink);
  box-shadow: 0 0 0 3px rgba(217,70,239,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--bg-card); }
.form-group textarea { min-height: 150px; }
.form-success {
  display: none; text-align: center; padding: 22px;
  background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.2);
  border-radius: var(--radius); color: #34d399; font-weight: 600; margin-top: 16px;
}
.form-success.show { display: block; }
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px; }
}

/* ============================================================
   GAME HERO (pages jeux)
   ============================================================ */
.game-page-hero {
  padding: 150px 0 80px; position: relative; overflow: hidden; text-align: center;
}
.game-page-hero .container { position: relative; z-index: 1; }
.game-big-icon { font-size: 5rem; display: block; margin-bottom: 20px; line-height: 1; }
.game-tags { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin: 24px 0 36px; }
.game-tag {
  padding: 7px 18px; border-radius: 999px;
  background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.22);
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  color: #a78bfa; letter-spacing: 0.04em;
}

/* ============================================================
   ACCORDION (FAQ)
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; gap: 16px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  color: var(--text-primary); user-select: none;
}
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--transition); color: var(--text-muted); }
.faq-item.open .faq-q svg { transform: rotate(180deg); color: #e879f9; }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s;
  font-size: 0.9rem; color: var(--text-secondary); padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ============================================================
   STATUS / UPTIME
   ============================================================ */
.status-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.8rem; font-family: var(--font-display); font-weight: 600;
  color: #34d399;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #34d399; box-shadow: 0 0 8px #34d399;
  animation: pulse-ok 2s infinite;
}
@keyframes pulse-ok { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand img { height: 34px; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.87rem; max-width: 270px; line-height: 1.8; }
.footer-socials { display: flex; gap: 8px; margin-top: 22px; }
.footer-social-btn {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--bg-card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social-btn svg { width: 17px; height: 17px; color: var(--text-secondary); }
.footer-social-btn:hover { border-color: var(--accent-pink); background: rgba(217,70,239,0.08); }
.footer-social-btn:hover svg { color: #e879f9; }

.footer-col h4 {
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.87rem; color: var(--text-muted); transition: var(--transition); display: flex; align-items: center; gap: 7px; }
.footer-col ul li a:hover { color: var(--text-primary); }
.footer-col ul li a svg { width: 13px; height: 13px; opacity: 0.5; }

.footer-bottom {
  border-top: 1px solid var(--border); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.82rem; color: var(--text-muted); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--text-primary); }

@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim     { animation: fadeUp 0.65s ease both; }
.anim-d1  { animation-delay: 0.08s; }
.anim-d2  { animation-delay: 0.16s; }
.anim-d3  { animation-delay: 0.24s; }
.anim-d4  { animation-delay: 0.32s; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero-stat { padding: 18px 20px; }
  .hero-stat .val { font-size: 1.6rem; }
  .section-header { margin-bottom: 40px; }
  .pricing-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; }
  .hero-stat { border-right: none !important; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }
}
