/* Below-fold CSS — loaded non-blocking via DeferredCSS */

/* --- Splide slider styles (was globals.css L601-740) --- */
/* ========================================
   SPLIDE SLIDER STYLES (FROM WEBFLOW)
   ======================================== */

.splide__arrows {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 32px;
  position: relative;
}

/* Formation slider specific - arrows on same line as pagination, BELOW slides */
.splide.formation {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Use flexbox order to put track first, then arrows/pagination */
.splide.formation .splide__track {
  order: 1;
  margin-bottom: 24px;
}

.splide.formation .splide__arrows {
  order: 2;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
}

.splide.formation .splide__pagination {
  order: 3;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  bottom: 0;
}

.splide.formation .splide__arrow {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  transform: none;
}

.splide__arrow svg {
  display: none;
}

.splide__arrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23164AF3' d='m6.921 12.5l5.793 5.792L12 19l-7-7l7-7l.714.708L6.92 11.5H19v1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.splide__arrow--next::before {
  transform: scaleX(-1) !important;
}

.splide__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background-color 300ms ease;
  border: none;
  padding: 0;
  cursor: pointer;
}

.splide__arrow:hover {
  background-color: rgba(214, 224, 255, 0.5);
}

/* Formation slider arrows - match Webflow styling (no visible background) */
.splide.formation .splide__arrow {
  background-color: transparent;
  width: 24px;
  height: 24px;
}

.splide.formation .splide__arrow:hover {
  background-color: transparent;
}

.splide.formation .splide__arrow::before {
  width: 20px;
  height: 20px;
}

.sliderarrowprev,
.sliderarrownext {
  display: none;
}

.splide__pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  width: 100%;
  padding: 0;
}

.splide__pagination li {
  position: relative;
  width: 8px;
  height: 4px;
  flex: none;
}

.splide__pagination__page {
  all: unset;
  display: block;
  width: 8px;
  height: 4px;
  border-radius: 2px;
  background-color: #FFFFFF;
  transition: background-color 300ms ease;
  cursor: pointer;
}

.splide__pagination__page.is-active {
  background-color: #164AF3 !important;
}

/* --- FAQ accordion animations (was globals.css L759-781) --- */
/* ========================================
   FAQ ACCORDION ANIMATIONS  
   ======================================== */

.accordion-ans-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 0;
}

.accordion-ans-wrap.is-open {
  max-height: 500px;
  opacity: 1;
}

.faq-icon-wrap {
  transition: transform 0.3s ease;
}

.single-accordion-wrap.is-open .faq-icon-wrap {
  transform: rotate(180deg);
}

/* --- Comparison table/CTA + Card hover (was globals.css L848-925) --- */
/* Comparison Table spacing */
.comparison-header {
  margin-bottom: 56px !important;
}

/* Formations by Tool spacing */
.formations-by-tool-header {
  margin-bottom: 56px !important;
}

/* Comparison CTA Block */
.comparison-cta-block {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px 48px;
  background: linear-gradient(135deg, #164AF3 0%, #0D3AD4 100%) !important;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(22, 74, 243, 0.3);
}

.comparison-cta-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.15) !important;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  flex-shrink: 0;
}

.comparison-cta-title {
  font-size: 24px !important;
  font-weight: 700;
  color: white !important;
  margin: 0 0 8px 0;
}

.comparison-cta-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.5;
  margin: 0;
}

.comparison-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: white;
  color: var(--primary) !important;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.comparison-cta-button:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Card hover effects */
.slideformation {
  transition: all 0.3s ease;
}

.slideformation:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* --- Footer styles (was globals.css L1054-1078) --- */
/* Footer Styles */
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.single-footer-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--black);
  transition: all 0.3s ease;
}

.single-footer-link:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}


/* --- WhySolution CTA Block (was globals.css L1547-1649) --- */
/* WhySolution CTA Block */
.why-solution-cta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px 48px;
  background: linear-gradient(135deg, #164AF3 0%, #0D3AD4 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(22, 74, 243, 0.3);
}

.why-solution-cta-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.why-solution-cta-content {
  flex: 1;
}

.why-solution-cta-title {
  font-size: 24px;
  font-weight: 700;
  color: white !important;
  margin: 0 0 8px 0;
}

.why-solution-cta-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.5;
  margin: 0;
}

.why-solution-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: white;
  color: #164AF3 !important;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.why-solution-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 991px) {
  .why-solution-cta {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 32px 24px;
  }

  .why-solution-cta-title {
    font-size: 20px;
  }

  .why-solution-cta-text {
    font-size: 15px;
  }

  .why-solution-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media screen and (max-width: 479px) {
  .why-solution-cta {
    padding: 24px 20px;
  }

  .why-solution-cta-icon {
    width: 56px;
    height: 56px;
  }

  .why-solution-cta-title {
    font-size: 18px;
  }

  .why-solution-cta-text {
    font-size: 14px;
  }
}


/* --- FAQ Section Centering (was globals.css L1650-1672) --- */
/* FAQ Section Centering */
.centered {
  text-align: center;
}

.stickycolumnwrap {
  text-align: center;
}

.stickycolumnwrap .vflex32 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stickycolumnwrap .h2 {
  text-align: center;
}

.stickycolumnwrap .button-wrap {
  margin-top: 16px;
}


/* --- FinalCta Section (was globals.css L1673-1900) --- */
/* FinalCta Section */
.final-cta-section {
  padding: 100px 0;
  background: #f8fafc;
}

.final-cta-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
  background: linear-gradient(135deg, #164AF3 0%, #0D3AD4 100%);
  border-radius: 32px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(22, 74, 243, 0.25);
  position: relative;
  overflow: hidden;
}

.final-cta-decoration {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.final-cta-title {
  font-family: var(--font-heading), Poppins, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: white !important;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0 0 32px 0;
  position: relative;
  z-index: 1;
}

.final-cta-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.final-cta-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white !important;
  font-size: 15px;
  font-weight: 500;
}

.benefit-check {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.final-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: white !important;
  color: #164AF3 !important;
  font-size: 17px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.final-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.final-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: rgba(255, 255, 255, 0.15) !important;
  color: white !important;
  font-size: 17px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s ease;
}

.final-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.25) !important;
}

.final-cta-contact {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item:hover {
  color: white !important;
}

@media screen and (max-width: 991px) {
  .final-cta-section {
    padding: 80px 20px;
  }

  .final-cta-card {
    padding: 48px 32px;
  }

  .final-cta-title {
    font-size: 28px;
  }

  .final-cta-benefits {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

@media screen and (max-width: 600px) {
  .final-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta-primary,
  .final-cta-secondary {
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
  }

  .final-cta-contact {
    flex-direction: column;
    gap: 16px;
  }
}

@media screen and (max-width: 479px) {
  .final-cta-section {
    padding: 60px 16px;
  }

  .final-cta-card {
    padding: 40px 20px;
    border-radius: 24px;
  }

  .final-cta-icon {
    width: 60px;
    height: 60px;
  }

  .final-cta-title {
    font-size: 24px;
  }

  .final-cta-benefit {
    font-size: 14px;
  }

  .benefit-check {
    width: 24px;
    height: 24px;
  }
}


/* --- Footer with CTA sur mesure (was globals.css L2055-2139) --- */
/* Footer with CTA sur mesure */
.mega-menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 28px;
  border-top: 1px solid #F1F5F9;
  background: linear-gradient(135deg, #EEF2FF 0%, #F5F0FF 100%);
}

.mega-menu-custom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 16px;
  text-decoration: none;
  padding: 12px 20px;
  background: linear-gradient(135deg, #164AF3 0%, #6C3FE8 100%);
  border-radius: 12px;
  transition: all 0.25s ease;
}

.mega-menu-custom-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(22, 74, 243, 0.25);
}

.mega-menu-custom-cta-left {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.mega-menu-custom-cta-title {
  font-size: 16px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}

.mega-menu-custom-cta-techs {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.mega-menu-custom-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #164AF3;
  background: white;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  transition: gap 0.2s ease;
}

.mega-menu-custom-cta:hover .mega-menu-custom-cta-btn {
  gap: 10px;
}

.mega-menu-see-all {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #164AF3;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.2s ease;
}

.mega-menu-see-all:hover {
  background: #EEF2FF;
  gap: 10px;
}


/* --- Legal pages (was globals.css L2377-2479) --- */
/* Legal pages (politique de confidentialité, mentions légales, CGV) */
.legal-page {
  padding: 140px 20px 80px !important;
  background: var(--background) !important;
}

.legal-page .legal-container {
  max-width: 800px !important;
  margin: 0 auto !important;
}

.legal-page .legal-title {
  font-family: 'Jones', sans-serif !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  margin-bottom: 20px !important;
  line-height: 1.2 !important;
  padding: 0 !important;
}

.legal-page .legal-intro {
  font-size: 17px !important;
  color: var(--lighterdark) !important;
  line-height: 1.7 !important;
  margin-bottom: 48px !important;
  padding-bottom: 32px !important;
  border-bottom: 1px solid var(--border) !important;
}

.legal-page .legal-section {
  margin-bottom: 40px !important;
}

.legal-page .legal-section h2 {
  font-family: 'Jones', sans-serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  margin-bottom: 16px !important;
  margin-top: 0 !important;
  line-height: 1.3 !important;
  padding-bottom: 10px !important;
  border-bottom: 2px solid var(--primary) !important;
  display: inline-block !important;
}

.legal-page .legal-section h3 {
  font-family: 'Jones', sans-serif !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  color: var(--dark) !important;
  margin-top: 28px !important;
  margin-bottom: 12px !important;
  line-height: 1.4 !important;
}

.legal-page .legal-section p {
  font-family: 'Rethink Sans', 'Poppins', sans-serif !important;
  font-size: 15px !important;
  color: var(--lighterdark) !important;
  line-height: 1.75 !important;
  margin-bottom: 14px !important;
  margin-top: 0 !important;
}

.legal-page .legal-section ul {
  list-style: disc !important;
  padding-left: 24px !important;
  margin-bottom: 14px !important;
}

.legal-page .legal-section ul li {
  font-family: 'Rethink Sans', 'Poppins', sans-serif !important;
  font-size: 15px !important;
  color: var(--lighterdark) !important;
  line-height: 1.75 !important;
  margin-bottom: 6px !important;
}

.legal-page .legal-section a {
  color: var(--primary) !important;
  text-decoration: underline !important;
  transition: opacity 0.2s ease !important;
}

.legal-page .legal-section a:hover {
  opacity: 0.7 !important;
}

@media screen and (max-width: 767px) {
  .legal-page {
    padding: 120px 16px 60px !important;
  }

  .legal-page .legal-title {
    font-size: 26px !important;
  }

  .legal-page .legal-intro {
    font-size: 15px !important;
  }
}
