/* =========================================
   HERO SUPPORT CLIENT & ANIMATION
   — CALQUÉ SUR HERO ACCUEIL
   ========================================= */

.pw-hero {
  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 .pw-hero-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-image: url('https://images.pexels.com/photos/8867482/pexels-photo-8867482.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::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 .pw-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;
}

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

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

.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;
  min-width: 0;
}

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

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

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

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

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

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

.pw-hero .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 .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 .pw-hero-inner {
    justify-content: flex-start;
    padding-top: calc(var(--pw-header-h, 88px) + 32px);
    padding-bottom: 50px;
    text-align: left;
  }

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

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

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

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

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

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

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

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

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

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

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



















































/* =========================================
   STICKY SECTION : ACTIVITÉS COUVERTES
   ========================================= */

.pw-service-sticky {
  padding: 100px 0;
  background: #ffffff;
}

/* GRID PRINCIPALE */
.pw-service-sticky-grid {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

/* ─── COLONNE GAUCHE STICKY ─── */
.pw-service-sticky-side {
  position: sticky;
  top: 120px;
}

.pw-service-sticky-side h2 {
  margin: 0;
  color: #0F2341;
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.8px;
}

.pw-service-sticky-side p {
  margin: 26px 0 0;
  color: #5b6678;
  text-align: justify;
  font-size: 17px;
  line-height: 1.7;
  max-width: 390px;
}

/* BOUTONS COLONNE GAUCHE */
.pw-service-side-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 34px;
}

.pw-btn-primary-solid {
  background: linear-gradient(135deg, #137CB4 0%, #1C6DD0 100%);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(0, 174, 239, 0.18);
}

.pw-btn-primary-solid:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.pw-btn-ghost-blue {
  border: 2px solid rgba(28, 109, 208, 0.16);
  color: #1C6DD0;
  background: #ffffff;
}

.pw-btn-ghost-blue:hover {
  background: rgba(0, 174, 239, 0.06);
  color: #0F2341;
}

/* ─── COLONNE DROITE ─── */
.pw-service-sticky-content {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

/* CARTE */
.pw-service-info-card {
  background: #ffffff;
  border: 1px solid #ebf1f7;
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 18px 55px rgba(15, 35, 65, 0.06);
}

.pw-service-info-card h3 {
  margin: 0 0 26px;
  color: #0F2341;
  font-size: clamp(22px, 2.5vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}

/* IMAGE */
.pw-service-visual {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 26px;
  overflow: hidden;
  margin-bottom: 28px;
  background: linear-gradient(135deg, #eaf8ff 0%, #eef4ff 100%);
}

.pw-service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── PILLS ─── */
.pw-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pw-service-pills span {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  min-height: 44px;
  border-radius: 999px;
  background: #f4f8fc;
  border: 1px solid #e4edf6;
  color: #0F2341;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.pw-service-pills span:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 174, 239, 0.35);
  background: rgba(0, 174, 239, 0.08);
}

/* =========================================
   RESPONSIVE — TABLETTE (max 1180px)
   ========================================= */
@media (max-width: 1180px) {
  .pw-service-sticky {
    padding: 80px 0;
  }

  .pw-service-sticky-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pw-service-sticky-side {
    position: relative;
    top: 0;
  }

  .pw-service-sticky-side h2 {
    font-size: clamp(32px, 5vw, 48px);
  }

  .pw-service-sticky-side p {
    max-width: 100%;
  }

  .pw-service-side-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .pw-service-side-actions .pw-btn {
    flex: 1 1 200px;
    text-align: center;
    justify-content: center;
  }

  .pw-service-visual {
    height: 360px;
  }
}

/* =========================================
   RESPONSIVE — MOBILE (max 767px)
   ========================================= */
@media (max-width: 767px) {
  .pw-service-sticky {
    padding: 60px 0;
  }

  .pw-service-sticky-grid {
    gap: 32px;
  }

  .pw-service-sticky-side h2 {
    font-size: clamp(28px, 8vw, 38px);
    letter-spacing: -1px;
  }

  .pw-service-sticky-side p {
    font-size: 15px;
    margin-top: 18px;
  }

  .pw-service-side-actions {
    flex-direction: column;
    gap: 12px;
  }

  .pw-service-side-actions .pw-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    flex: 1 1 53px;
  }

  .pw-service-info-card {
    padding: 20px;
    border-radius: 22px;
  }

  .pw-service-info-card h3 {
    font-size: clamp(18px, 5.5vw, 24px);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
  }

  .pw-service-visual {
    height: 220px;
    border-radius: 18px;
    margin-bottom: 20px;
  }

  .pw-service-pills {
    gap: 10px;
  }

  .pw-service-pills span {
    width: 100%;
    border-radius: 14px;
    font-size: 13px;
    padding: 10px 14px;
    justify-content: center;
  }
}



















/* =========================================
   STICKY SECTION : OBJECTIFS (VARIANTE ORANGE)
   ========================================= */

.pw-service-sticky-orange {
  background: #FFF8F2; /* fond doux orangé */
}

/* KICKER ORANGE */
.pw-service-sticky-orange .pw-service-side-kicker {
  background: rgba(240, 128, 32, 0.10);
  color: #F08020;
}

/* TAG EN HAUT DE LA CARTE */
.pw-service-sticky-orange .pw-service-info-top {
  color: #F08020;
}

/* BOUTON SOLIDE ORANGE */
.pw-btn-orange-solid {
  background: linear-gradient(135deg, #F08020 0%, #ff9a3d 100%);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(240, 128, 32, 0.25);
}

.pw-btn-orange-solid:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

/* BOUTON OUTLINE ORANGE */
.pw-btn-ghost-orange {
  border: 2px solid rgba(240, 128, 32, 0.25);
  color: #F08020;
  background: #ffffff;
}

.pw-btn-ghost-orange:hover {
  background: rgba(240, 128, 32, 0.08);
  color: #0F2341;
}

/* CARTE INFO : léger accent orange */
.pw-service-sticky-orange .pw-service-info-card {
  border: 1px solid #f6e6d4;
  box-shadow: 0 18px 55px rgba(240, 128, 32, 0.08);
}

/* VISUEL : dégradé orange doux en fond */
.pw-service-sticky-orange .pw-service-visual {
  background: linear-gradient(135deg, #ffe9d4 0%, #fff3e6 100%);
}

/* GRID OBJECTIFS */
.pw-service-objectives {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pw-service-objective-item {
  position: relative;
  padding: 26px 22px 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #f6e6d4;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pw-service-objective-item:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 128, 32, 0.4);
  box-shadow: 0 18px 40px rgba(240, 128, 32, 0.12);
}

.pw-obj-num {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(240, 128, 32, 0.10);
  color: #F08020;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.pw-service-objective-item strong {
  display: block;
  margin-bottom: 8px;
  color: #0F2341;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.pw-service-objective-item p {
  margin: 0;
  color: #607089;
  text-align: justify;
  font-size: 15px;
  line-height: 1.55;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .pw-service-objectives {
    grid-template-columns: 1fr;
  }
}















































/* =========================================
   STICKY SECTION : MÉTHODOLOGIE (VARIANTE BLEUE)
   ========================================= */

.pw-service-sticky-blue {
  background: #F4F8FC;
}

.pw-service-sticky-blue .pw-service-side-kicker {
  background: rgba(0, 174, 239, 0.09);
  color: #137CB4;
}

/* COLONNE DROITE : STACK DE CARTES */
.pw-service-sticky-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CHAQUE CARTE INDIVIDUELLE */
.pw-step-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #e4edf6;
  box-shadow: 0 10px 30px rgba(15, 35, 65, 0.04);
}

/* NUMÉRO DE L'ÉTAPE */
.pw-step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: linear-gradient(135deg, #137CB4 0%, #1C6DD0 100%);
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* CONTENU TEXTE */
.pw-step-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pw-step-body h3 {
  margin: 0;
  color: #0F2341;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.pw-step-body p {
  margin: 0;
  color: #607089;
  font-size: 16px;
  line-height: 1.55;
  text-align: justify;
}

.pw-step-duration {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(240, 128, 32, 0.08);
  color: #F08020;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pw-step-card {
    flex-direction: column;
    gap: 18px;
  }

  .pw-step-number {
    width: 48px;
    height: 48px;
    font-size: 19px;
    border-radius: 16px;
  }
}





















/* =========================================
   SECTION : INCLUS DANS CHAQUE MISSION
   ========================================= */

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

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

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

.pw-mission-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-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(240, 128, 32, 0.14);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(240, 128, 32, 0.18);
  gap: 1px;
}

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

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

.pw-mission-cell:nth-child(even) {
  background: #FFF8F2;
}

/* ICONE */
.pw-mission-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(240, 128, 32, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F08020;
  flex-shrink: 0;
}

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

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

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

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

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

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

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



























































/* =========================================
   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;
  }
}