/* ═══════════════════════════════════════════════
   ESMAX — Premium Design System
   Netflix-inspired dark theme
   ═══════════════════════════════════════════════ */

/* ── Design tokens ── */
:root {
  /* Netflix palette */
  --red:        #e50914;
  --red-dark:   #b81d24;
  --red-glow:   rgba(229,9,20,.25);
  --red-soft:   rgba(229,9,20,.12);

  /* Dark backgrounds */
  --bg:         #141414;
  --bg2:        #1a1a1a;
  --bg3:        #0d0d0d;
  --surface:    rgba(255,255,255,.04);
  --surface2:   rgba(255,255,255,.07);
  --border:     rgba(255,255,255,.08);
  --border2:    rgba(255,255,255,.14);

  /* Text */
  --text:       #e5e5e5;
  --text2:      #b3b3b3;
  --muted:      #757575;
  --white:      #ffffff;

  /* Accent gold/green */
  --gold:       #f5a623;
  --gold-soft:  rgba(245,166,35,.15);
  --green:      #46d369;
  --wa:         #25d366;

  /* Gradients */
  --g-red:      linear-gradient(135deg, #e50914 0%, #b81d24 100%);
  --g-text-red: linear-gradient(135deg, #ff6b6b 0%, #e50914 50%, #ff4b4b 100%);
  --g-dark:     linear-gradient(180deg, #141414 0%, #0d0d0d 100%);
  --g-gold:     linear-gradient(135deg, #f5a623, #f9d06a);

  /* Spacing */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  40px;
  --sp-xl:  64px;
  --sp-2xl: 96px;

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* Transitions */
  --t-fast: .15s ease;
  --t-base: .25s ease;
  --t-slow: .45s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

/* ── Utility ── */
.text-gradient-red {
  background: var(--g-text-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-red { color: var(--red); }

/* ── Scroll reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1),
              transform .7s cubic-bezier(.22,1,.36,1);
}
[data-reveal].revealed { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   PROMO BAR — Premium avec Countdown
══════════════════════════════════════ */
.promo-bar {
  position: relative;
  z-index: 200;
  overflow: hidden;
  background: linear-gradient(90deg, #0d0000 0%, #1f0000 30%, #2a0000 50%, #1f0000 70%, #0d0000 100%);
  border-bottom: 1px solid rgba(229,9,20,.3);
}
/* Neon glow sweep animation */
.promo-bar::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(229,9,20,.08), transparent);
  animation: promaSweep 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes promaSweep {
  0%   { left: -60%; }
  100% { left: 130%; }
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px var(--sp-md);
  font-size: 13px;
  color: var(--text2);
  position: relative;
}

/* ── Single horizontal row ── */
.promo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
}
.promo-left {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
}
.promo-text strong { color: #fff; }
.promo-divider {
  width: 1px;
  height: 20px;
  background: rgba(229,9,20,.3);
  flex-shrink: 0;
}
.promo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { opacity:1; box-shadow: 0 0 8px var(--red); }
  50%      { opacity:.6; box-shadow: 0 0 22px var(--red); }
}

/* ── Countdown ── */
.promo-countdown {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(229,9,20,.15);
  border: 1px solid rgba(229,9,20,.35);
  border-radius: 6px;
  padding: 4px 10px;
  min-width: 46px;
  position: relative;
  overflow: hidden;
}
.countdown-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, transparent 100%);
  pointer-events: none;
}
.countdown-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-shadow: 0 0 12px var(--red), 0 0 24px rgba(229,9,20,.5);
  letter-spacing: .04em;
}
.countdown-label {
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 2px;
}
.countdown-sep {
  font-size: 20px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  animation: blinkSep 1s step-start infinite;
  padding-bottom: 10px;
}
@keyframes blinkSep {
  0%,100% { opacity: 1; }
  50%      { opacity: .2; }
}

/* Flip animation on countdown change */
.countdown-num.flip {
  animation: flipNum .3s ease;
}
@keyframes flipNum {
  0%   { transform: scaleY(1);   opacity: 1; }
  40%  { transform: scaleY(0);   opacity: 0; }
  60%  { transform: scaleY(0);   opacity: 0; }
  100% { transform: scaleY(1);   opacity: 1; }
}

/* ── CTA button ── */
.btn-promo-cta {
  display: inline-flex;
  align-items: center;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--white);
  padding: 7px 18px;
  background: var(--g-red);
  border-radius: var(--r-full);
  box-shadow: 0 0 18px var(--red-glow), 0 0 6px rgba(229,9,20,.4);
  transition: transform var(--t-base), box-shadow var(--t-base), opacity var(--t-base);
  white-space: nowrap;
  letter-spacing: .02em;
  position: relative;
  overflow: hidden;
}
.btn-promo-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transition: left .4s ease;
}
.btn-promo-cta:hover { transform: translateY(-1px) scale(1.03); box-shadow: 0 0 28px var(--red-glow), 0 4px 12px rgba(0,0,0,.3); }
.btn-promo-cta:hover::before { left: 100%; }

.promo-close {
  position: absolute;
  right: 14px;
  top: 50%; transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  padding: 5px 8px;
  line-height: 1;
  transition: color var(--t-fast);
  border-radius: 4px;
}
.promo-close:hover { color: var(--white); background: rgba(255,255,255,.05); }

/* ── Responsive promo bar ── */

/* ── Tablet (≤ 700px) ── */
@media (max-width: 700px) {
  .promo-bar          { overflow: hidden; }
  .promo-inner        { padding: 8px 40px 8px 10px; }
  .promo-row          { gap: 8px; flex-wrap: nowrap; max-width: 100%; overflow: hidden; }
  .promo-left         { flex-shrink: 1; min-width: 0; overflow: hidden; }
  .promo-text         { font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .promo-text strong  { white-space: nowrap; }
  .promo-divider      { height: 16px; flex-shrink: 0; }
  .countdown-num      { font-size: 14px; letter-spacing: .02em; }
  .countdown-label    { font-size: 8px; }
  .countdown-block    { min-width: 28px; padding: 3px 6px; border-radius: 5px; flex-shrink: 0; }
  .countdown-sep      { font-size: 16px; padding-bottom: 8px; flex-shrink: 0; }
  .promo-countdown    { flex-shrink: 0; }
  .btn-promo-cta      { font-size: 11px; padding: 5px 11px; flex-shrink: 0; white-space: nowrap; }
}

/* ── Small mobile (≤ 480px) — tout visible, 2 lignes ── */
@media (max-width: 480px) {
  .promo-bar    { overflow: hidden; }
  .promo-inner  { padding: 7px 34px 7px 8px; overflow: hidden; }
  .promo-row    {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    row-gap: 4px;
    width: 100%;
    overflow: hidden;
  }
  /* Ligne 1 : texte centré pleine largeur */
  .promo-left {
    display: flex;
    flex: 0 0 100%;
    justify-content: center;
    overflow: hidden;
    min-width: 0;
  }
  .promo-text {
    font-size: 10.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
  }
  .promo-dot { flex-shrink: 0; }
  /* Ligne 2 : countdown + séparateur + CTA centrés */
  .promo-divider:first-of-type { display: none; }
  .promo-divider               { height: 13px; flex-shrink: 0; }
  .promo-countdown             { flex-shrink: 0; }
  .countdown-num               { font-size: 12px; }
  .countdown-label             { font-size: 7px; margin-top: 1px; }
  .countdown-block             { min-width: 22px; padding: 2px 5px; }
  .countdown-sep               { font-size: 13px; padding-bottom: 6px; }
  .btn-promo-cta               { font-size: 10px; padding: 4px 9px; letter-spacing: 0; flex-shrink: 0; white-space: nowrap; }
}

/* ── Très petits écrans (≤ 360px) — 2 lignes ── */
@media (max-width: 360px) {
  .promo-inner     { padding: 6px 30px 6px 8px; }
  .promo-row       { flex-wrap: wrap; gap: 5px; row-gap: 5px; justify-content: center; }
  .promo-divider   { display: none; }
  .promo-countdown { flex: 0 0 auto; }
  .btn-promo-cta   { flex: 0 0 auto; font-size: 10px; padding: 4px 10px; }
  .promo-close     { right: 6px; font-size: 12px; }
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20,20,20,.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background var(--t-base), border-color var(--t-base);
}
.navbar.scrolled {
  background: rgba(10,10,10,.96);
  border-color: var(--border2);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo — ESP MAX image (blanc + rouge) */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  display: block !important;
  height: 70px !important;
  max-height: 70px !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain;
  /* glow blanc sur les lettres + glow rouge sur le badge MAX */
  filter:
    drop-shadow(0 0 6px rgba(255,255,255,.6))
    drop-shadow(0 0 16px rgba(255,255,255,.25))
    drop-shadow(0 0 22px rgba(229,9,20,.7))
    drop-shadow(0 0 42px rgba(229,9,20,.3));
  transition: filter var(--t-base), transform var(--t-base);
  animation: logoGlowPulse 3s ease-in-out infinite;
}
@keyframes logoGlowPulse {
  0%,100% {
    filter:
      drop-shadow(0 0 6px rgba(255,255,255,.6))
      drop-shadow(0 0 16px rgba(255,255,255,.25))
      drop-shadow(0 0 22px rgba(229,9,20,.7))
      drop-shadow(0 0 42px rgba(229,9,20,.3));
  }
  50% {
    filter:
      drop-shadow(0 0 10px rgba(255,255,255,.8))
      drop-shadow(0 0 24px rgba(255,255,255,.35))
      drop-shadow(0 0 32px rgba(229,9,20,.9))
      drop-shadow(0 0 58px rgba(229,9,20,.45));
  }
}
.nav-logo:hover .logo-img {
  filter:
    drop-shadow(0 0 14px rgba(255,255,255,.9))
    drop-shadow(0 0 30px rgba(255,255,255,.4))
    drop-shadow(0 0 38px rgba(229,9,20,1))
    drop-shadow(0 0 70px rgba(229,9,20,.55));
  transform: scale(1.05);
  animation: none;
}
.logo-fallback { display: none !important; }
.logo-accent   { color: var(--red); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  transition: color var(--t-fast);
  position: relative;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: width var(--t-base);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--white); }

/* Nav CTAs */
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.btn-wa-sm {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--wa);
  padding: 8px 14px;
  border: 1px solid rgba(37,211,102,.25);
  border-radius: var(--r-full);
  transition: all var(--t-base);
  white-space: nowrap;
}
.btn-wa-sm:hover {
  background: rgba(37,211,102,.1);
  border-color: rgba(37,211,102,.5);
}

.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
  padding: 9px 22px;
  background: var(--g-red);
  border-radius: var(--r-full);
  box-shadow: 0 0 20px var(--red-glow);
  transition: transform var(--t-base), box-shadow var(--t-base), opacity var(--t-base);
  white-space: nowrap;
}
.btn-primary-sm:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px var(--red-glow);
  opacity: .92;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t-base);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--bg3);
  padding: 100px 0 80px;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-glow--1 {
  width: 500px; height: 500px;
  background: var(--red-glow);
  top: -100px; left: -100px;
  animation: floatGlow 8s ease-in-out infinite;
}
.hero-glow--2 {
  width: 400px; height: 400px;
  background: rgba(229,9,20,.15);
  bottom: -80px; right: -80px;
  animation: floatGlow 10s ease-in-out infinite reverse;
}
@keyframes floatGlow {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(30px,20px) scale(1.1); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero content */
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--red-soft);
  border: 1px solid rgba(229,9,20,.3);
  border-radius: var(--r-full);
  font-size: 12.5px;
  font-weight: 600;
  color: #ff7070;
  letter-spacing: .04em;
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.hero-title {
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text2);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 500px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--g-red);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 34px;
  border-radius: var(--r-md);
  box-shadow: 0 0 36px var(--red-glow), 0 4px 16px rgba(0,0,0,.4);
  transition: transform var(--t-base), box-shadow var(--t-base), opacity var(--t-base);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 52px var(--red-glow), 0 8px 24px rgba(0,0,0,.5);
  opacity: .92;
}
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text2);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 24px;
  border: 1.5px solid var(--border2);
  border-radius: var(--r-md);
  transition: all var(--t-base);
}
.btn-hero-ghost:hover { border-color: rgba(255,255,255,.3); color: var(--white); }

/* hero-stats removed */
.hstat-sep {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* TV Mockup */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.tv-mockup {
  position: relative;
  width: 100%;
  max-width: 500px;
  animation: floatTV 4s ease-in-out infinite;
}
@keyframes floatTV {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.tv-screen {
  background: #000;
  border-radius: 16px 16px 4px 4px;
  border: 3px solid #2a2a2a;
  box-shadow:
    0 0 0 1px #111,
    0 0 60px rgba(229,9,20,.2),
    0 30px 60px rgba(0,0,0,.8);
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mockup screenshot — perfectly centered & covering */
.tv-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 13px 13px 1px 1px;
}
.tv-screen-image { background: #000; }

.tv-mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
  /* Premium glow effect */
  filter: brightness(1.05) contrast(1.05) saturate(1.1);
  transition: transform .6s ease;
}
.tv-mockup:hover .tv-mockup-img { transform: scale(1.02); }

/* Overlay bar at bottom of TV screen */
.tv-overlay-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, transparent 100%);
}
.tv-live {
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: .08em;
  flex-shrink: 0;
}
.tv-overlay-bar > span:nth-child(2) {
  font-size: 11px;
  color: rgba(255,255,255,.7);
  flex: 1;
  text-align: center;
}

/* Equalizer bars (mini in overlay) */
.tv-playing-mini {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
  flex-shrink: 0;
}
.tv-playing {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 28px;
}
.tv-bar {
  width: 5px;
  background: var(--red);
  border-radius: 2px;
  animation: eq 1.2s ease-in-out infinite;
  height: 60%;
}
.tv-bar--2 { animation-delay: .1s; height: 100%; background: #ff4444; }
.tv-bar--3 { animation-delay: .2s; height: 40%; }
.tv-bar--4 { animation-delay: .15s; height: 80%; background: #ff4444; }
.tv-bar--5 { animation-delay: .05s; height: 55%; }
@keyframes eq {
  0%,100% { transform: scaleY(1); }
  50%      { transform: scaleY(.35); }
}

/* TV stand */
.tv-stand {
  width: 8px;
  height: 28px;
  background: #2a2a2a;
  margin: 0 auto;
}
.tv-base {
  width: 140px;
  height: 8px;
  background: linear-gradient(90deg, #1a1a1a, #2a2a2a, #1a1a1a);
  border-radius: 4px;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0,0,0,.5);
}

/* Floating badges */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(20,20,20,.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border2);
  border-radius: var(--r-md);
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
}
.float-badge--uhd {
  top: 14%; left: -8%;
  color: var(--red);
  border-color: rgba(229,9,20,.3);
  animation: floatBadge1 3s ease-in-out infinite;
}
.float-badge--live {
  top: 38%; right: -10%;
  animation: floatBadge2 3.5s ease-in-out infinite;
}
.float-badge--channels {
  bottom: 18%; left: -6%;
  animation: floatBadge1 4s ease-in-out infinite .5s;
}
@keyframes floatBadge1 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes floatBadge2 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: .5;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid var(--border2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: var(--red);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}
@keyframes scrollWheel {
  0%      { opacity: 1; transform: translateY(0); }
  100%    { opacity: 0; transform: translateY(8px); }
}

/* ══════════════════════════════════════
   BRAND STRIP
══════════════════════════════════════ */
.brand-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
}
.brand-strip-inner { overflow: hidden; }
.brand-strip-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scrollTrack 28s linear infinite;
}
.brand-strip-track span {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes scrollTrack {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   SECTIONS
══════════════════════════════════════ */
.section { padding: var(--sp-2xl) 0; }
.section--dark {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  display: inline-block;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.section-desc {
  color: var(--text2);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   FEATURES
══════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--g-red);
  opacity: 0;
  transition: opacity var(--t-base);
}
.feat-card:hover {
  border-color: rgba(229,9,20,.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.feat-card:hover::before { opacity: 1; }

.feat-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feat-icon--red {
  background: var(--red-soft);
  color: var(--red);
  border: 1px solid rgba(229,9,20,.25);
}
.feat-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.feat-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  position: relative;
  transition: transform var(--t-base), box-shadow var(--t-base);
  overflow: hidden;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.5); }

.pricing-card--featured {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red), 0 0 50px rgba(229,9,20,.2);
  transform: translateY(-8px);
  background: linear-gradient(160deg, rgba(229,9,20,.06) 0%, var(--surface) 60%);
}
.pricing-card--featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 0 1px var(--red), 0 0 70px rgba(229,9,20,.3);
}

.featured-crown {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--g-red);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  padding: 6px 0;
  letter-spacing: .1em;
}

.pricing-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: var(--red-soft);
  color: #ff7070;
  border: 1px solid rgba(229,9,20,.3);
  margin-bottom: 14px;
  margin-top: 30px;
}
.pricing-badge--gold {
  background: var(--gold-soft);
  color: var(--gold);
  border-color: rgba(245,166,35,.3);
}
.pricing-badge--purple {
  background: rgba(139,92,246,.1);
  color: #a78bfa;
  border-color: rgba(139,92,246,.3);
}

.pricing-duration {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.pricing-bonus {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35, #ffb347);
  color: #1a0500;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 10px;
  letter-spacing: .04em;
}
.pricing-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin: 6px 0;
  line-height: 1;
}
.pricing-price sup {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
}
.price-num {
  font-size: 54px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1;
}
.pricing-price sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: auto;
  padding-bottom: 8px;
}
.pricing-per {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 22px;
}
.pricing-per strong { color: var(--green); }

.btn-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 700;
  background: var(--surface2);
  color: var(--white);
  border: 1px solid var(--border2);
  margin-bottom: 24px;
  transition: all var(--t-base);
}
.btn-order:hover {
  background: rgba(229,9,20,.1);
  border-color: rgba(229,9,20,.4);
  color: #ff7070;
}
.btn-order--featured {
  background: var(--g-red);
  border-color: transparent;
  box-shadow: 0 0 24px var(--red-glow);
}
.btn-order--featured:hover {
  background: var(--g-red);
  color: var(--white) !important;
  border-color: transparent;
  box-shadow: 0 0 40px var(--red-glow);
  opacity: .92;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text2);
}
.pf-icon {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 13px;
}
.pf-icon--no { color: var(--muted); }
.pf-muted { color: var(--muted); }

.pricing-footer {
  text-align: center;
  margin-top: 48px;
}
.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

/* "Paiement sécurisé" label */
.pay-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.pay-label svg { color: var(--green); flex-shrink: 0; }

/* Icon row */
.pay-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* Real SVG badge images */
.pay-icon {
  display: block;
  height: 34px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,.4);
  transition: transform .22s ease, box-shadow .22s ease;
  flex-shrink: 0;
}
.pay-icon:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 6px 20px rgba(0,0,0,.55);
}
.pricing-guarantee {
  font-size: 13px;
  color: var(--muted);
}

/* ══════════════════════════════════════
   DEVICES — Carousel
══════════════════════════════════════ */

/* Wrap: leaves room for absolute-positioned arrows */
.devices-carousel-wrap {
  position: relative;
  padding: 0 62px;
  margin-bottom: 32px;
  user-select: none;
}

/* Viewport: clips overflow, adds edge fades */
.carousel-viewport {
  overflow: hidden;
  border-radius: var(--r-lg);
  position: relative;
}
.carousel-viewport::before,
.carousel-viewport::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 48px;
  z-index: 4;
  pointer-events: none;
}
.carousel-viewport::before {
  left: 0;
  background: linear-gradient(to right, var(--bg2) 10%, transparent);
}
.carousel-viewport::after {
  right: 0;
  background: linear-gradient(to left, var(--bg2) 10%, transparent);
}

/* Track: flex row, JS sets card widths + translateX */
.carousel-track {
  display: flex;
  gap: 18px;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
  cursor: grab;
}
.carousel-track:active { cursor: grabbing; }

/* ── Arrow buttons ── */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(15,15,15,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255,255,255,.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,0,0,.6), 0 0 0 0 var(--red-glow);
  transition: background var(--t-base), border-color var(--t-base),
              box-shadow var(--t-base), transform var(--t-base), opacity var(--t-base);
}
.carousel-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 28px var(--red-glow), 0 4px 20px rgba(0,0,0,.5);
  transform: translateY(-50%) scale(1.08);
}
.carousel-arrow.disabled {
  opacity: .25;
  pointer-events: none;
}
.carousel-arrow--prev { left: 0; }
.carousel-arrow--next { right: 0; }

/* ── Dot indicators ── */
.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width .35s cubic-bezier(.4,0,.2,1),
              background .35s ease,
              box-shadow .35s ease;
  flex-shrink: 0;
}
.carousel-dot.active {
  width: 30px;
  background: var(--red);
  box-shadow: 0 0 10px var(--red-glow);
}
.carousel-dot:hover:not(.active) { background: rgba(255,255,255,.35); }

/* ── Device card (same look, flex-shrink:0 set by JS) ── */
.device-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.device-card:hover {
  border-color: rgba(229,9,20,.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.4);
}
.device-emoji {
  font-size: 38px;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
}
.device-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.device-card p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

.devices-install {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.install-icon { font-size: 24px; flex-shrink: 0; }
.install-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.install-text strong {
  font-size: 14px;
  color: var(--white);
}
.install-text span {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}
.btn-install {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: var(--red-soft);
  border: 1px solid rgba(229,9,20,.3);
  border-radius: var(--r-md);
  color: #ff7070;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--t-base);
  flex-shrink: 0;
}
.btn-install:hover {
  background: rgba(229,9,20,.18);
  border-color: rgba(229,9,20,.5);
}

/* ── Install banner responsive ── */
@media (max-width: 700px) {
  .devices-install   { padding: 14px 16px; gap: 10px; }
  .install-icon      { font-size: 20px; }
  .install-text strong { font-size: 13px; }
  .install-text span   { font-size: 11.5px; }
  .btn-install       { font-size: 12px; padding: 8px 14px; }
}
@media (max-width: 480px) {
  .devices-install   { padding: 12px 14px; gap: 8px; }
  .install-icon      { display: none; }
  .install-text strong { font-size: 12.5px; }
  .install-text span   { font-size: 11px; line-height: 1.55; }
  .btn-install       { width: 100%; justify-content: center; font-size: 12px; padding: 9px 14px; }
}

/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
.reviews-stars {
  font-size: 18px;
  color: var(--gold);
  margin-top: 6px;
}
.reviews-stars strong { color: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color var(--t-base), transform var(--t-base);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
}
.review-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }

blockquote p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--g-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-author > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-author strong { font-size: 14px; color: var(--white); }
.review-author span   { font-size: 12px; color: var(--muted); }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-container { max-width: 820px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-base);
}
.faq-item.active { border-color: rgba(229,9,20,.35); }

.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--t-fast);
}
.faq-q:hover { color: var(--white); }
.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  transition: transform var(--t-base);
  line-height: 1;
}
.faq-item.active .faq-q::after { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-a p {
  padding: 0 24px 22px;
  color: var(--text2);
  font-size: 14.5px;
  line-height: 1.75;
}

/* ══════════════════════════════════════
   REVIEWS CAROUSEL
══════════════════════════════════════ */

/* Rating bar */
.reviews-rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
}
.reviews-stars-big { font-size: 26px; color: var(--gold); letter-spacing: 3px; line-height: 1; }
.reviews-rating-info { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.reviews-rating-info strong { font-size: 22px; font-weight: 800; color: var(--white); line-height: 1; }
.reviews-rating-info span  { font-size: 12px; color: var(--muted); }

/* Wrap — reuses same padding/arrow pattern as devices carousel */
.reviews-carousel-wrap {
  position: relative;
  padding: 0 62px;
  user-select: none;
}

/* Viewport edge-fade using the section bg (plain .section = var(--bg)) */
.reviews-carousel-viewport::before {
  background: linear-gradient(to right, var(--bg) 10%, transparent) !important;
}
.reviews-carousel-viewport::after {
  background: linear-gradient(to left, var(--bg) 10%, transparent) !important;
}

/* Track cursor */
.reviews-track { cursor: grab; }
.reviews-track:active { cursor: grabbing; }

/* ── Review card — glassmorphism premium ── */
.review-card-c {
  flex-shrink: 0;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 26px 22px 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .28s ease, transform .32s ease, box-shadow .32s ease;
}
/* Radial violet glow fill */
.review-card-c::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(140,80,255,.08) 0%, transparent 65%);
  pointer-events: none;
}
/* Top shimmer line — appears on hover */
.review-card-c::after {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(155,100,255,.55) 35%,
    rgba(80,210,255,.55) 65%,
    transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.review-card-c:hover {
  border-color: rgba(155,100,255,.22);
  transform: translateY(-5px);
  box-shadow:
    0 14px 44px rgba(0,0,0,.45),
    0 0 32px rgba(140,80,255,.07),
    0 0 0 1px rgba(155,100,255,.06);
}
.review-card-c:hover::after { opacity: 1; }

/* ── Header (avatar + info + stars) ── */
.rc-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rc-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}
.rc-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .04em;
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
}
.rc-verified-dot {
  position: absolute;
  bottom: -1px; right: -1px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7.5px;
  font-weight: 900;
  color: #fff;
}
.rc-info { flex: 1; min-width: 0; }
.rc-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rc-location {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  white-space: nowrap;
}
.rc-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  flex-shrink: 0;
  text-shadow: 0 0 8px rgba(245,166,35,.4);
}

/* ── Quote ── */
.rc-quote {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.72;
  position: relative;
  padding-left: 16px;
  flex: 1;
}
.rc-quote::before {
  content: '\201C';
  position: absolute;
  left: 0; top: -6px;
  font-size: 34px;
  color: rgba(155,100,255,.28);
  font-family: Georgia, serif;
  line-height: 1;
}

/* ── Footer row ── */
.rc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap;
}
.rc-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--green);
  padding: 3px 10px;
  background: rgba(70,211,105,.1);
  border: 1px solid rgba(70,211,105,.2);
  border-radius: var(--r-full);
  white-space: nowrap;
}
.rc-plan {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}

/* ══════════════════════════════════════
   DOWNLOAD ACTIONS — Téléchargement section
══════════════════════════════════════ */
.download-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  justify-content: center;
}

/* ── Play Store button ── */
.btn-playstore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  color: var(--white);
  text-decoration: none;
  transition: background var(--t-base), border-color var(--t-base),
              transform var(--t-base), box-shadow var(--t-base);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
  width: fit-content;
}
.btn-playstore:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0,0,0,.4), 0 0 16px rgba(229,9,20,.1);
}
.btn-playstore svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: #34a853;
}
.btn-playstore-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.btn-playstore-text small {
  font-size: 10px;
  color: rgba(255,255,255,.45);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.btn-playstore-text strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
}

/* ── Code download box ── */
.code-download-box {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 220px;
  max-width: 300px;
}
.code-box-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.35);
}
.code-box-label svg { width: 12px; height: 12px; flex-shrink: 0; }
.code-box-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  padding: 8px 12px;
}
.code-value {
  flex: 1;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .22em;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 14px rgba(229,9,20,.4);
}
.btn-copy-code {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  background: var(--g-red);
  border: none;
  border-radius: 6px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--t-base);
  box-shadow: 0 0 10px var(--red-glow);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-copy-code svg { width: 13px; height: 13px; }
.btn-copy-code:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px var(--red-glow);
}
.btn-copy-code.copied {
  background: linear-gradient(135deg, #46d369, #2ab357);
  box-shadow: 0 0 12px rgba(70,211,105,.35);
}
.code-hint {
  font-size: 10.5px;
  color: rgba(255,255,255,.3);
  line-height: 1.5;
  margin: 0;
}

/* ══════════════════════════════════════
   BLOG
══════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: rgba(229,9,20,.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
}

/* Thumbnail area */
.blog-thumb {
  position: relative;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-thumb--1 { background: linear-gradient(135deg, #1a0a0a 0%, #3d0000 50%, #1f0505 100%); }
.blog-thumb--2 { background: linear-gradient(135deg, #0a0a1a 0%, #00003d 50%, #050520 100%); }
.blog-thumb--3 { background: linear-gradient(135deg, #0a1a00 0%, #003d00 50%, #052005 100%); }

.blog-thumb-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(229,9,20,.18) 0%, transparent 70%);
  pointer-events: none;
}
.blog-thumb--2 .blog-thumb-overlay {
  background: radial-gradient(ellipse at center, rgba(64,64,229,.18) 0%, transparent 70%);
}
.blog-thumb--3 .blog-thumb-overlay {
  background: radial-gradient(ellipse at center, rgba(70,211,105,.18) 0%, transparent 70%);
}

.blog-thumb-icon {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.15);
}

.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 4px 12px;
  background: var(--g-red);
  border-radius: var(--r-full);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.blog-tag--gold {
  background: var(--g-gold);
  color: #1a0500;
}
.blog-tag--green {
  background: linear-gradient(135deg, #46d369, #2ab357);
  color: #001a05;
}

/* Card body */
.blog-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.blog-date,
.blog-read {
  font-size: 11.5px;
  color: var(--muted);
}
.blog-title-card {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  transition: color var(--t-fast);
}
.blog-card:hover .blog-title-card { color: #ff7070; }
.blog-desc {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.65;
  flex: 1;
}
.btn-read {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  padding: 9px 0;
  border-bottom: 1.5px solid rgba(229,9,20,.0);
  transition: all var(--t-base);
  align-self: flex-start;
  margin-top: auto;
}
.btn-read:hover {
  color: #ff4444;
  gap: 10px;
}

/* Blog footer */
.blog-footer {
  text-align: center;
}

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-band {
  position: relative;
  background: #0d0000;
  border-top: 1px solid rgba(229,9,20,.2);
  border-bottom: 1px solid rgba(229,9,20,.2);
  padding: 80px 0;
  overflow: hidden;
}
.cta-band-glow {
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(229,9,20,.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band-text h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.cta-band-text p {
  font-size: 16px;
  color: var(--text2);
}
.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.btn-wa-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: rgba(37,211,102,.1);
  border: 1.5px solid rgba(37,211,102,.35);
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 700;
  color: var(--wa);
  transition: all var(--t-base);
}
.btn-wa-lg:hover {
  background: rgba(37,211,102,.18);
  border-color: rgba(37,211,102,.6);
}

/* ══════════════════════════════════════
   CONTENT PROTECTION — Toast
══════════════════════════════════════ */
.protect-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(12, 12, 18, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(140, 80, 255, 0.22);
  border-radius: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  box-shadow:
    0 0 0 1px rgba(140, 80, 255, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.6),
    0 0 24px rgba(140, 80, 255, 0.12),
    0 0 48px rgba(0, 200, 255, 0.06);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  white-space: nowrap;
}
.protect-toast svg {
  flex-shrink: 0;
  color: rgba(140, 80, 255, 0.9);
  filter: drop-shadow(0 0 6px rgba(140, 80, 255, 0.5));
}
.protect-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* user-select global — préserve les zones utiles */
body {
  -webkit-user-select: none;
  user-select: none;
}
input, textarea, select,
.code-value, .code-download-box,
.faq-a, [contenteditable] {
  -webkit-user-select: text;
  user-select: text;
}

/* Drag images désactivé */
img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}
/* Restaurer pointer-events sur liens/boutons contenant des images */
a img, button img { pointer-events: auto; }

/* ══════════════════════════════════════
   SCROLL TO TOP
══════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(15,15,20,.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(140,80,255,.12),
    0 4px 24px rgba(0,0,0,.55),
    0 0 22px rgba(140,80,255,.1);
  /* hidden by default */
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(.9);
  transition:
    opacity .35s cubic-bezier(.4,0,.2,1),
    transform .35s cubic-bezier(.4,0,.2,1),
    box-shadow .3s ease,
    border-color .3s ease,
    background .3s ease;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.scroll-top:hover {
  background: rgba(25,15,40,.88);
  border-color: rgba(140,80,255,.35);
  box-shadow:
    0 0 0 1px rgba(140,80,255,.3),
    0 8px 32px rgba(0,0,0,.6),
    0 0 28px rgba(140,80,255,.22),
    0 0 48px rgba(0,200,255,.08);
  transform: translateY(-3px) scale(1.08);
}
.scroll-top:active {
  transform: translateY(-1px) scale(1.02);
}
.scroll-top svg {
  transition: transform .25s ease;
}
.scroll-top:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .scroll-top { width: 42px; height: 42px; bottom: 22px; right: 20px; }
  .scroll-top svg { width: 17px; height: 17px; }
}
@media (max-width: 480px) {
  .scroll-top { width: 38px; height: 38px; bottom: 18px; right: 16px; }
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--bg3);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 56px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  width: 600px; height: 220px;
  background: radial-gradient(ellipse, rgba(229,9,20,.045) 0%, transparent 68%);
  top: -40px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
}
.footer-logo { display: inline-flex; align-items: center; margin-bottom: 12px; }
.footer-logo-img {
  display: block;
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  filter:
    drop-shadow(0 0 4px rgba(255,255,255,.45))
    drop-shadow(0 0 12px rgba(255,255,255,.15))
    drop-shadow(0 0 16px rgba(229,9,20,.55))
    drop-shadow(0 0 28px rgba(229,9,20,.2));
}
.footer-logo-text { display: none; }
.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 290px;
  margin-bottom: 18px;
}
.footer-socials { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wa);
  transition: all var(--t-base);
}
.social-btn:hover {
  background: rgba(37,211,102,.1);
  border-color: rgba(37,211,102,.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37,211,102,.15);
}

.footer-col { display: flex; flex-direction: column; gap: 2px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,.38);
  padding: 5px 0;
  transition: color var(--t-fast), text-shadow var(--t-fast);
  position: relative;
}
.footer-col a:hover {
  color: var(--white);
  text-shadow: 0 0 14px rgba(229,9,20,.25);
}

.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,.28);
}
.footer-seo a {
  color: rgba(255,255,255,.28);
  font-size: 11.5px;
  transition: color var(--t-fast);
}
.footer-seo a:hover { color: var(--red); }
.footer-legal {
  width: 100%;
  font-size: 10.5px;
  color: rgba(255,255,255,.18);
  text-align: center;
  margin-top: 6px;
  font-style: italic;
  letter-spacing: .01em;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner { gap: 40px; }
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr; gap: 28px; }
}
@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { flex-wrap: wrap; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  /* carousel: JS handles responsive card count */
  .blog-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 86px 0 0 0;
    background: #0a0a0a;
    background: linear-gradient(180deg, #111111 0%, #0d0d0d 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(229,9,20,.18);
    box-shadow: 0 8px 32px rgba(0,0,0,.8);
    padding: 28px var(--sp-md) 40px;
    gap: 0;
    align-items: stretch;
    z-index: 99;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-link {
    font-size: 17px;
    color: rgba(255,255,255,.88);
    padding: 16px 6px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-link:last-child { border-bottom: none; }
  .nav-link:hover,
  .nav-link.active { color: #ffffff; padding-left: 12px; }
  .nav-cta .btn-wa-sm { display: none; }
  .burger { display: flex; }

  .section { padding: 70px 0; }
  .features-grid { grid-template-columns: 1fr; }
  /* carousel: JS handles 2-col on tablet */
  .blog-grid     { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto 48px; }
  .download-actions { flex-direction: column; align-items: center; gap: 12px; }
  .btn-playstore { width: 100%; max-width: 300px; justify-content: center; }
  .code-download-box { min-width: unset; width: 100%; max-width: 300px; }
  .code-value { font-size: 18px; }
  .btn-playstore-text strong { font-size: 14px; }
  .footer-top    { grid-template-columns: 1fr; gap: 28px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* ── Paiement sécurisé — mobile ── */
  .pricing-footer   { margin-top: 36px; }
  .payment-methods  { flex-direction: column; gap: 10px; }
  .pay-icons        { justify-content: center; flex-wrap: wrap; gap: 8px; }
  .pay-icon         { height: 30px; }
  .pay-label        { font-size: 11.5px; }
  .pricing-guarantee {
    font-size: 12px;
    line-height: 1.6;
    padding: 0 12px;
  }
}

@media (max-width: 520px) {
  /* Carousel: arrows hidden on small phones — swipe only */
  .devices-carousel-wrap,
  .reviews-carousel-wrap { padding: 0; }
  .carousel-arrow { display: none; }
  .hero-title { font-size: 36px; }
  .hero-stats { flex-wrap: wrap; justify-content: center; border-radius: var(--r-lg); padding: 10px 8px; }
  .hstat      { padding: 4px 12px; }
  .hstat-sep  { height: 18px; }
  /* carousel: JS handles 1-col on mobile */
  .hero-ctas { flex-direction: column; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; }

  /* ── Paiement sécurisé — très petit écran ── */
  .pay-icon  { height: 26px; }
  .pay-icons { gap: 6px; }
  .pay-label { font-size: 11px; }
  .pricing-guarantee { font-size: 11.5px; padding: 0 8px; }
}
