/* =========================================
   HERO MÉDIAS & PLATEFORMES — aligné comme HERO ACCUEIL
   (on garde couleurs + image, on corrige alignements / responsive / typo)
   ========================================= */

.mp-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg,  var(--primary) 0%, #137CB4 100%);
}

/* --- IMAGE DE FOND DROITE --- */
.mp-hero-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=compress&cs=tinysrgb&fit=crop&w=1400&h=1600');
  background-size: cover;
  background-position: center;
  opacity: 0.95;
  z-index: 1;
  pointer-events: none;

  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 100%);
}

/* --- Effet de sol (glow en bas) --- */
.mp-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20vh;
  background: linear-gradient(to top, rgba(15, 35, 65, 0.4), transparent);
  z-index: 2;
  pointer-events: none;
}

/* === INNER : même logique que la home === */
.mp-hero .mp-hero-inner {
  position: relative;
  z-index: 4;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: calc(var(--pw-header-h, 92px) + 40px);
  padding-bottom: 60px;
}

.mp-hero .mp-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  max-width: 650px;
  padding-left: 0; /* important : pas de décalage */
}

.mp-hero .mp-hero-content h1 {
  color: var(--white);
  font-size: clamp(40px, 3.6vw, 64px);
  line-height: 1.12;
  letter-spacing: -2px;
  font-weight: 800;
  max-width: 620px;
}

.mp-hero .mp-hero-content p {
  max-width: 600px;
  margin-top: 40px;
  color: var(--white);
  font-size: clamp(16px, 1.05vw, 19px);
  line-height: 1.5;
  font-weight: 500;
}

.mp-hero .mp-hero-actions {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Boutons (comme home) */
.mp-hero .mp-btn {
  height: 62px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.mp-hero .mp-btn:hover {
  transform: translateY(-3px);
}

.mp-hero .mp-btn-light {
  min-width: 260px;
  background: var(--white);
  color: var(--primary);
}

.mp-hero .mp-btn-light:hover {
  color: var(--secondary);
}

/* PARTICLES */
.mp-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.mp-dot {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: var(--white);
  opacity: 0.65;
  animation-name: mpFloat;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes mpFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(var(--move-x), var(--move-y), 0); }
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1100px) {
  .mp-hero .mp-hero-bg-image {
    width: 100%;
    height: 100%;
    opacity: 0.4;
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  }

  .mp-hero .mp-hero-inner {
    justify-content: flex-start;
    padding-top: calc(var(--pw-header-h, 88px) + 32px);
    padding-bottom: 50px;
    text-align: left;
  }

  .mp-hero .mp-hero-content {
    width: 100%;
    max-width: 560px;
    align-items: flex-start;
    margin: 0;
  }

  .mp-hero .mp-hero-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    max-width: 100%;
    letter-spacing: -1.5px;
  }

  .mp-hero .mp-hero-content p {
    margin-top: 24px;
    max-width: 100%;
    text-align: justify;
    font-size: clamp(15px, 2vw, 18px);
  }

  .mp-hero .mp-hero-actions {
    margin-top: 32px;
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 580px) {
  .mp-hero .mp-hero-inner {
    padding-top: calc(var(--pw-header-h, 88px) + 24px);
    padding-bottom: 40px;
  }

  .mp-hero .mp-hero-content h1 {
    font-size: clamp(28px, 8vw, 40px);
    letter-spacing: -1px;
  }

  .mp-hero .mp-hero-content p {
    margin-top: 20px;
    font-size: 15px;
  }

  .mp-hero .mp-hero-actions {
    margin-top: 28px;
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .mp-hero .mp-btn {
    width: 100%;
    min-width: 0;
    height: 54px;
    font-size: 15px;
  }
}

@media (max-width: 380px) {
  .mp-hero .mp-hero-inner {
    padding-top: calc(var(--pw-header-h, 88px) + 20px);
  }

  .mp-hero .mp-hero-content h1 {
    font-size: 26px;
  }
}













































/* =========================================
   ENJEUX DES PLATEFORMES — MÉDIAS
   ========================================= */

.mp-enjeux {
  padding: 110px 0 120px;
  background: #f0f4f8;
}

.mp-enjeux-title {
  text-align: center;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 800;
  color: #0F2341;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.mp-enjeux-highlight {
  color: var(--primary);
}

/* GRILLE 3 colonnes */
.mp-enjeux-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* CARTE */
.mp-enjeux-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px 38px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(15, 35, 65, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mp-enjeux-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 35, 65, 0.1);
}

/* Icône principale + badge check */
.mp-enjeux-icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
}

.mp-enjeux-icon-main {
  font-size: 52px;
  color: #cbd5e1;
  line-height: 1;
  display: block;
}

.mp-enjeux-icon-check {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 174, 239, 0.4);
}

.mp-enjeux-icon-check i {
  font-size: 12px;
  color: var(--white);
  font-weight: 700;
}

/* Label */
.mp-enjeux-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: block;
}

/* Titre carte */
.mp-enjeux-card h3 {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 800;
  color: #0F2341;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin-bottom: 16px;
}

/* Description */
.mp-enjeux-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  font-weight: 500;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .mp-enjeux-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    gap: 22px;
  }

  .mp-enjeux-card {
    padding: 32px 28px 30px;
  }
}

@media (max-width: 768px) {
  .mp-enjeux {
    padding: 80px 0 90px;
  }

  .mp-enjeux-title {
    margin-bottom: 44px;
  }
}








































/* =========================================
   TYPES DE CONTENUS GÉRÉS — DARK MODE
   ========================================= */

.mp-contenus {
  padding: 120px 0;
  background: #0F2341;
  color: var(--white);
}

.mp-contenus-title {
  text-align: center;
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 70px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.mp-contenus-highlight {
  color: var(--tertiary);
}

/* GRILLE */
.mp-contenus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* CARTE */
.mp-contenus-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px 32px 32px;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.mp-contenus-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

/* Icône */
.mp-contenus-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.mp-contenus-icon i {
  font-size: 24px;
  color: var(--white);
}

/* Numéro */
.mp-contenus-number {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 42px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
}

/* Titre carte */
.mp-contenus-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  line-height: 1.3;
  margin-bottom: 12px;
}

/* Description */
.mp-contenus-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
  min-height: 44px;
}

/* Stats / Tags */
.mp-contenus-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mp-contenus-stat-item {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mp-contenus-stat-item i {
  color: var(--tertiary);
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .mp-contenus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mp-contenus {
    padding: 80px 0;
  }

  .mp-contenus-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .mp-contenus-title {
    margin-bottom: 50px;
  }
}










































/* =========================================
   SECTION CONFIDENTIALITÉ & BIEN-ÊTRE MODÉRATEURS
   ========================================= */

.mp-bienetre {
  background: var(--white);
  position: relative;
}

.mp-bienetre-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  max-width: 1440px;
  margin: 0 auto;
  align-items: stretch;
}

/* --- COLONNE TEXTE --- */

.mp-bienetre-text {
  padding: 100px 10% 120px 60px;
}

.mp-bienetre-text h2 {
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 800;
  color: #0F2341;
  line-height: 1.05;
  margin-bottom: 35px;
  letter-spacing: -1.5px;
}

.mp-bienetre-lead {
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
  text-align: justify;
  color: #4b5563;
  margin-bottom: 24px;
}

.mp-bienetre-intro {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9ca3af;
  margin-bottom: 60px;
}

.mp-bienetre-block {
  margin-bottom: 64px;
  max-width: 620px;
}

.mp-bienetre-block:last-child {
  margin-bottom: 0;
}

.mp-bienetre-block h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0F2341;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.mp-bienetre-block p {
  font-size: 17.5px;
  text-align: justify;
  line-height: 1.75;
  color: #4b5563;
}

.mp-bienetre-highlight {
  color: var(--primary);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.mp-bienetre-highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(0, 174, 239, 0.08);
  z-index: -1;
}

/* --- COLONNE VISUEL STICKY --- */

.mp-bienetre-visual {
  position: relative;
}

.mp-sticky-art {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
}

/* Backdrop avec image */
.mp-art-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.mp-art-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: grayscale(100%) contrast(120%);
}

.mp-art-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.25) 0%, rgba(28, 109, 208, 0.35) 100%);
}

/* Sphères artistiques */
.mp-art-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 2;
  mix-blend-mode: multiply;
}

.sphere-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--primary) 0%, var(--secondary) 100%);
  top: 15%;
  right: -80px;
  opacity: 0.35;
}

.sphere-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--tertiary) 0%, #ffbb70 100%);
  bottom: 10%;
  left: -40px;
  opacity: 0.25;
}

/* Ligne ondulée signature */
.mp-art-line {
  position: absolute;
  left: 20%;
  top: 0;
  height: 100%;
  width: 120px;
  z-index: 3;
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .mp-bienetre-container {
    grid-template-columns: 1fr;
  }
  
  .mp-bienetre-text {
    padding: 80px 40px;
  }
  
  .mp-bienetre-visual {
    height: 500px;
  }
  
  .mp-sticky-art {
    position: relative;
    height: 100%;
  }
}

@media (max-width: 640px) {
  .mp-bienetre-text {
    padding: 60px 24px;
  }
  
  .mp-bienetre-text h2 {
    font-size: 34px;
  }
  
  .mp-bienetre-lead {
    font-size: 19px;
  }
  
  .sphere-1, .sphere-2 {
    width: 280px;
    height: 280px;
  }
}