.elementor-98500 .elementor-element.elementor-element-7f1e2a9{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:80px;--padding-right:80px;}.elementor-98500 .elementor-element.elementor-element-b8eb59f{--spacer-size:300px;}.elementor-98500 .elementor-element.elementor-element-b8eb59f > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 80px 0px 80px;}.elementor-98500 .elementor-element.elementor-element-d55312c{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:80px;--padding-right:80px;}.elementor-98500 .elementor-element.elementor-element-163114c{--spacer-size:60px;}body.elementor-page-98500{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}@media(max-width:767px){.elementor-98500 .elementor-element.elementor-element-7f1e2a9{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:20px;--padding-right:20px;}.elementor-98500 .elementor-element.elementor-element-b8eb59f > .elementor-widget-container{padding:0px 20px 0px 20px;}.elementor-98500 .elementor-element.elementor-element-d55312c{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:20px;--padding-right:20px;}.elementor-98500 .elementor-element.elementor-element-163114c{--spacer-size:40px;}}/* Start custom CSS for spacer, class: .elementor-element-b8eb59f *//* Section bannière */
#background-video-pages {
    position: relative;
    height: 300px;
    overflow: hidden;
}

/* Container vidéo */
#background-video-pages video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 75%;
    opacity: 0;
    transition: opacity 0.9s ease, filter 0.15s ease-out; /* ← ajout filter */
    filter: blur(0px); /* ← état initial */
}

/* Vidéo active */
#background-video-pages video.is-active {
    opacity: 1;
}


/* Overlay bleu au hover */
#background-video-pages::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 255, 0);
    z-index: 2;
    pointer-events: none;
    transition: background-color 0.4s ease;
}

#background-video-pages:hover::after {
    background-color: rgba(0, 0, 255, 0.25);
}
/* Loader */
.video-loader p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Spinner animé */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #0000FF;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c53d8a8 */:root {
  --brand-blue: #0000FF;
  --brand-black: #111111;
  --brand-gray: #f4f4f8;
  --transition: all 0.3s ease;
}

.wl-formation * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wl-formation {
  font-family: inherit;
  color: var(--brand-black);
  margin: 0 auto;
  padding: 0 auto;
}

/* ============================================================
   1. INTRO - TEXTE D'ACCROCHE
   ============================================================ */

.wl-intro {
  padding: 40px 0 40px 30px;
  border-left: 4px solid var(--brand-blue);
  margin-bottom: 70px;
  animation: fadeInUp 0.6s ease-out;
}

.wl-intro p {
  font-size: 18px;
  line-height: 1.85;
  color: #2c2c2c;
  margin: 0;
}

.wl-intro strong {
  color: var(--brand-blue);
  font-weight: 700;
}

/* ============================================================
   2. TITRES DE SECTION (H2 avec barre verticale bleue)
   ============================================================ */

.wl-section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-black);
  margin: 0 0 30px 0;
  position: relative;
  padding-left: 20px;
  transition: var(--transition);
}

.wl-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: var(--brand-blue);
  border-radius: 2px;
  transition: var(--transition);
}

.wl-section-title:hover {
  color: var(--brand-blue);
  padding-left: 26px;
}

.wl-section-title:hover::before {
  background: var(--brand-black);
}

/* Séparateurs entre sections */
.wl-section-operationnelle,
.wl-section-pedagogie,
.wl-section-mesure {
  border-top: 1px solid #e8e8e8;
  padding-top: 70px;
}

.wl-section-operationnelle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.wl-img-wrapper {
  overflow: hidden;
  position: relative;
}

.wl-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 3;
}

.wl-img-wrapper:hover::after {
  transform: scaleX(1);
}

.wl-img-wrapper img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease, filter 0.8s ease;
  filter: grayscale(10%);
}

.wl-img-wrapper:hover img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.wl-section-operationnelle .wl-text p {
  font-size: 16px;
  line-height: 1.85;
  color: #4a4a4a;
  margin-bottom: 16px;
}

.wl-section-operationnelle .wl-text p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   4. SECTION "PÉDAGOGIE ACTIVE"
   ============================================================ */

.wl-section-pedagogie {
  background: transparent;
  padding-top: 60px;
  margin-bottom: 80px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.wl-section-pedagogie > p {
  font-size: 16px;
  line-height: 1.85;
  color: #4a4a4a;
  margin: 0 0 35px 0;
}

/* Checklist - 1 colonne */
.wl-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 35px 0;
  list-style: none;
  padding: 0;
}

.wl-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #2f2f2f;
  line-height: 1.6;
  transition: var(--transition);
}

.wl-checklist li::before {
  content: "✔";
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.wl-checklist li:hover {
  color: var(--brand-blue);
}

/* Encadré objectif */
.wl-pedagogie-objectif {
  background: var(--brand-gray);
  border-left: 4px solid var(--brand-blue);
  padding: 20px 24px;
  margin: 0;
}

.wl-pedagogie-objectif p {
  font-size: 16px;
  line-height: 1.75;
  color: #2c2c2c;
  margin: 0;
}

.wl-pedagogie-objectif strong {
  color: var(--brand-blue);
}

/* ============================================================
   5. SECTION "OFFRE SUR MESURE"
   ============================================================ */

.wl-section-mesure {
  margin-bottom: 80px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.wl-section-mesure > p {
  font-size: 16px;
  line-height: 1.85;
  color: #4a4a4a;
  margin-bottom: 40px;
}

/* Badge Qualiopi */
.wl-qualiopi {
  display: flex;
  align-items: center;
  gap: 36px;
  background: var(--brand-gray);
  border-left: 4px solid var(--brand-blue);
  padding: 32px 36px;
  margin-bottom: 50px;
  transition: var(--transition);
  border-radius: 0 6px 6px 0;
}

.wl-qualiopi:hover {
  border-left-color: var(--brand-black);
}

.wl-qualiopi img {
  width: 200px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.wl-qualiopi-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-black);
  margin: 0 0 10px 0;
}

.wl-qualiopi-text p {
  font-size: 15px;
  line-height: 1.75;
  color: #4a4a4a;
  margin: 0;
}

/* Titre thèmes */
.wl-themes-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-blue);
  position: relative;
  padding-left: 14px;
  margin: 0 0 20px 0;
  display: block;
}

.wl-themes-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: var(--brand-blue);
  border-radius: 2px;
}

/* Grille thèmes - 1 colonne */
.wl-themes-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.wl-themes-grid li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #2f2f2f;
  line-height: 1.6;
  padding: 0;
  background: transparent;
  border: none;
  transition: var(--transition);
  cursor: default;
}

.wl-themes-grid li::before {
  content: "✔";
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.wl-themes-grid li:hover {
  color: var(--brand-blue);
}

/* ============================================================
   6. CTA FINAL
   ============================================================ */

.wl-cta {
  text-align: center;
  padding: 70px 40px;
  background: #ffffff;
  margin-bottom: 0;
  animation: fadeInUp 0.6s ease-out 0.4s both;
  position: relative;
  overflow: hidden;
}

.wl-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-blue);
}

.wl-cta-icon {
  margin: 0 auto 24px auto;
  display: block;
  width: 64px;
  height: 64px;
}

.wl-cta h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-black);
  margin: 0 0 16px 0;
}

.wl-cta p {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  max-width: 500px;
  margin: 0 auto 32px auto;
}

.wl-cta-btn {
  display: inline-block;
  background: var(--brand-blue);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  text-decoration: none !important;
  border: 2px solid var(--brand-blue);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.wl-cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 0;
}

.wl-cta-btn span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.wl-cta-btn:hover::after {
  transform: scaleX(1);
}

.wl-cta-btn:hover span {
  color: var(--brand-blue) !important;
}

/* ============================================================
   7. ANIMATIONS
   ============================================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   8. RESPONSIVE - TABLETTE
   ============================================================ */

@media (max-width: 1024px) {
  .wl-section-operationnelle {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .wl-img-wrapper img {
    height: 260px;
  }

  .wl-qualiopi {
    flex-direction: column;
    gap: 20px;
  }

  .wl-qualiopi img {
    width: 160px;
  }
}

/* ============================================================
   9. RESPONSIVE - MOBILE
   ============================================================ */

@media (max-width: 768px) {
  .wl-intro {
    padding: 40px 0 40px 20px;
    margin-bottom: 50px;
  }

  .wl-intro p {
    font-size: 16px;
  }

  .wl-section-title {
    font-size: 22px;
  }

  .wl-section-pedagogie {
    margin-bottom: 50px;
  }

  .wl-section-mesure {
    margin-bottom: 50px;
  }

  .wl-img-wrapper img {
    height: 220px;
  }

  .wl-cta {
    padding: 50px 25px;
  }

  .wl-cta h3 {
    font-size: 22px;
  }
}/* End custom CSS */