/**
 * WebiaProd.ai — animations.css v1.0
 * Système d'animations "waou" premium — même ADN que la sphère rouge
 *
 * Toutes les animations s'activent via des classes CSS ou data-attributes.
 * Le webmaster n'a besoin d'écrire aucun JS — tout est automatique.
 *
 * ─── Classes disponibles dans Elementor ───────────────────────
 *  [data-anim="fade-up"]         Apparition par le bas (stagger auto)
 *  [data-anim="fade-left"]       Apparition par la gauche
 *  [data-anim="fade-right"]      Apparition par la droite
 *  [data-anim="zoom-in"]         Zoom depuis le centre
 *  [data-anim="flip"]            Retournement 3D
 *  [data-anim="glow"]            Pulsation lumineuse rouge
 *  .wbp-tilt                     Tilt 3D à la souris (cartes)
 *  .wbp-magnetic                 Attraction magnétique curseur (boutons)
 *  .wbp-ripple                   Effet vague au clic (boutons)
 *  .wbp-shimmer                  Sweep lumineux sur le texte
 *  .wbp-typewriter               Effet machine à écrire
 *  .wbp-float                    Lévitation douce (icônes, badge)
 *  .wbp-blob-bg                  Fond orbe morphant (sections sombres)
 *  .wbp-scan-line                Ligne de scan animée (hero)
 *  .wbp-gradient-text            Texte dégradé animé rouge→orange
 *  .wbp-counter-flip             Compteur style machine à sous
 *  .wbp-orb-1/2/3               Orbes décoratifs animés (fond)
 *  .wbp-noise                    Overlay bruit de grain (texture cinématique)
 *  .wbp-stagger-grid             Enfants révélés en cascade
 *  .wbp-glow-border              Bordure lumineuse tournante
 *  .wbp-particle-burst           Burst de particules au survol
 */

/* ═══════════════════════════════════════════════════════════════
   1. VARIABLES & KEYFRAMES DE BASE
   ═══════════════════════════════════════════════════════════════ */

:root {
  --anim-red:    #FC5B49;
  --anim-red2:   #e04438;
  --anim-orange: #ff8c42;
  --anim-glow:   rgba(252, 91, 73, 0.4);
  --anim-glow2:  rgba(252, 91, 73, 0.15);
  --anim-ease:   cubic-bezier(0.23, 1, 0.32, 1);
  --anim-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --anim-dur:    0.6s;
}

/* ── Entrées ── */
@keyframes wbpFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes wbpFadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes wbpFadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes wbpZoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes wbpFlip {
  from { opacity: 0; transform: perspective(600px) rotateX(-30deg); }
  to   { opacity: 1; transform: perspective(600px) rotateX(0deg); }
}

/* ── Pulsations & lueurs ── */
@keyframes wbpGlow {
  0%, 100% { box-shadow: 0 0 12px var(--anim-glow); }
  50%       { box-shadow: 0 0 32px var(--anim-glow), 0 0 60px var(--anim-glow2); }
}
@keyframes wbpGlowText {
  0%, 100% { text-shadow: 0 0 10px var(--anim-glow); }
  50%       { text-shadow: 0 0 30px var(--anim-glow), 0 0 60px rgba(252,91,73,0.3); }
}
@keyframes wbpGlowBorder {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes wbpPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

/* ── Float & morph ── */
@keyframes wbpFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-10px) rotate(1deg); }
  66%       { transform: translateY(-6px) rotate(-1deg); }
}
@keyframes wbpFloatSlow {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-18px) scale(1.03); }
}

@keyframes wbpBlob {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: scale(1) rotate(0deg); }
  25%       { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: scale(1.05) rotate(5deg); }
  50%       { border-radius: 50% 60% 40% 30% / 40% 70% 60% 50%; transform: scale(0.97) rotate(-3deg); }
  75%       { border-radius: 40% 30% 60% 70% / 70% 40% 50% 60%; transform: scale(1.03) rotate(7deg); }
}

/* ── Scan line ── */
@keyframes wbpScan {
  0%   { top: -10%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { top: 110%; opacity: 0; }
}

/* ── Gradient text sweep ── */
@keyframes wbpGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── Shimmer sweep ── */
@keyframes wbpShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ── Orbital glow ring (héritage de la sphère) ── */
@keyframes wbpOrbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes wbpOrbitReverse {
  from { transform: rotate(0deg) rotateX(75deg); }
  to   { transform: rotate(-360deg) rotateX(75deg); }
}

/* ── Ripple ── */
@keyframes wbpRipple {
  0%   { transform: scale(0); opacity: 0.6; }
  100% { transform: scale(4); opacity: 0; }
}

/* ── Stagger helper ── */
@keyframes wbpStagger {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Number flip ── */
@keyframes wbpFlipNum {
  0%   { transform: rotateX(-90deg) translateY(-50%); opacity: 0; }
  50%  { transform: rotateX(0deg)   translateY(0);    opacity: 1; }
  100% { transform: rotateX(0deg)   translateY(0);    opacity: 1; }
}

/* ── Typewriter cursor ── */
@keyframes wbpBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Particle burst ── */
@keyframes wbpBurst {
  0%   { transform: translate(0,0) scale(1); opacity: 1; }
  100% { transform: translate(var(--bx), var(--by)) scale(0); opacity: 0; }
}

/* ── Badge live dot ── */
@keyframes wbpLiveDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.7; }
}

/* ═══════════════════════════════════════════════════════════════
   2. ANIMATIONS D'ENTRÉE — [data-anim]
   ═══════════════════════════════════════════════════════════════ */

[data-anim],
[data-reveal]:not(.revealed) {
  opacity: 0;
  will-change: opacity, transform;
  transition: none;
}

[data-anim="fade-up"]    { animation: wbpFadeUp    var(--anim-dur) var(--anim-ease) both; }
[data-anim="fade-left"]  { animation: wbpFadeLeft  var(--anim-dur) var(--anim-ease) both; }
[data-anim="fade-right"] { animation: wbpFadeRight var(--anim-dur) var(--anim-ease) both; }
[data-anim="zoom-in"]    { animation: wbpZoomIn    var(--anim-dur) var(--anim-spring) both; }
[data-anim="flip"]       { animation: wbpFlip      var(--anim-dur) var(--anim-ease) both; }
[data-anim="glow"]       { animation: wbpGlow      2s ease-in-out infinite; opacity: 1; }

/* Décalage de délai pour le stagger auto (JS injecte --delay) */
[data-anim].wbp-in,
[data-reveal].wbp-in,
[data-reveal].revealed {
  opacity: 1;
  animation-play-state: running;
}

/* Avant déclenchement — paused par défaut */
[data-anim]:not(.wbp-in) {
  animation-play-state: paused;
}

/* Délais pour grilles stagger (injectés par JS via CSS custom prop) */
[data-anim][style*="--delay"] {
  animation-delay: var(--delay, 0ms);
}

/* ═══════════════════════════════════════════════════════════════
   3. GRADIENT TEXT ANIMÉ
   ═══════════════════════════════════════════════════════════════ */

.wbp-gradient-text {
  background: linear-gradient(
    135deg,
    #fff 0%,
    var(--anim-red) 30%,
    var(--anim-orange) 55%,
    #fff 75%,
    var(--anim-red) 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wbpGradientShift 4s ease infinite;
}

/* Variante titre hero — plus lent, plus imposant */
.wbp-gradient-text-hero {
  background: linear-gradient(
    90deg,
    #fff 0%,
    var(--anim-red) 40%,
    var(--anim-orange) 60%,
    #fff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wbpGradientShift 6s ease infinite;
  display: inline-block;
}

/* ═══════════════════════════════════════════════════════════════
   4. SHIMMER TEXT — texte avec sweep lumineux
   ═══════════════════════════════════════════════════════════════ */

.wbp-shimmer {
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 35%,
    rgba(252,91,73,0.8) 45%,
    #fff 55%,
    #fff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wbpShimmer 3s linear infinite;
}

/* ═══════════════════════════════════════════════════════════════
   5. FLOAT — lévitation douce
   ═══════════════════════════════════════════════════════════════ */

.wbp-float {
  animation: wbpFloat 4s ease-in-out infinite;
  display: inline-block;
}
.wbp-float-slow {
  animation: wbpFloatSlow 7s ease-in-out infinite;
  display: inline-block;
}
.wbp-float:nth-child(2),
.wbp-float-slow:nth-child(2) { animation-delay: -2s; }
.wbp-float:nth-child(3),
.wbp-float-slow:nth-child(3) { animation-delay: -4s; }

/* ═══════════════════════════════════════════════════════════════
   6. BLOB BACKGROUND — fond orbe morphant
   ═══════════════════════════════════════════════════════════════ */

.wbp-blob-bg {
  position: relative;
  overflow: hidden;
}
.wbp-blob-bg::before,
.wbp-blob-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.18;
  animation: wbpBlob 12s ease-in-out infinite;
  z-index: 0;
}
.wbp-blob-bg::before {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, var(--anim-red), var(--anim-orange));
  top: -180px;
  right: -150px;
  animation-duration: 12s;
}
.wbp-blob-bg::after {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--anim-orange), transparent);
  bottom: -120px;
  left: -100px;
  animation-duration: 15s;
  animation-delay: -5s;
}
.wbp-blob-bg > * {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
   7. ORB DECORATIFS — sphères décoratives de fond
   ═══════════════════════════════════════════════════════════════ */

.wbp-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.wbp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: wbpFloatSlow var(--orb-dur, 10s) ease-in-out infinite;
  animation-delay: var(--orb-delay, 0s);
  opacity: var(--orb-opacity, 0.12);
}

.wbp-orb-red {
  width: 400px; height: 400px;
  background: radial-gradient(circle at 40% 40%, var(--anim-red), transparent 70%);
  --orb-dur: 9s;
  --orb-opacity: 0.14;
}
.wbp-orb-orange {
  width: 300px; height: 300px;
  background: radial-gradient(circle at 60% 60%, var(--anim-orange), transparent 70%);
  --orb-dur: 13s;
  --orb-delay: -4s;
  --orb-opacity: 0.10;
}
.wbp-orb-white {
  width: 200px; height: 200px;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.8), transparent 70%);
  --orb-dur: 7s;
  --orb-delay: -2s;
  --orb-opacity: 0.06;
}

/* ═══════════════════════════════════════════════════════════════
   8. SCAN LINE — ligne de balayage hero
   ═══════════════════════════════════════════════════════════════ */

.wbp-scan-line {
  position: relative;
  overflow: hidden;
}
.wbp-scan-line::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--anim-red), transparent);
  animation: wbpScan 4s linear infinite;
  pointer-events: none;
  z-index: 10;
}

/* ═══════════════════════════════════════════════════════════════
   9. GLOW BORDER — bordure lumineuse tournante
   ═══════════════════════════════════════════════════════════════ */

.wbp-glow-border {
  position: relative;
}
.wbp-glow-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    var(--anim-red),
    var(--anim-orange),
    transparent,
    var(--anim-red)
  );
  background-size: 300% 300%;
  animation: wbpGlowBorder 3s ease infinite;
  z-index: -1;
}
.wbp-glow-border::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  z-index: 0;
}
.wbp-glow-border > * {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
   10. ORBITAL RINGS — héritage de la sphère rouge
   ═══════════════════════════════════════════════════════════════ */

.wbp-orbital-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.wbp-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(252, 91, 73, 0.2);
}
.wbp-ring-1 {
  width: 200px; height: 200px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotateX(70deg);
  animation: wbpOrbit 8s linear infinite;
}
.wbp-ring-1::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--anim-red);
  top: -3px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 8px var(--anim-red);
}
.wbp-ring-2 {
  width: 300px; height: 300px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotateX(75deg) rotateY(20deg);
  animation: wbpOrbitReverse 14s linear infinite;
}
.wbp-ring-2::after {
  content: '';
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--anim-orange);
  bottom: -2px; right: 20%;
  box-shadow: 0 0 8px var(--anim-orange);
}
.wbp-ring-3 {
  width: 400px; height: 400px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotateX(65deg) rotateZ(45deg);
  animation: wbpOrbit 20s linear infinite reverse;
}

/* ═══════════════════════════════════════════════════════════════
   11. NOISE OVERLAY — grain cinématique
   ═══════════════════════════════════════════════════════════════ */

.wbp-noise {
  position: relative;
}
.wbp-noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  mix-blend-mode: overlay;
}
.wbp-noise > * {
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════════════
   12. TILT 3D — cartes réactives à la souris (géré en JS)
   ═══════════════════════════════════════════════════════════════ */

.wbp-tilt {
  transform-style: preserve-3d;
  transition: transform 0.12s var(--anim-ease), box-shadow 0.3s ease;
  will-change: transform;
}
.wbp-tilt:hover {
  box-shadow: 0 30px 60px rgba(0,0,0,0.35), 0 0 40px var(--anim-glow2);
}
/* Couche "shine" injectée par JS */
.wbp-tilt .wbp-tilt-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.10) 0%, transparent 60%);
  pointer-events: none;
  transition: background 0.1s;
}

/* ═══════════════════════════════════════════════════════════════
   13. RIPPLE — vague au clic sur les boutons
   ═══════════════════════════════════════════════════════════════ */

.wbp-ripple {
  position: relative;
  overflow: hidden;
}
.wbp-ripple .wbp-ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: wbpRipple 0.65s linear;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   14. MAGNETIC — attraction curseur (JS nécessaire)
   ═══════════════════════════════════════════════════════════════ */

.wbp-magnetic {
  transition: transform 0.25s var(--anim-ease);
  will-change: transform;
}

/* ═══════════════════════════════════════════════════════════════
   15. STAGGER GRID — révélation en cascade
   ═══════════════════════════════════════════════════════════════ */

.wbp-stagger-grid > * {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s var(--anim-ease), transform 0.5s var(--anim-ease);
}
.wbp-stagger-grid > *.wbp-in {
  opacity: 1;
  transform: translateY(0);
}
/* Délais en cascade pour 12 enfants */
.wbp-stagger-grid > *:nth-child(1)  { transition-delay: 0ms; }
.wbp-stagger-grid > *:nth-child(2)  { transition-delay: 80ms; }
.wbp-stagger-grid > *:nth-child(3)  { transition-delay: 160ms; }
.wbp-stagger-grid > *:nth-child(4)  { transition-delay: 240ms; }
.wbp-stagger-grid > *:nth-child(5)  { transition-delay: 320ms; }
.wbp-stagger-grid > *:nth-child(6)  { transition-delay: 400ms; }
.wbp-stagger-grid > *:nth-child(7)  { transition-delay: 480ms; }
.wbp-stagger-grid > *:nth-child(8)  { transition-delay: 560ms; }
.wbp-stagger-grid > *:nth-child(9)  { transition-delay: 640ms; }
.wbp-stagger-grid > *:nth-child(10) { transition-delay: 720ms; }
.wbp-stagger-grid > *:nth-child(11) { transition-delay: 800ms; }
.wbp-stagger-grid > *:nth-child(12) { transition-delay: 880ms; }

/* ═══════════════════════════════════════════════════════════════
   16. TYPEWRITER
   ═══════════════════════════════════════════════════════════════ */

.wbp-typewriter {
  border-right: 2px solid var(--anim-red);
  white-space: nowrap;
  overflow: hidden;
  animation: wbpBlink 0.8s step-end infinite;
  display: inline-block;
}

/* ═══════════════════════════════════════════════════════════════
   17. HERO ENHANCEMENTS — amélioration sections hero existantes
   ═══════════════════════════════════════════════════════════════ */

/* Titre hero avec gradient subtil */
.wbp-hero h1,
.elementor-widget-heading .elementor-heading-title:first-child {
  /* Appliqué dynamiquement via JS si le titre contient des mots-clés */
}

/* Flèche décorative animée */
.wbp-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.5;
  animation: wbpFloatSlow 2.5s ease-in-out infinite;
  cursor: default;
}
.wbp-scroll-hint span {
  display: block;
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, transparent, var(--anim-red));
  border-radius: 1px;
}

/* ═══════════════════════════════════════════════════════════════
   18. TECH BADGE ICONS — icônes tech flottantes
   ═══════════════════════════════════════════════════════════════ */

.wbp-tech-float {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.wbp-tech-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  animation: wbpFloat 5s ease-in-out infinite;
  backdrop-filter: blur(6px);
  transition: border-color 0.3s, background 0.3s;
}
.wbp-tech-icon:hover {
  border-color: var(--anim-red);
  background: rgba(252,91,73,0.1);
  color: #fff;
}
.wbp-tech-icon:nth-child(2) { animation-delay: -1.5s; }
.wbp-tech-icon:nth-child(3) { animation-delay: -3s; }
.wbp-tech-icon:nth-child(4) { animation-delay: -0.8s; }
.wbp-tech-icon:nth-child(5) { animation-delay: -2.2s; }

/* ═══════════════════════════════════════════════════════════════
   19. CARD HOVER PREMIUM — améliorations globales
   ═══════════════════════════════════════════════════════════════ */

.wbp-expertise-card,
.wbp-testi,
.elementor-widget-container .e-con,
[class*="wbp-card"] {
  transition: transform 0.3s var(--anim-ease), box-shadow 0.3s var(--anim-ease);
}
.wbp-expertise-card:hover,
.wbp-testi:hover,
[class*="wbp-card"]:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25), 0 0 0 1px rgba(252,91,73,0.2);
}

/* ═══════════════════════════════════════════════════════════════
   20. CURSOR GLOW — suiveur curseur rouge
   ═══════════════════════════════════════════════════════════════ */

#wbp-cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252,91,73,0.06) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: transform 0.1s linear, opacity 0.3s;
  will-change: transform;
  display: none; /* activé par JS si non-touch */
}
body.wbp-cursor-active #wbp-cursor-glow {
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   21. LIVE DOT — indicateur activité temps réel
   ═══════════════════════════════════════════════════════════════ */

.wbp-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  display: inline-block;
  animation: wbpLiveDot 1.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(46,204,113,0.5);
}
.wbp-live-dot.red {
  background: var(--anim-red);
  animation-name: wbpGlow;
  animation-duration: 1.2s;
}

/* ═══════════════════════════════════════════════════════════════
   22. COUNTER STYLE — améliorations compteurs
   ═══════════════════════════════════════════════════════════════ */

[data-count] {
  display: inline-block;
  transition: transform 0.1s;
}
[data-count].counting {
  animation: wbpPulse 0.1s ease;
}

/* ═══════════════════════════════════════════════════════════════
   23. SECTION TRANSITIONS — ligne décorative rouge entre sections
   ═══════════════════════════════════════════════════════════════ */

.wbp-section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--anim-red), transparent);
  margin: 0;
  opacity: 0.3;
  position: relative;
}
.wbp-section-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--anim-red);
  box-shadow: 0 0 12px var(--anim-red);
}

/* ═══════════════════════════════════════════════════════════════
   24. GLASS MORPHISM PREMIUM
   ═══════════════════════════════════════════════════════════════ */

.wbp-glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
  border-radius: 20px;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.wbp-glass:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(252,91,73,0.25);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(252,91,73,0.15), inset 0 1px 0 rgba(255,255,255,0.08);
}

/* ═══════════════════════════════════════════════════════════════
   25. RESPONSIVE — réduction mouvement si préférence utilisateur
   ═══════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  [data-anim],
  .wbp-float,
  .wbp-float-slow,
  .wbp-shimmer,
  .wbp-gradient-text,
  .wbp-gradient-text-hero,
  .wbp-blob-bg::before,
  .wbp-blob-bg::after,
  .wbp-scan-line::before,
  .wbp-orb,
  .wbp-ring-1,
  .wbp-ring-2,
  .wbp-ring-3,
  .wbp-live-dot {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .wbp-tilt,
  .wbp-magnetic {
    transition: none !important;
  }
  #wbp-cursor-glow {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .wbp-blob-bg::before { width: 280px; height: 280px; }
  .wbp-blob-bg::after  { width: 200px; height: 200px; }
  .wbp-orb-red  { width: 220px; height: 220px; }
  .wbp-orb-orange { width: 160px; height: 160px; }
  .wbp-ring-1 { width: 120px; height: 120px; }
  .wbp-ring-2 { width: 180px; height: 180px; }
  .wbp-ring-3 { display: none; }
  /* Désactiver tilt sur mobile */
  .wbp-tilt { transform: none !important; }
}
