/* ============================================================
   ATLAS.YES — Hacking / Cyberpunk Design System
   ============================================================ */

:root {
  --bg:          #050508;
  --bg-card:     #0a0d12;
  --bg-card2:    #0d1117;
  --green:       #00ff41;
  --green-dim:   #00cc33;
  --green-glow:  rgba(0, 255, 65, 0.15);
  --cyan:        #00d4ff;
  --cyan-glow:   rgba(0, 212, 255, 0.15);
  --gold:        #ffc400;
  --gold-glow:   rgba(255, 196, 0, 0.15);
  --red:         #ff003c;
  --white:       #e8eaf0;
  --gray:        #4a5568;
  --gray-light:  #718096;
  --border:      rgba(0, 255, 65, 0.12);
  --border-glow: rgba(0, 255, 65, 0.35);
  --font-mono:   'Share Tech Mono', 'Courier New', monospace;
  --font-orb:    'Orbitron', sans-serif;
  --font-raj:    'Rajdhani', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-snap-type: y proximity; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-raj);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: crosshair;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
strong { color: var(--green); }

/* ── Matrix Canvas ── */
#matrix-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.04;
  pointer-events: none;
}

/* ── Scanlines ── */
.scanlines {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 2px,
    rgba(0, 0, 0, 0.08) 4px
  );
}

/* ── Noise ── */
.noise {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  animation: noiseAnim 0.2s steps(2) infinite;
}

@keyframes noiseAnim {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-1%, -1%); }
  50%  { transform: translate(1%, 0); }
  75%  { transform: translate(0, 1%); }
  100% { transform: translate(-1%, 1%); }
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  background: rgba(5, 5, 8, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s;
}

.navbar.scrolled { border-color: var(--border-glow); }

.nav-logo {
  font-family: var(--font-orb);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.logo-bracket { color: var(--green); opacity: 0.6; }
.logo-text { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gray-light);
  padding: 0.4rem 0.8rem;
  border: 1px solid transparent;
  border-radius: 2px;
  letter-spacing: 0.08em;
  transition: all 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--green);
  transform: translateX(-50%);
  transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green);
  border-color: var(--border);
}

.nav-link:hover::after,
.nav-link.active::after { width: 80%; }

.nav-cta {
  background: var(--green-glow);
  border-color: var(--border-glow) !important;
  color: var(--green) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--green);
  transition: all 0.3s;
}

/* ── Sections ── */
.section {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  padding: 120px 5% 80px;
  scroll-snap-align: start;
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--green);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.section-title {
  font-family: var(--font-orb);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}

.accent-green { color: var(--green); text-shadow: 0 0 20px var(--green); }

.section-sub {
  font-family: var(--font-raj);
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ── HERO ── */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding-top: 100px;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(0, 255, 65, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(0, 212, 255, 0.03) 0%, transparent 60%);
}

.hero-content { flex: 1; max-width: 640px; }

.terminal-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray-light);
}

.terminal-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.terminal-dot.red    { background: #ff5f57; }
.terminal-dot.yellow { background: #febc2e; }
.terminal-dot.green  { background: #28c840; }
.terminal-path { margin-left: 0.5rem; color: var(--green); opacity: 0.7; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-glow);
  border: 1px solid var(--border-glow);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--green);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.badge-icon { animation: pulse 2s ease-in-out infinite; }

.hero-title {
  font-family: var(--font-orb);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.title-line { display: block; }

.hero-sub {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--gray-light);
  margin-bottom: 2.5rem;
}

.cursor-blink { color: var(--green); animation: blink 1s step-end infinite; }

/* ── Hero Stats ── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border);
  background: rgba(0, 255, 65, 0.02);
  border-radius: 4px;
}

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

.stat-val {
  font-family: var(--font-orb);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green);
  text-shadow: 0 0 15px var(--green);
}

.stat-sym { font-family: var(--font-orb); font-size: 1.2rem; color: var(--green); }

.stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--gray-light);
  letter-spacing: 0.15em;
  margin-top: 0.2rem;
}

.stat-divider {
  color: var(--border-glow);
  font-size: 1.5rem;
  opacity: 0.5;
}

/* ── Buttons ── */
.hero-actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: var(--green);
  color: var(--bg);
  font-family: var(--font-orb);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.4s;
}

.btn-primary:hover { box-shadow: 0 0 25px var(--green), 0 0 50px rgba(0,255,65,0.3); transform: translateY(-2px); }
.btn-primary:hover::before { left: 100%; }

.btn-secondary {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gray-light);
  border-bottom: 1px solid var(--border-glow);
  padding-bottom: 2px;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.btn-secondary:hover { color: var(--green); }

/* ── Hero Logo Block (bloc indépendant) ── */
.hero-logo-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 460px;
  width: 100%;
}

/* ── Hero Visual (grille médias desktop, côté droit) ── */
.hero-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  max-width: 460px;
  width: 100%;
}

/* Logo display block */
.logo-display {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  mix-blend-mode: screen; /* blende tout le bloc avec le fond page, bypass le stacking context du transform */
  animation: cardFloat 6s ease-in-out infinite;
}

/* Anneau néon derrière le logo */
.logo-neon-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,65,0.1) 0%, rgba(0,255,65,0.04) 50%, transparent 70%);
  border: 1px solid rgba(0,255,65,0.2);
  pointer-events: none;
  animation: ringPulse 3s ease-in-out infinite;
  box-shadow:
    0 0 30px rgba(0,255,65,0.15),
    inset 0 0 40px rgba(0,255,65,0.06);
}

@keyframes ringPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0,255,65,0.08), inset 0 0 30px rgba(0,255,65,0.03); }
  50%       { box-shadow: 0 0 50px rgba(0,255,65,0.18), inset 0 0 60px rgba(0,255,65,0.06); }
}

/* Image du logo */
.hero-logo-img {
  width: 220px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 0 16px rgba(0,255,65,0.9))
    drop-shadow(0 0 40px rgba(0,255,65,0.6))
    drop-shadow(0 0 80px rgba(0,255,65,0.25));
  animation: logoNeonPulse 2.5s ease-in-out infinite;
}

@keyframes logoNeonPulse {
  0%, 100% {
    filter:
      drop-shadow(0 0 8px rgba(0,255,65,0.4))
      drop-shadow(0 0 20px rgba(0,255,65,0.2))
      drop-shadow(0 0 40px rgba(0,255,65,0.08));
  }
  50% {
    filter:
      drop-shadow(0 0 18px rgba(0,255,65,0.9))
      drop-shadow(0 0 40px rgba(0,255,65,0.5))
      drop-shadow(0 0 80px rgba(0,255,65,0.2));
  }
}

/* Texte ATLAS.YES néon clignotant */
.logo-neon-text {
  position: relative;
  font-family: var(--font-orb);
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #fff;
  text-shadow:
    0 0 5px  #fff,
    0 0 10px #fff,
    0 0 20px var(--green),
    0 0 40px var(--green),
    0 0 80px var(--green),
    0 0 120px var(--green);
  animation: neonFlicker 3s linear infinite;
}

/* Pseudo-éléments pour l'effet glitch vert/cyan */
.logo-neon-text::before,
.logo-neon-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.logo-neon-text::before {
  color: var(--cyan);
  text-shadow: none;
  animation: glitchTop 4s infinite linear;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  opacity: 0;
}

.logo-neon-text::after {
  color: var(--red);
  text-shadow: none;
  animation: glitchBot 4s infinite linear;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  opacity: 0;
}

/* Animation de clignotement néon réaliste */
@keyframes neonFlicker {
  0%   { opacity: 1; }
  2%   { opacity: 0.85; }
  4%   { opacity: 1; }
  19%  { opacity: 1; }
  20%  { opacity: 0.4; }
  21%  { opacity: 1; }
  22%  { opacity: 0.9; }
  25%  { opacity: 1; }
  30%  { opacity: 1; }
  70%  { opacity: 1; }
  71%  { opacity: 0.7; }
  72%  { opacity: 1; }
  77%  { opacity: 1; }
  78%  { opacity: 0.3; }
  79%  { opacity: 1; }
  80%  { opacity: 0.9; }
  81%  { opacity: 1; }
  100% { opacity: 1; }
}

/* Tagline sous le texte */
.logo-tagline-neon {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--green);
  letter-spacing: 0.2em;
  opacity: 0.65;
  animation: neonFlicker 5s linear infinite reverse;
}

.card-mockup {
  width: 100%;
  aspect-ratio: 1.586;
  background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #0a0d12 100%);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 40px rgba(0, 255, 65, 0.08),
    inset 0 1px 0 rgba(0, 255, 65, 0.1);
  animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotateX(2deg) rotateY(-3deg); }
  50%       { transform: translateY(-12px) rotateX(-1deg) rotateY(3deg); }
}

.card-chip {
  width: 42px; height: 32px;
  background: linear-gradient(135deg, var(--gold) 0%, #ff9500 100%);
  border-radius: 5px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 12px rgba(255, 196, 0, 0.4);
}

.card-logo {
  font-family: var(--font-orb);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--green);
  text-shadow: 0 0 15px var(--green);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.card-number {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--gray-light);
  letter-spacing: 0.2em;
  margin-bottom: 0.3rem;
}

.card-tier {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--green);
  letter-spacing: 0.15em;
  opacity: 0.7;
}

.card-scan-line {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  animation: scanCard 3s linear infinite;
  opacity: 0.4;
}

@keyframes scanCard {
  0%   { top: 0; }
  100% { top: 100%; }
}

/* ======= PROOF GRID — 2 photos côte à côte + vidéos pleine largeur ======= */
.hero-visual .proof-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px;
  width: 100%;
  max-width: 440px;
  margin-top: 12px;
}

.proof-item {
  position: relative !important;
  border: 1px solid rgba(0, 255, 65, 0.25) !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  background: #060e06 !important;
  min-height: 90px;
  aspect-ratio: 16/10;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.proof-item:hover {
  border-color: rgba(0, 255, 65, 0.6);
  box-shadow: 0 0 16px rgba(0, 255, 65, 0.2);
}

/* Tag en haut à gauche */
.proof-tag {
  position: absolute;
  top: 6px;
  left: 6px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--green);
  background: rgba(0, 0, 0, 0.75);
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  z-index: 3;
  pointer-events: none;
}

/* Image */
.proof-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) saturate(0.85);
  transition: filter 0.3s;
}

.proof-item:hover .proof-img {
  filter: brightness(1) saturate(1);
}

/* Vidéo */
.proof-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

/* Placeholder — TOUJOURS visible par défaut */
.proof-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(0, 255, 65, 0.5);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  background: repeating-linear-gradient(
    45deg,
    rgba(0,255,65,0.02) 0px,
    rgba(0,255,65,0.02) 1px,
    transparent 1px,
    transparent 8px
  );
  border: 1px dashed rgba(0, 255, 65, 0.25);
  border-radius: 5px;
  z-index: 1;
  cursor: default;
  animation: placeholderPulse 3s ease-in-out infinite;
}

@keyframes placeholderPulse {
  0%, 100% { border-color: rgba(0,255,65,0.2); }
  50%       { border-color: rgba(0,255,65,0.5); box-shadow: inset 0 0 20px rgba(0,255,65,0.04); }
}

.ph-icon  { font-size: 1.6rem; opacity: 0.6; }
.ph-label {
  font-size: 0.5rem;
  opacity: 0.55;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Caché quand le média est absent (avant chargement) */
.proof-media-hidden { display: none !important; }

/* Badge vidéo */
.proof-video .proof-tag { color: #00cfff; }
.proof-video { border-color: rgba(0, 207, 255, 0.2); }
.proof-video:hover {
  border-color: rgba(0, 207, 255, 0.5);
  box-shadow: 0 0 16px rgba(0, 207, 255, 0.15);
}

/* Hex grid (conservé mais caché) */
.hex-grid { display: none; }
.hex { display: none; }

@keyframes hexPulse {
  from { background: rgba(0, 255, 65, 0.08); }
  to   { background: rgba(0, 255, 65, 0.2); }
}

/* ── Scroll indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--gray);
  letter-spacing: 0.15em;
  animation: fadeUpDown 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green), transparent);
}

@keyframes fadeUpDown {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}

/* ── TARIF ── */
.tarif-section {
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(0, 255, 65, 0.03) 0%, transparent 60%);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1.8rem 1.8rem;
  overflow: hidden;
  transition: all 0.4s;
}

.price-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
}

.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(255,196,0,0.03) 100%);
}

.card-glow {
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

/* ── Images de fond pour chaque tier ── */
.price-card.tier-white,
.price-card.tier-white.featured {
  background: linear-gradient(to right, rgba(8,10,14,0.93) 35%, rgba(8,10,14,0.40) 100%),
              url('white.png') right center / cover no-repeat !important;
}
.price-card.tier-gold,
.price-card.tier-gold.featured {
  background: linear-gradient(to right, rgba(12,9,2,0.93) 35%, rgba(12,9,2,0.40) 100%),
              url('gold.png') right center / cover no-repeat !important;
}
.price-card.tier-black,
.price-card.tier-black.featured {
  background: linear-gradient(to right, rgba(4,10,4,0.93) 35%, rgba(4,10,4,0.40) 100%),
              url('black.png') right center / cover no-repeat !important;
}

.tier-white .card-glow { background: radial-gradient(circle, rgba(232,234,240,0.08) 0%, transparent 60%); }
.tier-gold  .card-glow { background: radial-gradient(circle, rgba(255,196,0,0.1) 0%, transparent 60%); }
.tier-black .card-glow { background: radial-gradient(circle, rgba(0,255,65,0.08) 0%, transparent 60%); }

.price-card:hover .card-glow { opacity: 1; }

.featured-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

.card-header { margin-bottom: 1.5rem; }

.tier-badge {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--green);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.tier-name {
  font-family: var(--font-orb);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.tier-white .tier-name { color: #e8eaf0; text-shadow: 0 0 15px rgba(232,234,240,0.3); }
.tier-gold  .tier-name { color: var(--gold); text-shadow: 0 0 15px var(--gold-glow); }
.tier-black .tier-name { color: var(--green); text-shadow: 0 0 15px var(--green); }

.tier-line {
  height: 1px;
  background: var(--border);
  margin-top: 0.8rem;
}

.tier-gold .tier-line  { background: rgba(255,196,0,0.3); }
.tier-black .tier-line { background: rgba(0,255,65,0.2); }

.card-price {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.4rem;
}

.price-invest {
  font-family: var(--font-orb);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gray-light);
}

.price-arrow { color: var(--green); font-size: 1.2rem; }

.price-return {
  font-family: var(--font-orb);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--green);
  text-shadow: 0 0 12px var(--green);
}

.tier-gold .price-return { color: var(--gold); text-shadow: 0 0 12px var(--gold); }

.price-ratio {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--gray-light);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
  font-family: var(--font-raj);
  font-size: 0.9rem;
  color: var(--gray-light);
}

.feat-icon {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  margin-right: 0.5rem;
}

.feat-icon.check { color: var(--green); }
.feat-icon.cross  { color: var(--red); }

.card-cta {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border: 1px solid var(--border-glow);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--green);
  border-radius: 2px;
  transition: all 0.3s;
  margin-bottom: 1rem;
}

.card-cta:hover {
  background: var(--green-glow);
  box-shadow: 0 0 15px var(--green-glow);
}

.card-cta.gold  { border-color: var(--gold); color: var(--gold); }
.card-cta.gold:hover  { background: var(--gold-glow); box-shadow: 0 0 15px var(--gold-glow); }
.card-cta.black { border-color: var(--green); background: rgba(0,255,65,0.05); }

.card-terminal {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--gray);
  padding: 0.5rem 0.8rem;
  background: var(--bg);
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.04);
}

/* ── EXPLICATION ── */
.explication-section {
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0, 212, 255, 0.03) 0%, transparent 60%);
}

.explication-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.method-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.method-card:hover { border-color: var(--border-glow); }

.method-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.method-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.method-num {
  font-family: var(--font-orb);
  font-size: 0.7rem;
  color: var(--green);
  opacity: 0.6;
  letter-spacing: 0.1em;
}

.method-title {
  font-family: var(--font-orb);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
}

.method-steps { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1.5rem; }

.step {
  display: flex;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--gray-light);
}

.step-num {
  font-family: var(--font-mono);
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: -1px;
}

.method-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--gray-light);
  letter-spacing: 0.1em;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot.green { background: var(--green); box-shadow: 0 0 6px var(--green); }
.status-dot.gold  { background: var(--gold);  box-shadow: 0 0 6px var(--gold); }

.status-dot.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 6px var(--green); }
  50%       { opacity: 0.6; transform: scale(0.85); box-shadow: 0 0 3px var(--green); }
}

/* Required info */
.required-info {
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
}

.req-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--green);
  letter-spacing: 0.2em;
  margin-bottom: 1.2rem;
  text-align: center;
}

.bracket { opacity: 0.5; }

.req-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem 1rem;
  margin-top: 0.5rem;
}

.req-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray-light);
}

.req-icon { color: var(--green); font-size: 0.85rem; }

/* Moyens de paiement acceptés */
.payment-methods-accepted {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  border: 1px solid rgba(0,255,65,0.25);
  border-radius: 6px;
  padding: 1.2rem 1.8rem;
  background: rgba(0,255,65,0.04);
  text-align: center;
}
.pma-title {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--green);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}
.pma-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.pma-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gray-light);
}
.pma-icon { font-size: 1.1rem; }

/* Blocs infos requises multiples */
.required-info {
  max-width: 1000px;
  margin: 0 auto 1.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
}
.required-info-white {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
}
.req-detail-text {
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--green);
  background: rgba(0,255,65,0.03);
  border-radius: 0 4px 4px 0;
}
.req-detail-text strong { color: var(--text); }
.req-notice {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.73rem;
  color: #ffcc00;
  text-align: center;
  letter-spacing: 0.05em;
}

/* Bouton commander */
.order-cta-wrap {
  max-width: 500px;
  margin: 2.5rem auto 0;
  text-align: center;
}
.order-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  background: var(--green);
  color: #000;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 25px rgba(0,255,65,0.45);
  width: 100%;
}
.order-cta-btn:hover {
  background: #00ff41cc;
  box-shadow: 0 0 40px rgba(0,255,65,0.7);
  transform: translateY(-2px);
  letter-spacing: 0.22em;
}
.order-cta-icon { font-size: 1.2rem; }
.order-cta-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
}
.order-cta-btn:hover .order-cta-arrow { transform: translateX(5px); }

/* ── RETRAIT ── */
.retrait-section {
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(0,255,65,0.03) 0%, transparent 60%);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s;
}

.video-placeholder:hover { border-color: var(--border-glow); }

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(0,0,0,0.6);
}

.play-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--green);
  box-shadow: 0 0 15px var(--green-glow);
  transition: all 0.3s;
}

.video-placeholder:hover .play-btn {
  background: var(--green-glow);
  box-shadow: 0 0 30px var(--green);
  transform: scale(1.1);
}

.video-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--white);
  letter-spacing: 0.1em;
}

.video-meta {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--green);
  letter-spacing: 0.15em;
  opacity: 0.7;
}

.video-scanline {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,255,65,0.5), transparent);
  animation: scanVideo 4s linear infinite;
  opacity: 0;
}

.video-placeholder:hover .video-scanline { opacity: 1; }

@keyframes scanVideo {
  0%   { top: 0; }
  100% { top: 100%; }
}

/* ======= CAROUSEL RETRAIT ======= */
.retrait-carousel-wrap {
  max-width: 700px;
  margin: 0 auto 2rem;
  width: 100%;
}

.retrait-carousel-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(0,255,65,0.25);
  background: #060e06;
}

.retrait-carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.retrait-slide {
  min-width: 100%;
  flex-shrink: 0;
}

/* Carousel retrait — vidéos portrait téléphone */
.retrait-slide-inner {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 540px;
  position: relative;
  background: #000;
  overflow: hidden;
}

.retrait-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}

.drive-video-frame {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  background: #000;
}

/* Masque le bouton "ouvrir dans Drive" en haut à droite */
.retrait-slide-inner::after,
.mega-single-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 50px;
  z-index: 10;
  background: #000;
  pointer-events: all;
}

/* Carousel client — photos + vidéos en portrait 9:16 */
#clientTrack .retrait-slide-inner {
  aspect-ratio: 9/16;
  max-height: 540px;
  height: unset;
  position: relative;
  overflow: hidden;
  background: #000;
}

.client-media-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

#clientTrack .retrait-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #000;
}

.retrait-slide-label {
  position: absolute;
  bottom: 8px; left: 10px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(0,255,65,0.6);
  letter-spacing: 0.1em;
  pointer-events: none;
}

/* Slide placeholder (aucune vidéo) */
.placeholder-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.retrait-play-icon {
  font-size: 2.5rem;
  color: rgba(0,255,65,0.4);
  line-height: 1;
}

.retrait-slide-name {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
}

.retrait-slide-meta {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(0,255,65,0.4);
  letter-spacing: 0.12em;
}

/* Contrôles navigation */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 14px;
}

.carousel-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(0,255,65,0.5);
  background: rgba(0,255,65,0.06);
  color: var(--green);
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-mono);
  padding-bottom: 2px;
}

.carousel-arrow:hover {
  background: rgba(0,255,65,0.18);
  border-color: var(--green);
  box-shadow: 0 0 14px rgba(0,255,65,0.4);
}

.carousel-arrow.disabled {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}

.carousel-count {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--green);
  letter-spacing: 0.15em;
  min-width: 60px;
  text-align: center;
}

/* Bouton Commander ta carte — section client */
.client-cta-wrap {
  text-align: center;
  margin-top: 2.5rem;
}

.client-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--green);
  color: #000;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0 25px rgba(0,255,65,0.4);
}

.client-cta-btn:hover {
  background: #00ff41cc;
  box-shadow: 0 0 45px rgba(0,255,65,0.7);
  transform: translateY(-2px);
}

/* Contact Strip */
.contact-strip {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gray-light);
  letter-spacing: 0.2em;
  margin-bottom: 1.2rem;
}

.contact-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@keyframes shine-sweep {
  0%   { left: -80%; }
  100% { left: 130%;  }
}

@keyframes contact-pulse-telegram  {
  0%,100% { box-shadow: 0 0 6px rgba(42,171,238,0.15), inset 0 0 0px transparent; }
  50%     { box-shadow: 0 0 18px rgba(42,171,238,0.45), inset 0 0 8px rgba(42,171,238,0.08); }
}
@keyframes contact-pulse-whatsapp  {
  0%,100% { box-shadow: 0 0 6px rgba(37,211,102,0.15), inset 0 0 0px transparent; }
  50%     { box-shadow: 0 0 18px rgba(37,211,102,0.45), inset 0 0 8px rgba(37,211,102,0.08); }
}
@keyframes contact-pulse-instagram {
  0%,100% { box-shadow: 0 0 6px rgba(225,48,108,0.15), inset 0 0 0px transparent; }
  50%     { box-shadow: 0 0 18px rgba(225,48,108,0.45), inset 0 0 8px rgba(225,48,108,0.08); }
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gray-light);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

/* Reflet qui balaye */
.contact-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.12) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: shine-sweep 3.5s ease-in-out infinite;
  pointer-events: none;
}

.contact-btn.telegram  { animation: contact-pulse-telegram  3s ease-in-out infinite; border-color: rgba(42,171,238,0.25); }
.contact-btn.whatsapp  { animation: contact-pulse-whatsapp  3s ease-in-out infinite 0.8s; border-color: rgba(37,211,102,0.25); }
.contact-btn.instagram { animation: contact-pulse-instagram 3s ease-in-out infinite 1.6s; border-color: rgba(225,48,108,0.25); }

.contact-btn:hover { border-color: var(--border-glow); color: var(--white); transform: translateY(-2px); }
.contact-btn.telegram:hover  { border-color: #2AABEE; color: #2AABEE; box-shadow: 0 0 22px rgba(42,171,238,0.4); }
.contact-btn.whatsapp:hover  { border-color: #25D366; color: #25D366; box-shadow: 0 0 22px rgba(37,211,102,0.4); }
.contact-btn.instagram:hover { border-color: #E1306C; color: #E1306C; box-shadow: 0 0 22px rgba(225,48,108,0.4); }

/* ── CLIENT ── */
.client-section {
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(0,212,255,0.02) 0%, transparent 70%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.8rem;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--green);
  opacity: 0;
  transition: opacity 0.3s;
}

.testimonial-card:hover { border-color: var(--border-glow); transform: translateY(-4px); }
.testimonial-card:hover::before { opacity: 1; }

.test-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.test-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-glow);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--green);
  flex-shrink: 0;
}

.test-info { flex: 1; display: flex; flex-direction: column; gap: 0.2rem; }

.test-name {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--white);
  letter-spacing: 0.08em;
}

.test-tier {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--green);
  opacity: 0.7;
}

.test-verified {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--green);
  letter-spacing: 0.08em;
}

.test-text {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.65;
  margin-bottom: 1rem;
  font-style: italic;
}

.test-amount {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--gray-light);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.test-amount span { color: var(--green); }

.test-video-placeholder {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gray-light);
  cursor: pointer;
  transition: border-color 0.3s;
}

.test-video-placeholder:hover { border-color: var(--border-glow); }

.play-btn-sm {
  color: var(--green);
  font-size: 0.75rem;
}

/* ── FAQ ── */
.faq-section { background: var(--bg); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-raj);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: color 0.3s;
}

.faq-q:hover { color: var(--green); }

.faq-arrow {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--green);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(90deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-a p {
  padding: 0 0 1.2rem 2.2rem;
  font-size: 0.92rem;
  color: var(--gray-light);
  line-height: 1.7;
}

.faq-item.open .faq-a { max-height: 300px; }

/* ── MEGA PREUVE ── */
.mega-section {
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,255,65,0.03) 0%, transparent 70%);
}

.mega-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Terminal */
.mega-terminal {
  background: var(--bg);
  border: 1px solid var(--border-glow);
  border-radius: 6px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  box-shadow: 0 0 30px rgba(0,255,65,0.05);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: var(--bg-card2);
  border-bottom: 1px solid var(--border);
}

.terminal-path {
  margin-left: 0.5rem;
  color: var(--gray-light);
  font-size: 0.68rem;
}

.terminal-body { padding: 1rem; }

.terminal-line {
  display: flex;
  gap: 0.6rem;
  color: var(--gray-light);
  line-height: 1.8;
}

.terminal-line.success { color: var(--green); }

.t-prompt { color: var(--green); flex-shrink: 0; }

.blink-cursor { animation: blink 1s step-end infinite; }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Hero vidéos accueil 9:16 ── */
#heroRetraitWrap,
#heroEnvoiWrap {
  aspect-ratio: 9/16 !important;
  min-height: unset !important;
  width: 100% !important;
  max-width: 340px;
  margin: 0 auto;
}
#heroRetraitWrap iframe,
#heroEnvoiWrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Mega lecteur unique ── */
.mega-single-wrap {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0,255,65,0.3);
  background: #000;
  aspect-ratio: 9/16;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mega-video-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}

.mega-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 100%;
}

.mega-play-icon {
  font-size: 3rem;
  color: rgba(0,255,65,0.35);
}

.mega-placeholder-txt {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(0,255,65,0.4);
  letter-spacing: 0.12em;
  text-align: center;
  padding: 0 1rem;
}

/* Mega video grid (legacy — conservé) */
.mega-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.mega-video-slot {
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.mega-video-slot:hover { border-color: var(--border-glow); }

.mega-video-slot.featured-video {
  grid-column: 1 / -1;
  border-color: rgba(0,255,65,0.25);
  background: rgba(0,255,65,0.02);
}

.video-num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--green);
  letter-spacing: 0.15em;
  opacity: 0.7;
}

.play-btn-lg {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green);
  box-shadow: 0 0 20px var(--green-glow);
  transition: all 0.3s;
}

.mega-video-slot:hover .play-btn-lg {
  background: var(--green-glow);
  box-shadow: 0 0 40px var(--green);
  transform: scale(1.1);
}

.featured-video .play-btn-lg { width: 80px; height: 80px; font-size: 1.8rem; }

/* ── FOOTER ── */
.footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
  padding: 3rem 5% 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  font-family: var(--font-orb);
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 0.6rem;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gray-light);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--gray-light);
  letter-spacing: 0.1em;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--green);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-links a {
  font-size: 0.88rem;
  color: var(--gray-light);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--green); }

.footer-social { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1rem; }

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gray-light);
  transition: color 0.3s;
}

.social-btn:hover { color: var(--green); }

.bio-link {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.3s;
}

.bio-link:hover { color: var(--green); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--gray);
  letter-spacing: 0.08em;
}

.footer-code { color: var(--green); opacity: 0.5; }

/* ── Floating Contact ── */
.floating-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.float-btn svg {
  display: block;
  flex-shrink: 0;
}

.float-btn.whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
}
.float-btn.whatsapp:hover {
  background: #1ebe5a;
  box-shadow: 0 0 24px rgba(37,211,102,0.7);
  transform: scale(1.1);
}

.float-btn.telegram {
  background: #2AABEE;
  color: #fff;
  border-color: #2AABEE;
  box-shadow: 0 4px 18px rgba(42,171,238,0.45);
}
.float-btn.telegram:hover {
  background: #1a9bd8;
  box-shadow: 0 0 24px rgba(42,171,238,0.7);
  transform: scale(1.1);
}

/* ── Glitch Effect ── */
.glitch, .glitch-big {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after,
.glitch-big::before,
.glitch-big::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before,
.glitch-big::before {
  color: var(--cyan);
  animation: glitchTop 4s infinite linear;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
  opacity: 0;
}

.glitch::after,
.glitch-big::after {
  color: var(--red);
  animation: glitchBot 4s infinite linear;
  clip-path: polygon(0 66%, 100% 66%, 100% 100%, 0 100%);
  opacity: 0;
}

@keyframes glitchTop {
  0%, 90%, 100% { opacity: 0; transform: translate(0,0); }
  92%           { opacity: 0.8; transform: translate(-2px, -1px); }
  94%           { opacity: 0.8; transform: translate(2px, 1px); }
  96%           { opacity: 0; }
}

@keyframes glitchBot {
  0%, 88%, 100% { opacity: 0; transform: translate(0,0); }
  90%           { opacity: 0.8; transform: translate(2px, 1px); }
  93%           { opacity: 0.8; transform: translate(-2px, -1px); }
  95%           { opacity: 0; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cards-grid          { grid-template-columns: 1fr; max-width: 420px; }
  .testimonials-grid   { grid-template-columns: 1fr; max-width: 520px; }
  .mega-content        { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .req-grid            { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar { padding: 0 1.2rem; }

  .nav-links {
    position: fixed;
    top: 64px; right: 0;
    width: 260px; height: calc(100vh - 64px);
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 0.3rem;
    transform: translateX(100%);
    transition: transform 0.3s;
  }

  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 0.82rem; padding: 0.6rem 0; }
  .nav-toggle { display: flex; }

  /* ── Hero mobile : logo EN HAUT, puis texte, puis grille ── */
  .hero-section {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 40px;
    gap: 0.6rem;
    min-height: unset;
  }

  /* Cache le terminal atlas@yes sur mobile */
  .terminal-header { display: none; }

  /* 1️⃣ Logo tout en haut — plus grand */
  .hero-logo-block {
    order: 1;
    width: 100%;
    max-width: 100%;
    padding-top: 10px;
    overflow: visible;
  }

  /* 2️⃣ Texte + stats + boutons */
  .hero-content {
    order: 2;
    width: 100%;
  }

  /* 3️⃣ Grille photos/vidéos en bas */
  .hero-visual {
    display: flex !important;
    order: 3;
    width: 100%;
    max-width: 100%;
  }

  /* Logo GRAND sur mobile */
  .hero-logo-img { width: 200px; mix-blend-mode: normal; }

  .logo-neon-ring {
    width: 260px;
    height: 260px;
    transform: translate(-50%, -50%);
  }

  .logo-neon-text    { font-size: 2rem; letter-spacing: 0.12em; }
  .logo-tagline-neon { font-size: 0.65rem; }
  .logo-display      { gap: 0.6rem; padding-top: 30px; mix-blend-mode: normal; }

  /* Grille preuve pleine largeur sur mobile */
  .hero-visual .proof-grid,
  .proof-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .proof-item { min-height: 80px !important; }

  .hero-stats    { gap: 1rem; }
  .hero-actions  { justify-content: center; }

  .explication-grid { grid-template-columns: 1fr; }
  .video-grid       { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom    { flex-direction: column; gap: 0.5rem; }
  .req-grid         { grid-template-columns: 1fr 1fr; }
  .section          { padding: 100px 4% 60px; }
  .pma-list         { flex-direction: column; align-items: center; gap: 0.7rem; }
  .req-detail-text  { font-size: 0.8rem; }
  .required-info    { padding: 1.2rem; }
  .order-cta-btn    { font-size: 0.85rem; padding: 0.9rem 1.5rem; }
}
