/* =========================================
   HERO INTERNE : NOS SERVICES
   ========================================= */

.pw-hero-services {
  position: relative;
  /* Plus petit que le 100vh de l'accueil, s'adapte au contenu */
  padding-top: 160px; 
  padding-bottom: 80px;
  overflow: hidden;
  color: var(--white, #FFFFFF);
  /* On garde le même fond que l'accueil */
  background: linear-gradient(135deg, var(--primary) 0%, #00AEEF 100%);
}

.pw-hero-services-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Texte aligné à gauche */
}

/* CONTENU TEXTE */
.pw-hero-services .pw-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  max-width: 700px; /* Plus large vu qu'il n'y a pas d'image à droite */
}

.pw-hero-services h1 {
  color: var(--white, #FFFFFF);
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1.12;
  letter-spacing: -2px;
  font-weight: 800;
  margin: 0;
}

.pw-hero-services p {
  max-width: 650px;
  margin-top: 24px;
  color: var(--white, #FFFFFF);
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 1.5;
  font-weight: 500;
  text-align: justify;
  opacity: 0.95;
}

/* PARTICULES SPECIFIQUES A CETTE SECTION */
.pw-particles-services {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* On réutilise la classe .pw-dot et l'animation de l'index */
.pw-dot {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: #FFFFFF;
  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 {
    padding-top: 130px;
    padding-bottom: 60px;
  }
  .pw-hero-services h1 {
    font-size: clamp(38px, 8vw, 58px);
  }
}

@media (max-width: 580px) {
  .pw-hero-services h1 {
    letter-spacing: -1.5px;
  }
}












































/* SECTION SERVICES */
.pw-services-list {
  padding: 70px 0 90px;
  background: var(--white);
}

.pw-services-list-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.pw-service-tile {
  min-height: 305px;
  background: #f3f3f3;
  border-radius: 0;
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.pw-service-tile:hover {
  transform: translateY(-4px);
  background: #eef7fd;
  box-shadow: 0 10px 24px rgba(15, 35, 65, 0.08);
}

.pw-service-icon {
  width: 28px;
  height: 28px;
  color: #111111;
  margin-bottom: 22px;
  flex: 0 0 auto;
}

.pw-service-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pw-service-tile h3 {
  margin: 0;
  color: #111111;
  font-size: 25px;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.8px;
  max-width: 210px;
}


.pw-service-tile p {
  margin: 24px 0 0;
  color: #6e6e6e;
  font-size: 15px;
  text-align: justify;
  line-height: 1.5;
  max-width: 210px;
  hyphens: auto; 
  -webkit-hyphens: auto;
  word-break: normal;
}


/* LIEN EN SAVOIR PLUS */
.pw-tile-link {
  margin-top: auto;
  padding-top: 20px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s ease, gap 0.25s ease;
}

.pw-tile-link span {
  transition: transform 0.25s ease;
  display: inline-block;
}

.pw-tile-link:hover {
  color: #1C6DD0;
  gap: 10px;
}

.pw-tile-link:hover span {
  transform: translateX(4px);
}

/* ACCENT AU HOVER */
.pw-service-tile:nth-child(1) { border-top: 3px solid transparent; }
.pw-service-tile:nth-child(2) { border-top: 3px solid transparent; }
.pw-service-tile:nth-child(3) { border-top: 3px solid transparent; }
.pw-service-tile:nth-child(4) { border-top: 3px solid transparent; }
.pw-service-tile:nth-child(5) { border-top: 3px solid transparent; }

.pw-service-tile:hover:nth-child(1) { border-top-color: #00AEEF; }
.pw-service-tile:hover:nth-child(2) { border-top-color: #1C6DD0; }
.pw-service-tile:hover:nth-child(3) { border-top-color: #F08020; }
.pw-service-tile:hover:nth-child(4) { border-top-color: #00AEEF; }
.pw-service-tile:hover:nth-child(5) { border-top-color: #1C6DD0; }

/* RESPONSIVE */
@media (max-width: 1200px) {
  .pw-services-list-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .pw-services-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pw-service-tile {
    min-height: 290px;
  }
}

@media (max-width: 560px) {
  .pw-services-list {
    padding: 55px 0 70px;
  }
  .pw-services-list-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .pw-service-tile {
    min-height: auto;
    padding: 22px 18px 20px;
  }
  .pw-service-tile h3,
  .pw-service-tile p {
    max-width: 100%;
  }
  .pw-service-tile p {
    margin-top: 28px;
  }
}







































/* ========== SECTION CHIFFRES CLÉS ========== */

.pw-chiffres {
  padding: 70px 0 400px;
background: #0F2341;
font-family: 'Poppins', sans-serif;
overflow: hidden;
margin-bottom: -320px;
}

.pw-container {
max-width: 1320px;
margin: 0 auto;
padding: 0 28px;
}

/* HEADER */
.pw-chiffres-header {
text-align: center;
max-width: 680px;
margin: 0 auto 55px;
}

.pw-chiffres-eyebrow {
display: inline-block;
font-size: 11px;
font-weight: 700;
letter-spacing: 2.5px;
color: var(--primary);
background: rgba(0, 174, 239, 0.1);
padding: 6px 16px;
border-radius: 999px;
margin-bottom: 18px;
border: 1px solid rgba(0, 174, 239, 0.2);
}

.pw-chiffres-title {
font-size: clamp(28px, 3vw, 40px);
font-weight: 800;
color: #ffffff;
line-height: 1.15;
letter-spacing: -1px;
margin: 0;
}

.pw-chiffres-underline {
position: relative;
display: inline;
}

.pw-chiffres-underline::after {
content: "";
position: absolute;
left: 0;
right: 0;
bottom: -5px;
height: 6px;
background: #F08020;
border-radius: 99px;
transform: rotate(-1deg);
opacity: 0.9;
}

/* GRILLE CARTES */
.pw-chiffres-grid {
display: grid;
grid-template-columns: 1.4fr 1fr 1fr 1fr;
gap: 20px;
max-width: 1320px;
margin: 0 auto;
}

/* CARTE BASE */
.pw-chiffre-card {
position: relative;
border-radius: 24px;
padding: 36px 28px;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: flex-end;
min-height: 280px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* CARTE GRANDE (1ère) */
.pw-chiffre-card-large {
min-height: 340px;
background: linear-gradient(160deg, var(--primary) 0%, #1C6DD0 100%);
}

/* CARTES 2, 3, 4 */
.pw-chiffre-card:not(.pw-chiffre-card-large) {
background: linear-gradient(160deg, #1a2e4a 0%, #0f1f35 100%);
}

/* GRID BACKGROUND PATTERN */
.pw-chiffre-bg-grid {
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
background-size: 28px 28px;
pointer-events: none;
opacity: 0.6;
}

/* ICONE */
.pw-chiffre-icon {
position: absolute;
top: 24px;
left: 24px;
width: 36px;
height: 36px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255,255,255,0.1);
color: #ffffff;
}

.pw-chiffre-card-large .pw-chiffre-icon {
background: rgba(255,255,255,0.15);
}

/* NOMBRE */
.pw-chiffre-number {
position: relative;
z-index: 2;
font-size: clamp(48px, 5vw, 72px);
font-weight: 800;
color: #ffffff;
line-height: 1;
letter-spacing: -2px;
margin-bottom: 12px;
}

.pw-chiffre-card-large .pw-chiffre-number {
font-size: clamp(56px, 6vw, 84px);
}

/* LABEL */
.pw-chiffre-label {
position: relative;
z-index: 2;
font-size: 13px;
font-weight: 500;
color: rgba(255,255,255,0.65);
line-height: 1.5;
}

.pw-chiffre-card-large .pw-chiffre-label {
color: rgba(255,255,255,0.75);
}

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

@media (max-width: 1080px) {
.pw-chiffres-grid {
grid-template-columns: 1fr 1fr;
gap: 18px;
}

.pw-chiffre-card-large {
grid-column: span 2;
}
}

@media (max-width: 640px) {
.pw-chiffres {
padding: 50px 0 60px;
margin-bottom: -70px;
}

.pw-chiffres-header {
margin-bottom: 40px;
}

.pw-chiffres-title {
font-size: 26px;
}

.pw-chiffres-grid {
grid-template-columns: 1fr;
gap: 16px;
}

.pw-chiffre-card-large {
grid-column: span 1;
min-height: 280px;
}

.pw-chiffre-card-large .pw-chiffre-number {
font-size: 56px;
}

.pw-chiffre-card {
min-height: 220px;
padding: 28px 24px;
}

.pw-chiffre-number {
font-size: 42px;
}
}



/* PARTICULES UNIQUEMENT DANS LA CARTE 2011 */

.pw-chiffre-card-large {
  position: relative;
}

.pw-chiffre-card-large .pw-chiffre-bg-grid {
  z-index: 0;
}

.pw-chiffre-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.pw-chiffre-dot {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.65;
  animation-name: pwChiffreFloat;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}

.pw-chiffre-card-large .pw-chiffre-icon,
.pw-chiffre-card-large .pw-chiffre-number,
.pw-chiffre-card-large .pw-chiffre-label {
  z-index: 3;
}

@keyframes pwChiffreFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

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