/* =========================================
   HERO SAISIE & GESTION DE DONNÉES
   — 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-image: url('https://images.pexels.com/photos/3184292/pexels-photo-3184292.jpeg?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) --- */
.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;
  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;
  }
}

























































/* =========================================
   SECTION : ACTIVITÉS COUVERTES (VERSION BLEUE)
   ========================================= */

.pw-activities {
  padding: 90px 0;
  background: #ffffff;
}

/* HEADER */
.pw-activities-header {
  text-align: right;
  margin-bottom: 52px;
}

.pw-activities-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 174, 239, 0.10);
  color: #137CB4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.pw-activities-header h2 {
  margin: 0;
  color: #0F2341;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

/* GRANDE GRILLE EXTERNE */
.pw-activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(0, 174, 239, 0.14); /* Couleur des bordures */
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(0, 174, 239, 0.18);
  gap: 1px; /* Crée l'effet de séparateur */
}

/* CHAQUE CELLULE */
.pw-activities-cell {
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Alternance des deux couleurs bleues */
.pw-activities-cell:nth-child(odd) {
  background: #eef6ff;
}

.pw-activities-cell:nth-child(even) {
  background: #f7fbff;
}

/* ICONE */
.pw-activities-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(0, 174, 239, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #137CB4;
  flex-shrink: 0;
}

.pw-activities-icon svg {
  width: 24px;
  height: 24px;
}

/* TEXTE */
.pw-activities-cell h3 {
  margin: 0;
  color: #0F2341;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.pw-activities-cell p {
  margin: 0;
  color: #607089;
  text-align: justify;
  font-size: 15px;
  line-height: 1.6;
}

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

@media (max-width: 580px) {
  .pw-activities {
    padding: 65px 0;
  }

  .pw-activities-grid {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .pw-activities-cell {
    padding: 30px 24px;
  }
}




















/* =========================================
   MÉTHODOLOGIE 5 ÉTAPES - LAYOUT 3 + 2
   ========================================= */

.pw-steps-5 {
  padding: 80px 0 100px;
  background: #fff;
}

/* Wrapper principal */
.pw-steps-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER ALIGNÉ À GAUCHE */
.pw-steps-header {
  text-align: left;
  margin-bottom: 52px;
}

.pw-steps-header h2 {
  margin: 0;
  color: #0F2341;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

/* NOUVEAU CONTENEUR GRILLE */
.pw-steps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 48px 28px;
}

/* On masque les flèches du HTML (recréées en CSS plus bas) */
.pw-step-arrow { display: none; }

/* CARTE */
.pw-step-card {
  grid-column: span 2;
  background: #f6f7f5;
  border-radius: 24px;
  padding: 36px 32px 30px;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  position: relative;
}

/* Rangée 2 : les cartes 4 et 5 centrées */
.pw-step-card:nth-of-type(4) { grid-column: 2 / 4; }
.pw-step-card:nth-of-type(5) { grid-column: 4 / 6; }

.pw-step-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: #7b8794;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: 8px;
}

.pw-step-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  margin: 0 0 26px;
  letter-spacing: -0.3px;
}

/* VISUEL */
.pw-step-visual {
  height: 180px;
  position: relative;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pw-step-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #5a6473;
  margin: 0 0 20px;
  flex-grow: 1;
}

.pw-step-pill {
  align-self: flex-start;
  background: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}

/* ===== FLÈCHES CONNECTEURS ===== */
.pw-step-card:nth-of-type(1)::after,
.pw-step-card:nth-of-type(2)::after,
.pw-step-card:nth-of-type(4)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -34px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5862f url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E") center / 18px no-repeat;
  box-shadow: 0 0 0 8px rgba(245,134,47,.12);
  z-index: 2;
}

/* ===== VISUELS ===== */

/* V1 */
.v1 .v1-doc { width: 120px; height: 100px; background: #fff; border-radius: 12px; box-shadow: 0 10px 24px rgba(0,0,0,.06); position: absolute; left: 30px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: #cbd5e1; }
.v1-doc svg { width: 24px; height: 24px; }
.v1-doc::before, .v1-doc::after { content: ""; width: 64px; height: 5px; background: #eef2f6; border-radius: 3px; }
.v1 .v1-glass { position: absolute; right: 20px; width: 100px; height: 155px; background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.9) 40%, rgba(230,233,237,.95) 100%); backdrop-filter: blur(4px); border-left: 1px solid rgba(0,0,0,.06); }

/* V2 */
.v2 .v2-card { width: 200px; height: 64px; background: #fff; border-radius: 10px; box-shadow: 0 12px 28px rgba(0,0,0,.07); display: flex; align-items: center; padding: 0 16px; gap: 14px; }
.v2-square { width: 34px; height: 34px; background: #f1f3f5; border-radius: 6px; }
.v2-lines span { display: block; height: 6px; background: #e9ecef; border-radius: 3px; }
.v2-lines span:first-child { width: 80px; margin-bottom: 8px; }
.v2-lines span:last-child { width: 56px; }
.v2-check { position: absolute; top: 22px; right: 50px; width: 30px; height: 30px; background: #fdecd9; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #f5862f; }
.v2-check svg { width: 16px; height: 16px; }

/* V3 */
.v3 .v3-stack { position: absolute; width: 86px; height: 116px; background: #fff; border-radius: 10px; box-shadow: 0 12px 26px rgba(0,0,0,.07); }
.v3 .s1 { transform: rotate(-8deg) translateX(-16px); }
.v3 .s2 { transform: rotate(-3deg) translateX(-5px); }
.v3 .s3 { transform: rotate(4deg) translateX(10px); display: flex; flex-direction: column; align-items: center; padding-top: 24px; gap: 10px; }
.v3 .s3::before, .v3 .s3::after { content: ""; width: 52px; height: 5px; background: #eef2f6; border-radius: 3px; }
.v3-check { width: 28px; height: 28px; background: #fdecd9; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #f5862f; }
.v3-check svg { width: 15px; height: 15px; }

/* V4 */
.v4 .v4-main { position: absolute; background: #0f1f3a; color: #fff; padding: 12px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; box-shadow: 0 10px 22px rgba(15,31,58,.25); z-index: 2; }
.v4 .v4-tag { position: absolute; background: #fff; padding: 7px 14px; border-radius: 6px; font-size: 13px; font-weight: 600; color: #0f1f3a; box-shadow: 0 6px 16px rgba(0,0,0,.08); }
.v4 .t1 { top: 22px; left: 70px; transform: rotate(-7deg); }
.v4 .t2 { top: 70px; right: 60px; transform: rotate(8deg); }
.v4 .t3 { bottom: 28px; right: 80px; transform: rotate(-5deg); }

/* V5 */
.v5 .v5-icon { width: 80px; height: 80px; background: #fff; border-radius: 18px; box-shadow: 0 10px 24px rgba(0,0,0,.06); display: flex; align-items: center; justify-content: center; color: #f5862f; }
.v5 .v5-icon svg { width: 38px; height: 38px; }
.v5::before, .v5::after { content: ""; position: absolute; bottom: 42px; height: 6px; background: #e5e9ef; border-radius: 3px; }
.v5::before { width: 120px; }
.v5::after { width: 88px; bottom: 26px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .pw-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .pw-step-card,
  .pw-step-card:nth-of-type(4),
  .pw-step-card:nth-of-type(5) {
    grid-column: auto;
  }
  .pw-step-card:nth-of-type(5) {
    grid-column: 1 / -1;
    width: calc(50% - 12px);
    justify-self: center;
  }
  .pw-step-card::after { display: none !important; }
}

@media (max-width: 640px) {
  .pw-steps-grid { grid-template-columns: 1fr; }
  .pw-step-card { min-height: auto; }
  .pw-step-card:nth-of-type(5) { width: 100%; }
}























































/* =========================================
   SECTION : AVANTAGES CLÉS / INTEGRATIONS
   VERSION GLASSMORPHISM PROWEB
   ========================================= */

.integrations-section {
  background: #fafafa;
  padding: 110px 40px;
  font-family: 'Gevora', 'Poppins', sans-serif;
  overflow: hidden;
}

.integrations-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* =========================
   TEXTE
   ========================= */

.integrations-text {
  max-width: 500px;
  flex-shrink: 0;
}

.integrations-label {
  display: block;
  color: #137CB4;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
}

.integrations-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.12;
  color: #0F2341;
  margin: 0 0 26px 0;
  letter-spacing: -1.2px;
}

.integrations-desc {
  font-size: 17px;
  line-height: 1.75;
  color: #607089;
  margin: 0;
}

.link-purple {
  color: #137CB4;
  text-decoration: none;
}

/* =========================
   VISUEL AGRANDI
   ========================= */

.integrations-visual {
  position: relative;
  width: 760px;
  height: 470px;
  flex-shrink: 0;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  -webkit-mask-composite: initial !important;
  mask-composite: initial !important;
  overflow: visible !important;
  isolation: isolate;
}

/* Grand panneau glass derrière */
.visual-frame {
  position: absolute;
  top: 45px;
  left: 70px;
  width: 650px;
  height: 380px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 174, 239, 0.18), transparent 34%),
    radial-gradient(circle at 85% 82%, rgba(240, 128, 32, 0.14), transparent 32%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.62) 0%,
      rgba(238, 248, 255, 0.48) 42%,
      rgba(255, 255, 255, 0.26) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow:
    0 35px 90px rgba(15, 35, 65, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 -1px 1px rgba(255, 255, 255, 0.35);
}

.visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      120deg,
      rgba(0, 174, 239, 0.08),
      rgba(255, 255, 255, 0.08),
      rgba(28, 109, 208, 0.05)
    );
  pointer-events: none;
}

/* Fade gauche + bas en overlay */
.integrations-visual::after {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: 30;
  pointer-events: none;
  background:
    linear-gradient(
      to right,
      #fafafa 0%,
      rgba(250, 250, 250, 0.92) 10%,
      rgba(250, 250, 250, 0.55) 24%,
      rgba(250, 250, 250, 0.16) 42%,
      transparent 60%
    ),
    linear-gradient(
      to top,
      #fafafa 0%,
      rgba(250, 250, 250, 0.92) 8%,
      rgba(250, 250, 250, 0.55) 20%,
      rgba(250, 250, 250, 0.16) 36%,
      transparent 55%
    );
}

/* =========================
   POSITION DES ICÔNES
   ========================= */

.icon-wrapper {
  position: absolute !important;
  width: 138px;
  height: 138px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10 !important;
}

.icon-wrapper:hover {
  z-index: 1000 !important;
}

.integrations-visual .icon-wrapper:nth-of-type(2) { top: 72px !important;  left: 18px !important;  z-index: 6; }
.integrations-visual .icon-wrapper:nth-of-type(3) { top: 32px !important;  left: 240px !important; z-index: 6; }
.integrations-visual .icon-wrapper:nth-of-type(4) { top: 92px !important;  left: 495px !important; z-index: 6; }
.integrations-visual .icon-wrapper:nth-of-type(5) { top: 250px !important; left: 120px !important; z-index: 5; }
.integrations-visual .icon-wrapper:nth-of-type(6) { top: 225px !important; left: 360px !important; z-index: 5; }
.integrations-visual .icon-wrapper:nth-of-type(7) { top: 275px !important; left: 600px !important; z-index: 5; }

/* =========================
   CARTES ICÔNES GLASS
   ========================= */

.icon-card {
  width: 138px !important;
  height: 138px !important;
  border-radius: 32px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.34) !important;
  border: 1px solid rgba(255, 255, 255, 0.68) !important;
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  box-shadow:
    0 24px 55px rgba(15, 35, 65, 0.10),
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 -1px 1px rgba(255, 255, 255, 0.38) !important;
  transition:
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease !important;
}

.icon-wrapper:hover .icon-card {
  transform: none !important;
}

.icon-card svg {
  width: 58px !important;
  height: 58px !important;
}

.icon-card svg * {
  stroke: currentColor !important;
}

.icon-card svg [fill]:not([fill="none"]) {
  fill: currentColor !important;
}

/* =========================
   COULEURS PAR ICÔNE
   ========================= */

.integrations-visual .icon-wrapper:nth-of-type(2) .icon-card {
  color: #137CB4 !important;
  background: linear-gradient(145deg, rgba(0, 174, 239, 0.22), rgba(255, 255, 255, 0.26)) !important;
  border-color: rgba(0, 174, 239, 0.34) !important;
  box-shadow: 0 26px 60px rgba(0, 174, 239, 0.18), inset 0 1px 1px rgba(255, 255, 255, 0.9) !important;
}

.integrations-visual .icon-wrapper:nth-of-type(3) .icon-card {
  color: #1C6DD0 !important;
  background: linear-gradient(145deg, rgba(28, 109, 208, 0.20), rgba(255, 255, 255, 0.28)) !important;
  border-color: rgba(28, 109, 208, 0.32) !important;
  box-shadow: 0 26px 60px rgba(28, 109, 208, 0.18), inset 0 1px 1px rgba(255, 255, 255, 0.9) !important;
}

.integrations-visual .icon-wrapper:nth-of-type(4) .icon-card {
  color: #F08020 !important;
  background: linear-gradient(145deg, rgba(240, 128, 32, 0.23), rgba(255, 255, 255, 0.28)) !important;
  border-color: rgba(240, 128, 32, 0.34) !important;
  box-shadow: 0 26px 60px rgba(240, 128, 32, 0.18), inset 0 1px 1px rgba(255, 255, 255, 0.9) !important;
}

.integrations-visual .icon-wrapper:nth-of-type(5) .icon-card {
  color: #137CB4 !important;
  background: linear-gradient(145deg, rgba(0, 174, 239, 0.16), rgba(255, 255, 255, 0.32)) !important;
  border-color: rgba(0, 174, 239, 0.30) !important;
}

.integrations-visual .icon-wrapper:nth-of-type(6) .icon-card {
  color: #1C6DD0 !important;
  background: linear-gradient(145deg, rgba(28, 109, 208, 0.15), rgba(255, 255, 255, 0.34)) !important;
  border-color: rgba(28, 109, 208, 0.28) !important;
}

.integrations-visual .icon-wrapper:nth-of-type(7) .icon-card {
  color: #F08020 !important;
  background: linear-gradient(145deg, rgba(240, 128, 32, 0.16), rgba(255, 255, 255, 0.34)) !important;
  border-color: rgba(240, 128, 32, 0.28) !important;
}

.icon-wrapper:hover .icon-card {
  background: rgba(255, 255, 255, 0.46) !important;
  border-color: rgba(255, 255, 255, 0.9) !important;
  box-shadow:
    0 34px 75px rgba(15, 35, 65, 0.16),
    inset 0 1px 1px rgba(255, 255, 255, 0.95),
    inset 0 -1px 1px rgba(255, 255, 255, 0.45) !important;
}

/* =========================
   TOOLTIP DESKTOP
   ========================= */

.icon-text-card {
  position: absolute !important;
  top: calc(100% + 18px);
  left: 50%;
  width: 235px;
  transform: translateX(-50%) translateY(12px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  padding: 18px 20px;
  text-align: center;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow:
    0 24px 55px rgba(15, 35, 65, 0.14),
    inset 0 1px 1px rgba(255, 255, 255, 0.85);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease,
    transform 0.28s ease;
  z-index: 2000 !important;
}

.icon-text-card::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.86);
  border-left: 1px solid rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.82);
  transform: translateX(-50%) rotate(45deg);
  margin-bottom: -9px;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.icon-text-card h4 {
  margin: 0 0 7px;
  color: #0F2341;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.icon-text-card p {
  margin: 0;
  color: #607089;
  font-size: 13.5px;
  line-height: 1.45;
}

.icon-wrapper:hover .icon-text-card {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) !important;
}

/* =========================
   VISIBILITÉ PAR ÉCRAN
   ========================= */

/* Desktop visible, cards cachées */
.desktop-only    { display: block; }
.tablet-mobile-only { display: none; }

/* =========================
   CARDS TABLETTE + MOBILE
   ========================= */

.integrations-cards-mobile {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

.mobile-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #ebf1f7;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(15, 35, 65, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mobile-card:active {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(15, 35, 65, 0.10);
}

.mobile-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: #ffffff;
  fill: none;
}

.mobile-card-body h4 {
  margin: 0 0 5px;
  color: #0F2341;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.mobile-card-body p {
  margin: 0;
  color: #607089;
  font-size: 13px;
  line-height: 1.5;
}

.mobile-card-icon.blue-light {
  background: linear-gradient(135deg, #33c2f5 0%, #137CB4 100%);
  box-shadow: 0 8px 20px rgba(0, 174, 239, 0.30);
}

.mobile-card-icon.blue-dark {
  background: linear-gradient(135deg, #4a8ce0 0%, #1C6DD0 100%);
  box-shadow: 0 8px 20px rgba(28, 109, 208, 0.30);
}

.mobile-card-icon.orange {
  background: linear-gradient(135deg, #f5a04d 0%, #F08020 100%);
  box-shadow: 0 8px 20px rgba(240, 128, 32, 0.30);
}

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

/* TABLETTE */
@media (max-width: 1024px) {

  .integrations-section {
    padding: 80px 30px;
    overflow: visible;
  }

  .integrations-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
    overflow: visible;
  }

  .integrations-text {
    max-width: 100%;
  }

  .integrations-title {
    font-size: clamp(32px, 5vw, 48px);
  }

  .integrations-desc {
    max-width: 560px;
    margin: 0 auto;
    font-size: 16px;
  }

  /* On cache le visuel desktop */
  .desktop-only {
    display: none !important;
  }

  /* On montre les cards */
  .tablet-mobile-only {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 640px;
  }
}

/* MOBILE */
@media (max-width: 600px) {

  .integrations-section {
    padding: 60px 20px;
  }

  .integrations-title {
    font-size: clamp(28px, 7vw, 36px);
    letter-spacing: -0.8px;
  }

  .integrations-desc {
    font-size: 15px;
  }

  .tablet-mobile-only {
    grid-template-columns: 1fr !important;
    max-width: 100%;
  }

  .mobile-card {
    padding: 16px;
  }

  .mobile-card-body h4 {
    font-size: 14px;
  }

  .mobile-card-body p {
    font-size: 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;
  text-align: justify;
  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;
  }
}