*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background-color: #ffffff; color-scheme: light; }
section[id] { scroll-margin-top: 76px; }
.ak_page {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #faf9f7;
}

.ak_eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 2.16px;
  text-transform: uppercase;
  color: #1e3674;
}

.ak_h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.18;
  letter-spacing: -0.4px;
  color: #1e3674;
}

.ak_lead {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.62;
  color: #7a766d;
}

.ak_small {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.62;
  color: #7a766d;
}

.ak_secthead {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 620px;
}

.ak_btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.68px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.ak_btn_lg {
  font-size: 17px;
  padding: 16px 34px;
  min-height: 56px;
}

.ak_btn_md {
  font-size: 15px;
  padding: 12px 24px;
  min-height: 46px;
}

.ak_btn_sm {
  font-size: 13px;
  padding: 8px 16px;
  min-height: 36px;
}

.ak_btn_primary {
  background-color: #1e3674;
  color: #ffffff;
  border-color: #1e3674;
}

.ak_btn_primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(30, 54, 116, 0.32);
}

.ak_btn_primary:active {
  transform: scale(0.97);
}

.ak_btn_secondary {
  background-color: #faf9f7;
  color: #1e3674;
  border-color: #dce3f1;
}

.ak_btn_secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(30, 54, 116, 0.18);
}

.ak_btn_secondary:active {
  transform: scale(0.97);
}

.ak_btn_light {
  background-color: #ffffff;
  color: #1e3674;
  border-color: #ffffff;
}

.ak_btn_light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(14, 27, 58, 0.34);
}

.ak_btn_light:active {
  transform: scale(0.97);
}

.ak_btn_arrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: #ffffff;
}

.ak_btn_arrow_navy {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: #1e3674;
}

.ak_tag {
  display: inline-flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  color: #1e3674;
  background-color: #eef2f9;
  border: 1px solid #dce3f1;
  border-radius: 999px;
  padding: 6px 14px;
}

.hdr_spacer {
  width: 100%;
  height: 76px;
  background-color: #ffffff;
}

.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 76px;
  background-color: #ffffff;
  box-shadow: 0 1px 0 rgba(14, 27, 58, 0.08);
}

.hdr_inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  max-width: 1240px;
  height: 76px;
  padding-left: 24px;
  padding-right: 24px;
}

.hdr_logo {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.hdr_mark {
  width: 30px;
  height: 30px;
}

.hdr_wordmark {
  width: 128px;
  height: 13px;
}

.hdr_nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

.hdr_link {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 6px 2px;
  border-radius: 4px;
  text-decoration: none;
}

.hdr_link_label {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.15px;
  color: #7a766d;
}

.hdr_underline {
  width: 100%;
  height: 2px;
  background-color: #1e3674;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hdr_link:hover .hdr_underline {
  transform: scaleX(1);
}

.hdr_actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.hdr_burger_slot {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid #dce3f1;
  background-color: #ffffff;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: 620px;
  background-color: #0e1b3a;
  overflow: hidden;
}

.hero_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero_scrim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(14, 27, 58, 0.9) 0%, rgba(14, 27, 58, 0.82) 44%, rgba(14, 27, 58, 0.42) 70%, rgba(14, 27, 58, 0.24) 100%);
}

.hero_inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  max-width: 1240px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 96px;
  padding-bottom: 96px;
}

.hero_eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 2.16px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.hero_title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 84px;
  line-height: 1.04;
  letter-spacing: 1.68px;
  text-transform: uppercase;
  color: #ffffff;
  max-width: 868px;
}

.hero_sub {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.94);
  max-width: 630px;
}

.hero_actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
}

.hero_ghost {
  background-color: rgba(255, 255, 255, 0);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}

.hero_ghost:hover {
  transform: translateY(-2px);
  opacity: 0.82;
}

.hero_ghost:active {
  transform: scale(0.97);
}

.cab {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  background-color: #ffffff;
  padding-top: 128px;
  padding-bottom: 128px;
}

.cab_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 96px;
  width: 100%;
  max-width: 1240px;
  padding-left: 24px;
  padding-right: 24px;
}

.cab_text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.cab_body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.62;
  color: #7a766d;
  width: 100%;
}

.cab_tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.cab_photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.cab_photo_43 {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.cab_photo_wide {
  grid-column: 1 / 3;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

.pres {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  background-color: #faf9f7;
  padding-top: 128px;
  padding-bottom: 128px;
}

.pres_inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
  max-width: 1240px;
  padding-left: 24px;
  padding-right: 24px;
}

.pres_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  width: 100%;
}

.svc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background-color: #ffffff;
  border: 1px solid #e6e4df;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(14, 27, 58, 0.06);
  padding: 32px;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.svc:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(14, 27, 58, 0.12);
}

.svc_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background-color: #eef2f9;
}

.svc_glyph {
  width: 24px;
  height: 24px;
}

.svc_title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: 0.18px;
  color: #0e1b3a;
}

.svc_text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.62;
  color: #7a766d;
}

.docto {
  grid-column: 1 / 4;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background-color: #eef2f9;
  border: 1px solid #dce3f1;
  border-radius: 8px;
  padding: 32px;
}

.docto_text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
}

.docto_title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.28;
  color: #0e1b3a;
}

.docto_strong {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.62;
  color: #0e1b3a;
}

.patho {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  background-color: #ffffff;
  padding-top: 128px;
  padding-bottom: 128px;
}

.patho_inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
  max-width: 1240px;
  padding-left: 24px;
  padding-right: 24px;
}

.patho_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  width: 100%;
}

.zone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background-color: #ffffff;
  border: 1px solid #e6e4df;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(14, 27, 58, 0.06);
  padding-top: 36px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.zone:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(14, 27, 58, 0.12);
}

.zone_bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.zone_bar_genou {
  background-color: #2a6bb0;
}

.zone_bar_membre {
  background-color: #c7411d;
}

.zone_bar_rachis {
  background-color: #5b54a6;
}

.zone_bar_cheville {
  background-color: #17857a;
}

.zone_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
}

.zone_icon_genou {
  background-color: #e7eff9;
}

.zone_icon_membre {
  background-color: #fbe3da;
}

.zone_icon_rachis {
  background-color: #eceaf7;
}

.zone_icon_cheville {
  background-color: #e0f1ef;
}

.zone_glyph {
  width: 26px;
  height: 26px;
}

.zone_title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.28;
}

.zone_title_genou {
  color: #2a6bb0;
}

.zone_title_membre {
  color: #c7411d;
}

.zone_title_rachis {
  color: #5b54a6;
}

.zone_title_cheville {
  color: #17857a;
}

.zone_chips {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  flex: 1 1 auto;
  width: 100%;
}

.chip {
  display: inline-flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.2;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 6px 12px;
}

.chip_genou {
  background-color: #e7eff9;
  color: #2a6bb0;
}

.chip_genou_full {
  background-color: #2a6bb0;
  color: #ffffff;
  font-weight: 600;
}

.chip_membre {
  background-color: #fbe3da;
  color: #c7411d;
}

.chip_rachis {
  background-color: #eceaf7;
  color: #5b54a6;
}

.chip_cheville {
  background-color: #e0f1ef;
  color: #17857a;
}

.zone_note {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.62;
  color: #7a766d;
}

.patho_foot {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  width: 100%;
  border-top: 1px solid #e6e4df;
  padding-top: 24px;
}

.patho_foottext {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.62;
  color: #7a766d;
  flex: 1 1 260px;
}

.tech {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  background-color: #1e3674;
  padding-top: 128px;
  padding-bottom: 128px;
}

.tech_inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
  max-width: 1240px;
  padding-left: 24px;
  padding-right: 24px;
}

.tech_head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 620px;
}

.tech_eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 2.16px;
  text-transform: uppercase;
  color: #8da0ce;
}

.tech_h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.18;
  letter-spacing: -0.4px;
  color: #ffffff;
}

.tech_lead {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.62;
  color: #8da0ce;
}

.tech_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 96px;
  row-gap: 0px;
  width: 100%;
}

.tcard {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 16px;
  padding-right: 16px;
}

.tcard_glyph {
  width: 26px;
  height: 26px;
}

.tcard_body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tcard_name {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: 0.18px;
  color: #ffffff;
}

.tcard_ind {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.62;
  color: #8da0ce;
}

.plat {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  background-color: #faf9f7;
  padding-top: 128px;
  padding-bottom: 128px;
}

.plat_inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  max-width: 1240px;
  padding-left: 24px;
  padding-right: 24px;
}

.plat_head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 720px;
}

.plat_status {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.4;
  color: #1e3674;
  background-color: #eef2f9;
  border: 1px solid #dce3f1;
  border-radius: 999px;
  padding: 6px 14px;
}

.plat_dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background-color: #c7411d;
}

.myst {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  aspect-ratio: 21 / 9;
  border: 1px solid #e6e4df;
  border-radius: 8px;
  overflow: hidden;
}

.myst_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px);
}

.myst_scrim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(14, 27, 58, 0.62) 0%, rgba(14, 27, 58, 0.3) 45%, rgba(14, 27, 58, 0.1) 100%);
}

.myst_body {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  width: 100%;
  padding-left: 64px;
  padding-right: 64px;
}

.myst_mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background-color: rgba(255, 255, 255, 0.1);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 56px;
  line-height: 1;
  color: #ffffff;
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.myst:hover .myst_mark {
  transform: rotate(8deg) scale(1.06);
}

.myst_text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 560px;
}

.myst_hint {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 2.16px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.myst_line {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.28;
  color: #ffffff;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.myst:hover .myst_line {
  opacity: 1;
  transform: translateY(0px);
}

.team {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  background-color: #ffffff;
  padding-top: 128px;
  padding-bottom: 128px;
}

.team_inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
  max-width: 1240px;
  padding-left: 24px;
  padding-right: 24px;
}

.team_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.prac {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #e6e4df;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(14, 27, 58, 0.06);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.prac:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(14, 27, 58, 0.12);
}

.prac_media {
  position: relative;
  display: flex;
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: #f2f1ee;
  overflow: hidden;
}

.prac_photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease-out;
}

.prac_photo_action {
  opacity: 0;
  transform: scale(1.04);
}

.prac:hover .prac_photo_portrait {
  opacity: 0;
}

.prac:hover .prac_photo_action {
  opacity: 1;
}

.prac_quote_wrap {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 18px;
  background: linear-gradient(180deg, rgba(14, 27, 58, 0) 30%, rgba(14, 27, 58, 0.88) 100%);
  opacity: 0;
  transition: opacity 0.4s ease-out;
}

.prac:hover .prac_quote_wrap {
  opacity: 1;
}

.prac_quote {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  font-style: italic;
  color: #ffffff;
  transform: translateY(8px);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.prac:hover .prac_quote {
  transform: translateY(0px);
}

.prac_body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1 1 auto;
  padding: 20px;
}

.prac_name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.28;
  color: #0e1b3a;
}

.prac_role {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: #1e3674;
}

.prac_insp {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  flex: 1 1 auto;
  border-top: 1px solid #e6e4df;
  padding-top: 12px;
}

.prac_insp_label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 2.34px;
  text-transform: uppercase;
  color: #7a766d;
}

.prac_insp_name {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: #0e1b3a;
}

.prac_insp_why {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.62;
  color: #7a766d;
}

.prac_cta {
  width: 100%;
  min-height: 44px;
}

.prac_phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 36px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.68px;
  text-transform: uppercase;
  text-decoration: none;
  color: #1e3674;
  background-color: #faf9f7;
  border: 1px solid #dce3f1;
  border-radius: 999px;
  padding: 8px 16px;
}

.team_foot {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  width: 100%;
  border-top: 1px solid #e6e4df;
  padding-top: 24px;
}

.ftr {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  background-color: #0e1b3a;
  padding-top: 80px;
  padding-bottom: 40px;
}

.ftr_inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
  max-width: 1240px;
  padding-left: 24px;
  padding-right: 24px;
}

.ftr_top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  width: 100%;
}

.ftr_brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.ftr_logo {
  width: 171px;
  height: 92px;
}

.ftr_col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.ftr_label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 2.16px;
  text-transform: uppercase;
  color: #8da0ce;
  padding-bottom: 8px;
}

.ftr_text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.82);
}

.ftr_link {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.62;
  color: #ffffff;
  opacity: 0.82;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.ftr_link:hover {
  opacity: 1;
}

.ftr_map {
  display: flex;
  width: 100%;
  height: 132px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  overflow: hidden;
}

.ftr_iframe {
  width: 100%;
  height: 132px;
  border: 0px solid transparent;
}

.ftr_bottom {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 24px;
}

.ftr_legal {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.62;
  color: #8da0ce;
}

@media (max-width: 1199px) {
  .ak_h2 {
    font-size: 32px;
  }

  .ak_secthead {
    max-width: 100%;
  }

  .hdr_nav {
    display: none;
  }

  .hdr_inner {
    gap: 20px;
  }

  .hero {
    min-height: 560px;
  }

  .hero_title {
    font-size: 58px;
    max-width: 100%;
  }

  .hero_sub {
    max-width: 100%;
  }

  .hero_inner {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .cab {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .cab_inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pres {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .pres_inner {
    gap: 48px;
  }

  .pres_grid {
    grid-template-columns: 1fr 1fr;
  }

  .docto {
    grid-column: 1 / 3;
    flex-direction: column;
    align-items: flex-start;
  }

  .docto_text {
    max-width: 100%;
  }

  .patho {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .patho_inner {
    gap: 48px;
  }

  .patho_grid {
    grid-template-columns: 1fr 1fr;
  }

  .tech {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .tech_inner {
    gap: 48px;
  }

  .tech_head {
    max-width: 100%;
  }

  .tech_h2 {
    font-size: 32px;
  }

  .tech_grid {
    column-gap: 48px;
  }

  .plat {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .plat_head {
    max-width: 100%;
  }

  .myst_body {
    padding-left: 40px;
    padding-right: 40px;
    gap: 24px;
  }

  .myst_text {
    max-width: 100%;
  }

  .myst_mark {
    width: 88px;
    height: 88px;
    font-size: 44px;
  }

  .team {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .team_inner {
    gap: 48px;
  }

  .team_grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .ftr_top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .ftr_inner {
    gap: 48px;
  }

}

@media (max-width: 810px) {
  .ak_h2 {
    font-size: 28px;
  }

  .ak_lead {
    font-size: 17px;
  }

  .ak_btn_lg {
    font-size: 15px;
    padding: 14px 26px;
    min-height: 50px;
  }

  .hdr_inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    min-height: 480px;
  }

  .hero_title {
    font-size: 40px;
    letter-spacing: 0.8px;
  }

  .hero_sub {
    font-size: 17px;
  }

  .hero_inner {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 56px;
    padding-bottom: 56px;
    gap: 20px;
  }

  .hero_actions {
    gap: 10px;
  }

  .cab {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .cab_inner {
    padding-left: 20px;
    padding-right: 20px;
    gap: 32px;
  }

  .cab_text {
    gap: 16px;
  }

  .cab_photos {
    gap: 12px;
  }

  .pres {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .pres_inner {
    padding-left: 20px;
    padding-right: 20px;
    gap: 32px;
  }

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

  .docto {
    grid-column: 1 / 2;
    padding: 24px;
    gap: 20px;
  }

  .svc {
    padding: 24px;
  }

  .patho {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .patho_inner {
    padding-left: 20px;
    padding-right: 20px;
    gap: 32px;
  }

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

  .patho_foot {
    gap: 12px;
  }

  .tech {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .tech_inner {
    padding-left: 20px;
    padding-right: 20px;
    gap: 32px;
  }

  .tech_h2 {
    font-size: 28px;
  }

  .tech_lead {
    font-size: 17px;
  }

  .tech_grid {
    grid-template-columns: 1fr;
    column-gap: 0px;
  }

  .tcard {
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .plat {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .plat_inner {
    padding-left: 20px;
    padding-right: 20px;
    gap: 32px;
  }

  .myst {
    aspect-ratio: 4 / 3;
  }

  .myst_body {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 24px;
    padding-right: 24px;
    gap: 16px;
  }

  .myst_mark {
    width: 64px;
    height: 64px;
    font-size: 32px;
  }

  .myst_line {
    font-size: 18px;
  }

  .team {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .team_inner {
    padding-left: 20px;
    padding-right: 20px;
    gap: 32px;
  }

  .team_grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .prac_body {
    padding: 16px;
  }

  .prac_quote_wrap {
    padding: 12px;
  }

  .prac_quote {
    font-size: 11px;
    line-height: 1.45;
  }

  .ftr {
    padding-top: 56px;
    padding-bottom: 32px;
  }

  .ftr_inner {
    padding-left: 20px;
    padding-right: 20px;
    gap: 32px;
  }

  .ftr_top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ftr_bottom {
    gap: 12px;
  }

}

/* ============================================================
   AJOUTS — lien LCA, interactions machines, contact
   ============================================================ */

/* lien LCA du menu, dans le bleu du logo */
.hdr_link_lca .hdr_link_label {
  color: #1e3674;
  font-weight: 600;
}

.hdr_link_lca:hover .hdr_link_label {
  color: #2a6bb0;
}

.ftr_link_lca {
  color: #ffffff;
  font-weight: 600;
}

/* pastille de pathologie cliquable */
.chip_link {
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.chip_link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 27, 58, 0.16);
}

.chip_link:active {
  transform: scale(0.97);
}

.chip_arrow {
  margin-left: 6px;
  font-weight: 600;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s ease-out, transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.chip_link:hover .chip_arrow {
  opacity: 1;
  transform: translateX(0);
}

/* machines : survol */
.tcard {
  border-radius: 8px;
  transition: background-color 0.3s ease-out, transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.tcard:hover {
  background-color: rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
}

.tcard_glyph {
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.tcard:hover .tcard_glyph {
  transform: scale(1.14);
}

.tcard_ind {
  transition: color 0.3s ease-out;
}

.tcard:hover .tcard_ind {
  color: #ffffff;
}

/* bandeau contact du pied de page */
.ftr_contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  padding-bottom: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.ftr_contact_row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.ftr_contact_link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  color: #ffffff;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 12px 20px;
  transition: background-color 0.3s ease-out, transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.3s ease-out;
}

.ftr_contact_link:hover {
  background-color: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.ftr_contact_link:active {
  transform: scale(0.97);
}

.ftr_contact_icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 810px) {
  .ftr_contact_row {
    flex-direction: column;
    align-items: stretch;
  }

  .ftr_contact_link {
    justify-content: center;
  }
}

/* ============================================================
   MENU MOBILE (burger + panneau lateral)
   ============================================================ */

.hdr_burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  appearance: none;
  cursor: pointer;
  background-color: #ffffff;
  border: 1px solid #dce3f1;
  border-radius: 8px;
  transition: background-color 0.2s ease-out;
}

.hdr_burger:hover {
  background-color: #faf9f7;
}

.hdr_burger_box {
  position: relative;
  width: 20px;
  height: 14px;
}

.hdr_burger_bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #1e3674;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.2s ease-out;
}

.hdr_burger_bar:nth-child(1) { top: 0; }
.hdr_burger_bar:nth-child(2) { top: 6px; }
.hdr_burger_bar:nth-child(3) { top: 12px; }

.hdr_burger[aria-expanded="true"] .hdr_burger_bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hdr_burger[aria-expanded="true"] .hdr_burger_bar:nth-child(2) {
  opacity: 0;
}

.hdr_burger[aria-expanded="true"] .hdr_burger_bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 110;
  background-color: rgba(14, 27, 58, 0.5);
  opacity: 0;
  visibility: hidden;
  /* visibility bascule sans transition : differee a la fermeture,
     immediate a l'ouverture. Ne jamais dependre d'une transition
     pour qu'un element devienne visible. */
  transition: opacity 0.3s ease-out, visibility 0s linear 0.3s;
}

.nav_overlay.is_open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-out, visibility 0s linear 0s;
}

.nav_drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  display: flex;
  flex-direction: column;
  width: 300px;
  max-width: 84vw;
  height: 100%;
  background-color: #ffffff;
  box-shadow: -12px 0 40px rgba(14, 27, 58, 0.18);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.34s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s linear 0.34s;
  overflow-y: auto;
}

.nav_drawer.is_open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.34s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s linear 0s;
}

.nav_drawer_head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 76px;
  padding-left: 24px;
  padding-right: 16px;
  border-bottom: 1px solid #e6e4df;
}

.nav_drawer_title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 2.16px;
  text-transform: uppercase;
  color: #a8a49b;
}

.nav_close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  appearance: none;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  line-height: 1;
  color: #1e3674;
  transition: background-color 0.2s ease-out;
}

.nav_close:hover {
  background-color: #faf9f7;
}

.nav_links {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  padding-bottom: 8px;
}

.nav_link {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.4;
  color: #0e1b3a;
  text-decoration: none;
  padding: 16px 24px;
  border-left: 3px solid transparent;
  transition: background-color 0.2s ease-out, border-color 0.2s ease-out, color 0.2s ease-out;
}

.nav_link:hover,
.nav_link:focus-visible {
  background-color: #faf9f7;
  border-left-color: #2a6bb0;
}

.nav_link_lca {
  color: #1e3674;
  font-weight: 600;
}

.nav_foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding: 24px;
  border-top: 1px solid #e6e4df;
}

.nav_foot_link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #57534b;
  text-decoration: none;
}

.nav_foot_link:hover {
  color: #1e3674;
}

.nav_foot_icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

body.nav_ouvert {
  overflow: hidden;
}

@media (max-width: 1199px) {
  .hdr_burger {
    display: inline-flex;
  }
}

@media (min-width: 1200px) {
  .nav_drawer,
  .nav_overlay {
    display: none;
  }
}

/* Animations reduites : on supprime les transitions, jamais l'etat final.
   Le menu s'ouvre alors instantanement, mais il s'ouvre. */
@media (prefers-reduced-motion: reduce) {
  .nav_drawer,
  .nav_drawer.is_open,
  .nav_overlay,
  .nav_overlay.is_open,
  .hdr_burger_bar,
  .lca_reveal {
    transition: none !important;
  }

  .lca_reveal[data-hidden] {
    opacity: 1;
    transform: none;
  }
}
