/* || GENERAL STYLES */
/* #region */

body {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1em;
  background-color: #aaa;
  background: linear-gradient(
    176.72deg,
    #ffb7e6 3.01%,
    #43f49f 83.37%,
    #22ff93 97.29%
  );
  margin: 0px;
  color: var(--main-color);
  --main-color: #181a43;
  --second-color: #22ff93;
  --second-background-color: #63eaaa;
  --gray-background-color: #f8f8f8;
  --gray_color_dark: #242425;
  --gray_color_message: #848484;
  --stroke-color: #d7d7d7;
  --light-gray-color: #f6f6f6;
  --second-text-color: #6d6e77;
  --big-font-weight: 525;
  --three-content-distance: 1.5em;
  --template-width: 1366px;
  --side-size: 2rem;
  --reduced-line-height: 95%;
  --button_size_reference: 1.6rem;
  --button_arrow_size: 1rem;
  --linkedin_size: 41px;
  --linkedin_font_size: 1rem;
  --linkedin_size_factor: 1.2;
  --nav_bar_height: 100px;
  --input_fields_vertical: 14px;
}

@media screen and (width >= 767px) {
  body {
    --side-size: 3rem;
  }
}

:target {
  scroll-margin-top: var(--nav_bar_height);
}

h1,
h2,
h3 {
  font-weight: var(--big-font-weight);
  line-height: var(--reduced-line-height);
}

.header-block,
.wrapper_images,
.sides {
  margin: 0 auto;
}

.data_display_sides_paddings,
.header-block,
.sides_paddings_tablet,
.sides_paddings_mobile,
.sides_paddings {
  padding-left: var(--side-size);
  padding-right: var(--side-size);
}

@media screen and (width >= 767px) {
  .sides_paddings_mobile {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media screen and (width < 767px) {
  .sides_paddings_tablet {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.block,
.block_top {
  padding-top: 1em;
}

.block,
.block_bottom {
  padding-bottom: 4em;
}

.header-block {
  position: sticky;
  top: 0;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  z-index: 1;
  transition: top 0.3s;
}

.white_bg {
  background-color: white;
}

.opacity_bg {
  background-color: rgba(255, 255, 255, 0.39);
}

.bottom_stroke {
  border-bottom: 1px solid var(--main-color);
}

.important-value {
  font-weight: var(--big-font-weight);
}

.bigger {
  font-size: 1.2em;
}

.second-text {
  font-size: 0.9em;
  color: var(--second-text-color);
}

/* #endregion */

/* || BUTTON */
/* #region */

.cta {
  color: #fff;
  background-color: var(--main-color);
  border: 0;
  border-radius: var(--button_size_reference);
  height: calc(var(--button_size_reference) * 2);
  padding: 0 var(--button_size_reference);
  margin-top: 2em;
  margin-bottom: 2em;
  font-weight: var(--big-font-weight);
  font-size: 1rem;
}

.cta::after {
  content: url("arrow.svg");
  width: var(--button_arrow_size);
  height: var(--button_arrow_size);
  position: absolute;
  background-color: var(--main-color);
  border-radius: 50%;
  padding: calc(
    (var(--button_size_reference) * 2 - var(--button_arrow_size)) / 2
  );
  margin-left: calc(var(--button_size_reference) + 0.1rem);
  margin-top: calc((var(--button_arrow_size)) * -1);
}

.cta_down {
  margin-top: auto;
  margin-bottom: auto;
  margin-right: calc(var(--button_size_reference) * 2 + 0.1rem);
}

.cta_down::after {
  content: url("arrow_down.svg");
}

.expert_selector {
  height: 44px;
  border-radius: 22px;
  border: 1px solid var(--main-color);
  background-color: #0000;
  padding: 0 1.2rem;
  font-size: 1rem;
  color: var(--main-color);
}

.expert_selector_current {
  background-color: #fff;
  border: 1px solid #fff;
}

/* #endregion */

/* || PARAGRAPHE */
/* #region */

p {
  text-align: left;
  line-height: 1.4;
}

p.important-value {
  padding-bottom: 3em;
}

/* #endregion */

/* || KPI */
/* #region */

.kpi_value {
  font-size: 7em;
}

.col_kpi p {
  font-size: 0.9em;
}

/* #endregion */

/* || FORM */
/* #region */
.names {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.5em;
}

.name_item {
  flex: 1;
}

.form_item {
  display: flex;
  flex-direction: column;
}

input[type="text"],
textarea {
  padding: var(--input_fields_vertical) 10px;
  border: 0px;
  border-radius: 2px;
  box-sizing: border-box;
  flex: 1;
  font-size: 1rem;
}

input::placeholder,
textarea::placeholder {
  opacity: 0.5;
  font-style: italic;
}

input[type="checkbox"] {
  background-color: #fff;
  margin: 0;
  margin-left: 3px;
  width: 1px;
  height: 1px;
  padding: 10px;
  border: 0px;
  border-radius: 2px;
  opacity: 0.01;
  /* display: none; */
}

p:has(label) {
  padding-top: 1em;
}

.checkmark {
  height: 25px;
  width: 25px;
  border: 0px;
  border-radius: 2px;
  background-color: #fff;
  display: inline-block;
  position: relative;
  left: -4px;
  top: 2px;
}

label:hover input ~ .checkmark {
  background-color: var(--light-gray-color);
}

label input:checked ~ .checkmark {
  background-color: var(--main-color);
}

.checkmark:after {
  content: "";
  display: none;
}

label input:checked ~ .checkmark:after {
  display: block;
}

label .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
}

legend {
  margin-top: 0.5em;
  margin-bottom: 0.1em;
  font-weight: var(--big-font-weight);
}

label {
  font-size: 0.9em;
  color: var(--second-text-color);
}

label a {
  color: var(--second-text-color);
}

label a:hover {
  color: var(--main-color);
}

label a:visited {
  color: var(--second-text-color);
}

label:has(input:required):after {
  content: " *";
}

legend:has(+ input:required):after {
  content: " *";
}

legend:has(+ textarea:required):after {
  content: " *";
}

/* #endregion */

/* || IMAGE */
/* #region */

.wrapper3 img {
  max-width: 100%;
}

figure {
  margin: 0;
}

figcaption .expert_name {
  font-size: 4em;
  padding-top: 0.2em;
  line-height: 1em;
}

figcaption .expert_title {
  font-size: 1.1em;
}

.collapsible_content,
figcaption p {
  padding-left: var(--side-size);
  padding-right: var(--side-size);
  margin: 0;
}
/* #endregion */

/* || LOGOS */
/* #region */

.logos {
  display: grid;
  grid-template-columns: repeat(5, auto);
}

.logos img {
  max-height: min(75px, calc(min(100vw, 1270px) * 75 / 1270));
  margin: 0 auto;
}

/* @media screen and (width < 1029px) {
  .logos {
    display: grid;
    grid-template-columns: repeat(4, auto);
  }

} */

@media screen and (width < 767px) {
  .logos {
    display: grid;
    grid-template-columns: repeat(2, auto);
  }

  .logos img {
    max-height: min(99px, calc(min(100vw, var(--template-width)) * 99 / 650));
  }

  .logos img:last-child {
    display: none;
  }
}
/* #endregion */

/* || COLLAPSIBLE CONTENT */
/* #region */
.collapsible_fade {
  opacity: 50%;
}

.collapsible .collapsible_arrow::before {
  margin-top: 1em;
  margin-bottom: 1em;
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid var(--main-color);
  border-bottom: 2px solid var(--main-color);
  rotate: 45deg;
}

.collapsible_current .collapsible_arrow::before {
  rotate: -135deg;
}

.collapsible_current {
  opacity: 100%;
}

@media screen and (width >= 767px) {
  .wrapper_images:not(:has(.collapsible_current)) .collapsible:hover,
  .collapsible_current,
  .collapsible_content_current,
  .collapsible_additional_content_current {
    background-color: white;
  }

  .collapsible_content,
  figcaption p {
    padding-left: calc(var(--side-size) * 0.8);
    padding-right: calc(var(--side-size) * 0.8);
    margin: 0;
  }
  figcaption p:last-child {
    padding-top: 1.5em;
    padding-bottom: 1em;
  }

  .wrapper_images:has(.collapsible:hover):not(:has(.collapsible_current))
    .collapsible:not(:hover) {
    opacity: 50%;
  }

  .collapsible_content p:last-of-type {
    padding-bottom: calc(var(--side-size) * 0.8);
  }
}

.collapsible_content {
  display: none;
}

.collapsible_additional_content {
  display: none;
}

.collapsible_content_current {
  display: block;
}

.collapsible_additional_content_current {
  display: flex;
}

.collapsible_content p:not(:last-child) {
  margin-bottom: 0;
}

.collapsible_content p:first-child {
  margin-top: 2.5em;
  margin-bottom: 2.5em;
}

.collapsible_content ul {
  margin-top: 0;
  padding-left: 2em;
}

.collapsible_content li {
  line-height: 1.4em;
}

.collapsible_content .minus {
  list-style-type: "- ";
  padding-left: 1em;
}

/* #endregion */

/* || COLLAPSIBLE CONTENT MOBILE */
/* #region */
@media screen and (width < 767px) {
  .collapsible {
    display: none;
  }

  .collapsible_current {
    display: block;
  }

  .collapsible_arrow {
    display: none;
  }
}

@media screen and (width >= 1029px) {
  #mia_tools,
  #june_tools,
  #marc_tools {
    margin: calc(var(--side-size) * 0.8);
    margin-top: calc(var(--side-size) * 1.6);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: right;
    flex: 1;
  }

  #mia_tools {
    background-image: url("mia_tools.jpg");
  }

  #june_tools {
    background-image: url("june_tools.jpg");
  }

  #marc_tools {
    background-image: url("marc_tools.jpg");
  }
}

/* #endregion */

/* || TABLE COMPARISON */
/* #region */

.data-display .cell {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.table-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* #endregion */

/* || TABLE COMMONS */
/* #region */
.table_row {
  font-size: 1.3em;
}

.table-col-title {
  color: var(--gray_color_dark);
}

.table-col-green {
  background-color: var(--gray-background-color);
  color: var(--gray_color_dark);
}

.table-col-green.second-text {
  color: var(--gray_color_message);
}

.table-col-gray.important-value,
.table-col-green.important-value {
  padding-top: 2em;
  padding-bottom: 3em;
}

.table-col-gray {
  background-color: var(--second-background-color);
}
.table-col-gray .second-text {
  color: rgb(70, 118, 119, 60);
}

.table-sides {
  padding-left: 2em;
  padding-right: 2em;
}

/* #endregion */

/* || TABLE PLAN */
/* #region */
.table_row_two .cell ul {
  padding: 0;
}

.table-plan1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  padding-top: 0.6em;
  padding-bottom: 0.6em;
}

.table-plan2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding-top: 0.6em;
  padding-bottom: 0.6em;
  grid-auto-rows: minmax(1em, auto);
}

.cell-plan {
  background-color: var(--second-background-color);
  text-align: center;
}

/* #endregion */

/* || TABLE PLAN ORG INTERNAL */
/* #region */
.cell-plan-audit {
  grid-row: 1;
  grid-column: 1;
}

.cell-plan-param {
  grid-row: 2;
  grid-column: 2;
}

.cell-plan-train {
  grid-row: 3;
  grid-column: 3;
}

.cell-plan-test {
  grid-row: 3;
  grid-column: 4;
}

.cell-plan-prod {
  grid-row: 4;
  grid-column: 4;
}

.cell-plan-run {
  grid-row: 5;
  grid-column: 1;
  padding-left: 2em;
  text-align: left;
  background-color: transparent;
  background-image: url("progressrun.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: left;
}

/* #endregion */
/* || TABLE ON MOBILE */
/* #region */
@media screen and (width < 767px) {
  .table-block {
    column-gap: 4px;
  }

  .table-sides {
    padding-left: calc(var(--side-size) / 2);
    padding-right: calc(var(--side-size) / 2);
  }

  .table-col-title,
  .data_display_sides_paddings {
    padding-left: calc(var(--side-size) / 2);
    padding-right: calc(var(--side-size) / 2);
  }

  .table-col-title.important-value {
    padding-top: 1.5em;
  }

  .table-col-green:not(.important-value) {
    background-color: #0000;
  }
}

/* #endregion */

/* || TABLE PLAN REORGANIZED ON MOBILE */
/* #region */
@media screen and (width < 767px) {
  .table_row_two {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(2em, auto);
  }

  .table_row_two .cell ul {
    /* padding-left: inherit; */
    margin-left: 24px;
  }

  /* .table_row_two .cell li {
    background-color: #fff;
  } */

  .a1 {
    grid-row: 1;
  }
  .a2 {
    grid-row: 2;
  }

  .a3 {
    grid-row: 3;
    background-color: #fff;
  }

  .a3 div {
    background: linear-gradient(0deg, #7de2b5 0%, #c2cccf 100%);
  }

  .a3_ul {
    background-color: white;
  }

  .a4 {
    grid-row: 4;
  }

  .b1 {
    grid-row: 6;
    background-color: var(--gray-background-color);
  }

  .b2 {
    grid-row: 7;
  }

  .b3 {
    grid-row: 8;
    background-color: #fff;
  }

  .b3 div {
    background: #7de2b5;
  }

  .b3_ul {
    background-color: white;
  }

  .b4 {
    grid-row: 9;
  }

  .a3 div div,
  .b3 div div {
    background: none;
    background-color: #fff;
    margin-left: 8px;
  }

  .table-plan1 {
    display: none;
  }

  .table-plan2 {
    display: none;
  }
}

/* #endregion */

@media screen and (width >= 767px) {
  .data-display .table_bottom {
    padding-bottom: 2em;
  }
}

/* || 3 CONTENT SEPARATE ON MOBILE */
/* #region */
@media screen and (width < 767px) {
  .wrapper_content .col:not(:nth-of-type(1)) {
    border-top: 1px solid var(--main-color);
    padding-top: var(--three-content-distance);
  }
  .wrapper_content .col:not(:last-of-type) p:last-child {
    /* margin-bottom: 0; */
    padding-bottom: var(--three-content-distance);
  }

  .wrapper_content .col p:first-of-type {
    margin-top: 0;
  }
}
/* #endregion */

/* || HEADERS MOBILE */
/* #region */
@media screen and (width < 767px) {
  h3 {
    line-height: initial;
  }
  h1 {
    font-size: 2.7em;
    font-weight: bold;
  }

  h2 {
    font-size: 2.6em;
  }

  h3 {
    font-size: 1.7em;
    margin-bottom: 0;
    margin-top: 0;
  }
}
/* #endregion */

/* || HEADERS TABLET */
/* #region */

@media screen and (width >= 767px) and (width < 1029px) {
  h1 {
    font-size: 3em;
  }

  h2 {
    font-size: 2em;
  }

  h3 {
    font-size: 1.7em;
  }

  .cell-plan {
    font-size: 0.6em;
  }
}
/* #endregion */

/* || HEADERS DESKTOP */
/* #region */

@media screen and (width >= 1029px) {
  h1 {
    font-size: 5em;
  }

  h2 {
    font-size: 4em;
  }

  h3 {
    font-size: 2.5em;
  }

  .cell-plan {
    font-size: 0.8em;
  }
}
/* #endregion */

/* || GENERAL STYLES TABLET */
/* #region */

@media screen and (width >= 767px) {
  .wrapper_images,
  .header-block,
  .sides {
    max-width: var(--template-width);
  }

  .logos {
    padding: calc(var(--side-size) * 2);
    max-width: calc(var(--template-width) - var(--side-size) * 2);
    padding-bottom: 1em;
  }

  .spacer {
    flex: 1;
  }

  h1 {
    padding-right: var(--side-size);
  }

  .wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    column-gap: 0%;
  }

  .wrapper3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 0%;
  }

  .wrapper_images {
    column-gap: 0.4em;
  }
}
/* #endregion */

.coming_soon {
  color: #ff8000;
}

/* || 3 CONTENTS SEPARATE WITH BORDER SPECIFIC TABLET */
/* #region */
@media screen and (width >= 767px) {
  .wrapper_content {
    column-gap: var(--three-content-distance);
  }

  .wrapper_content .col:not(:nth-of-type(1)) .content {
    border-left: 1px solid var(--main-color);
    padding-left: var(--three-content-distance);
  }

  .wrapper_content h3 {
    margin-top: 0;
  }

  .wrapper_content p {
    margin-bottom: 0;
  }
}
/* #endregion */

@media screen and (width >= 767px) {
  .first_paragraph {
    padding-top: 6em;
  }
}

.col {
  display: flex;
}

/* || TABLE SPECIFIC TABLET */
/* #region */
@media screen and (width >= 767px) {
  .table_row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 0%;
  }

  .table_row:not(:last-child) {
    border-bottom: 1px solid var(--second-text-color);
  }

  .table_row_two {
    display: grid;
    grid-template-columns: 2fr 1fr;
    column-gap: 2px;
  }

  .col {
    justify-content: center;
    align-items: center;
  }

  .col_content {
    align-items: start;
  }
}
/* #endregion */

/* || KPI SPECIFIC TABLET */
/* #region */
@media screen and (width >= 767px) {
  .kpi_value {
    font-size: 8em;
    justify-content: start;
  }

  .col_kpi {
    align-items: end;
    padding-bottom: 0.6em;
  }
}
/* #endregion */

/* || EXPERT SELECTOR TABLET */
/* #region */
@media screen and (width >= 767px) {
  .expert_selectors {
    display: none;
  }
}

/* #endregion */

/* || NAV BAR */
/* #region */

nav li {
  list-style: none;
  margin-top: auto;
  margin-bottom: 1.4em;
  padding-bottom: 0.5em;
  padding-left: 1.5em;
}

nav li:nth-child(1) {
  /* padding-bottom: 0px; */
  padding-left: 0px;
}

nav {
  display: flex;
  justify-content: space-between;
  padding: 0px;
}
nav ul {
  padding: 0px;
  margin: 0px;
  display: flex;
  justify-content: center;
  flex: 1;
}

#icons {
  cursor: pointer;
  display: none;
}

@media screen and (width >= 767px) {
  .bottom_mobile_button {
    display: none;
  }
}

/* #endregion */

/* || NAV BAR */
/* #region */
.logo_img,
.nav_logo_img {
  max-height: 70px;
}

/* .nav_logo_link {
    padding-top: 1em;
    padding-bottom: 1em;
  } */
@media screen and (width >= 767px) {
  .nav_logo_img {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}

@media screen and (width < 1029px) {
}

/* #endregion */

/* || NAV BAR MOBILE */
/* #region */
@media screen and (width < 767px) {
  .header-block {
    padding-left: 0px;
    padding-right: 0px;
  }

  .header-block_hide {
    top: -300px;
  }

  .nav_logo {
    flex: 1;
  }

  .nav_top {
    display: flex;
    justify-content: space-between;
    padding: 0px;
    width: 100%;
  }

  nav {
    display: block;
  }

  #icons {
    display: block;
    padding: 1em var(--side-size);
    margin-top: auto;
    margin-bottom: 0px;
    font-size: 1.5em;
  }
  #icons::before {
    content: "\2630";
  }
  .active #icons::before {
    content: "\2715";
  }
  nav ul {
    width: 100%;
    display: none;
  }

  nav.active ul {
    display: block;
    width: 100%;
    height: 100vh;
  }

  nav li {
    padding: 3px 0;
  }
}
/* #endregion */

/* || NAV BAR LINKS MOBILE */
/* #region */
@media screen and (width < 767px) {
  nav a {
    display: flex;
    padding: 1em var(--side-size);
  }

  nav li:nth-child(1) {
    padding-top: var(--side-size);
  }

  .cta_down {
    display: none;
  }

  .bottom_mobile_button {
    display: block;
    position: sticky;
    bottom: 0;
    z-index: 2;
    background-color: var(--main-color);
    transform: bottom 0.3;
  }

  .bottom_mobile_button_hide {
    bottom: -300px;
    display: none;
  }

  .bottom_mobile_button .cta {
    margin: 0;
  }
}

/* #endregion */

/* || FOOTER */
/* #region */

.invert_color {
  background-color: var(--main-color);
  color: #fff;
}

.footer2 ul {
  padding-left: 0;
}

.footer2 li {
  list-style: none;
  padding-bottom: 0.6em;
}

.footer2 li:nth-child(1) {
  padding-bottom: 0.8em;
}

/* #endregion */

/* || FOOTER TABLET */
/* #region */
@media screen and (width >= 767px) {
  #contacts {
    padding-bottom: 1em;
  }

  .footer {
    display: flex;
    justify-content: space-between;
  }

  .logo {
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .contacts {
    display: flex;
    justify-content: space-evenly;
    flex: 1;
    margin-top: auto;
  }

  .linkedin {
    margin-top: auto;
  }

  .footer2 {
    display: grid;
    grid-template-columns: repeat(7, auto);
    column-gap: 0%;
  }

  .footer3 {
    display: grid;
    grid-template-columns: repeat(8, auto);
    column-gap: 0%;
  }
}

/* #endregion */

/* || FOOTER MOBILE */
/* #region */
@media screen and (width < 767px) {
  .footer div,
  .footer2 div,
  .footer3 div {
    padding-bottom: 1em;
  }

  .footer {
    padding-bottom: 0;
  }
}

/* #endregion */

/* || LINKS */
/* #region */
.external_link::after {
  content: url("arrowout.svg");
  width: 1em;
  height: 1em;
  display: inline-block;
}

@media screen and (width < 767px) {
  .linkedin {
    display: flex;
  }

  .linkedin .external_link {
    margin-left: auto;
  }
}

.linked_in_link {
  background-color: #007ebb;
  color: white;
  font-weight: var(--big-font-weight);
  font-size: var(--linkedin_font_size);
  font-weight: bolder;
  padding: calc((var(--linkedin_size) - var(--linkedin_font_size)) / 2)
    calc(var(--linkedin_font_size) * var(--linkedin_size_factor));
  border-radius: var(--linkedin_size);
  text-decoration: none;
  margin-left: 45px;
}

.linked_in_link::before {
  content: url("linkedin_pastille.svg");
  background-color: #0000;
  position: absolute;
  margin-top: -0.5rem;
  margin-left: calc(
    (var(--linkedin_size) * -1) - 4px -
      (var(--linkedin_font_size) * var(--linkedin_size_factor))
  );
}

.footer a,
.footer a:visited,
nav a,
nav a:visited {
  color: var(--main-color);
  font-weight: var(--big-font-weight);
  text-decoration: none;
}

.footer a,
.footer a:visited {
  font-weight: inherit;
}

.footer a:hover,
nav a:hover {
  color: var(--second-text-color);
}

.footer2 a,
.footer2 a:visited {
  color: #fff;
  font-weight: var(--big-font-weight);
  text-decoration: none;
}

.footer3 a,
.footer3 a:visited {
  color: var(--second-text-color);
  text-decoration: none;
}

.footer2 a:hover {
  color: var(--second-text-color);
}
.footer3 a:hover {
  color: #fff;
}
/* #endregion */
/* ==== Effet hover agents IA (image only) ==== */
.wrapper_images figure {
  position: relative;
  overflow: hidden;        /* évite que l'image zoomée déborde */
  /* pas de transform/box-shadow sur le figure */
}

.wrapper_images figure img {
  width: 100%;
  height: auto;
  transform-origin: center center;
  transition: transform 0.6s ease;
  will-change: transform;
}

/* Seule l'image zoome */
.wrapper_images figure:hover img {
  transform: scale(1.08);
}

/* Accessibilité : réduire les mouvements si demandé */
@media (prefers-reduced-motion: reduce) {
  .wrapper_images figure img {
    transition: none;
    transform: none;
  }
}
/* ==== Effet fade-in pour les chiffres clés ==== */
.kpi_value .content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.kpi_value .content.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .kpi_value .content {
    transition: none;
    transform: none;
  }
}
/* Effet press */
.cta {
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
  will-change: transform;
}
.cta:active { transform: scale(0.98); }
/* Conteneur global */
.logos-slider {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  padding: 20px 0;
  background-color: white;
}
/* ==== Défilement logos (anti-saut) - CORRIGÉ ==== */
.logos-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.logos-track {
  display: inline-flex;
  gap: 60px;
  align-items: center;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  animation: logos-marquee var(--logos-duration, 30s) linear infinite;
}

@keyframes logos-marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-1px * var(--logos-shift-int, 0)), 0, 0);
  }
}

.logos-track img {
  height: 50px;
  width: auto;
  display: block;
  max-width: none;
  flex-shrink: 0;
  filter: grayscale(100%);
  opacity: 0.9;
  transition: filter 0.3s ease, opacity 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.logos-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.logos-slider:hover .logos-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .logos-track {
    animation: none;
    transform: none;
  }
}

@media (max-width: 768px) {
  .logos-track {
    gap: 40px;
  }
  .logos-track img {
    height: 40px;
  }
}
