/* ================================================================
   Tom Électricité — socialmedia.css
   Refonte premium 2026 · Dark navy + Electric cyan + White
   Inspirations : 21st Magic (Glowing Card, BlurredInfiniteSlider)
                  UI UX Pro Max (Liquid Glass, scan lines, halos)
   ================================================================ */

/* ── Variables ────────────────────────────────────────────────── */
:root {
  --bg:          #030812;
  --bg-mid:      #050e24;
  --bg-card:     rgba(255,255,255,.042);
  --cyan:        #00c8ff;
  --cyan-dim:    rgba(0,200,255,.18);
  --cyan-glow:   0 0 28px rgba(0,200,255,.45), 0 0 60px rgba(0,200,255,.18);
  --blue:        #0070f3;
  --blue-dk:     #0058c4;
  --white:       #ffffff;
  --white-70:    rgba(255,255,255,.70);
  --white-40:    rgba(255,255,255,.40);
  --white-12:    rgba(255,255,255,.12);
  --white-07:    rgba(255,255,255,.07);
  --border:      rgba(255,255,255,.09);
  --border-cyan: rgba(0,200,255,.28);
  --maxw:        1100px;
  --radius-lg:   22px;
  --radius-md:   14px;
  --radius-sm:   10px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  text-wrap: balance;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Layout helpers ───────────────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.sec  { padding: 110px 0; }

/* ── KEYFRAMES ────────────────────────────────────────────────── */

/* Halo qui tourne dans les cartes stat (21st Magic — Stat Card) */
@keyframes halo-orbit {
  0%   { top: 10%; left: 10%; }
  25%  { top: 10%; left: 78%; }
  50%  { top: 72%; left: 78%; }
  75%  { top: 72%; left: 10%; }
  100% { top: 10%; left: 10%; }
}

/* Ray rotatif (21st Magic — Glowing Card) */
@keyframes ray-spin {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(360deg); }
}

/* Scan lines pulsent (21st Magic — Glowing Card) */
@keyframes scan-pulse-top {
  0%, 100% { opacity: .35; }
  50%       { opacity: 1; }
}
@keyframes scan-pulse-bot {
  0%, 100% { opacity: 1; }
  50%       { opacity: .35; }
}

/* Glow pulse sur les nombres */
@keyframes num-glow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(0,200,255,.6)); }
  50%       { filter: drop-shadow(0 0 14px rgba(0,200,255,.2)); }
}

/* Marquee défilement infini */
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Border tournante (contact CTA) */
@keyframes border-spin {
  to { --bg-angle: 360deg; }
}

/* Fade-in bas vers haut (fallback CSS si GSAP absent) */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Shimmer sur les chips marque */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ── NAV ──────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: rgba(3,8,18,.55);
  backdrop-filter: blur(24px) saturate(1.9);
  -webkit-backdrop-filter: blur(24px) saturate(1.9);
  border-bottom: 1px solid var(--border);
  transition: background .4s var(--ease-in-out), border-color .4s;
}
nav.scrolled {
  background: rgba(3,8,18,.92);
  border-bottom-color: rgba(0,200,255,.14);
  box-shadow: 0 1px 0 rgba(0,200,255,.08), 0 4px 24px rgba(0,0,0,.4);
}
.nav-logo { height: 26px; filter: brightness(0) invert(1); }
.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white-40);
  font-size: 13px;
  font-weight: 500;
  transition: color .2s;
}
.nav-back:hover { color: var(--white); }
.nav-back svg {
  width: 15px; height: 15px;
  stroke: currentColor; fill: none;
  stroke-width: 2.2; stroke-linecap: round;
}
.nav-cta-sm {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--border-cyan);
  padding: 8px 18px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  transition: background .25s, box-shadow .25s;
  letter-spacing: .3px;
  cursor: pointer;
}
.nav-cta-sm:hover {
  background: var(--cyan-dim);
  box-shadow: var(--cyan-glow);
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

/* Grille de fond (tech feel) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 25%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 25%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Blobs lumineux radial */
.hero-glow {
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,200,255,.1) 0%, transparent 70%);
  top: -300px; right: -200px;
  pointer-events: none; z-index: 0;
  animation: halo-drift 14s ease-in-out infinite alternate;
}
.hero-glow-2 {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,112,243,.1) 0%, transparent 70%);
  bottom: -100px; left: -150px;
  pointer-events: none; z-index: 0;
}
@keyframes halo-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-40px, 60px) scale(1.08); }
}

.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: .22;
  z-index: 0; pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(165deg, rgba(3,8,18,.65) 0%, rgba(5,14,36,.15) 50%, rgba(3,8,18,.75) 100%);
  z-index: 1; pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 2; pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 3;
  padding: 80px 0 110px;
  width: 100%;
}

/* ── Hero text ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
  opacity: 0; /* GSAP */
}
.hero-eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--cyan), 0 0 20px rgba(0,200,255,.4);
}

.hero-title {
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.04;
  letter-spacing: -2px;
  margin-bottom: 20px;
  opacity: 0; /* GSAP */
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--cyan), #60e0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(0,200,255,.45));
}

.hero-sub {
  color: var(--white-70);
  font-size: 15px;
  line-height: 1.78;
  margin-bottom: 36px;
  max-width: 490px;
  opacity: 0; /* GSAP */
}

.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  opacity: 0; /* GSAP */
}

/* ── Boutons ── */
.btn-primary {
  background: linear-gradient(135deg, var(--blue), #0095ff);
  color: var(--white);
  padding: 14px 30px;
  border-radius: var(--radius-md);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 32px rgba(0,112,243,.4), inset 0 1px 0 rgba(255,255,255,.15);
  transition: box-shadow .3s, transform .25s var(--ease-out-expo);
  display: inline-flex; align-items: center; gap: 9px;
  cursor: pointer;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.12) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .5s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  box-shadow: 0 12px 44px rgba(0,112,243,.55), inset 0 1px 0 rgba(255,255,255,.15);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--white-12);
  color: var(--white);
  padding: 13px 24px;
  border-radius: var(--radius-md);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: background .25s, border-color .25s, box-shadow .25s;
  cursor: pointer;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(0,200,255,.35);
  box-shadow: 0 0 20px rgba(0,200,255,.08);
}

/* ── Hero stat cards (21st Magic — Glowing Card adapté) ── */
.hero-stats-col {
  display: flex; flex-direction: column; gap: 12px;
}

.hstat {
  background: rgba(255,255,255,.038);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  display: flex; align-items: center; gap: 18px;
  transition: border-color .4s var(--ease-in-out),
              background .4s,
              box-shadow .4s,
              transform .3s var(--ease-out-expo);
  opacity: 0; /* GSAP */
  position: relative;
  overflow: hidden;
}

/* Halo orbitant (21st Magic) */
.hstat-halo {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(0,200,255,.18);
  filter: blur(18px);
  pointer-events: none;
  animation: halo-orbit 10s linear infinite;
  z-index: 0;
}

/* Ray rotatif (21st Magic — Glowing Card) */
.hstat-ray {
  position: absolute;
  width: 200px; height: 40px;
  border-radius: 50%;
  background: rgba(0,200,255,.07);
  filter: blur(16px);
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  transform-origin: center;
  animation: ray-spin 14s linear infinite;
  pointer-events: none;
  z-index: 0;
}

/* Scan lines (21st Magic — Glowing Card) */
.hstat::before,
.hstat::after {
  content: '';
  position: absolute;
  left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,200,255,.5), transparent);
  pointer-events: none;
  z-index: 1;
}
.hstat::before {
  top: 12%;
  animation: scan-pulse-top 5s ease-in-out infinite;
}
.hstat::after {
  bottom: 12%;
  animation: scan-pulse-bot 5s ease-in-out infinite;
}

.hstat:hover {
  border-color: rgba(0,200,255,.35);
  background: rgba(0,200,255,.055);
  box-shadow: 0 0 40px rgba(0,200,255,.12), inset 0 1px 0 rgba(0,200,255,.1);
  transform: translateX(4px);
}

.hstat-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative; z-index: 2;
}
.hstat-icon.ig { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); }
.hstat-icon.tt { background: #010101; border: 1px solid rgba(255,255,255,.1); }
.hstat-icon.yt { background: #ff0000; }
.hstat-icon svg { width: 24px; height: 24px; display: block; }

/* Contenu text des hstat */
.hstat > div:not(.hstat-icon):not(.hstat-badge):not(.hstat-halo):not(.hstat-ray) {
  position: relative; z-index: 2;
}

.hstat-n {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
  animation: num-glow 4s ease-in-out infinite;
}
.hstat-l {
  font-size: 11px;
  color: var(--white-40);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 4px;
}
.hstat-badge {
  margin-left: auto;
  background: rgba(0,200,255,.1);
  border: 1px solid rgba(0,200,255,.22);
  color: var(--cyan);
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative; z-index: 2;
  letter-spacing: .3px;
}

/* ══════════════════════════════════════════════════════════════
   TRUST SECTION — Banniere premium "Ils nous font confiance"
   UI/UX Pro Max : Enterprise Gateway / Trust & Authority
   Marquee CSS-first, sens unique gauche -> droite, lampe de poche
   centrale FIXE qui revele chaque logo a son passage.
   ══════════════════════════════════════════════════════════════ */

/* Defilement unique gauche -> droite, boucle sans couture.
   Piste = 2 jeux identiques ; -50% = un jeu -> raccord invisible. */
@keyframes trust-scroll {
  from { transform: translate3d(-50%, 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}
/* Respiration tres douce du faisceau central */
@keyframes trust-breathe {
  0%, 100% { opacity: .82; }
  50%      { opacity: 1; }
}

/* Section conteneur */
.trust-section {
  position: relative;
  overflow: hidden;
  padding: 0 0 10px;
  background:
    radial-gradient(120% 120% at 50% -10%, #07142e 0%, #040b1c 55%, #030812 100%);
  border-top:    1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

/* Header */
.trust-header {
  text-align: center;
  padding: 56px 24px 28px;
  position: relative;
  z-index: 4;
}
.trust-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.4px;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0,200,255,.07);
  box-shadow: inset 0 0 0 1px rgba(0,200,255,.20);
  margin-bottom: 18px;
}
.trust-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(25px, 3.4vw, 38px);
  line-height: 1.06;
  letter-spacing: -.6px;
  color: #fff;
  margin: 0 0 12px;
}
.trust-sub {
  max-width: 470px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.44);
}

/* Bande marquee */
.trust-marquee {
  position: relative;
  height: 152px;
  overflow: hidden;
}

/* ── Lampe de poche FIXE au centre ───────────────────────────────
   Halo doux immobile (aucune ligne dure). Les logos defilent dessous
   et sont reveles quand ils traversent cette zone. */
.trust-center-light {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 310px 82% at 50% 50%,
      rgba(0,200,255,.18) 0%,
      rgba(0,120,243,.10) 42%,
      rgba(0,90,200,.035) 66%,
      transparent 80%);
  filter: blur(7px);
  animation: trust-breathe 6.5s ease-in-out infinite;
}
/* Coeur de lumiere plus dense (la source de la lampe) */
.trust-center-light::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 160px; height: 150px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(135,220,255,.24), transparent 70%);
  filter: blur(9px);
}

/* Viewport : clippe la bande + fondu discret sur les bords G/D */
.trust-viewport {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right,
    transparent 0, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to right,
    transparent 0, #000 12%, #000 88%, transparent 100%);
}

/* Piste defilante (sens unique) */
.trust-track {
  display: flex;
  align-items: center;
  width: max-content;
  flex-shrink: 0;
  will-change: transform;
  -webkit-animation: trust-scroll 22s linear infinite;
  animation: trust-scroll 22s linear infinite;
  animation-play-state: running !important;
  -webkit-animation-play-state: running !important;
}

/* Couche revelee : copie identique limitee au faisceau central.
   Meme animation -> reste parfaitement alignee avec la veilleuse. */
.trust-reveal {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 285px 94% at 50% 50%,
    #000 0%, #000 34%, transparent 78%);
  mask-image: radial-gradient(ellipse 285px 94% at 50% 50%,
    #000 0%, #000 34%, transparent 78%);
}

/* Logo — aucun fond, bordure, carte ou point : juste de l'espace */
.trust-logo {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 42px;
  user-select: none;
}
/* L'<img> sert de GABARIT : il fixe la taille/aspect exact + porte le alt
   pour l'accessibilité, mais reste invisible. Le verre est peint en
   vectoriel par ::after/::before -> NET a n'importe quel zoom. */
.trust-logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 196px;
  object-fit: contain;
  opacity: 0;
}

/* Matiere verre = degrade masque par le contour VECTORIEL du logo
   (mask-image SVG). Aucune rasterisation de filtre -> bords nets. */
.trust-logo::before,
.trust-logo::after {
  content: '';
  position: absolute;
  inset: 0 42px;                 /* = zone exacte de l'<img> (padding lateral) */
  -webkit-mask: var(--logo) center / contain no-repeat;
          mask: var(--logo) center / contain no-repeat;
  pointer-events: none;
}
/* Corps du verre : degrade dimensionnel (arete claire -> corps -> rebond) */
.trust-logo::after {
  background: linear-gradient(176deg,
    #ffffff 0%,
    #d6ecff 24%,
    #a9ccf3 60%,
    #cbe7ff 100%);
}
/* Arete superieure lumineuse = tranche de verre (fin liseré net) */
.trust-logo::before {
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(255,255,255,.95) 0%, rgba(255,255,255,0) 16%);
}

/* Veilleuse (hors faisceau) : verre discret */
.trust-track--base .trust-logo::after  { opacity: .52; }
.trust-track--base .trust-logo::before { opacity: .42; }

/* Revele (faisceau central) : verre brillant + reflet diagonal qui glisse */
.trust-track--lit .trust-logo::after {
  opacity: 1;
  background:
    linear-gradient(115deg, transparent 41%, rgba(255,255,255,.62) 49%, transparent 57%),
    linear-gradient(176deg, #ffffff 0%, #ddf1ff 22%, #9fc7f6 60%, #6ec9ff 100%);
}
.trust-track--lit .trust-logo::before { opacity: .92; }

/* ── SECTION UTILITAIRES ──────────────────────────────────────── */
.sec-dark { background: linear-gradient(165deg, #050e24 0%, #060f28 60%, #070e22 100%); }

.eyebrow {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.sec-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.sec-head h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.06;
  color: var(--white);
}
.sec-head p {
  margin-top: 14px;
  font-size: 15.5px;
  color: var(--white-70);
  line-height: 1.75;
}

/* Reveal — fallback CSS (GSAP override en JS) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease-out-expo), transform .7s var(--ease-out-expo);
}
.reveal.in { opacity: 1; transform: none; }

/* ── À PROPOS ─────────────────────────────────────────────────── */
.about-media {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.about-media-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.8px;
  margin-bottom: 20px;
}
.about-media-text p {
  color: var(--white-70);
  font-size: 15.5px;
  line-height: 1.78;
  margin-bottom: 14px;
}
.about-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px; }
.about-tag {
  background: rgba(0,200,255,.08);
  border: 1px solid rgba(0,200,255,.2);
  color: var(--cyan);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  transition: background .2s, box-shadow .2s;
}
.about-tag:hover {
  background: rgba(0,200,255,.16);
  box-shadow: 0 0 12px rgba(0,200,255,.2);
}

.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-media-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
  position: relative;
}
.about-media-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s var(--ease-out-expo);
}
.about-media-img:first-child img { object-position: center 20%; }
.about-media-img:hover img { transform: scale(1.04); }
.about-media-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(3,8,18,.65) 100%);
  pointer-events: none;
}

/* ── STATS SECTION ────────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(165deg, #040a1a 0%, #050e24 60%, #060e20 100%);
}

/* Chiffre choc */
.stat-hero {
  text-align: center;
  padding: 50px 0 40px;
  position: relative;
}
.stat-hero-n {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(80px, 12vw, 130px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -5px;
  background: linear-gradient(135deg, #fff 30%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(0,200,255,.3));
}
.stat-hero-label {
  font-size: 15px;
  color: var(--white-40);
  margin-top: 12px;
  letter-spacing: .5px;
}
.stat-hero-period {
  display: inline-block;
  margin-top: 12px;
  font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--cyan);
  background: rgba(0,200,255,.07);
  border: 1px solid rgba(0,200,255,.18);
  padding: 5px 16px; border-radius: 999px;
}
.stat-divider {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(0,200,255,.3), transparent);
  margin: 0 auto 50px;
}

/* 4 stats */
.stat-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 64px;
  border: 1px solid var(--border);
}
.stat-4-item {
  background: linear-gradient(145deg, #070f20, #080f1e);
  padding: 30px 22px;
  text-align: center;
  transition: background .35s;
  position: relative;
  overflow: hidden;
}
.stat-4-item::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,200,255,.04), transparent 70%);
  opacity: 0; transition: opacity .35s;
}
.stat-4-item:hover { background: rgba(0,200,255,.055); }
.stat-4-item:hover::before { opacity: 1; }
.stat-4-n {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  color: var(--white);
  line-height: 1; letter-spacing: -1px;
}
.stat-4-n span { color: var(--cyan); }
.stat-4-l {
  font-size: 10.5px;
  color: var(--white-40);
  text-transform: uppercase; letter-spacing: 1.3px;
  margin-top: 7px; font-weight: 600;
}
.stat-4-ctx {
  font-size: 11px;
  color: rgba(0,200,255,.6);
  margin-top: 6px; font-weight: 600; font-style: italic;
}

/* Audience */
.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px; margin-bottom: 64px;
}
.aud-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color .35s, box-shadow .35s;
}
.aud-block:hover {
  border-color: var(--border-cyan);
  box-shadow: 0 0 30px rgba(0,200,255,.07);
}
.aud-block-title {
  font-size: 10px; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--white-40);
  font-weight: 700; margin-bottom: 18px;
}
.aud-row { display: flex; align-items: center; gap: 10px; margin-bottom: 11px; }
.aud-row:last-child { margin-bottom: 0; }
.aud-row-label { font-size: 13px; color: var(--white-70); font-weight: 600; min-width: 110px; }
.aud-bar-wrap {
  flex: 1; height: 4px;
  background: rgba(255,255,255,.06);
  border-radius: 999px; overflow: hidden;
}
.aud-bar-fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  width: 0;
  transition: width 1.4s cubic-bezier(.25,.46,.45,.94);
  box-shadow: 0 0 8px rgba(0,200,255,.4);
}
.aud-pct { font-size: 12px; font-weight: 700; color: var(--cyan); min-width: 38px; text-align: right; }
.aud-highlight {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px; font-weight: 900;
  color: var(--white); margin-bottom: 4px;
}
.aud-highlight-sub { font-size: 12px; color: var(--white-40); }

/* Top content */
.top-content-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.tc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 18px; text-align: center;
  transition: border-color .3s, background .3s, box-shadow .3s, transform .25s var(--ease-out-expo);
  position: relative; overflow: hidden;
}
.tc-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,200,255,.08), transparent 70%);
  opacity: 0; transition: opacity .3s;
}
.tc-card:hover {
  border-color: var(--border-cyan);
  background: rgba(0,200,255,.04);
  box-shadow: 0 0 28px rgba(0,200,255,.1);
  transform: translateY(-2px);
}
.tc-card:hover::before { opacity: 1; }
.tc-views {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px; font-weight: 900;
  color: var(--white); line-height: 1;
  position: relative; z-index: 1;
}
.tc-views span { color: var(--cyan); }
.tc-label { font-size: 10.5px; color: var(--white-40); margin-top: 5px; text-transform: uppercase; letter-spacing: 1px; position: relative; z-index: 1; }
.tc-type {
  display: inline-block; margin-top: 9px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 9px; border-radius: 999px;
  background: rgba(0,200,255,.08); color: var(--cyan);
  border: 1px solid rgba(0,200,255,.18);
  position: relative; z-index: 1;
}
.stats-source { text-align: center; margin-top: 42px; font-size: 11px; color: rgba(255,255,255,.18); }

/* ── FORMATS / BOOK ───────────────────────────────────────────── */
.tarif-platform { margin-bottom: 44px; }
.platform-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.platform-logo {
  width: 44px; height: 44px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.platform-logo.ig { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); }
.platform-logo.yt { background: #ff0000; }
.platform-logo.tt { background: #010101; border: 1px solid rgba(255,255,255,.15); }
.platform-logo svg { width: 22px; height: 22px; }
.platform-name { font-family: 'Montserrat', sans-serif; font-size: 19px; font-weight: 800; color: var(--white); }
.platform-note { font-size: 11.5px; color: var(--white-40); margin-top: 2px; }

.collab-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.collab-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: border-color .3s, background .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
/* Barre gauche animée (Liquid Glass — UI UX Pro Max) */
.collab-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--cyan));
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: opacity .3s, transform .4s var(--ease-out-expo);
}
.collab-card:hover {
  border-color: var(--border-cyan);
  background: rgba(0,200,255,.04);
  box-shadow: 0 0 20px rgba(0,200,255,.07);
}
.collab-card:hover::before { opacity: 1; transform: scaleY(1); }
.collab-type { font-family: 'Montserrat', sans-serif; font-size: 13.5px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.collab-desc { font-size: 11.5px; color: var(--white-40); }
.collab-price-ask {
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px; font-weight: 700;
  color: var(--white-40);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 5px 12px;
  white-space: nowrap; flex-shrink: 0;
  transition: color .25s, border-color .25s;
}
.collab-card:hover .collab-price-ask { color: var(--cyan); border-color: var(--border-cyan); }

/* Book CTA */
.book-cta {
  display: flex; align-items: center; gap: 22px;
  background: linear-gradient(135deg, rgba(0,200,255,.09), rgba(0,112,243,.05));
  border: 1px solid rgba(0,200,255,.22);
  border-radius: var(--radius-lg);
  padding: 30px 32px; margin-top: 34px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.book-cta::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,200,255,.1), transparent 65%);
  pointer-events: none;
}
.book-cta-icon { font-size: 30px; flex-shrink: 0; }
.book-cta-title { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.book-cta-sub { font-size: 13px; color: var(--white-70); line-height: 1.55; }
.book-cta-btn {
  margin-left: auto;
  background: linear-gradient(135deg, var(--blue), #0095ff);
  color: var(--white);
  font-family: 'Montserrat', sans-serif; font-size: 13.5px; font-weight: 700;
  padding: 13px 24px; border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: box-shadow .3s, transform .25s var(--ease-out-expo);
  flex-shrink: 0; cursor: pointer;
  box-shadow: 0 6px 24px rgba(0,112,243,.35);
}
.book-cta-btn:hover {
  box-shadow: 0 10px 36px rgba(0,112,243,.55);
  transform: translateY(-2px);
}

/* ── CONTACT CTA (Liquid Glass border animée) ─────────────────── */
.contact-cta-wrap { position: relative; }

/* Fallback simple si @property non supporté (Safari < 17) */
.contact-cta-box {
  background: rgba(3,8,18,1);
  border-radius: 30px;
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* Border via box-shadow (compatible partout) */
  box-shadow:
    0 0 0 1px rgba(0,200,255,.22),
    0 0 60px rgba(0,200,255,.08),
    0 32px 80px rgba(0,0,0,.5);
}

/* Fond glassmorphism intérieur */
.contact-cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,200,255,.07), rgba(0,112,243,.04));
  pointer-events: none;
}

/* Blob lumineux */
.contact-cta-box::after {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,200,255,.14), transparent 65%);
  pointer-events: none;
  animation: halo-drift 8s ease-in-out infinite alternate;
}

/* Border animée côté gauche (scan) */
.contact-border-line {
  position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--cyan), transparent);
  opacity: .7;
  border-radius: 2px;
}

.contact-cta-box h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900; color: var(--white);
  margin-bottom: 16px; letter-spacing: -.8px;
  position: relative; z-index: 1;
}
.contact-cta-box p {
  color: var(--white-70);
  font-size: 16px; margin-bottom: 38px;
  max-width: 520px; margin-left: auto; margin-right: auto;
  line-height: 1.78; position: relative; z-index: 1;
}
.cta-email {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--white);
  background: linear-gradient(135deg, var(--blue), #0095ff);
  padding: 17px 38px; border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(0,112,243,.45);
  transition: box-shadow .3s, transform .25s var(--ease-out-expo);
  position: relative; z-index: 1;
}
.cta-email:hover {
  box-shadow: 0 16px 52px rgba(0,112,243,.6);
  transform: translateY(-2px);
}
.cta-email svg {
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round;
  width: 20px; height: 20px;
}

/* ── FOOTER ───────────────────────────────────────────────────── */
footer {
  background: rgba(3,8,18,1);
  padding: 28px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: rgba(255,255,255,.25);
  font-size: 13px;
}
footer a { color: var(--cyan); transition: opacity .2s; }
footer a:hover { opacity: .75; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner       { gap: 44px; }
  .audience-split   { grid-template-columns: 1fr 1fr; }
  .stat-4           { grid-template-columns: 1fr 1fr; }
  .top-content-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner     { grid-template-columns: 1fr; gap: 48px; padding: 60px 0 80px; }
  .hero-stats-col { order: -1; flex-direction: row; flex-wrap: wrap; }
  .hstat          { flex: 1 1 calc(50% - 6px); min-width: 200px; }
  .about-media    { grid-template-columns: 1fr; gap: 40px; }
  .collab-grid    { grid-template-columns: 1fr; }
  .contact-cta-box { padding: 48px 32px; }
}
@media (max-width: 600px) {
  .wrap             { padding: 0 18px; }
  .sec              { padding: 72px 0; }
  .hero             { padding-top: 64px; }
  .hero-inner       { padding: 44px 0 64px; }
  .hstat            { flex: 1 1 100%; }
  .audience-split   { grid-template-columns: 1fr; }
  .stat-4           { grid-template-columns: 1fr 1fr; }
  .top-content-grid { grid-template-columns: 1fr 1fr; }
  .about-photos     { grid-template-columns: 1fr; }
  .contact-cta-box  { padding: 38px 20px; }
  .book-cta         { flex-direction: column; align-items: flex-start; }
  .book-cta-btn     { margin-left: 0; width: 100%; text-align: center; }
  /* Trust marquee — mobile compact */
  .trust-header { padding: 40px 18px 16px; }
  .trust-title  { font-size: clamp(20px, 6.4vw, 26px); }
  .trust-sub    { font-size: 13px; }
  .trust-marquee { height: 116px; }
  .trust-logo { padding: 0 24px; }
  .trust-logo::before, .trust-logo::after { inset: 0 24px; }
  .trust-logo-img { height: 29px; max-width: 138px; }
  .trust-center-light {
    background: radial-gradient(ellipse 185px 82% at 50% 50%,
      rgba(0,200,255,.20), rgba(0,120,243,.10) 45%, transparent 78%);
  }
  .trust-reveal {
    -webkit-mask-image: radial-gradient(ellipse 172px 94% at 50% 50%, #000 0, #000 36%, transparent 80%);
    mask-image: radial-gradient(ellipse 172px 94% at 50% 50%, #000 0, #000 36%, transparent 80%);
  }
  .trust-viewport {
    -webkit-mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
  }
  nav { padding: 12px 18px; }
}
@media (max-width: 375px) {
  .hero-title   { font-size: 24px; }
  .stat-4-n     { font-size: 20px; }
  .stat-hero-n  { letter-spacing: -3px; }
}

/* ── Reduced motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .trust-track,
  .hstat-halo,
  .hstat-ray,
  .hero-glow     { animation: none !important; }
  .hstat-n       { animation: none !important; }
  .reveal        { opacity: 1 !important; transform: none !important; }
  .trust-center-light { animation: none !important; }
  .trust-track--base .trust-logo::after { opacity: .62; }
  *              { transition-duration: .01ms !important; }
}
