:root {
  /* OneMICE Palette */
  --color-midnight-ink:      #262B38;
  --color-graphite-flow:     #515F78;
  --color-steel-haze:        #9DACC3;
  --color-vapor-mist:        #DFE5ED;
  --color-neutral-grey:      #DCDCDC;
  --color-orange-tangerine:  #F74F23;
  --color-white:  #FFFFFF;
 
  --duration-fast: 150ms;
  --duration-normal: 350ms;
  --duration-slow: 500ms;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --stagger-delay: 80ms;
}
body,
main {
  background: var(--color-neutral-grey);
}

.container-fluid {
  max-width: 1070px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.text-white { color: #fff !important; }
.text-center { text-align: center !important; }
.mx-auto { margin-inline: auto !important; }
.mb-50 { margin-bottom: 50px; }
.mt-50{margin-top: 50px;}
.mb-1{margin-bottom: 10px;}
.flex-column { flex-direction: column; }
.mx-auto{margin-inline: auto !important;}
.flex-wrp {
  display: flex;
  align-items: center;
}

section h1 {
  font-size: 62px;
  font-weight: 700;
  line-height: 100%;
  margin: 0 0 10px;
  color: var(--color-white);
  margin-bottom: 25px;
}

section h2 {
  font-size: 50px;
  line-height: 1.1;
  color: var(--color-graphite-flow);
  font-weight: 600;
  letter-spacing: -5%;
  
}

section h3 {
  font-size: 28px;
  font-weight: 400;
  color: var(--color-graphite-flow);
  margin: 0 0 5px;
  line-height: 100%;
  letter-spacing: -5%;
  font-weight: 400;
}

section h4 {
  font-size: 28px;
  margin: 5px 0 10px;
  font-weight: 400;
}

section p {
  font-size: 16px;
  color: var(--color-graphite-flow);
  font-weight: 400;
  line-height: 20px;
}

h1 span {
  display: block;
  /* opacity: 75%; */
}

h3.text-orange {
  color: var(--color-orange-tangerine);
}
.btn-wrp {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}
.mb-0{
    margin-bottom: 0 !important;
}
.btn-wrp a {
    margin-top: 0 !important;
}
/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  padding: 35px 0;
  border-bottom: 1px solid #fff;
  background-color: #262b3878;
  backdrop-filter: blur(10px);
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1), inset 0 0 15px 2px rgb(255 255 255 / 72%);
}

.header::after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  filter: blur(15px);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  z-index: 1;
  position: relative;
}

header nav.nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
  align-items: center;
}

header nav.nav ul li a {
  font-size: 16px;
  color: var(--color-vapor-mist);
  font-weight: 400;
  border: 1px solid transparent;
  padding: 5px 10px;
  line-height: 1;
  border-radius: 8px;
}

header nav.nav ul li a:hover {
  border-color: var(--color-vapor-mist);
  background: #DFE5ED33;
}

/* Polylang Switcher */
header nav.nav ul.polylang-switcher {
  gap: 5px;
  margin-left: 50px;
}

header nav.nav ul.polylang-switcher li a {
  text-transform: uppercase;
  border: 1px solid #f6f6f647;
  background: #DFE5ED1c;
  font-size: 10px;
  padding-inline: 6px;
}

header nav.nav ul.polylang-switcher li a:hover {
  background: #262b382e;
}

.btn-banner {
  box-shadow: 0 4px 16px rgba(38,43,56,0.2);
}

.btn-banner:active, .btn-black:active{
    transform: scale(0.97) !important;
}
section .btn-banner {
  background-color: var(--color-vapor-mist);
  font-size: 16px;
  color: var(--color-midnight-ink);
  font-weight: 400;
  line-height: 1;
  padding: 16px 33px;
  display: block;
  width: fit-content;
  border-radius: 35px;
  margin-top: 35px;
  text-decoration: none; 
  background-image: linear-gradient(to right, #262B38 50%, #DFE5ED 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: background-position 0.4s ease, color 0.4s ease;
}

section .btn-banner:hover {
  background-position: left bottom;
  color: var(--color-vapor-mist);
}

a.btn-black {
  background-color: var(--color-midnight-ink);
  color: var(--color-vapor-mist);
  font-size: 16px;
  line-height: 1;
  padding: 16px 33px;
  border-radius: 25px;
  display: block;
  width: fit-content;
  margin: 30px 0 0;
  text-decoration: none;
  background-image: linear-gradient(to right, #515F78 50%, #262B38 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: background-position 0.4s ease, color 0.4s ease;
  box-shadow: 0 4px 16px rgba(38, 43, 56, 0.2);
}

a.btn-black:hover {
  background-position: left bottom;
  color: var(--color-vapor-mist); 
}

a.btn-read,
span.btn-read {
  display: block;
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  width: fit-content;
  padding: 10px 17px;
  color: var(--color-vapor-mist);
  background-color: var(--color-graphite-flow);
  border-radius: 20px;
}

a.btn-read {
  font-size: 16px;
  padding: 10px 15px;
}

span.btn-read {
  margin: 15px 0 0;
}
.date-author {
    color: #515F78;
    font-size: 15px;
    opacity: 50%;
    display: block;
}

section  p.article-excerpt {
    margin-bottom: 8px;
    margin-top: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* ==========================================================================
   Hero Banner Sections
   ========================================================================== */
.banniere {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center; 
  padding: 160px 0;
}

.banniere::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; 
  background: linear-gradient(rgba(38, 43, 56, 0.2), rgba(38, 43, 56, 0.5));
  pointer-events: none;
}

.banniere-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.banniere .container-fluid {
  position: relative;
  z-index: 2;
}

.banner-content {
  max-width: 700px; 
  text-align: left; 
  color: var(--color-vapor-mist); 
  z-index: 2;
}

.banner-content p {
  color: #DCDCDC;
  font-size: 32px;
  margin: 0;
  line-height: 100%;
}
.banner-content:not(.home) p {
  color: #fff;
}
section.banniere.bannier-2 .banner-content {
  max-width: 100%;
}

.banner-content h4 {
    color: #fff;
    margin-top: 20px;
}

section.banniere.bannier-2 .banner-content p {
  font-size: 16px;
  color: var(--color-neutral-grey);
}
section.banniere.bannier-2 .banner-content h3 {
    font-size: 28px;
    color: var(--color-white);
}
section.banniere.bannier-2 h3 {
  color: var(--color-vapor-mist);
}

.bannier-2 .content-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
section .content-left h2 {
    margin: 0 0 25px;
}
section.banniere.bannier-2 .content-right {
  text-align: left;
  max-width: 440px;
}

section.banniere.bannier-2 .content-right a.btn-banner {
  margin-right: inherit;
}

section.banniere.bannier-2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  background: linear-gradient(to bottom, #2626387a 0%, rgb(38 38 56 / 44%) 100%);
  transform: rotate(180deg);
}

section.banniere.bannier-2 .container-fluid {
  position: relative;
  z-index: 3;
}

.overlay-0::after {
  opacity: 0;
}

section.banniere.bannier-2 .banner-content.benefits h4, 
section.banniere.bannier-2 .banner-content.benefits p {
  position: relative;
  z-index: 1;
  color: var(--color-midnight-ink) !important;
  font-weight: 400;
  line-height: 100%;
}

section.banniere.bannier-2.overlay-0 h2 {
  color: #DFE5ED !important;
}

section.banniere.bannier-2 .banner-content .partener-item p {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 100%;
  /* opacity: 70%; */
  line-height: 20px;
}
main#booking-page section.banniere.bannier-2 .banner-content.benefits p {
    opacity: 1;
}
section.text-image {
  padding: 50px 0;
  min-height: 800px;
  align-items: center;
  display: flex;
}

section.text-image h3 {
  margin: 20px 0;
}

.text-bloc {
  max-width: 565px;
}
.text-bloc p.big-p {
    font-size: 20px;
}
.text-bloc p {
  font-size: 16px;
  color: var(--color-graphite-flow);
  font-weight: 400;
  letter-spacing: -5%;
}

.flex-column .text-bloc {
  max-width: 614px;
}

.img-bloc {
  border-radius: 20px;
  overflow: hidden;
}

/* ==========================================================================
   Blog Section
   ========================================================================== */
section#blog {
  padding: 50px 0;
}
section#blog.categories h3 {
    text-align: left;
    margin: 0;
    color: #121319;
    margin: 10px 0 0;
}
section#blog h3 {
  text-align: center;
}
section#blog h3.titre.blog-title {
    text-align: left;
    color: #121319;
    margin: 15px 0 5px;
}
.blog-title {
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}
span.blog-text {
  color: var(--color-graphite-flow);
  text-align: center;
  font-size: 16px;
  display: block;
  font-weight: 400;
}
section#blog.categories  span.blog-text {
    margin-bottom: 0;
}
section#blog.categories .blog-url .article-image img{
  max-height: 163px;
}
.blog-slide {
  margin-top: 35px;
  display: flex;
  gap: 25px;
  justify-content: center;
}

.blog-item {
  max-width: 341px;
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  border: 1px solid #E5E5EB;
}

.art-cat-wrp {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: start;
}

span.article-category {
  display: block;
  font-size: 15px;
  color: #2E5E3E;
  width: fit-content;
  margin: 0;
  background: #2e5e3e26;
  padding: 5px 7px;
  border-radius: 20px;
  font-weight: 400;
  line-height: 1;
}

.txt-bloc {
  background-color: var(--color-white);
  padding: 20px 25px;
  height: 100%;
  max-height: 200px;
}

span.titre {
  font-size: 20px;
  color: #121319;
  margin: 10px 0;
  display: block;
}

.blog-url {
  display: flex;
  flex-direction: column;
  height: 100%; 
  text-decoration: none; 
}

.blog-url .txt-bloc {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  max-height: 100%;
}

.blog-url .article-image {
  overflow: hidden;
  backface-visibility: hidden;
  height: 100%;
  display: block;
}

.blog-url .article-image img {
  transition: transform 0.4s ease;
  display: block;
  width: 100%;
  height: 200px;
}

.blog-url:hover .article-image img {
  transform: scale(1.08); 
}

.article-image img {
  width: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Modules Section
   ========================================================================== */
section.modules {
  padding: 75px 0;
}

section.modules h2 {
  font-weight: bold;
  margin-bottom: 0;
}
section.modules h3 {
    margin: 25px 0 35px;
}
section .text-black {
    color: #121319;
}
section.modules .text h3 {
    margin-bottom: 0;
}
.module-item {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: flex-start;
  padding: 30px 0;
  border-top: 1px solid #F74F23;
}
video.module-video {
    width: 360px;
    height: 220px;
    object-fit: cover;
}
.module-item .text {
  max-width: 648px;
}

.text p {
  letter-spacing: -5%;
}

.module-item h3 {
  margin-bottom: 15px;
}

.module-item .image {
  border-radius: 20px;
  overflow: hidden;
  max-width: 360px;
}

.module-item .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ==========================================================================
   Architecture Section
   ========================================================================== */
.architecture .flex-wrp {
  justify-content: space-between;
  gap: 25px;
}

section.architecture h4 {
  font-weight: 400;
  color: var(--color-graphite-flow);
}
section .btn-banner.light-btn {
    background-image: linear-gradient(to right, #dfe5ed 50%, #262B38 50%);
    color: #fff;
    margin-inline: auto;
}

section .btn-banner.light-btn:hover {
    color: #262B38;
}
/* ==========================================================================
   FAQ Section
   ========================================================================== */
section.faq {
  min-height: 100vh;
  padding: 120px 0; 
  box-sizing: border-box;
  display: block; 
}

section.faq h2 {
  text-align: center;
  margin-bottom: 50px;
  max-width: 940px;
  margin-inline: auto;
}

.faq-wrp {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #D85C3A;
}

.faq-item {
  border: none;
  border-bottom: 1px solid #D85C3A;
  padding: 25px 0;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-header h3 {
  color: #262B38;
  margin: 0;
  padding-right: 20px;
  flex: 1;
}

.faq-toggle-btn {
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  background-color: #262b381f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background-color 0.3s ease;
}

.faq-toggle-btn::before {
    content: "+";
    font-size: 26px;
    color: #262B38;
    font-weight: 400;
    line-height: 1;
    margin-top: -2px;
}

.faq-item.is-open .faq-toggle-btn::before {
  content: "−";
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-content-inner {
  padding-top: 15px;
  padding-bottom: 5px;
}

section.faq p, 
.faq-content-inner p {
  margin: 0;
}
/* ==========================================================================
   Partners Section
   ========================================================================== */
section.partener {
  background: url(../img/Partners-Section.jpg) no-repeat center / cover;
  min-height: 474px;
  display: flex;
  align-items: center;
  padding: 50px 0;
}

section.partener h2 {
  text-align: center;
  color: var(--color-white);
  margin: 0 0 50px;
}

.partener-wrp {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}

section.partener a.btn-banner {
  margin: 50px auto 0;
}

.partener-item {
  /* max-width: 345px; */
  width: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 40px 26px;
  color: var(--color-vapor-mist);
  flex: 1;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1), 
              inset 0 0 15px 2px rgba(255, 255, 255, 0.4);
}

.partener-item::after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.partener-item .btn-banner {
    font-size: 16px;
    padding: 12.5px 21.3px;
    margin-top: 50px;
    line-height: 20px;
}
.partener-item p {
  color: var(--color-midnight-ink);
  margin-bottom: 0;
}

.partener-item p, 
.partener-item img {
  position: relative;
  z-index: 1;
}

/* Variant Core Bottom */
section.partener.core-bottom {
  min-height: 800px;
  margin-top: 50px;
}

section.partener.core-bottom .partener-wrp {
  align-items: center;
  gap: 35px;
}

.partener-wrp .bloc-text {
  max-width: 656px;
}

.partener-wrp .bloc-text a.btn-banner {
  margin: 0;
}

.partener-wrp .bloc-text p {
  margin: 25px 0;
  color: var(--color-midnight-ink);
}

.partener-wrp .bloc-text h3 {
  margin-bottom: 0;
  line-height: 1;
}

section.partener.core-bottom .partener-item {
  background: #DFE5ED29;
  max-width: 320px;
}

section.partener.core-bottom .partener-item h3 {
  color: var(--color-white);
  margin-bottom: 10px;
}

section.partener.core-bottom .partener-item img {
  border-radius: 100%;
  max-width: 80px;
  margin: 20px 0;
}

.partener-item a.btn-black {
  margin: 20px 0 0;
}
.home-bottom .partener-item img {
    max-height: 40px;
    width: auto;
}
section.partener.bg-gris {
  background: transparent;
  min-height: 800px;
}

section.partener.bg-gris h2 {
  margin-bottom: 0;
  color: var(--color-graphite-flow);
}

section.partener.bg-gris h3 {
  margin: 25px 0 50px;
}

section.partener.bg-gris .partener-wrp {
    display: flex; 
    flex-wrap: wrap;
    gap: 25px 10px;
    justify-content: center; 
}
section.partener.bg-gris .partener-wrp > div {
    flex: 1 1 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
}

section.partener.bg-gris .partener-wrp > div:nth-child(n+4) {
    flex: 1 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
}

section.partener.bg-gris .partener-wrp > div:nth-child(3)::after {
    content: "";
    flex-basis: 100%;
    width: 0;
    height: 0;
}
.partener-wrp.item-bg-white {
    margin-top: 35px;
}
section.partener.bg-gris .item-bg-white .partener-item {
    background: #F5F5F7;
}
section.partener.bg-gris .partener-item {
  max-width: 344px;
  width: 100%;
  flex: inherit;
  background-color: var(--color-vapor-mist);
  padding-inline: 20px;
}
main#booking-page section.partener.bg-gris .partener-wrp {
    gap: 40px 20px;
}

main#booking-page section.partener.bg-gris .partener-wrp .partener-item {
    padding-block: 17px;
    padding-inline: 16.5px;
}
section.partener.bg-gris .partener-item::after {
  background: #07070814;
}

section.partener.bg-gris .partener-item h4 {
  color: #121319;
}

section.partener.bg-gris .partener-item p {
  color: var(--color-graphite-flow);
}

/* ==========================================================================
   Customer Section
   ========================================================================= */
section.customer {
  background-color: var(--color-vapor-mist);
  padding: 50px 0;
}

.customers-wrp {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.customers-wrp p {
  margin: 0;
}

.customer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 750px;
  gap: 10px;
}
.customer-logos img {
    object-fit: contain;
    width: auto;
    max-height: 28px;
}
.customer-logos img.arag {
    max-height: 50px;
    position: relative;
}
/* --- Booking Page --- */
main#booking-page .blog-item {
  max-width: 50%;
}

span.sous-titre {
  font-size: 16px;
  color: var(--color-orange-tangerine);
  display: block;
  line-height: 20px;
  margin-bottom: 10px;
}

main#booking-page span.titre {
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 10px;
}

main#booking-page section#blog h3 {
  margin: 20px 0 50px;
}

main#booking-page span.btn-read {
    margin: 25px 0 0;
    background-color: var(--color-midnight-ink);
    padding: 12.5px 30.5px;
}

main#booking-page .blog-url .txt-bloc {
  max-height: 100%;
  background: #fff;
}

main#booking-page .blog-url .txt-bloc p {
    margin: 0;
}

/* --- Partner Page --- */
main#partner-page section h1 {
  line-height: 100%;
  color: var(--color-midnight-ink);
  margin: 0 0 25px;
}
#partner-page .banner-content {
    max-width: 710px;
}
#partner-page #valeur .banner-content {
    max-width: 100%;
}
#partner-page .flex-wrp {
  justify-content: space-between;
  gap: 35px;
}

#partner-page .flex-wrp p {
  margin-bottom: 25px;
}
main#partner-page .blog-url .txt-bloc {
    background: #fff;
    padding: 10px 15px;
}
main#partner-page section.banniere.bannier-2::after {
  opacity: 0;
}

main#partner-page section.banniere.bannier-2 h4 {
  color: var(--color-midnight-ink);
  font-weight: 400;
}

main#partner-page section.banniere.bannier-2 p {
  color: var(--color-graphite-flow);
}

.bloc-secure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.bloc-secure a.btn-black {
  margin-inline: auto;
  margin-top: 50px;
}

.bloc-secure .text-bloc {
  max-width: 100%;
}

.bloc-secure .text-bloc p {
  max-width: 650px;
  margin-inline: auto;
  margin-top: 15px;
  font-size: 20px;
}

main#partner-page .partener-wrp .bloc-text > * {
  color: #515F78 !important;
}

main#partner-page .partener-wrp h5 {
  color: var(--color-graphite-flow);
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}
#partner-page .partener a.btn-banner {
    margin: 20px 0 0;
    padding: 10px 20px;
    background-image: linear-gradient(to right, #262B38 50%, #515F78 50%);
    color: var(--color-vapor-mist);
}
main#partner-page .partener-item h3 {
  color: #515F78 !important;
}

main#partner-page .partener-item p {
  color: var(--color-graphite-flow);
}

/* --- Insight Page --- */

main#insight-page .banner-content {
    max-width: 567px;
}
main#insight-page section#blog {
    padding-bottom: 125px;
}
span.badge {
  color: #2E5E3E;
  background: #E4F0E8;
  display: block;
  width: fit-content;
  font-size: 15px;
  font-weight: 400;
  border-radius: 20px;
  padding: 8px 15px;
}
main#insight-page section#blog span.btn-read {
    margin-top: 25px;
}
main#insight-page .text-image h3 {
  color: #121319;
}
section.text-image.architecture a.btn-read {
    padding-block: 12px;
    background-image: linear-gradient(to right, #262B38 50%, #515f78 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: background-position 0.4s ease, color 0.4s ease;
}
section.text-image.architecture a.btn-read:hover {
    background-position: left bottom;
    color: var(--color-vapor-mist);
}
main#insight-page .text-bloc {
  max-width: 511px;
  background: #fff;
  padding: 24px 20px;
  border-radius: 20px;
}
main#insight-page .img-bloc {
    max-width: 520px;
}
span.author {
  color: #8C8C91;
  font-size: 15px;
  line-height: 100%;
  display: block;
  margin: 15px 0 20px;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
#site-footer {
  background-color: var(--color-midnight-ink);
  padding: 60px 0;
  color: var(--color-vapor-mist);
}

#site-footer h3 {
  font-weight: 400;
  font-size: 20px;
  color: var(--color-steel-haze);
  margin-bottom: 20px;
  margin-top: 0;
}

footer .row {
  display: grid;
  grid-template-columns: repeat(4, 25%);
}

.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
  max-width: 186px;
}

.footer-links li {
  margin-bottom: 20px;    
}

.footer-links li a {
  font-weight: 400;
  font-size: 16px;
  color: var(--color-vapor-mist);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-links li a:hover {
  opacity: 0.7;
}

ul.rs {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px;
  align-items: center;
  margin: 20px 0 0;
}
span.sous-label {
    font-size: 15px;
    display: block;
    margin: 20px 0;
    color: #fff;
}
main#single-article .banner-content {
    max-width: 100%;
    text-align: center;
}

main#single-article span.badge {
    margin-inline: auto;
}
main#single-article h1 {
    margin: 25px 0;
}

section.banniere span.author {
    color: #fff;
    font-size: 16px;
}
.single-layout {
    max-width: 1070px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
    padding-block: 65px;
}

.sidebar-left {
    position: sticky;
    top: 200px;
    height: max-content;
    border-right: 3px solid #E5E5EB;
    padding-right: 30px;
}

.toc-sticky {
    width: 100%;
}

.toc-title {
    font-size: 24px;
    font-weight: 400;
    color: var(--color-midnight-ink);
    margin-bottom: 20px;
    padding-left: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-orange-tangerine);
    margin-top: 0;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 5px;
}

.toc-list a {
    display: block;
    padding: 12px 15px;
    color: var(--color-graphite-flow);
    text-decoration: none;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    border: 1px solid rgb(255 255 255 / 0%);
}

.toc-list a:hover {
    color: var(--color-midnight-ink);
}

.toc-list a.active {
    color: var(--color-orange-tangerine);
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    flex: 1;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1), inset 0 0 15px 2px rgb(255 255 255 / 20%);
}

.post-content {
    color: var(--color-graphite-flow);
}

.post-content p {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.6;
}

.post-content h3 {
    margin-top: 60px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-orange-tangerine);
    font-weight: 500;
    scroll-margin-top: 240px;
    color: var(--color-midnight-ink);
}

.post-content h3:first-child {
    margin-top: 0;
}

.post-content em {
    background-color: var(--color-vapor-mist);
    border-left: 4px solid var(--color-orange-tangerine);
    margin: 40px 0;
    padding: 25px 30px;
    border-radius: 0 10px 10px 0;
    display: block;
    font-style: normal;
}

.post-content blockquote p {
    margin-bottom: 15px;
    color: var(--color-midnight-ink);
}

.post-content blockquote p:last-child {
    margin-bottom: 0;
}
.cta-mice-block {
    background-color: var(--color-midnight-ink);
    border-radius: 12px;
    padding: 35px 40px;
    margin: 50px 0;
}

.cta-mice-block .cta-mice-title {
    color: var(--color-white);
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 500;
    border: none;
    padding-bottom: 0;
}

.cta-mice-block .cta-mice-text {
    color: #DFE5ED;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 65%;
}

.cta-mice-block .cta-mice-btn {
    background-color: var(--color-vapor-mist);
    color: var(--color-midnight-ink);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    DISPLAY: flex;
    width: fit-content;
    align-items: center;
    gap: 5px;
    line-height: 1;
}

.cta-mice-block .cta-mice-btn:hover {
    background-color: var(--color-white);
    transform: translateY(-2px);
}
.author-box-mice {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
    padding: 30px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 12px;
    color: var(--color-vapor-mist);
    flex: 1;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1), inset 0 0 15px 2px rgba(255, 255, 255, 0.4);
}

.author-box-mice .author-avatar {
    flex-shrink: 0;
}

.author-box-mice .author-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.author-box-mice .author-content {
    flex-grow: 1;
}

.author-box-mice .author-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: -5%;
    color: var(--color-steel-haze);
    margin-bottom: 7px;
}

.author-box-mice .author-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-midnight-ink);
    margin: 0 0 12px 0;
}

.author-box-mice .author-divider {
    border: none;
    height: 1px;
    background-color: #E5E5EB;
    margin: 0 0 15px 0;
    width: 100%;
}

.author-box-mice .author-bio {
    font-size: 15px;
    color: var(--color-graphite-flow);
    margin: 0;
    line-height: 1.6;
}
main#a-propos .banniere-video {
    top: 60%;
}
.onemice-history-section {
    padding: 80px 0;
    position: relative;
}

.onemice-history-section.has-after::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #262b38ab;
    top: 0;
    left: 0;
    z-index: 1;
}

.onemice-history-section .container-fluid {
    position: relative;
    z-index: 2;
}

.onemice-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.onemice-stats-grid .stat-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.onemice-stats-grid .stat-number {
    font-size: 50px;
    font-weight: 600;
    color: var(--color-orange-tangerine);
    line-height: 1;
    margin: 0;
}

.onemice-stats-grid .stat-desc {
    font-size: 14px;
    color: var(--color-graphite-flow);
    margin: 0;
    line-height: 1.5;
}

.history-eyebrow {
    display: block;
    font-size: 28px;
    color: var(--color-orange-tangerine) !important;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.onemice-history-section .history-title {
    font-size: 50px;
    color: var(--color-midnight-ink);
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 25px;
    line-height: 1;
    border-bottom: none;
    padding-bottom: 0;
}

.onemice-history-section .history-text {
    font-size: 16px;
    color: var(--color-graphite-flow);
    line-height: 20px;
    margin-bottom: 24px;
}

.onemice-glass-quote {
    margin: 40px 0 0 0;
    padding: 35px 40px;
    border-radius: 12px;
    background: #3f3d3d24;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(12px); 
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1), inset 0 0 15px 2px rgba(255, 255, 255, 0.4);
}
.onemice-glass-quote .quote-deco-line {
    width: 35px;
    height: 2px;
    background-color: var(--color-orange-tangerine);
    margin-bottom: 20px;
}

.onemice-glass-quote .quote-text {
    font-size: 16px;
    color: var(--color-midnight-ink);
    line-height: 20px;
    margin: 0 0 15px 0;
}

.onemice-glass-quote .quote-author {
    font-size: 20px;
    color: var(--color-graphite-flow);
    line-height: 100%;
    opacity: 75%;
}
section.fondateur h2 {
  color: var(--color-midnight-ink);
  margin: 10px 0 15px;
}
section.banniere.bannier-2.fondateur .banner-content h3 {
    color: var(--color-graphite-flow);
    margin-bottom: 50px;
}
main#a-propos .fondateur .banniere-video {
    top: 50%;
}
section.banniere.bannier-2.fondateur .banner-content h3.history-eyebrow {
    margin-bottom: 0;
}
span.partener-title {
    display: block;
    font-size: 20px;
    line-height: 100%;
    color: var(--color-midnight-ink);
    font-weight: 600;
    margin-top: 30px;
}

.fondateur span.sous-label {
    color: #F74F23;
    border-bottom: 1px solid #E5E5EB;
    padding-bottom: 20px;
}

section.banniere.bannier-2.fondateur .banner-content .partener-item p {
    color: #515F78;
}

.fondateur .partener-item {
    background: #ffffff17;
    border: 1px solid #fff;
    padding-block: 25px;
}
section.banniere.bannier-2.fondateur::after {
    display: none;
}
span.sep-orange {
    display: block;
    border: 1px solid #F74F23;
    margin: 15px 0;
}

span.num {
    display: block;
    font-size: 62px;
    color: #F74F23;
    font-weight: 700;
}

.partener-wrp.numbered span.partener-title {
    margin-top: 15px;
}
.onemice-history-section .white-content .history-title, .onemice-history-section .white-content p, .onemice-history-section .white-content span {
    color: #DFE5ED;
}

.onemice-history-section .white-content  p.history-text {
    opacity: 75%;
}
section.sec-bottom h2 {
    margin-bottom: 0;
    color: #262B38;
    margin-top: 0;
}

section.sec-bottom h3 {
    margin: 25px 0 50px;
    max-width: 720px;
    margin-inline: auto;
}

section.sec-bottom {
    padding: 80px 0;
}
section.banniere.bannier-2 {
    min-height: 800px;
}
.onemice-jobs-section {
    margin: 0 auto;
    background: #fff;
}

.jobs-header {
    background-color: #E5E5E5; 
    padding: 60px 40px;
}

.jobs-title {
    font-size: 42px;
    color: var(--color-midnight-ink);
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.jobs-list {
    background-color: var(--color-white);
}

.job-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    padding: 40px 0;
    border-bottom: 1px solid var(--color-vapor-mist);
    text-decoration: none;
    transition: transform 0.2s ease;
}

.job-card:last-child {
    border-bottom: none;
}

/* .job-card:hover .job-arrow {
    transform: translateX(5px); 
    background-color: var(--color-orange-tangerine);
    border-color: var(--color-orange-tangerine);
}
 */


.job-name {
    font-size: 20px;
    color: var(--color-midnight-ink);
    margin: 0 0 12px 0;
    font-weight: 500;
}

.job-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--color-graphite-flow);
}

.job-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
}

.badge-dept {
    background-color: var(--color-vapor-mist);
    color: var(--color-graphite-flow);
}

.badge-contract {
    background-color: #E4F4E9;
    color: #226636;
}
.job-excerpt {
    font-size: 16px;
    color: var(--color-graphite-flow);
    line-height: 20px;
    margin: 0;
}
.job-action {
    display: flex;
    align-items: center;
    padding-top: 10px;
}

.job-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 38px;
    border-radius: 100px;
    background-color: var(--color-midnight-ink);
    color: var(--color-white);
    transition: all 0.3s ease;
}
.cta-section {
    background-size: cover;
    background-position: center;
    padding: 150px 0 80px;
    color: #fff;
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    max-width: 1070px;
    margin: 0 auto;
    border-bottom: 1px solid #F74F23;
    padding-bottom: 50px;
}

.cta-content {
    flex: 1;
    max-width: 470px;
}

.cta-form-box {
    flex: 0 0 476px;
    backdrop-filter: blur(15px);
    /* border: 1px solid rgba(255, 255, 255, 0); */
    padding: 33px;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1), inset 0 0 15px 2px rgb(255 255 255 / 72%);
    background: linear-gradient(to bottom, #364a69d1, #b8b8b800);
}

.wpcf7-form-control-wrap input {
    width: 100%;
    padding: 13px 15px;
    border-radius: 10px;
    border: none;
    background: #fff;
    color: #515F78;
}
.wpcf7-form-control::placeholder {
    color: #515F78 !important;
    opacity: 1; 
}
.wpcf7-submit {
    width: 100%;
    padding: 10px 15px;
    background: #1a1f26;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 400;
    margin-top: 15px;
}

section .cta-content p {
    color: #fff;
}

main#contact-page h1 {
    margin-top: 15px;
    border-bottom: 1px solid #F74F23;
    padding-bottom: 25px;
}

section .cta-form-box h3 {
    color: #fff;
    margin-bottom: 25px;
}

span.wpcf7-spinner {
    position: absolute;
    right: -50px;
}

.form-row {
    position: relative;
}

#page-404 {
    background-color: #E5E5E5;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#page-404 h1 {
    font-size: 120px;
    color: var(--color-midnight-ink);
    margin: 0;
    line-height: 1;
}

#page-404 h2 {
    font-size: 28px;
    color: var(--color-graphite-flow);
    margin: 20px 0 40px;
}

#page-404 .btn-read:hover {
    background-color: var(--color-graphite-flow) !important;
}
/* Base et conteneur principal */
    #demo-page {
        position: relative;
        min-height: 100vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
         /* Padding bas pour laisser place à la barre fixe */
        padding: 160px 0 50px;
    }

    .demo-overlay {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        /* Léger dégradé pour garantir la lisibilité du texte si l'image est claire */
        background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(38,43,56,0.3));
        z-index: 1;
    }

    .demo-container {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
    }

    .demo-page-title {
        font-size: 4.5rem;
        font-weight: 700;
        color: #1A1A24;
        margin-top: 0;
        margin-bottom: 2.5rem;
        letter-spacing: -1.5px;
    }

    /* Lignes de séparation orange */
    .orange-divider {
        border: none;
        border-top: 2px solid #D85C3A;
        margin: 0;
        opacity: 0.9;
    }
    .divider-top { margin-bottom: 3.5rem; }
    .divider-bottom { margin-top: 3.5rem; }

    .demo-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
        justify-content: space-between;
        align-items: center;
    }

    /* Colonne texte (gauche) */
    .demo-text-col {
        flex: 1;
        min-width: 320px;
        color: #FFFFFF;
        text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .demo-text-col h2 {
        font-size: 28px;
        font-weight: 400;
        margin-top: 0;
        margin-bottom: 1rem;
        color: #FFFFFF;
        letter-spacing: -0.5px;
    }

    .demo-text-col p {
        font-size: 16px;
        line-height: 20px;
        opacity: 0.95;
        margin-bottom: 2.5rem;
        max-width: 450px;
        color: #DFE5ED;
    }

    .btn-dark-pill {
        display: inline-flex;
        align-items: center;
        background-color: #262B38;
        color: #FFFFFF;
        text-decoration: none;
        padding: 16px 32px;
        border-radius: 40px;
        font-size: 1.05rem;
        font-weight: 500;
        transition: background-color 0.3s ease;
        border: 1px solid rgba(255,255,255,0.1);
    }
    .btn-dark-pill:hover {
        background-color: #1A1D26;
        color: #FFFFFF;
    }

    .demo-calendar-col {
        flex: 1;
        min-width: 350px;
        display: flex;
        justify-content: flex-end;
    }

    .calendar-widget {
        background: #FFFFFF;
        border-radius: 16px;
        padding: 35px;
        width: 100%;
        max-width: 460px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        color: #333333;
    }

    .calendar-widget h3 {
        font-size: 16px;
        font-weight: 600;
        margin-top: 0;
        margin-bottom: 1.8rem;
        color: #1A1A24;
        line-height: 125%;
    }

    .calendar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
        font-size: 16px;
        line-height: 20px;
    }

    .calendar-header .nav-group {
        display: flex;
        gap: 8px;
        align-items: center;
    }
    
    .calendar-header .month-year {
        font-weight: 500;
        color: #1A1A24;
        text-transform: capitalize;
    }

    .calendar-header .nav-arrow {
        cursor: pointer;
        font-size: 20px;
        color: #888888;
        padding: 0 4px;
        user-select: none;
        transition: color 0.2s;
    }
    .calendar-header .nav-arrow:hover {
        color: #1A1A24;
    }

    .calendar-grid {
        margin-bottom: 2rem;
    }

    .day-names, .days {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        text-align: center;
        gap: 5px;
    }

    .day-names span {
        font-size: 16px;
        color: #A0A0A0;
        margin-bottom: 15px;
    }

    .days span {
        display: flex;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1;
        font-size: 14px;
        color: #444444;
        cursor: pointer;
        border-radius: 10px;
        transition: background-color 0.2s, color 0.2s;
    }

    .days span.empty {
        cursor: default;
    }

    .days span.weekend {
        color: #A0A0A0;
    }

    .days span.selected {
        background-color: #92A3C3; 
        color: #FFFFFF;
        font-weight: 600;
    }
    
    .days span:not(.empty):not(.selected):hover {
        background-color: #F0F2F5;
    }

    .calendar-footer {
        font-size: 16px;
        color: #555555;
    }
    .calendar-footer strong {
        color: #1A1A24;
        font-weight: 600;
        text-transform: capitalize;
    }

    .demo-bottom-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: #FAFAFA;
        padding: 16px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 -2px 15px rgba(0,0,0,0.06);
        z-index: 100;
        flex-wrap: wrap;
        gap: 20px;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

    .demo-bottom-bar p {
        margin: 0;
        color: #515F78;
        font-size: 16px;
    }
    .demo-bottom-bar .container-fluid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    .bar-actions {
        display: flex;
        gap: 12px;
    }

    .btn-outline {
        text-decoration: none;
        color: #333333;
        border: 1px solid #D0D0D0;
        background: #FFFFFF;
        padding: 10px 20px;
        border-radius: 6px;
        font-size: 16px;
        font-weight: 400;
        transition: all 0.2s;
    }

    .btn-outline:hover {
        background: #F5F5F5;
        border-color: #B0B0B0;
    }

    .btn-solid {
        text-decoration: none;
        background: #262B38;
        color: #FFFFFF;
        padding: 10px 20px;
        border-radius: 6px;
        font-size: 16px;
        font-weight: 400;
        transition: all 0.2s;
    }

    .btn-solid:hover {
        background: #1A1D26;
        color: #FFFFFF;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .demo-page-title { font-size: 3.5rem; }
        .demo-calendar-col { justify-content: flex-start; }
    }

    @media (max-width: 768px) {
        .demo-page-title { font-size: 2.8rem; }
        .demo-grid { gap: 40px; }
        .demo-bottom-bar .container-fluid {
            flex-direction: column;
            text-align: center;
            padding: 20px;
            gap: 20px;
        }
        .bar-actions {
            width: 100%;
            justify-content: center;
        }
    }
/* --- Responsive Mobile --- */
@media (max-width: 768px) {
    .jobs-header {
        padding: 40px 20px;
    }
    
    .jobs-title {
        font-size: 32px;
    }

    .jobs-list {
        padding: 0 20px;
    }

    .job-card {
        flex-direction: column;
        padding: 30px 0;
    }

    .job-content {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .job-meta {
        flex-wrap: wrap; 
    }
}
main#carriere-page .banner-content p {
    opacity: 75%;
}
section.intro-carriere {
    background: #fff;
    padding: 80px 0;
}

section.intro-carriere h2 {
    margin-top: 0;
}

main#carriere-page h1, main#carriere-page h2 {
    color: #262B38;
}

.jobs-header h2 {
    margin-top: 0;
    margin-bottom: 0;
}
main#carriere-page section.sec-bottom p {
    color: #fff;
    opacity: 70%;
}
main#single-job a.btn-black {
    margin: 0;
}
.wpml-ls-item {
    display: none !important;
    gap: 5px;
}

header nav.nav ul .wpml-ls-item ul {
    padding: 0;
    gap: 5px;
}

header ul .wpml-ls-menu-item a {
    display: flex !important;
    align-items: center;
    border-color: var(--color-vapor-mist);
    background: #DFE5ED33;
    font-size: 10px !important;
    height: 26px;
}

header .sub-menu .wpml-ls-menu-item a {
    background: #5b5f6545;
    border: 1px solid #ffffff4f;
}
@media (max-width: 768px) {
    .onemice-stats-grid {
        grid-template-columns: 1fr; 
        gap: 40px;
        margin-bottom: 50px;
    }

    .onemice-history-section .history-title {
        font-size: 32px;
    }

    .onemice-glass-quote {
        padding: 25px 20px;
    }
}
@media (max-width: 600px) {
    .author-box-mice {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 20px;
    }
}
@media (max-width: 900px) {
    .single-layout {
        grid-template-columns: 1fr; 
        padding-inline: 25px;
        gap: 0;
    }
    
    .sidebar-left {
        position: static;
        margin-bottom: 40px;
    }
    #single-job .banner-content .badge {
      display: block;
      margin-bottom: 10px;
  }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scale-in {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0;
  will-change: opacity, transform; 
}

.reveal.is-visible {
  animation-timing-function: var(--ease);
  animation-fill-mode: forwards;
}

.reveal.fade-up.is-visible {
  animation-name: fade-up;
  animation-duration: var(--duration-normal); /* 350ms */
}

.reveal.fade-in.is-visible {
  animation-name: fade-in;
  animation-duration: 400ms;
}

.reveal.scale-in.is-visible {
  animation-name: scale-in;
  animation-duration: 450ms;
}

.delay-1 { animation-delay: 0ms; }
.delay-2 { animation-delay: var(--stagger-delay); }
.delay-3 { animation-delay: calc(var(--stagger-delay) * 2); }
.delay-4 { animation-delay: calc(var(--stagger-delay) * 3); }

.blog-item {
    transition: transform 250ms ease, box-shadow 250ms ease;
}
@media (hover: hover) {
  .card-lift {
    transition: transform var(--duration-normal) var(--ease), 
                box-shadow var(--duration-normal) var(--ease);
  }
  
  .card-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px -8px rgba(38,43,56,0.15);
  }
  
  .btn-banner:active, 
  .btn-black:active, 
  .btn-read:active {
    transform: scale(0.97);
    transition: transform 150ms ease;
  }
      .blog-item:hover {
        transform: translateY(-3px) !important;
        
        box-shadow: 0 8px 24px -8px rgba(38, 43, 56, 0.15) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
  
  .card-lift:hover {
    transform: none !important;
  }
  
  .btn-banner:active, 
  .btn-black:active, 
  .btn-read:active {
    transform: none !important;
  }
}

.menu-toggle {
    display: none;
}

@media screen and (max-width: 1024px) {
    header {
        padding-block: 0 !important;
    }
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        position: relative;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10000;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #fff;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .menu-toggle.is-open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    header .nav {
        display: block !important; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(30, 35, 45, 0.98);
        padding: 0 20px; 
        box-sizing: border-box;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.35s ease, 
                    visibility 0.35s ease, 
                    padding 0.4s ease;
    }

    header .nav.is-open {
        max-height: 500px; 
        opacity: 1;
        visibility: visible;
        padding: 20px;
    }

    header nav.nav ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    header .nav ul li {
        display: flex;
        align-items: center;
        width: 100%;
    }

    header .nav ul li a {
        display: block;
        width: 100%;
        padding: 10px 0;
        font-size: 16px;
        color: #fff;
        text-decoration: none;
    }

    header .wpml-ls-menu-item {
        display: flex;
        width: auto !important;
        margin-top: 0;
    }

header #menu-item-wpml-ls-3-fr {padding-left: 10px;}

    header .wpml-ls-menu-item > a {
        justify-content: space-between;
        width: 100%;
        max-width: 140px;
        box-sizing: border-box;
        width: fit-content;
    }

    header .wpml-ls-menu-item ul.sub-menu {
        position: static;
        width: 100%;
        max-width: 140px;
        box-sizing: border-box;
        flex-direction: row;
        margin-top: 0;
    }
    
    header .wpml-ls-menu-item ul.sub-menu::before {
        display: none;
    }
    section h1 {
    font-size: 42px;
}

.banner-content p {
    font-size: 22px;
}

.container-fluid {
    padding: 0 25px;
}
.banniere{
  min-height: auto !important;
  padding-bottom: 80px;
}
.customers-wrp {
    flex-direction: column;
    gap: 25px;
} 
section h2 {
    font-size: 28px;
}

section.banniere.bannier-2 {
    padding-top: 80px;
}

section.banniere.bannier-2 h2 {
    margin-top: 0;
}

.partener-wrp {
    flex-wrap: wrap;
}

.partener-item {
    flex: auto;
    padding-block: 20px;
}

section h4 {
    font-size: 20px;
}

section.faq h2 {
    margin-top: 50px;
}

section.faq h3 {
    font-size: 24px;
}

footer .row {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    gap: 20px 5px;
}
section.text-image {min-height: auto;}

section h3 {
    font-size: 24px;
}

section.partener.core-bottom {
    min-height: auto;
}

.module-item .text {
    max-width: 250px;
}
.module-item .image{
    width: 100%;
}
section.modules {
    padding: 50px 0;
}
section.partener.bg-gris .partener-wrp > div {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
}
section.partener.bg-gris .partener-wrp > div:nth-child(n+4) {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
}
.blog-slide {
    flex-wrap: wrap;
}

main#booking-page .blog-item {
    max-width: 100%;
}

section.banniere.bannier-2 .banner-content h3 {
    font-size: 22px;
}

main#booking-page span.titre {
    font-size: 24px;
}

a.btn-read, span.btn-read {
    font-size: 14px;
}
.cta-wrapper {
    flex-wrap: wrap;
}

.cta-form-box {
    flex: 0 0 auto;
    width: 100%;
}
.cta-section {
    padding: 100px 0 80px;
}
.demo-container {
    padding: 0 25px;
}

.calendar-widget {
    max-width: 100%;
}

.demo-calendar-col {
    min-width: 100%;
}
.demo-bottom-bar{
  position: relative;
}
section.faq {
    min-height: auto;
    padding: 0 0 50px;
}
}

@media screen and (max-width: 480px) {
      section h1 {
        font-size: 30px;
    }
    .logo img {
        max-height: 40px;
    }
    
  section .btn-banner, section .btn-black {
      padding: 10px 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
  }
  .banner-content p {
      font-size: 20px;
  }
  .module-item {
      flex-direction: column;
  }

  .module-item .text {
      max-width: 100%;
  }

  .module-item .image {
      max-width: 100%;
  }
  section.partener.bg-gris .partener-wrp > div {
    flex: 1 1 calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
  section.partener.bg-gris .partener-wrp > div:nth-child(n+4) {
      flex: 1 1 calc(100% - 20px);
      max-width: calc(100% - 20px);
  }
  #partner-page .text-image .flex-wrp {
      flex-direction: column-reverse;
  }
  main#insight-page .architecture .flex-wrp{
    flex-wrap: wrap;
  }
}