/* ═══════════════════════════════════════════════
   VERYBOOST — Animations & Effets visuels
   ═══════════════════════════════════════════════ */

/* ── Particles canvas ─────────────────────────── */
#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ── Morphing blob background hero ───────────── */
.morph-blob {
  position: absolute;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphBlob 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes morphBlob {
  0%   { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  25%  { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
  50%  { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
  75%  { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
  100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

/* ── Orbiting rings (hero right side) ────────── */
.orbit-container {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.orbit-core {
  width: 140px; height: 140px;
  background: var(--rouge);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  box-shadow: 0 0 60px rgba(139,0,0,0.5), 0 0 120px rgba(139,0,0,0.2);
}
.orbit-core img {
  width: 80px;
  filter: brightness(0) invert(1);
  border-radius: 0;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(139,0,0,0.25);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.orbit-ring-1 { width: 200px; height: 200px; animation: orbitRotate 8s linear infinite; }
.orbit-ring-2 { width: 280px; height: 280px; animation: orbitRotate 14s linear infinite reverse; border-style: dashed; }
.orbit-ring-3 { width: 360px; height: 360px; animation: orbitRotate 20s linear infinite; border-color: rgba(139,0,0,0.1); }

@keyframes orbitRotate { 0%{transform:translate(-50%,-50%) rotate(0deg);} 100%{transform:translate(-50%,-50%) rotate(360deg);} }

.orbit-dot {
  position: absolute;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blanc);
  box-shadow: 0 4px 16px rgba(139,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  top: -18px; left: 50%;
  margin-left: -18px;
  z-index: 5;
}
.orbit-ring-1 .orbit-dot { width: 28px; height: 28px; top: -14px; margin-left: -14px; font-size: 13px; }
.orbit-ring-2 .orbit-dot-2 { top: auto; bottom: -18px; font-size: 15px; }

/* ── Floating chips (services section) ───────── */
.floating-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--blanc);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  position: absolute;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  white-space: nowrap;
}
.floating-chip .chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rouge);
}

/* ── Progress bar animated ────────────────────── */
.progress-bar-wrap {
  height: 6px;
  background: rgba(139,0,0,0.1);
  border-radius: var(--r-pill);
  overflow: hidden;
  margin-top: 0.75rem;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rouge-deep), var(--rouge-vif));
  border-radius: var(--r-pill);
  width: 0%;
  transition: width 1.5s var(--ease-out);
}

/* ── Count up animation ───────────────────────── */
.count-up { display: inline-block; }

/* ── Hover card tilt ──────────────────────────── */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform var(--dur-mid) var(--ease-out);
}

/* ── Gradient text animation ──────────────────── */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.gradient-text-animated {
  background: linear-gradient(270deg, var(--rouge-vif), #FF6060, var(--rouge-deep), var(--rouge-vif));
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}

/* ── Noise overlay ────────────────────────────── */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Section transition wave ──────────────────── */
.wave-separator {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}
.wave-separator svg { display: block; }

/* ── Loading screen ───────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: #FFFFFF;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo { width: 120px; animation: loaderPulse 1.5s ease-in-out infinite; filter: none; }
@keyframes loaderPulse { 0%,100%{transform:scale(1);opacity:0.7;} 50%{transform:scale(1.05);opacity:1;} }
.loader-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: var(--rouge-vif);
  border-radius: 2px;
  animation: loaderFill 1.2s var(--ease-inout) forwards;
}
@keyframes loaderFill { 0%{width:0%;} 100%{width:100%;} }

/* ── Hero logo float animation ───────────────── */
@keyframes heroLogoFloat {
  0%   { transform: translateY(0px) scale(1); filter: drop-shadow(0 8px 24px rgba(139,0,0,0.18)); }
  50%  { transform: translateY(-12px) scale(1.02); filter: drop-shadow(0 20px 40px rgba(139,0,0,0.28)); }
  100% { transform: translateY(-6px) scale(1.01); filter: drop-shadow(0 14px 32px rgba(139,0,0,0.22)); }
}

/* ── Logo pulse on orbit core ─────────────────── */
@keyframes orbitCorePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(139,0,0,0.15), 0 8px 32px rgba(139,0,0,0.12); }
  50%     { box-shadow: 0 0 0 20px rgba(139,0,0,0), 0 8px 32px rgba(139,0,0,0.12); }
}

.orbit-core {
  animation: orbitCorePulse 3s ease-in-out infinite;
}

/* ── Morphing circle behind orbit ─────────────── */
.orbit-bg-morph {
  position: absolute;
  width: 220px; height: 220px;
  background: var(--rouge-pale);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: morphBlob 10s ease-in-out infinite, orbitBgPulse 4s ease-in-out infinite alternate;
  opacity: 0.7;
}
@keyframes orbitBgPulse {
  0%   { transform: translate(-50%,-50%) scale(0.95); }
  100% { transform: translate(-50%,-50%) scale(1.08); }
}

/* ── Floating elements hero ───────────────────── */
.hero-float-card {
  position: absolute;
  background: var(--blanc);
  border-radius: var(--r-lg);
  padding: 10px 16px;
  box-shadow: 0 8px 32px rgba(139,0,0,0.12);
  font-size: 12px;
  font-weight: 600;
  color: var(--noir);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 4;
  border: 1px solid rgba(139,0,0,0.08);
}
.float-card-1 { top: 15%; right: -10px; animation: floatCard1 5s ease-in-out infinite alternate; }
.float-card-2 { bottom: 25%; left: -15px; animation: floatCard2 6s ease-in-out infinite alternate; }
.float-card-3 { top: 65%; right: -5px; animation: floatCard3 4.5s ease-in-out infinite alternate; }
@keyframes floatCard1 { 0%{transform:translateY(0) rotate(-2deg);} 100%{transform:translateY(-14px) rotate(1deg);} }
@keyframes floatCard2 { 0%{transform:translateY(0) rotate(1deg);} 100%{transform:translateY(-10px) rotate(-2deg);} }
@keyframes floatCard3 { 0%{transform:translateY(0) rotate(-1deg);} 100%{transform:translateY(-18px) rotate(2deg);} }
.float-dot { width: 8px; height: 8px; border-radius: 50%; }
.float-dot-green  { background: #22C55E; }
.float-dot-blue   { background: #3B82F6; }
.float-dot-rouge  { background: var(--rouge); }

/* ── Services section light bg ────────────────── */
#services { background: #FFFFFF; }
#about    { background: #FEF9F9; }
#offres   { background: #FFFFFF; }
#contact  { background: #FEF9F9; }

/* ══════════════════════════════════════════════
   GLOBE 3D CSS — Logo central avec orbites
   ══════════════════════════════════════════════ */

.logo-globe-wrap {
  position: relative;
  width: 570px;
  height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  flex-shrink: 0;
}

/* Halos lumineux derrière le logo */
.globe-halo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,0,0,0.08) 0%, transparent 70%);
  animation: globeHaloPulse 3s ease-in-out infinite alternate;
}
.globe-halo-2 {
  width: 470px; height: 470px;
  background: radial-gradient(circle, rgba(139,0,0,0.04) 0%, transparent 70%);
  animation: globeHaloPulse 4.5s ease-in-out infinite alternate;
  animation-delay: 0.5s;
}
@keyframes globeHaloPulse {
  0%   { transform: translate(-50%,-50%) scale(0.9); opacity: 0.6; }
  100% { transform: translate(-50%,-50%) scale(1.1); opacity: 1; }
}

/* Logo central */
.globe-logo-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  width: 220px; height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 12px rgba(139,0,0,0.04),
    0 0 0 24px rgba(139,0,0,0.025),
    0 8px 40px rgba(139,0,0,0.15);
  animation: globeLogoPulse 4s ease-in-out infinite alternate;
}
@keyframes globeLogoPulse {
  0%   { box-shadow: 0 0 0 12px rgba(139,0,0,0.04), 0 0 0 24px rgba(139,0,0,0.025), 0 8px 40px rgba(139,0,0,0.12); }
  100% { box-shadow: 0 0 0 18px rgba(139,0,0,0.07), 0 0 0 36px rgba(139,0,0,0.03), 0 8px 60px rgba(139,0,0,0.22); }
}

.globe-logo-img {
  width: 192px;
  height: auto;
  display: block;
  animation: heroLogoFloat 5s ease-in-out infinite alternate;
}

/* Scène 3D perspective */
/* Scène 3D — perspective forte pour beau relief */
.globe-scene {
  position: absolute;
  inset: 0;
  perspective: 1100px;
  perspective-origin: 50% 45%;
  transform-style: preserve-3d;
}

/* ── Base orbite ─────────────────────────────── */
.g-orbit {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1.5px solid rgba(139,0,0,0.22);
  transform-style: preserve-3d;
}

/*
  Orbites +10% vs v6 et angles réduits (50°-62°) pour meilleure lisibilité
  Chaque orbite tourne autour de son propre axe Z dans un plan incliné
*/

/* Orbite 1 — inclinée 52° (quasi équatoriale, bien visible) */
.g-orbit-equator {
  width: 502px; height: 502px;
  animation: orbitSpin1 10s linear infinite;
  border-color: rgba(139,0,0,0.25);
}
@keyframes orbitSpin1 {
  from { transform: translate(-50%,-50%) rotateX(52deg) rotateZ(0deg); }
  to   { transform: translate(-50%,-50%) rotateX(52deg) rotateZ(360deg); }
}

/* Orbite 2 — inclinée 38° dans un autre plan */
.g-orbit-tilted-1 {
  width: 422px; height: 422px;
  animation: orbitSpin2 14s linear infinite reverse;
  border-color: rgba(139,0,0,0.18);
}
@keyframes orbitSpin2 {
  from { transform: translate(-50%,-50%) rotateX(38deg) rotateZ(55deg); }
  to   { transform: translate(-50%,-50%) rotateX(38deg) rotateZ(415deg); }
}

/* Orbite 3 — inclinée 62°, plan perpendiculaire */
.g-orbit-tilted-2 {
  width: 370px; height: 370px;
  animation: orbitSpin3 17s linear infinite;
  border-color: rgba(139,0,0,0.14);
}
@keyframes orbitSpin3 {
  from { transform: translate(-50%,-50%) rotateX(62deg) rotateZ(-30deg); }
  to   { transform: translate(-50%,-50%) rotateX(62deg) rotateZ(330deg); }
}

/* Orbite 4 — presque verticale mais lisible (70°) */
.g-orbit-vertical {
  width: 449px; height: 449px;
  animation: orbitSpin4 12s linear infinite reverse;
  border-color: rgba(139,0,0,0.16);
}
@keyframes orbitSpin4 {
  from { transform: translate(-50%,-50%) rotateX(70deg) rotateZ(25deg); }
  to   { transform: translate(-50%,-50%) rotateX(70deg) rotateZ(385deg); }
}

/* Orbite 5 — grande orbite externe, inclinaison modérée 45° */
.g-orbit-tilted-3 {
  width: 558px; height: 558px;
  animation: orbitSpin5 20s linear infinite;
  border-color: rgba(139,0,0,0.10);
  border-style: dashed;
}
@keyframes orbitSpin5 {
  from { transform: translate(-50%,-50%) rotateX(45deg) rotateZ(100deg); }
  to   { transform: translate(-50%,-50%) rotateX(45deg) rotateZ(460deg); }
}

/* ── Planètes ─────────────────────────────────
   Positionnées en haut de chaque orbite.
   La contre-rotation annule l'inclinaison de l'orbite
   pour que chaque sphère reste FACE à l'observateur.
*/
.g-planet {
  position: absolute;
  top: -34px; left: 50%;
  margin-left: -34px;
  width: 68px; height: 68px;
  z-index: 20;
  transform-style: preserve-3d;
}

/* Contre-rotations : chaque planète annule l'angle de son orbite
   et garde sa face tournée vers la caméra pendant tout le tour */
.g-planet-1 .g-planet-3d {
  animation: faceCamera1 10s linear infinite;
}
.g-planet-2 .g-planet-3d {
  animation: faceCamera2 14s linear infinite reverse;
}
.g-planet-3 .g-planet-3d {
  animation: faceCamera3 17s linear infinite;
}
.g-planet-4 .g-planet-3d {
  animation: faceCamera4 12s linear infinite reverse;
}
.g-planet-5 .g-planet-3d {
  animation: faceCamera5 20s linear infinite;
}

/* Chaque keyframe : annule rotateX de l'orbite (inverse) + tourne en Z */
@keyframes faceCamera1 {
  from { transform: rotateX(-52deg) rotateZ(0deg);   }
  to   { transform: rotateX(-52deg) rotateZ(-360deg); }
}
@keyframes faceCamera2 {
  from { transform: rotateZ(-55deg) rotateX(-38deg) rotateZ(0deg);   }
  to   { transform: rotateZ(-55deg) rotateX(-38deg) rotateZ(360deg); }
}
@keyframes faceCamera3 {
  from { transform: rotateZ(30deg) rotateX(-62deg) rotateZ(0deg);    }
  to   { transform: rotateZ(30deg) rotateX(-62deg) rotateZ(-360deg); }
}
@keyframes faceCamera4 {
  from { transform: rotateZ(-25deg) rotateX(-70deg) rotateZ(0deg);   }
  to   { transform: rotateZ(-25deg) rotateX(-70deg) rotateZ(360deg); }
}
@keyframes faceCamera5 {
  from { transform: rotateZ(-100deg) rotateX(-45deg) rotateZ(0deg);  }
  to   { transform: rotateZ(-100deg) rotateX(-45deg) rotateZ(-360deg); }
}

/* Floating info cards */
.hero-float-card {
  position: absolute;
  background: #FFFFFF;
  border-radius: var(--r-lg);
  padding: 8px 14px;
  box-shadow: 0 6px 24px rgba(139,0,0,0.12);
  font-size: 11px;
  font-weight: 600;
  color: var(--noir);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 30;
  border: 1px solid rgba(139,0,0,0.08);
}
.float-card-1 { top: 8%; right: -20px; animation: floatCard1 5s ease-in-out infinite alternate; }
.float-card-2 { bottom: 22%; left: -25px; animation: floatCard2 6.5s ease-in-out infinite alternate; }
.float-card-3 { bottom: 8%; right: -10px; animation: floatCard3 4.5s ease-in-out infinite alternate; }
@keyframes floatCard1 { 0%{transform:translateY(0) rotate(-1deg);} 100%{transform:translateY(-12px) rotate(1deg);} }
@keyframes floatCard2 { 0%{transform:translateY(0) rotate(1deg);} 100%{transform:translateY(-10px) rotate(-1deg);} }
@keyframes floatCard3 { 0%{transform:translateY(0) rotate(-2deg);} 100%{transform:translateY(-15px) rotate(1deg);} }
.float-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.float-dot-green  { background: #22C55E; }
.float-dot-blue   { background: #3B82F6; }
.float-dot-rouge  { background: var(--rouge); }

/* ══════════════════════════════════════════════
   SECTION PRESSE
   ══════════════════════════════════════════════ */

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.press-card {
  background: #FFFFFF;
  border-radius: var(--r-xl);
  padding: 2rem;
  border: 1px solid rgba(139,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--dur-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.press-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rouge-deep), var(--rouge-vif));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-mid) var(--ease-out);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.press-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.press-card:hover::before { transform: scaleX(1); }

.press-card-featured {
  background: var(--rouge);
  border-color: var(--rouge);
  color: var(--blanc);
}
.press-card-featured::before { background: rgba(255,255,255,0.3); }
.press-card-featured .press-title { color: var(--blanc); }
.press-card-featured .press-excerpt { color: rgba(255,255,255,0.8); }
.press-card-featured .press-source-name { color: rgba(255,255,255,0.9); }
.press-card-featured .press-date { color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.15); }
.press-card-featured .press-quote-author { color: rgba(255,255,255,0.6); }

.press-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.press-source-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}
.press-source-icon { font-size: 18px; }
.press-source-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--rouge);
  letter-spacing: 0.05em;
}

.press-date {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gris-50);
  background: var(--rouge-pale);
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

.press-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--noir);
  line-height: 1.35;
}

.press-excerpt {
  font-size: 0.82rem;
  color: var(--gris-50);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.press-quote-author {
  font-size: 11px;
  font-weight: 600;
  color: var(--rouge);
  letter-spacing: 0.05em;
}

.press-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rouge);
  padding: 6px 0;
  border-bottom: 1px solid rgba(139,0,0,0.2);
  transition: all var(--dur-fast);
  width: fit-content;
}
.press-link:hover {
  border-color: var(--rouge);
  gap: 10px;
}

.press-award-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.2);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  width: fit-content;
}

/* Grande citation */
.press-big-quote {
  background: var(--blanc);
  border-radius: var(--r-xl);
  padding: 3rem;
  position: relative;
  border: 1px solid rgba(139,0,0,0.08);
  margin-top: 1rem;
}
.press-quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.5;
  color: rgba(139,0,0,0.08);
  position: absolute;
  top: 2rem; left: 2rem;
}
.press-big-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--noir);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.press-big-cite {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-top: 1.5rem;
}

/* Presse responsive */
@media (max-width: 1024px) {
  .press-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .press-grid { grid-template-columns: 1fr; }
  .logo-globe-wrap { width: 320px; height: 320px; }
  .globe-logo-center { width: 150px; height: 150px; }
  .globe-logo-img { width: 120px; }
  .g-orbit-equator { width: 330px; height: 330px; }
  .g-orbit-tilted-1 { width: 286px; height: 286px; }
  .g-orbit-tilted-2 { width: 242px; height: 242px; }
  .g-orbit-vertical { width: 308px; height: 308px; }
  .g-orbit-tilted-3 { width: 374px; height: 374px; }
}

/* ══════════════════════════════════════════════
   IMAGE CYRIL — Hero sticky
   ══════════════════════════════════════════════ */

.hero-cyril-wrap {
  position: relative;
  flex-shrink: 0;
}

.hero-cyril-img-wrap {
  position: relative;
  width: 240px;
}

.hero-cyril-img {
  width: 240px;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  border-radius: 120px 120px 60px 60px;
  display: block;
  /* Fond damier invisible sur fond blanc */
  mix-blend-mode: multiply;
  /* Pas d'animation — reste stable */
}

.hero-cyril-badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rouge);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 20px rgba(139,0,0,0.15);
  border: 1px solid rgba(139,0,0,0.1);
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .hero-cyril-wrap { display: none; }
}

/* ══════════════════════════════════════════════
   PLANÈTES 3D CSS — Globe orbital
   ══════════════════════════════════════════════ */

/* Conteneur planète */
.g-planet-3d {
  width: 68px; height: 68px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  /* Effet sphère 3D via box-shadow interne */
  box-shadow:
    inset -6px -6px 14px rgba(0,0,0,0.3),
    inset 4px 4px 10px rgba(255,255,255,0.25),
    0 6px 20px rgba(0,0,0,0.18);
}

.g-planet-face {
  display: flex;
  align-items: center;
  justify-content: center;
}

.g-planet-label {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  font-family: var(--font-body);
  line-height: 1;
}

/* Couleurs charte graphique : bordeaux, rouge, rose bordeaux */
.g-planet-3d-ia {
  background: radial-gradient(circle at 35% 35%, #C0102A, #6B0000 70%);
}
.g-planet-3d-saas {
  background: radial-gradient(circle at 35% 35%, #8B0000, #4A0000 70%);
}
.g-planet-3d-web {
  background: radial-gradient(circle at 35% 35%, #A50010, #5A0000 70%);
}
.g-planet-3d-mobile {
  background: radial-gradient(circle at 35% 35%, #D04060, #7A0020 70%);
}
.g-planet-3d-reg {
  background: radial-gradient(circle at 35% 35%, #722030, #3A0010 70%);
}

/* Mise à jour couleurs des floating dots — charte bordeaux uniquement */
.float-dot-rouge        { background: var(--rouge); }
.float-dot-bordeaux     { background: var(--rouge-deep); }
.float-dot-rouge-pale   { background: #C87090; }


/* Counter-rotate des planètes pour rester lisibles */
.g-planet-1 .g-planet-3d { animation: counterRotate 9s linear infinite; }
.g-planet-2 .g-planet-3d { animation: counterRotateT1 12s linear infinite reverse; }
.g-planet-3 .g-planet-3d { animation: counterRotateT2 15s linear infinite; }
.g-planet-4 .g-planet-3d { animation: counterRotateV 11s linear infinite reverse; }
.g-planet-5 .g-planet-3d { animation: counterRotateT3 18s linear infinite; }

@keyframes counterRotate  { from{transform:rotateX(-75deg) rotateZ(0)} to{transform:rotateX(-75deg) rotateZ(-360deg)} }
@keyframes counterRotateT1{ from{transform:rotateZ(-60deg) rotateX(-55deg) rotateZ(0)} to{transform:rotateZ(-60deg) rotateX(-55deg) rotateZ(360deg)} }
@keyframes counterRotateT2{ from{transform:rotateZ(45deg) rotateX(-65deg) rotateZ(0)} to{transform:rotateZ(45deg) rotateX(-65deg) rotateZ(-360deg)} }
@keyframes counterRotateV { from{transform:rotateZ(-30deg) rotateX(-85deg) rotateZ(0)} to{transform:rotateZ(-30deg) rotateX(-85deg) rotateZ(360deg)} }
@keyframes counterRotateT3{ from{transform:rotateZ(-110deg) rotateX(-60deg) rotateZ(0)} to{transform:rotateZ(-110deg) rotateX(-60deg) rotateZ(-360deg)} }

/* ══════════════════════════════════════════════
   PLANÈTES 3D CSS — Globe orbital
   ══════════════════════════════════════════════ */

/* Conteneur planète */
.g-planet-3d {
  width: 68px; height: 68px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  /* Effet sphère 3D via box-shadow interne */
  box-shadow:
    inset -6px -6px 14px rgba(0,0,0,0.3),
    inset 4px 4px 10px rgba(255,255,255,0.25),
    0 6px 20px rgba(0,0,0,0.18);
}

.g-planet-face {
  display: flex;
  align-items: center;
  justify-content: center;
}

.g-planet-label {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  font-family: var(--font-body);
  line-height: 1;
}

/* Couleurs charte graphique : bordeaux, rouge, rose bordeaux */
.g-planet-3d-ia {
  background: radial-gradient(circle at 35% 35%, #C0102A, #6B0000 70%);
}
.g-planet-3d-saas {
  background: radial-gradient(circle at 35% 35%, #8B0000, #4A0000 70%);
}
.g-planet-3d-web {
  background: radial-gradient(circle at 35% 35%, #A50010, #5A0000 70%);
}
.g-planet-3d-mobile {
  background: radial-gradient(circle at 35% 35%, #D04060, #7A0020 70%);
}
.g-planet-3d-reg {
  background: radial-gradient(circle at 35% 35%, #722030, #3A0010 70%);
}

/* Mise à jour couleurs des floating dots — charte bordeaux uniquement */
.float-dot-rouge        { background: var(--rouge); }
.float-dot-bordeaux     { background: var(--rouge-deep); }
.float-dot-rouge-pale   { background: #C87090; }


/* Counter-rotate des planètes pour rester lisibles */
.g-planet-1 .g-planet-3d { animation: counterRotate 9s linear infinite; }
.g-planet-2 .g-planet-3d { animation: counterRotateT1 12s linear infinite reverse; }
.g-planet-3 .g-planet-3d { animation: counterRotateT2 15s linear infinite; }
.g-planet-4 .g-planet-3d { animation: counterRotateV 11s linear infinite reverse; }
.g-planet-5 .g-planet-3d { animation: counterRotateT3 18s linear infinite; }

@keyframes counterRotate  { from{transform:rotateX(-75deg) rotateZ(0)} to{transform:rotateX(-75deg) rotateZ(-360deg)} }
@keyframes counterRotateT1{ from{transform:rotateZ(-60deg) rotateX(-55deg) rotateZ(0)} to{transform:rotateZ(-60deg) rotateX(-55deg) rotateZ(360deg)} }
@keyframes counterRotateT2{ from{transform:rotateZ(45deg) rotateX(-65deg) rotateZ(0)} to{transform:rotateZ(45deg) rotateX(-65deg) rotateZ(-360deg)} }
@keyframes counterRotateV { from{transform:rotateZ(-30deg) rotateX(-85deg) rotateZ(0)} to{transform:rotateZ(-30deg) rotateX(-85deg) rotateZ(360deg)} }
@keyframes counterRotateT3{ from{transform:rotateZ(-110deg) rotateX(-60deg) rotateZ(0)} to{transform:rotateZ(-110deg) rotateX(-60deg) rotateZ(-360deg)} }

/* ══════════════════════════════════════════════
   HERO WOMAN ILLUSTRATION
   ══════════════════════════════════════════════ */

.hero-woman-wrap {
  position: relative;
  align-self: flex-end;
  flex-shrink: 0;
}

.hero-woman-inner {
  position: relative;
  width: 260px;
}

.hero-woman-img {
  width: 260px;
  height: auto;
  display: block;
  /* pas d'animation de scroll - reste stable */
  filter: drop-shadow(0 20px 40px rgba(139,0,0,0.15));
  animation: womanBreathe 6s ease-in-out infinite alternate;
}

@keyframes womanBreathe {
  0%   { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

.hero-woman-badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: #8B0000;
  color: white;
  border-radius: var(--r-pill);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 20px rgba(139,0,0,0.3);
  white-space: nowrap;
  animation: womanBadgeFloat 4s ease-in-out infinite alternate;
}

@keyframes womanBadgeFloat {
  0%   { transform: translateY(0) rotate(-1deg); }
  100% { transform: translateY(-6px) rotate(1deg); }
}

@media (max-width: 1100px) {
  .hero-woman-wrap { display: none; }
}
