/* =========================================
   HERO RÉDACTION WEB & MESSAGERIE
   — CALQUÉ SUR HERO ACCUEIL
   ========================================= */

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

/* --- IMAGE DE FOND DROITE --- */
.pw-hero-services .pw-hero-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  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) --- */
.pw-hero-services::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 --- */
.pw-hero-services .pw-hero-services-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;
}

/* --- Content --- */
.pw-hero-services .pw-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;
}

/* --- H1 --- */
.pw-hero-services .pw-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;
  margin: 0;
}

/* --- Paragraphe --- */
.pw-hero-services .pw-hero-content p {
  max-width: 600px;
  margin-top: 40px;
  margin-bottom: 0;
  text-align: justify;
  color: var(--white);
  font-size: clamp(16px, 1.05vw, 19px);
  line-height: 1.5;
  font-weight: 500;
}

/* --- Actions --- */
.pw-hero-services .pw-hero-actions {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* --- Boutons --- */
.pw-hero-services .pw-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;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

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

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

.pw-hero-services .pw-btn-outline {
  min-width: 240px;
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.pw-hero-services .pw-btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

/* --- Particules --- */
.pw-hero-services .pw-particles-services {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

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

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

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

@media (max-width: 1100px) {
  .pw-hero-services .pw-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%);
  }

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

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

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

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

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

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

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

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

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

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

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

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

















/* =========================================================
   TITRE SECTION
   ========================================================= */

.activities-section-header {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 24px 40px;
  font-family: "Gevora Regular", 'Poppins', sans-serif;
}

.activities-tag {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(240, 128, 32, 0.10);
  color: #F08020;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 18px;
}

.activities-title {
  margin: 0;
  color: #0F2341;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.activities-subtitle {
  margin: 18px 0 0;
  max-width: 640px;
  color: rgba(15, 35, 65, 0.70);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
}

.activities-underline {
  width: 70px;
  height: 4px;
  margin-top: 22px;
  border-radius: 2px;
  background: linear-gradient(90deg, #F08020, #137CB4);
}

/* =========================================================
   GRILLE WRAPPER
   ========================================================= */

.activities-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  font-family: "Gevora Regular", 'Poppins', sans-serif;
}

.activities-grid-wrapper .msg-section {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: 620px;
}

.activity-block {
  background: #ffffff;
  padding: 40px 0;
  overflow: hidden;
}

/* =========================================================
   BLOC 1 — RÉDACTION WEB SEO (ORANGE)
   ========================================================= */

.redac-container {
  position: relative;
  max-width: 560px;
  height: 400px;
  margin: 0 auto;
}

.redac-hub {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 6;
}

.redac-hub-rings {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.redac-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 38%,
    rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.75) 40%, rgba(255,255,255,0.25) 72%);
  border: 1px solid rgba(240,128,32,0.10);
  box-shadow: 0 12px 36px rgba(15,35,65,0.05), inset 0 1px 2px rgba(255,255,255,0.80);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.redac-ring-3 { width: 130px; height: 130px; }
.redac-ring-2 { width: 107px; height: 107px; }
.redac-ring-1 { width: 86px;  height: 86px; }

.redac-hub-circle {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(240,128,32,0.22);
  box-shadow: 0 8px 28px rgba(240,128,32,0.12), inset 0 0 0 5px rgba(255,255,255,0.55);
  z-index: 7;
}

.redac-hub-icon { width: 30px; height: 30px; }

.redac-hub-label {
  position: relative;
  margin-top: 12px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(240,128,32,0.12);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #0F2341;
  white-space: nowrap;
  z-index: 8;
}

.redac-connector-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.redac-line {
  position: absolute;
  border-radius: 999px;
  opacity: 0.92;
}

.redac-line-trunk {
  left: 50%;
  transform: translateX(-50%);
  top: 65px;
  height: 135px;
  width: 2px;
  background: #F08020;
  box-shadow: 0 0 10px rgba(240,128,32,0.40);
}

.redac-line-trunk::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #F08020;
  box-shadow: 0 0 14px rgba(240,128,32,0.50);
}

.redac-line-bus {
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 2px;
  background: #F08020;
  box-shadow: 0 0 10px rgba(240,128,32,0.40);
}

.redac-line-drop {
  top: 200px;
  width: 2px;
  height: 45px;
  background: #F08020;
  box-shadow: 0 0 10px rgba(240,128,32,0.40);
  border-radius: 999px;
}

.redac-line-drop::before,
.redac-line-drop::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #F08020;
  box-shadow: 0 0 14px rgba(240,128,32,0.50);
}

.redac-line-drop::before { top: -4px; }
.redac-line-drop::after  { bottom: -4px; }

.redac-drop-1 { left: 50%; transform: translateX(calc(-50% - 170px)); }
.redac-drop-2 { left: 50%; transform: translateX(-50%); }
.redac-drop-3 { left: 50%; transform: translateX(calc(-50% + 170px)); }

.redac-badges-row {
  position: absolute;
  top: 245px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 50px;
  z-index: 4;
}

.redac-badge {
  position: relative;
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.redac-badge-rings {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.redac-ring-b3 { width: 96px; height: 96px; }
.redac-ring-b2 { width: 79px; height: 79px; }
.redac-ring-b1 { width: 64px; height: 64px; }

.redac-badge-circle {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(240,128,32,0.22);
  box-shadow: 0 8px 28px rgba(240,128,32,0.10), inset 0 0 0 5px rgba(255,255,255,0.55);
  z-index: 6;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.redac-badge:hover .redac-badge-circle {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(240,128,32,0.18), 0 0 20px rgba(240,128,32,0.22);
}

.redac-badge-icon  { width: 22px; height: 22px; }

.redac-badge-label {
  position: relative;
  z-index: 7;
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #0F2341;
  line-height: 1.4;
  max-width: 120px;
}

/* =========================================================
   BLOC 2 — CONTENU E-COMMERCE (BLEU)
   ========================================================= */

.ecom-container {
  position: relative;
  max-width: 560px;
  height: 400px;
  margin: 0 auto;
}

.ecom-hub {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 6;
}

.ecom-hub-rings {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ecom-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 38%,
    rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.75) 40%, rgba(255,255,255,0.25) 72%);
  border: 1px solid rgba(28,109,208,0.10);
  box-shadow: 0 12px 36px rgba(15,35,65,0.05), inset 0 1px 2px rgba(255,255,255,0.80);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ecom-ring-3 { width: 130px; height: 130px; }
.ecom-ring-2 { width: 107px; height: 107px; }
.ecom-ring-1 { width: 86px;  height: 86px; }

.ecom-hub-circle {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(28,109,208,0.22);
  box-shadow: 0 8px 28px rgba(28,109,208,0.12), inset 0 0 0 5px rgba(255,255,255,0.55);
  z-index: 7;
}

.ecom-hub-icon { width: 30px; height: 30px; }

.ecom-hub-label {
  position: relative;
  margin-top: 12px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(28,109,208,0.12);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #0F2341;
  white-space: nowrap;
  z-index: 8;
}

.ecom-connector-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.ecom-line {
  position: absolute;
  border-radius: 999px;
  opacity: 0.92;
}

.ecom-line-trunk {
  left: 50%;
  transform: translateX(-50%);
  top: 65px;
  height: 135px;
  width: 2px;
  background: linear-gradient(180deg, #137CB4, #1C6DD0);
  box-shadow: 0 0 10px rgba(28,109,208,0.40);
}

.ecom-line-trunk::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1C6DD0;
  box-shadow: 0 0 14px rgba(28,109,208,0.50);
}

.ecom-line-bus {
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 2px;
  background: linear-gradient(90deg, #137CB4, #1C6DD0, #137CB4);
  box-shadow: 0 0 10px rgba(28,109,208,0.40);
}

.ecom-line-drop {
  top: 200px;
  width: 2px;
  height: 45px;
  background: linear-gradient(180deg, #137CB4, #1C6DD0);
  box-shadow: 0 0 10px rgba(28,109,208,0.40);
  border-radius: 999px;
}

.ecom-line-drop::before,
.ecom-line-drop::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1C6DD0;
  box-shadow: 0 0 14px rgba(28,109,208,0.50);
}

.ecom-line-drop::before { top: -4px; }
.ecom-line-drop::after  { bottom: -4px; }

.ecom-drop-1 { left: 50%; transform: translateX(calc(-50% - 170px)); }
.ecom-drop-2 { left: 50%; transform: translateX(-50%); }
.ecom-drop-3 { left: 50%; transform: translateX(calc(-50% + 170px)); }

.ecom-badges-row {
  position: absolute;
  top: 245px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 50px;
  z-index: 4;
}

.ecom-badge {
  position: relative;
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.ecom-badge-rings {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ecom-ring-b3 { width: 96px; height: 96px; }
.ecom-ring-b2 { width: 79px; height: 79px; }
.ecom-ring-b1 { width: 64px; height: 64px; }

.ecom-badge-circle {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(28,109,208,0.22);
  box-shadow: 0 8px 28px rgba(28,109,208,0.10), inset 0 0 0 5px rgba(255,255,255,0.55);
  z-index: 6;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ecom-badge:hover .ecom-badge-circle {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(28,109,208,0.18), 0 0 20px rgba(28,109,208,0.22);
}

.ecom-badge-icon { width: 22px; height: 22px; }

.ecom-badge-label {
  position: relative;
  z-index: 7;
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #0F2341;
  line-height: 1.4;
  max-width: 120px;
}

/* =========================================================
   BLOC 3 — GESTION MESSAGERIE (ORANGE)
   ========================================================= */

.msg-container {
  position: relative;
  max-width: 560px;
  height: 320px;
  margin: 0 auto;
}

.msg-hub {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 6;
}

.msg-hub-rings {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.msg-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 38%,
    rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.75) 40%, rgba(255,255,255,0.25) 72%);
  border: 1px solid rgba(240,128,32,0.10);
  box-shadow: 0 12px 36px rgba(15,35,65,0.05), inset 0 1px 2px rgba(255,255,255,0.80);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.msg-ring-3 { width: 130px; height: 130px; }
.msg-ring-2 { width: 107px; height: 107px; }
.msg-ring-1 { width: 86px;  height: 86px; }

.msg-hub-circle {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(240,128,32,0.22);
  box-shadow: 0 8px 28px rgba(240,128,32,0.12), inset 0 0 0 5px rgba(255,255,255,0.55);
  z-index: 7;
}

.msg-hub-icon { width: 30px; height: 30px; }

.msg-hub-label {
  position: relative;
  margin-top: 12px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(240,128,32,0.12);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #0F2341;
  white-space: nowrap;
  z-index: 8;
}

.msg-connector-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.msg-line {
  position: absolute;
  border-radius: 999px;
  opacity: 0.92;
}

.msg-line-trunk {
  left: 50%;
  transform: translateX(-50%);
  top: 65px;
  height: 95px;
  width: 2px;
  background: #F08020;
  box-shadow: 0 0 10px rgba(240,128,32,0.40);
}

.msg-line-trunk::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #F08020;
  box-shadow: 0 0 14px rgba(240,128,32,0.50);
}

.msg-line-bus {
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 2px;
  background: #F08020;
  box-shadow: 0 0 10px rgba(240,128,32,0.40);
}

.msg-line-drop {
  top: 160px;
  width: 2px;
  height: 35px;
  background: #F08020;
  box-shadow: 0 0 10px rgba(240,128,32,0.40);
  border-radius: 999px;
}

.msg-line-drop::before,
.msg-line-drop::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #F08020;
  box-shadow: 0 0 14px rgba(240,128,32,0.50);
}

.msg-line-drop::before { top: -4px; }
.msg-line-drop::after  { bottom: -4px; }

.msg-drop-1 { left: 50%; transform: translateX(calc(-50% - 170px)); }
.msg-drop-2 { left: 50%; transform: translateX(-50%); }
.msg-drop-3 { left: 50%; transform: translateX(calc(-50% + 170px)); }

.msg-badges-row {
  position: absolute;
  top: 195px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 50px;
  z-index: 4;
}

.msg-badge {
  position: relative;
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
}

.msg-badge-rings {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.msg-ring-b3 { width: 96px; height: 96px; }
.msg-ring-b2 { width: 79px; height: 79px; }
.msg-ring-b1 { width: 64px; height: 64px; }

.msg-badge-circle {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(240,128,32,0.22);
  box-shadow: 0 8px 28px rgba(240,128,32,0.10), inset 0 0 0 5px rgba(255,255,255,0.55);
  z-index: 6;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.msg-badge:hover .msg-badge-circle {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(240,128,32,0.18), 0 0 20px rgba(240,128,32,0.22);
}

.msg-badge-icon { width: 22px; height: 22px; }

.msg-badge-label {
  position: relative;
  z-index: 7;
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #0F2341;
  line-height: 1.4;
  max-width: 120px;
}












@media (max-width: 1100px) {

  .activities-section-header {
    padding: 60px 24px 30px;
    max-width: 690px;
  }

  .activities-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .activities-grid-wrapper .msg-section {
    max-width: none;
  }

  /* Containers en hauteur auto */
  .redac-container,
  .ecom-container,
  .msg-container {
    height: auto;
    padding-bottom: 20px;
  }

  /* Hubs en position relative */
  .redac-hub,
  .ecom-hub,
  .msg-hub {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto 24px;
  }

  /* Lignes cachées */
  .redac-connector-lines,
  .ecom-connector-lines,
  .msg-connector-lines {
    display: none;
  }

  /* Badges en ligne sur tablette */
  .redac-badges-row,
  .ecom-badges-row,
  .msg-badges-row {
    position: relative;
    top: auto;
    left: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    width: 100%;
    padding: 0 16px;
  }

  .redac-badge,
  .ecom-badge,
  .msg-badge {
    width: auto;
    min-width: 130px;
  }

  /* Labels toujours visibles */
  .redac-badge-label,
  .ecom-badge-label,
  .msg-badge-label {
    max-width: 140px;
    opacity: 1;
    visibility: visible;
  }

  /* Cercles hover simulé — toujours actif */
  .redac-badge-circle,
  .ecom-badge-circle,
  .msg-badge-circle {
    box-shadow:
      0 10px 30px rgba(240,128,32,0.15),
      inset 0 0 0 5px rgba(255,255,255,0.55);
  }

  .ecom-badge-circle {
    box-shadow:
      0 10px 30px rgba(28,109,208,0.15),
      inset 0 0 0 5px rgba(255,255,255,0.55);
  }
}



@media (max-width: 640px) {

  .activities-section-header {
    padding: 50px 20px 30px;
    text-align: center;
  }

  .activities-title {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .activities-subtitle {
    font-size: 15px;
  }

  .activity-block {
    padding: 30px 0;
  }

  /* Badges en colonne sur mobile */
  .redac-badges-row,
  .ecom-badges-row,
  .msg-badges-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .redac-badge,
  .ecom-badge,
  .msg-badge {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    background: #f8fafc;
    border: 1px solid #ebf1f7;
    border-radius: 16px;
    padding: 14px 18px;
  }

  /* Rings cachés sur mobile — trop lourd visuellement */
  .redac-badge-rings,
  .ecom-badge-rings,
  .msg-badge-rings {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
  }

  .redac-ring-b3, .redac-ring-b2, .redac-ring-b1,
  .ecom-ring-b3, .ecom-ring-b2, .ecom-ring-b1,
  .msg-ring-b3, .msg-ring-b2, .msg-ring-b1 {
    display: none;
  }

  .redac-badge-circle,
  .ecom-badge-circle,
  .msg-badge-circle {
    width: 48px;
    height: 48px;
  }

  /* Labels à gauche du cercle */
  .redac-badge-label,
  .ecom-badge-label,
  .msg-badge-label {
    text-align: left;
    font-size: 14px;
    max-width: 100%;
    margin-top: 0;
  }

  /* Hubs plus compacts */
  .redac-hub-rings,
  .ecom-hub-rings,
  .msg-hub-rings {
    width: 100px;
    height: 100px;
  }

  .redac-ring-3, .ecom-ring-3, .msg-ring-3 { width: 100px; height: 100px; }
  .redac-ring-2, .ecom-ring-2, .msg-ring-2 { width: 82px;  height: 82px; }
  .redac-ring-1, .ecom-ring-1, .msg-ring-1 { width: 66px;  height: 66px; }

  .redac-hub-circle,
  .ecom-hub-circle,
  .msg-hub-circle {
    width: 54px;
    height: 54px;
  }

  .redac-hub-label,
  .ecom-hub-label,
  .msg-hub-label {
    font-size: 14px;
    padding: 4px 12px;
  }
}













































/* =========================================
   FAQ - MISE EN PAGE 2 COLONNES
   ========================================= */

.pw-faq-section {
  padding: 100px 0;
  background: #ffffff;
}

/* GRILLE PRINCIPALE : Titre gauche / Questions droite */
.pw-faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* COLONNE GAUCHE : TITRE */
.pw-faq-header-col h2 {
  margin: 0 0 16px;
  color: #0F2341;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
}

.pw-faq-header-col p {
  margin: 0;
  color: #607089;
  font-size: 18px;
  line-height: 1.6;
}

/* COLONNE DROITE : LISTE FAQ */
.pw-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ITEM FAQ */
.pw-faq-item {
  border-bottom: 1px solid #eef1f5;
}

.pw-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  background: transparent;
  border: none;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

/* ICONES */
.pw-faq-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.pw-faq-icon svg {
  width: 20px;
  height: 20px;
}

.pw-bg-orange   { background: linear-gradient(135deg, #F08020, #ff9a3d); box-shadow: 0 4px 10px rgba(240,128,32,0.2); }
.pw-bg-primary  { background: linear-gradient(135deg, #137CB4, #33bfff); box-shadow: 0 4px 10px rgba(0,174,239,0.2); }
.pw-bg-secondary{ background: linear-gradient(135deg, #1C6DD0, #2c7de0); box-shadow: 0 4px 10px rgba(28,109,208,0.2); }

/* QUESTION */
.pw-faq-question {
  flex: 1;
  color: #0F2341;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
}

/* CHEVRON */
.pw-faq-chevron {
  width: 24px;
  height: 24px;
  color: #8c9cb3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pw-faq-chevron svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

/* =========================================
   CONTENU DÉPLIANT (ANIMATION MAX-HEIGHT)
   ========================================= */

.pw-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.pw-faq-content-inner {
  padding-left: 60px; /* aligné sous la question */
  padding-right: 40px;
}

.pw-faq-content-inner p {
  margin: 0;
  padding-bottom: 24px;
  color: #5b6678;
  font-size: 16px;
  line-height: 1.6;
}

/* ÉTAT ACTIF (OUVERT) */
.pw-faq-item.is-active .pw-faq-content {
  max-height: 300px; /* valeur suffisamment grande pour le contenu */
}

.pw-faq-item.is-active .pw-faq-chevron svg {
  transform: rotate(90deg);
  color: #0F2341;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pw-faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 580px) {
  .pw-faq-layout {
    padding: 0 20px;
  }
  .pw-faq-trigger {
    gap: 14px;
    padding: 16px 0;
  }
  .pw-faq-icon {
    width: 36px;
    height: 36px;
  }
  .pw-faq-icon svg {
    width: 18px;
    height: 18px;
  }
  .pw-faq-question {
    font-size: 17px;
  }
  .pw-faq-content-inner {
    padding-left: 50px;
    padding-right: 0;
  }
}




/* =========================================
   FAQ - VARIANTE TITRE À DROITE
   ========================================= */

/* Inverse l'ordre des colonnes : Questions (1fr) à gauche, Titre (320px) à droite */
.pw-faq-layout.pw-faq-reverse {
  grid-template-columns: 1fr 320px;
}

/* Sur mobile : le titre repasse au-dessus des questions */
@media (max-width: 900px) {
  .pw-faq-layout.pw-faq-reverse {
    grid-template-columns: 1fr;
  }
  .pw-faq-layout.pw-faq-reverse .pw-faq-header-col {
    order: -1; /* titre en premier sur mobile */
  }
}