@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/plus-jakarta-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --font-sans: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: var(--font-sans);
  --ink: #0b2435;
  --ink-soft: #49606e;
  --navy: #062b43;
  --navy-2: #0a496f;
  --blue: #0875a6;
  --cyan: #18b7e9;
  --yellow: #ffd84d;
  --paper: #ffffff;
  --mist: #eef5f8;
  --line: #d6e3e9;
  --line-strong: #b8cad3;
  --success: #147a57;
  --danger: #a93232;
  --shadow-sm: 0 8px 24px rgba(11, 36, 53, 0.08);
  --shadow-lg: 0 24px 70px rgba(4, 37, 57, 0.18);
  --radius-sm: 0.65rem;
  --radius: 1.15rem;
  --radius-lg: 1.75rem;
  --radius-pill: 999px;
  --content: 76rem;
  --reading: 52rem;
  --breadcrumb-offset-y: clamp(0.9rem, 1.8vw, 1.25rem);
  --site-chrome-height: calc(2.6rem + 5.25rem + 1px);
  --visual-hero-viewport-height: calc(100vh - var(--site-chrome-height));
}

@supports (height: 100svh) {
  :root {
    --visual-hero-viewport-height: calc(100svh - var(--site-chrome-height));
  }
}

@media (min-width: 84rem) {
  :root {
    --site-chrome-height: calc(2.6rem + 5.65rem + 1px);
  }
}

@media (min-width: 120rem) {
  :root {
    --site-chrome-height: calc(2.6rem + 5.9rem + 1px);
  }
}

@media (max-width: 44rem) {
  :root {
    --site-chrome-height: calc(4.65rem + 1px);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.975rem + 0.12vw, 1.075rem);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
picture,
video,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

/* Font Awesome est rendu par le sprite SVG local, sans police d’icônes. */
i.cc-fa-icon {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
}

i.cc-fa-icon > .cc-fa-svg {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: 1em;
  fill: currentColor;
}

a {
  color: var(--blue);
  text-underline-offset: 0.16em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: var(--navy-2);
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

main a,
main code,
main pre {
  overflow-wrap: anywhere;
}

main pre {
  max-width: 100%;
  overflow-x: auto;
  white-space: pre-wrap;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

::selection {
  color: white;
  background: var(--blue);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: white;
  background: var(--navy);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-topbar,
.site-header {
  font-family: var(--font-sans);
}

.site-topbar {
  color: #dcebf2;
  background: var(--navy);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.topbar-inner,
.header-inner,
.footer-inner,
.content-shell,
.page-heading-inner,
.cc-section-inner,
.cc-container-inner,
.container,
.container-inner {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.topbar-inner {
  display: flex;
  min-height: 2.6rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-group {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-topbar a {
  color: white;
  font-weight: 750;
  text-decoration: none;
}

.topbar-dot {
  width: 0.5rem;
  height: 0.5rem;
  flex: 0 0 auto;
  background: #5ce0ad;
  border-radius: 50%;
  box-shadow: 0 0 0 0.25rem rgba(92, 224, 173, 0.13);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(214, 227, 233, 0.9);
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  min-width: 14rem;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 3.65rem;
  height: 3.65rem;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

.brand-copy small {
  margin-top: 0.28rem;
  color: var(--ink-soft);
  font-size: 0.73rem;
}

.header-primary-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
}

.header-action {
  display: grid;
  grid-template-columns: 2.15rem minmax(0, auto);
  align-items: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.45rem 0.8rem;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: 0 0.45rem 1.2rem rgba(11, 36, 53, 0.06);
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.header-action:hover,
.nav-toggle:hover {
  color: var(--blue);
  background: var(--mist);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.header-action-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--navy-2));
  border-color: transparent;
  box-shadow: 0 0.65rem 1.4rem rgba(8, 126, 181, 0.2);
}

.header-action-primary:hover {
  color: white;
  background: linear-gradient(135deg, #0a8bc5, var(--navy-2));
  border-color: transparent;
}

.header-action-call {
  color: var(--navy);
  background: linear-gradient(135deg, #ffdc57, #ffca3a);
  border-color: #efc132;
  box-shadow: 0 0.55rem 1.3rem rgba(239, 193, 50, 0.2);
}

.header-action-call:hover {
  color: var(--navy);
  background: linear-gradient(135deg, #ffe46d, #ffd24d);
  border-color: #dfaf1f;
}

.header-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  color: var(--blue);
  background: var(--mist);
  border-radius: 50%;
}

.header-action-primary .header-action-icon {
  color: white;
  background: rgba(255, 255, 255, 0.16);
}

.header-action-call .header-action-icon {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.42);
}

.header-action-copy {
  display: grid;
  min-width: 0;
  line-height: 1.12;
}

.header-action-copy strong {
  font-size: 0.82rem;
  white-space: nowrap;
}

.header-action-copy small {
  margin-top: 0.18rem;
  color: currentColor;
  font-size: 0.65rem;
  opacity: 0.76;
  white-space: nowrap;
}

.site-nav {
  position: fixed;
  z-index: 99;
  top: var(--mobile-nav-top, calc(7.85rem + 1px));
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(0.65rem, 1.5vw, 1rem);
  visibility: hidden;
  overflow-y: auto;
  background: rgba(6, 43, 67, 0.42);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.nav-open .site-nav {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.nav-panel {
  width: min(100%, var(--content));
  margin: 0;
  margin-inline: auto;
  padding: clamp(0.75rem, 1.4vw, 1rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: translateY(-0.7rem);
  transition: transform 180ms ease;
}

.nav-open .nav-panel {
  transform: translateY(0);
}

.nav-panel-heading {
  display: flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
  padding: 0.65rem 1rem;
  color: white;
  background: linear-gradient(110deg, var(--navy), var(--blue));
  border-radius: 0.9rem;
  line-height: 1.25;
}

.nav-panel-heading strong {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-panel-heading span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
}

.nav-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header .nav-list > .nav-item + .nav-item {
  margin-top: 0;
}

.nav-item {
  min-width: 0;
}

.nav-item-wide {
  grid-column: 1 / -1;
}

.nav-item-submenu {
  display: grid;
}

.nav-parent-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.45rem;
}

.nav-parent-row > .nav-link {
  min-width: 0;
}

.nav-link,
.submenu-toggle {
  display: grid;
  width: 100%;
  min-height: 4.15rem;
  align-items: center;
  gap: 0.75rem;
  padding: 0.58rem 0.75rem;
  color: var(--ink);
  background: #fbfdfe;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  box-shadow: 0 0.25rem 0.8rem rgba(11, 36, 53, 0.045);
  line-height: 1.2;
  text-align: left;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-link {
  grid-template-columns: 2.55rem minmax(0, 1fr);
}

.submenu-toggle {
  grid-template-columns: 2.55rem minmax(0, 1fr) 2.4rem;
  font-family: inherit;
  cursor: pointer;
}

.submenu-trigger {
  display: inline-flex;
  width: 3.25rem;
  min-width: 3.25rem;
  min-height: 4.15rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ink);
  background: #fbfdfe;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  box-shadow: 0 0.25rem 0.8rem rgba(11, 36, 53, 0.045);
  font-family: inherit;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.nav-link:hover,
.submenu-toggle:hover,
.submenu-toggle[aria-expanded="true"],
.nav-link[aria-current="page"],
.nav-item[data-current-section="true"] > .nav-parent-row > .nav-link {
  color: var(--blue);
  background: #eef9fd;
  border-color: rgba(8, 126, 181, 0.3);
  transform: translateY(-1px);
}

.nav-link[aria-current="page"],
.nav-item[data-current-section="true"] > .nav-parent-row > .nav-link {
  transform: none;
}

.submenu-trigger:hover,
.submenu-trigger[aria-expanded="true"],
.nav-item[data-current-section="true"] > .nav-parent-row > .submenu-trigger {
  color: var(--blue);
  background: #eef9fd;
  border-color: rgba(8, 126, 181, 0.3);
}

.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  color: var(--blue);
  background: var(--mist);
  border: 1px solid rgba(8, 126, 181, 0.12);
  border-radius: 0.78rem;
}

.nav-label,
.submenu-copy {
  display: grid;
  min-width: 0;
}

.nav-label strong {
  font-size: 0.93rem;
  font-weight: 780;
  letter-spacing: -0.01em;
}

.nav-label small {
  margin-top: 0.18rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.32;
}

.submenu-chevron {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  background: var(--mist);
  border-radius: 0.7rem;
}

.submenu-chevron::before {
  width: 0.48rem;
  height: 0.48rem;
  margin-top: -0.22rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: margin 180ms ease, transform 180ms ease;
}

.submenu-open .submenu-chevron::before {
  margin-top: 0.22rem;
  transform: rotate(225deg);
}

.submenu {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  width: 100%;
  margin: 0.5rem 0 0;
  padding: 0.55rem;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  list-style: none;
}

.submenu-open .submenu {
  display: grid;
}

.submenu-heading {
  display: grid;
  grid-column: 1 / -1;
  gap: 0.18rem;
  padding: 0.7rem 0.82rem;
  background: #f8fcfe;
  border: 1px solid rgba(8, 126, 181, 0.14);
  border-radius: 0.75rem;
}

.submenu-heading span {
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.submenu-heading strong {
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.35;
}

.submenu a {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr) 1.1rem;
  min-height: 4.25rem;
  align-items: center;
  gap: 0.65rem;
  padding: 0.58rem 0.68rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 0.7rem;
  line-height: 1.25;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.submenu-icon {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: var(--mist);
  border: 1px solid rgba(8, 126, 181, 0.14);
  border-radius: 0.72rem;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.submenu a strong {
  font-size: 0.78rem;
}

.submenu a small {
  margin-top: 0.16rem;
  color: var(--ink-soft);
  font-size: 0.65rem;
  line-height: 1.35;
}

.submenu-link-arrow {
  position: relative;
  display: inline-flex;
  width: 1.1rem;
  height: 1.1rem;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
}

.submenu-link-arrow::before {
  width: 0.38rem;
  height: 0.38rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(-45deg);
}

.submenu a:hover,
.submenu a[aria-current="page"] {
  color: var(--blue);
  background: #f7fbfd;
  border-color: rgba(8, 126, 181, 0.25);
  box-shadow: 0 0.4rem 1rem rgba(11, 36, 53, 0.07);
  transform: translateY(-1px);
}

.submenu a:hover .submenu-icon,
.submenu a[aria-current="page"] .submenu-icon {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--navy-2));
  border-color: transparent;
  transform: scale(1.03);
}

.submenu a:hover .submenu-link-arrow,
.submenu a[aria-current="page"] .submenu-link-arrow {
  color: var(--blue);
}

.nav-mobile-only {
  display: none;
}

.button,
.cc-button,
.btn,
button[type="submit"] {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.15rem;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--navy-2));
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  box-shadow: 0 0.55rem 1.3rem rgba(8, 126, 181, 0.2);
  font-weight: 760;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.cc-button:hover,
.btn:hover,
button[type="submit"]:hover {
  color: white;
  box-shadow: 0 0.75rem 1.6rem rgba(8, 126, 181, 0.28);
  transform: translateY(-2px);
}

.button-secondary,
.cc-button-info,
.btn-secondary {
  color: var(--navy);
  background: var(--paper);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.button-secondary:hover,
.cc-button-info:hover,
.btn-secondary:hover,
.button-light:hover {
  color: var(--blue);
  background: var(--mist);
}

.button-accent {
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 0 0.55rem 1.3rem rgba(255, 216, 77, 0.25);
}

.button-accent:hover {
  color: var(--navy);
  background: #ffe276;
}

.nav-toggle {
  display: inline-flex;
  min-width: 6.35rem;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.45rem 0.72rem;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: 0 0.45rem 1.2rem rgba(11, 36, 53, 0.06);
  font-weight: 780;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  background: var(--mist);
  border-radius: 50%;
}

.nav-toggle-label {
  min-width: 2.4rem;
  font-size: 0.82rem;
  text-align: left;
}

.nav-open .nav-toggle {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 0 0 0.2rem rgba(8, 126, 181, 0.16);
}

.nav-open .nav-toggle-icon {
  background: rgba(255, 255, 255, 0.13);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  content: "";
  transition: transform 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before {
  position: absolute;
  top: -0.4rem;
}

.nav-toggle-lines::after {
  position: absolute;
  top: 0.4rem;
}

.nav-open .nav-toggle-lines {
  background: transparent;
}

.nav-open .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-open .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Navigation grand écran : barre horizontale inspirée de la hiérarchie BIW.
   Les écrans plus étroits conservent le panneau de navigation existant. */
@media (min-width: 84rem) {
  body.nav-open {
    overflow: auto;
  }

  .header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "brand navigation actions";
    width: min(calc(100% - 2.5rem), 100rem);
    min-height: 5.65rem;
    gap: 0.85rem;
  }

  .brand {
    grid-area: brand;
    min-width: 13.2rem;
    gap: 0.7rem;
  }

  .brand img {
    width: 3.35rem;
    height: 3.35rem;
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .brand-copy small {
    font-size: 0.65rem;
  }

  .header-primary-actions {
    grid-area: actions;
    gap: 0.38rem;
    margin-left: 0;
  }

  .header-action {
    grid-template-columns: 1.9rem minmax(0, auto);
    min-height: 3rem;
    gap: 0.42rem;
    padding: 0.36rem 0.65rem;
    box-shadow: none;
  }

  .header-action-primary {
    order: 1;
  }

  .header-action-call {
    order: 2;
  }

  .header-action-icon {
    width: 1.9rem;
    height: 1.9rem;
  }

  .header-action-copy strong {
    font-size: 0.73rem;
  }

  .header-action-copy small {
    display: none;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    z-index: auto;
    grid-area: navigation;
    display: block;
    min-width: 0;
    padding: 0;
    visibility: visible !important;
    overflow: visible;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    opacity: 1 !important;
    pointer-events: auto !important;
    transition: none;
  }

  .nav-panel,
  .nav-open .nav-panel {
    width: auto;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    transition: none;
  }

  .nav-panel-heading {
    display: none;
  }

  .nav-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.08rem;
  }

  .nav-item,
  .nav-item-wide {
    position: relative;
    flex: 0 0 auto;
    grid-column: auto;
  }

  .nav-item-submenu {
    display: block;
  }

  .nav-link,
  .submenu-toggle {
    position: relative;
    display: inline-flex;
    width: auto;
    min-height: 3.05rem;
    align-items: center;
    gap: 0.3rem;
    padding: 0.62rem 0.47rem;
    background: transparent;
    border-color: transparent;
    border-radius: 0.8rem;
    box-shadow: none;
    white-space: nowrap;
    transform: none;
  }

  .nav-link:hover,
  .submenu-toggle:hover,
  .submenu-toggle[aria-expanded="true"],
  .nav-link[aria-current="page"],
  .nav-item[data-current-section="true"] > .nav-parent-row > .nav-link {
    color: var(--blue);
    background: #f7fbfd;
    border-color: var(--line);
    transform: none;
  }

  .submenu-trigger:hover,
  .submenu-trigger[aria-expanded="true"],
  .nav-item[data-current-section="true"] > .nav-parent-row > .submenu-trigger {
    color: var(--blue);
    background: #f7fbfd;
    border-color: var(--line);
  }

  .nav-link[aria-current="page"]::after,
  .nav-item[data-current-section="true"] > .nav-parent-row > .nav-link::after {
    position: absolute;
    right: 0.55rem;
    bottom: 0.27rem;
    left: 0.55rem;
    height: 0.13rem;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    border-radius: var(--radius-pill);
    content: "";
  }

  .nav-icon,
  .nav-label small {
    display: none;
  }

  .nav-label {
    display: block;
  }

  .nav-label strong {
    font-size: 0.72rem;
    font-weight: 760;
    letter-spacing: -0.015em;
  }

  .submenu-chevron {
    width: 0.85rem;
    height: 0.85rem;
    background: transparent;
    border-radius: 0;
  }

  .submenu-chevron::before {
    width: 0.35rem;
    height: 0.35rem;
    margin-top: -0.18rem;
    border-width: 0 1.5px 1.5px 0;
  }

  .submenu {
    position: absolute;
    z-index: 5;
    top: calc(100% + 0.48rem);
    left: 50%;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    width: min(42rem, calc(100vw - 3rem));
    margin: 0;
    padding: 0.65rem;
    background: var(--paper);
    border-color: var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateX(-50%);
  }

  .submenu::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 0.5rem;
    content: "";
  }

  .submenu-open .submenu {
    display: grid;
  }

  .submenu a {
    min-height: 4.35rem;
  }
}

@media (min-width: 84rem) and (hover: hover) and (pointer: fine) {
  .nav-item-submenu:hover .submenu {
    display: grid;
  }
}

/* Le menu gagne progressivement en lisibilité quand l'écran offre plus de place.
   Le premier palier desktop reste compact afin d'éviter tout chevauchement. */
@media (min-width: 100rem) {
  .header-inner {
    width: min(calc(100% - 3rem), 112rem);
    gap: 1rem;
  }

  .nav-list {
    gap: 0.12rem;
  }

  .nav-link,
  .submenu-toggle {
    min-height: 3.15rem;
    gap: 0.34rem;
    padding: 0.64rem 0.58rem;
  }

  .nav-label strong {
    font-size: 0.79rem;
  }

  .header-action {
    padding-inline: 0.72rem;
  }

  .header-action-copy strong {
    font-size: 0.78rem;
  }
}

@media (min-width: 120rem) {
  .header-inner {
    width: min(calc(100% - 4rem), 128rem);
    min-height: 5.9rem;
    gap: 1.25rem;
  }

  .brand {
    min-width: 14.2rem;
    gap: 0.78rem;
  }

  .brand img {
    width: 3.6rem;
    height: 3.6rem;
  }

  .brand-copy strong {
    font-size: 1.05rem;
  }

  .brand-copy small {
    font-size: 0.7rem;
  }

  .nav-list {
    gap: 0.18rem;
  }

  .nav-link,
  .submenu-toggle {
    min-height: 3.3rem;
    gap: 0.38rem;
    padding: 0.68rem 0.7rem;
  }

  .nav-label strong {
    font-size: 0.94rem;
  }

  .submenu-chevron {
    width: 0.95rem;
    height: 0.95rem;
  }

  .header-primary-actions {
    gap: 0.5rem;
  }

  .header-action {
    grid-template-columns: 2.1rem minmax(0, auto);
    min-height: 3.3rem;
    gap: 0.5rem;
    padding: 0.42rem 0.85rem;
  }

  .header-action-icon {
    width: 2.1rem;
    height: 2.1rem;
  }

  .header-action-copy strong {
    font-size: 0.86rem;
  }
}

@media (min-width: 84rem) {
  .site-header .header-inner {
    width: min(calc(100% - 2rem), var(--content));
  }

  .nav-parent-row {
    display: inline-flex;
    align-items: center;
    gap: 0.04rem;
  }

  .nav-parent-row > .nav-parent-link {
    padding-right: 0.28rem;
  }

  .nav-parent-row > .submenu-trigger {
    width: 1.75rem;
    min-width: 1.75rem;
    min-height: 2.5rem;
    padding: 0;
    background: transparent;
    border-color: transparent;
    border-radius: 0.65rem;
    box-shadow: none;
  }

  .nav-parent-row > .submenu-trigger .submenu-chevron {
    width: 0.8rem;
    height: 0.8rem;
  }

  .submenu-services {
    width: min(46rem, calc(100vw - 3rem));
    gap: 0.35rem;
    padding: 0.62rem;
    background: #f8fcfe;
    border-radius: 1.2rem;
  }

  .submenu-services .submenu-heading {
    padding: 0.72rem 0.9rem;
    background: var(--paper);
    border-radius: 0.85rem;
  }

  .submenu-services a {
    min-height: 4rem;
  }
}

@media (min-width: 120rem) {
  .site-header .nav-list > .nav-item > .nav-link,
  .site-header .nav-parent-row > .nav-parent-link {
    padding-inline: 0.5rem;
  }
}

.page-heading {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 88% 15%, rgba(24, 183, 233, 0.3), transparent 28rem),
    linear-gradient(135deg, var(--navy), #0c4d72);
}

.page-heading::after {
  position: absolute;
  right: -8rem;
  bottom: -11rem;
  width: 23rem;
  height: 23rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(255, 255, 255, 0.035), 0 0 0 6rem rgba(255, 255, 255, 0.025);
  content: "";
}

.page-heading-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(2.4rem, 6vw, 5rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: #bcd7e5;
  font-size: 0.83rem;
  font-weight: 680;
}

.breadcrumbs a {
  color: white;
  text-decoration: none;
}

.breadcrumbs span + span::before,
.breadcrumbs a + span::before,
.breadcrumbs a + a::before {
  margin-right: 0.45rem;
  color: #6ebbdc;
  content: "/";
}

.page-heading h1 {
  max-width: 52rem;
  margin: 0;
  color: white;
  font-size: clamp(2rem, 5vw, 4.1rem);
}

.page-heading-compact .page-heading-inner {
  padding-block: 1.55rem;
}

.page-heading-compact .breadcrumbs {
  margin-bottom: 0.45rem;
}

.page-heading-compact .page-kicker {
  margin-bottom: 0;
}

.page-kicker,
.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--blue);
  font-size: 0.77rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

main {
  min-height: 50vh;
}

.ai-text-disclosure {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: min(100%, 35rem);
  margin: 0.9rem 0 0;
  padding: 0.2rem 0;
  gap: 0.4rem;
  color: #c9dfe9;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: clamp(0.69rem, 0.65rem + 0.12vw, 0.76rem);
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none !important;
  opacity: 0.9;
  transition: color 160ms ease, opacity 160ms ease;
}

.ai-text-disclosure:hover,
.ai-text-disclosure:focus-visible {
  color: white;
  background: transparent;
  opacity: 1;
}

.ai-text-disclosure:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
  border-radius: 0.2rem;
}

.ai-text-disclosure-icon {
  display: inline-grid;
  width: 1.0625rem;
  height: 1.0625rem;
  flex: 0 0 auto;
  place-items: center;
}

.ai-text-disclosure-icon img {
  display: block;
  width: 1.0625rem;
  height: 1.0625rem;
  margin: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 27, 48, 0.22));
  object-fit: contain;
}

.ai-media-frame {
  position: relative;
  isolation: isolate;
}

span.ai-media-frame {
  display: block;
  width: fit-content;
  max-width: 100%;
}

.ai-media-label {
  position: absolute;
  z-index: 7;
  top: 0.65rem;
  right: 0.65rem;
  display: block;
  width: 5.15rem;
  max-width: calc(100% - 1.3rem);
  line-height: 0;
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.42));
}

.ai-media-label--modified {
  width: 4.8rem;
}

.ai-media-label img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  margin: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
}

/* Présentation éditoriale alignée sur le blog BIW : le hero du blog conserve
   le badge en haut, tandis que les articles et leurs cartes l’affichent en bas. */
.route-article .editorial-hero-media > .ai-media-label,
.route-blog .blog-card-media > .ai-media-label,
.route-tag .tag-library-card-media > .ai-media-label,
.route-tag .tag-topic-card-media > .ai-media-label,
.cc-article-carousel-img .ai-media-label,
.home-advice-card .home-card-media > .ai-media-label {
  top: auto;
  right: clamp(0.45rem, 2.2%, 0.9rem);
  bottom: clamp(0.45rem, 2.2%, 0.9rem);
  width: clamp(4.5rem, 14%, 6rem);
  max-width: calc(100% - 0.9rem);
  filter: none;
}

.cc-article-carousel-img-link.ai-media-frame,
.route-tag .tag-topic-card-media > img, .route-tag .tag-topic-card-media > .ai-media-frame, .route-tag .tag-topic-card-media > .ai-media-frame > img {
  display: block;
  width: 100%;
  height: 100%;
}

.route-article .article-sequential-media .ai-media-label {
  top: auto;
  right: 0.35rem;
  bottom: 0.35rem;
  width: clamp(3.25rem, 32%, 4.5rem);
  max-width: calc(100% - 0.7rem);
  filter: none;
}

.article-body span.ai-media-frame,
.article-introtext span.ai-media-frame {
  margin: 1.5rem auto;
}

.article-body span.ai-media-frame > img,
.article-introtext span.ai-media-frame > img {
  margin: 0;
}

.content-shell {
  padding-block: clamp(2.5rem, 6vw, 5rem);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.75em;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 820;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.25rem, 5.5vw, 5rem);
}

h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.75rem);
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

p,
ul,
ol,
blockquote,
table,
figure {
  margin-top: 0;
  margin-bottom: 1.15rem;
}

ul,
ol {
  padding-left: 1.3rem;
}

li + li {
  margin-top: 0.35rem;
}

blockquote {
  padding: 1.2rem 1.35rem;
  color: var(--navy);
  background: var(--mist);
  border-left: 0.3rem solid var(--cyan);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

hr {
  margin-block: 2.5rem;
  border: 0;
  border-top: 1px solid var(--line);
}

.cc-section {
  position: relative;
  padding-block: clamp(2.5rem, 6vw, 5.5rem);
}

.cc-section .cc-section {
  padding-block: 0;
}

.page-content > .cc-section:nth-of-type(even),
.cc-page-layout > .page-content > .cc-section:nth-of-type(even) {
  background: var(--mist);
}

.cc-row,
.row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: clamp(1.2rem, 3vw, 2.2rem);
}

.cc-grid-cell,
[class*="cc-col-"],
[class*="col-lg-"],
[class*="col-md-"] {
  min-width: 0;
  flex: 1 1 17rem;
}

.cc-col-md-12,
.col-lg-12,
.col-md-12 {
  flex-basis: 100%;
}

.cc-column,
.cc-content-stack,
.cc-block,
.cc-block-content {
  width: 100%;
}

.cc-block-wrap + .cc-block-wrap {
  margin-top: 1.1rem;
}

/* Shared foundations keep equivalent cards, media, metadata and pills aligned. */
.cc-block-type-modal,
.cc-article-carousel-column,
.cc-accordion-item,
.cc-carousel-extended-item,
.cc-carousel-inner > .cc-carousel-item,
.blog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.cc-block-type-modal,
.cc-article-carousel-column,
.cc-carousel-extended-item,
.cc-carousel-inner > .cc-carousel-item,
.blog-card {
  border-radius: var(--radius);
}

.cc-article-carousel-column,
.blog-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
}

.cc-article-carousel-img,
.blog-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--mist);
}

.cc-article-carousel-img img,
.blog-card-media img,
.tag-hero-media > .tag-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-article-carousel-content,
.blog-card-body {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.05rem 1.15rem;
}

.cc-article-carousel-meta,
.blog-card time {
  margin-bottom: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.cc-article-carousel-link,
.blog-card h2 a,
.blog-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.cc-article-carousel-link:hover,
.blog-card h2 a:hover,
.blog-card h3 a:hover {
  color: var(--blue);
}

.cc-article-carousel-introtext,
.blog-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.cc-article-carousel-meta-category a,
.social-share-icon a,
.cc-share-wrap a,
.cc-icon-group-list a,
.tag-chip,
.pagination button,
.pagination a,
.historical-share-links a {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  text-decoration: none;
}

.cc-article-carousel-meta-category a,
.tag-chip {
  color: var(--navy-2);
  background: var(--mist);
  font-weight: 720;
}

.cc-article-carousel-wrap,
.cc-carousel-extended,
.cc-carousel-inner {
  display: grid !important;
  gap: 1.2rem;
}

.cc-article-carousel-wrap,
.cc-carousel-extended,
.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cc-block-type-modal {
  height: 100%;
  overflow: hidden;
}

.cc-block-type-modal .modal-inner-block {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 1rem;
}

.cc-block-type-modal .modal-inner-block > p:first-child {
  margin: -1rem -1rem 1rem;
}

.cc-block-type-modal .modal-inner-block > p:first-child img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.cc-block-type-modal .cc-button-wrap {
  margin-top: auto;
}

.cc-article-carousel-img {
  flex: 0 0 auto;
}

.cc-article-carousel-content {
  min-width: 0;
  height: auto;
  align-items: flex-start;
  flex: 1 1 auto;
  text-align: left !important;
}

.cc-article-carousel-link {
  font-size: 1.02rem;
  font-weight: 780;
  line-height: 1.3;
}

.cc-article-carousel-introtext {
  margin-top: 0.65rem;
}

.cc-article-carousel-meta-category {
  margin-top: auto;
  padding-top: 0.9rem;
}

.cc-article-carousel-meta-category a {
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
}

.cc-block-type-empty-space,
.cc-spacer,
.site-message-region:empty,
.cc-layout-icon,
.cc-section-overlay,
.article-can-edit:empty,
.me-auto:empty {
  display: none !important;
}

.cc-block-single-image-container,
.cc-block-image-shape,
.article-full-image,
.article-intro-image {
  overflow: hidden;
  border-radius: var(--radius);
}

.cc-block-single-image-container img,
.article-full-image img,
.article-intro-image img {
  width: 100%;
  object-fit: cover;
}

.cc-block-single-image-container img {
  box-shadow: var(--shadow-sm);
}

/* The exported markup labels the first service card as a 12-column item,
   while its page-specific critical CSS sizes all three cards to one third. */
#servicestc > .cc-section-inner > .cc-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

#servicestc > .cc-section-inner > .cc-row > .cc-grid-cell {
  max-width: none;
}

#servicestc > .cc-section-inner > .cc-row > .cc-grid-cell > .cc-column {
  height: 100%;
}

#servicestc > .cc-section-inner > .cc-row > .cc-grid-cell .cc-content-stack {
  display: grid;
  height: 100%;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

#servicestc > .cc-section-inner > .cc-row > .cc-grid-cell .cc-content-stack > .cc-block-wrap {
  height: 100%;
  margin-top: 0;
}

#servicestc .cc-block-type-button {
  margin-top: auto;
}

.cc-button-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.cc-block-title {
  display: block;
}

.route-home #hometc:first-of-type,
.route-home .page-content > #hometc:first-child {
  display: grid;
  min-height: clamp(38rem, 72vh, 46rem);
  align-items: center;
  isolation: isolate;
  padding-block: clamp(3.75rem, 7vw, 6rem);
  color: white;
  background:
    linear-gradient(90deg, rgba(36, 36, 36, 0.78) 0%, rgba(58, 58, 58, 0.62) 48%, rgba(82, 82, 82, 0.3) 100%),
    var(--home-hero-background-image, none) center / cover no-repeat;
}

.route-home #hometc:first-of-type::after,
.route-home .page-content > #hometc:first-child::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 8rem;
  background: linear-gradient(transparent, rgba(36, 36, 36, 0.26));
  content: "";
}

.route-home #hometc:first-of-type .cc-section-inner,
.route-home .page-content > #hometc:first-child .cc-section-inner {
  width: min(calc(100% - 2rem), var(--content));
}

.route-home #hometc:first-of-type .cc-content-stack,
.route-home .page-content > #hometc:first-child .cc-content-stack {
  max-width: 50rem;
}

.route-home #hometc:first-of-type h1,
.route-home #hometc:first-of-type h2,
.route-home #hometc:first-of-type h3,
.route-home .page-content > #hometc:first-child h1,
.route-home .page-content > #hometc:first-child h2,
.route-home .page-content > #hometc:first-child h3 {
  color: white;
}

.route-home #hometc:first-of-type h1,
.route-home .page-content > #hometc:first-child h1 {
  max-width: 49rem;
  margin-bottom: 0.35em;
  font-size: clamp(2.55rem, 4.6vw, 4.45rem);
  line-height: 1.03;
}

.route-home #hometc:first-of-type p:not(.page-kicker),
.route-home .page-content > #hometc:first-child p:not(.page-kicker) {
  max-width: 45rem;
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
}

.route-home #hometc:first-of-type strong,
.route-home .page-content > #hometc:first-child strong {
  color: var(--yellow);
}

.route-home #hometc:first-of-type .cc-button,
.route-home .page-content > #hometc:first-child .cc-button {
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.24);
}

.route-home .home-section--hero .cc-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 21rem);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.route-home .home-section--hero .home-hero-copy,
.route-home .home-section--hero .home-hero-action {
  width: auto;
  max-width: none;
}

.route-home .home-section--hero .home-hero-copy {
  grid-column: 1;
}

.route-home .home-section--hero .home-hero-copy .cc-content-stack {
  max-width: 44rem;
}

.route-home .home-section--hero .home-hero-copy h2 {
  max-width: 38rem;
  margin-top: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: 0.45em;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.1;
}

.route-home .home-section--hero .home-hero-copy .cc-block-content p {
  margin-bottom: 0.65rem;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.route-home .home-section--hero .home-hero-copy .cc-block-content p:last-child {
  margin-bottom: 0;
}

.route-home .home-section--hero .home-hero-action {
  grid-column: 2;
}

.route-home .home-section--hero .home-hero-action :where(.cc-button-wrap, .cc-button) {
  width: 100%;
}

.route-home .home-section--hero .home-hero-action .cc-button {
  min-height: 4.25rem;
  padding-inline: 1.25rem;
}

.route-home .home-section--hero .home-hero-empty {
  display: none;
}

@media (max-width: 52rem) {
  .route-home .home-section--hero .cc-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .route-home .home-section--hero .home-hero-action {
    width: min(100%, 22rem);
    grid-column: 1;
    justify-self: start;
  }
}

.route-home .content-shell {
  width: 100%;
  padding: 0;
}

.route-home .content-shell > .row,
.route-home .content-shell > .row > [class*="col-"] {
  display: contents;
}

.route-home .page-content > section:not(:first-child) .cc-block-text-block,
.route-home .page-content > section:not(:first-child) .cc-block-header {
  max-width: 62rem;
  margin-inline: auto;
}

.route-home .page-content > section:not(:first-child) .cc-block-title {
  text-align: center;
}

.article-details {
  width: min(100%, var(--reading));
  margin-inline: auto;
}

.article-details .article-full-image {
  margin-bottom: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.article-details .article-header h1 {
  margin-bottom: 0.45em;
  font-size: clamp(2rem, 5vw, 3.75rem);
}

.article-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.15rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}

.article-info a {
  font-weight: 700;
}

.article-body,
.article-introtext {
  font-size: 1.06rem;
}

.article-body h2,
.article-introtext h2 {
  margin-top: 2.2rem;
}

.article-body h3,
.article-introtext h3 {
  margin-top: 1.8rem;
}

.article-body img,
.article-introtext img {
  margin: 1.5rem auto;
  border-radius: var(--radius-sm);
}

.article-ratings-social-share {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.social-share-icon ul,
.cc-share-wrap ul,
.cc-icon-group-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 0.45rem;
  list-style: none;
}

.social-share-icon a,
.cc-share-wrap a,
.cc-icon-group-list a {
  min-width: 2.5rem;
  min-height: 2.5rem;
  justify-content: center;
  padding: 0.45rem 0.65rem;
  color: white;
  background: var(--navy-2);
  font-size: 0.75rem;
}

.social-share-icon a::after,
.cc-share-wrap a::after,
.cc-icon-group-list a::after {
  content: attr(aria-label);
}

.social-share-icon a.facebook::after {
  content: "Facebook";
}

.social-share-icon a.linkedin::after {
  content: "LinkedIn";
}

.social-share-icon a.twitter::after,
.social-share-icon a.x::after {
  content: "X";
}

.social-share-icon i,
.cc-share-wrap i,
.cc-icon-group-list i,
.social-share-icon span[class*="fa-"] {
  display: none;
}

.cc-accordion-list {
  display: grid;
  gap: 0.75rem;
}

.cc-accordion-item {
  overflow: clip;
  border-radius: var(--radius-sm);
}

.cc-accordion-heading {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  text-align: left;
  cursor: pointer;
}

.cc-accordion-heading::after {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 800;
  content: "+";
}

.cc-accordion-heading[aria-expanded="true"]::after {
  content: "−";
}

.cc-accordion-heading h3,
.cc-accordion-heading h4 {
  margin: 0;
  font-size: 1.03rem;
}

.cc-accordion-panel {
  display: none;
}

.cc-accordion-panel.is-open {
  display: block !important;
}

.cc-accordion-body {
  padding: 0 1.1rem 1.1rem;
}

/* Les anciens carrousels restent complets et lisibles sans dépendance JS. */
.cc-carousel-extended,
.cc-carousel-inner {
  width: 100% !important;
  overflow: visible !important;
  transform: none !important;
}

.cc-carousel-inner {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cc-carousel-extended-item,
.cc-carousel-inner > .cc-carousel-item {
  position: relative !important;
  inset: auto !important;
  display: flex !important;
  width: auto !important;
  min-width: 0;
  height: auto !important;
  margin: 0 !important;
  padding: clamp(1.2rem, 3vw, 1.75rem);
  flex-direction: column;
  color: var(--ink);
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
}

.cc-carousel .cc-carousel-control,
.cc-carousel .cc-carousel-indicators {
  display: none !important;
}

.cc-carousel-item-inner {
  width: 100%;
}

.cc-carousel-item-inner > :last-child {
  margin-bottom: 0;
}

.cc-testimonial-carousel-item-content {
  position: relative;
  flex: 1 1 auto;
  padding-top: 1.5rem;
  color: var(--ink-soft);
}

.cc-testimonial-carousel-item-content::before {
  position: absolute;
  top: -0.65rem;
  left: 0;
  color: var(--yellow);
  font-family: var(--font-heading);
  font-size: 3.6rem;
  line-height: 1;
  content: "“";
}

.cc-testimonial-carousel-content-wrap {
  display: flex;
  align-items: center;
  margin-top: 1.2rem;
  padding-top: 1rem;
  gap: 0.8rem;
  border-top: 1px solid var(--line);
  font-weight: 760;
}

.cc-testimonial-carousel-content-wrap img {
  width: 3.4rem;
  height: 3.4rem;
  flex: 0 0 3.4rem;
  object-fit: cover;
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

.blog-tools {
  display: grid;
  margin-bottom: 2rem;
  gap: 1rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tag-chip {
  min-height: 2.75rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--line);
  font-size: 0.83rem;
}

.blog-search {
  position: relative;
  max-width: 34rem;
}

.blog-search label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 760;
}

.blog-search input {
  min-height: 3.25rem;
  border-radius: var(--radius-pill);
}

.blog-results-status {
  min-height: 1.5em;
  margin: -1rem 0 1rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 650;
}

.blog-results-status:empty {
  min-height: 0;
  margin: 0;
}

.blog-grid {
  display: grid;
  gap: 1.35rem;
}

.blog-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover,
.blog-card:focus-within {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card-media {
  display: block;
}

.blog-card-media img {
  transition: transform 300ms ease;
}

.blog-card:hover .blog-card-media img,
.blog-card:focus-within .blog-card-media img {
  transform: scale(1.03);
}

.blog-card-body {
  height: 100%;
}

.blog-card .blog-card-meta {
  display: flex;
  overflow: visible;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 0.55rem;
  gap: 0.25rem 0.55rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-box-orient: initial;
  -webkit-line-clamp: unset;
}

.blog-card-meta > * + *::before {
  margin-right: 0.55rem;
  color: var(--line-strong);
  content: "·";
}

.blog-card-meta a {
  color: var(--blue);
  text-decoration: none;
}

.blog-card-meta time {
  margin: 0;
  color: inherit;
  font-size: inherit;
}

.blog-card h2,
.blog-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.12rem;
  line-height: 1.25;
}

.blog-card p {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.25rem;
  gap: 0.45rem;
}

.pagination-summary {
  margin: 2rem 0 -1.35rem;
  color: var(--ink-soft);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
}

.pagination button,
.pagination a {
  min-width: 2.75rem;
  min-height: 2.75rem;
  justify-content: center;
  padding: 0.4rem 0.65rem;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  font-weight: 720;
  cursor: pointer;
}

.pagination-ellipsis {
  display: inline-grid;
  min-width: 1.5rem;
  min-height: 2.75rem;
  place-items: center;
  color: var(--ink-soft);
  font-weight: 760;
}

.tag-chip:hover,
.pagination button[aria-current="page"],
.pagination a[aria-current="page"],
.collection-topics .tag-chip[aria-current="page"],
.reader-control:hover,
.reader-control:focus-visible,
.reader-control[aria-expanded="true"] {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
}

.historical-share-links {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.historical-share-links h2 {
  font-size: 1.1rem;
}

.historical-share-links > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.historical-share-links a {
  padding: 0.48rem 0.75rem;
  color: white;
  background: var(--navy-2);
  font-size: 0.78rem;
  font-weight: 700;
}

.tag-description,
.category-desc {
  margin-bottom: 2.5rem;
}

/* The migrated tag body is already inside the site's content container.
   Avoid applying the former container gutter a second time, especially on
   narrow screens where two nested gutters make the article unnecessarily
   cramped. */
.tag-index .cc-section-inner,
.tag-index .cc-container-inner,
.tag-index .container,
.tag-index .container-inner {
  width: 100%;
}

.cc-tag-list-compact,
.cc-tag-list-items {
  overflow-x: auto;
}

.table-scroll-shell {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin-bottom: 1.15rem;
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-sm);
  scrollbar-color: var(--blue) var(--mist);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.table-scroll table {
  min-width: 34rem;
  margin-bottom: 0;
}

.table-scroll-hint {
  display: none;
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 650;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

th,
td {
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--navy);
  background: var(--mist);
  font-size: 0.82rem;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

form:not(.search-form),
.article-lead,
.tag-library-list {
  display: grid;
  gap: 1rem;
}

.form-group,
.cc-form-group {
  display: grid;
  gap: 0.35rem;
}

label,
.cc-form-label {
  color: var(--ink);
  font-weight: 720;
}

input:not(:where([type="checkbox"], [type="radio"], [type="submit"])),
textarea,
select {
  width: 100%;
  min-height: 3rem;
  padding: 0.72rem 0.85rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 0.22rem rgba(8, 126, 181, 0.13);
}

.form-status {
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
}

.form-status.success {
  color: #07533a;
  background: #dff6ed;
}

.form-status.error {
  color: #762424;
  background: #fde8e8;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.legal-document {
  max-width: 68rem;
  margin-inline: auto;
}

.legal-document h2 {
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
}

.legal-document h3 {
  margin-top: 1.75rem;
}

.legal-document address {
  margin-bottom: 1.15rem;
  padding: 1.2rem 1.35rem;
  background: var(--mist);
  border-radius: var(--radius-sm);
  font-style: normal;
}

.legal-document code {
  padding: 0.12rem 0.35rem;
  background: var(--mist);
  border-radius: 0.3rem;
  font-size: 0.9em;
}

.legal-highlight {
  padding: 1.15rem 1.3rem;
  color: var(--navy);
  background: #eaf8fd;
  border-left: 0.3rem solid var(--cyan);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 650;
}

.legal-update {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.legal-table {
  min-width: 40rem;
  margin-bottom: 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #d9e8ef;
  background:
    linear-gradient(145deg, rgba(9, 57, 84, 0.96), rgba(4, 35, 55, 0.99)),
    var(--navy);
}

.site-footer::before {
  position: absolute;
  top: -18rem;
  left: -12rem;
  width: 38rem;
  height: 38rem;
  background: radial-gradient(circle, rgba(24, 183, 233, 0.2), transparent 68%);
  content: "";
  pointer-events: none;
}

.site-footer::after {
  position: absolute;
  right: -14rem;
  bottom: -18rem;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(255, 211, 78, 0.08), transparent 68%);
  content: "";
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(20rem, 1.32fr) repeat(3, minmax(9.5rem, 0.78fr));
  align-items: start;
  padding-block: 3.5rem 1.6rem;
  gap: 1.4rem clamp(1.25rem, 2vw, 2rem);
}

.footer-profile {
  grid-column: 1 / -1;
  grid-row: auto;
  min-width: 0;
  padding: clamp(1.25rem, 2vw, 1.7rem);
  background: linear-gradient(145deg, rgba(20, 92, 126, 0.58), rgba(8, 49, 74, 0.8));
  border: 1px solid rgba(162, 218, 239, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 1.25rem 3.5rem rgba(0, 20, 33, 0.2);
}

.footer-profile .brand {
  width: fit-content;
  color: white;
}

.footer-profile .brand img {
  width: 3.5rem;
  height: 3.5rem;
}

.footer-profile .brand-copy small,
.footer-intro {
  color: #b9d1dc;
}

.footer-intro {
  margin: 1.15rem 0;
  padding-block: 1rem;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

.footer-contact-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  font-style: normal;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 2.35rem minmax(0, 1fr);
  align-items: center;
  gap: 0.7rem;
  min-height: 3.55rem;
  padding: 0.6rem 0.7rem;
  color: #d7e9f0;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.78rem;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer-contact-item:hover {
  color: white;
  background: rgba(24, 183, 233, 0.13);
  border-color: rgba(109, 213, 244, 0.28);
  transform: translateY(-1px);
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.35rem;
  width: 2.35rem;
  height: 2.35rem;
  margin: 0;
  color: #8dddf5;
  background: rgba(24, 183, 233, 0.13);
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
}

.footer-contact-icon i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  font-size: 1rem;
  line-height: 1;
}

.footer-contact-icon i::before,
.footer-social-links i::before {
  display: block;
  line-height: 1;
}

.footer-contact-copy, .footer-contact-copy strong, .footer-contact-copy > span,
.contact-hero-channels .home-hero-signal-copy > strong, .contact-hero-channels .home-hero-signal-copy > small,
.contact-profile-links small, .contact-profile-links strong, .contact-profile-links strong + span {
  display: block;
  overflow-wrap: anywhere;
}

.footer-contact-copy {
  min-width: 0;
  margin: 0;
}

.footer-contact-copy strong {
  color: white;
  font-size: 0.84rem;
  line-height: 1.35;
}

.footer-contact-copy > span {
  margin-top: 0.08rem;
  color: #b9d1dc;
  font-size: 0.75rem;
  line-height: 1.4;
}

.footer-company-meta {
  display: grid;
  gap: 0;
  margin: 0.8rem 0 0;
  padding: 0.15rem 0.8rem;
  background: rgba(3, 30, 48, 0.28);
  border-radius: 0.7rem;
}

.footer-company-meta > div {
  display: grid;
  grid-template-columns: minmax(4.8rem, 0.35fr) minmax(0, 1fr);
  gap: 0.65rem;
  padding-block: 0.55rem;
}

.footer-company-meta > div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-company-meta dt {
  color: #8fbbc9;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-company-meta dd {
  min-width: 0;
  margin: 0;
  color: #dceaf0;
  font-size: 0.72rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.footer-group,
.footer-social {
  min-width: 0;
}

.footer-title {
  margin-bottom: 0.8rem;
  color: white;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-title::after {
  display: block;
  width: 2.1rem;
  height: 0.16rem;
  margin-top: 0.55rem;
  background: linear-gradient(90deg, var(--cyan), var(--yellow));
  border-radius: 99rem;
  content: "";
}

.footer-links {
  display: grid;
  gap: 0.14rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0;
}

.footer-links a,
.footer-cookie-settings {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.28rem 0;
  color: #c7dce5;
  background: none;
  border: 0;
  font-size: 0.9rem;
  font-family: inherit;
  line-height: 1.4;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover,
.footer-cookie-settings:hover {
  color: white;
  transform: translateX(0.18rem);
}

.footer-social {
  grid-column: 1 / -1;
  align-self: start;
  padding-top: 0;
}

.footer-social-links,
.editorial-visual-heading .page-heading-signals, .page-heading--tag .page-heading-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-social-links li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.7rem;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  color: #d6e8ef;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer-social-links i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1;
}

.footer-social-links a:hover {
  color: var(--navy);
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9ebdcb;
  font-size: 0.8rem;
}

.mobile-action-dock {
  display: none;
}

.cookie-banner {
  position: fixed;
  z-index: 200;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: none;
  width: min(calc(100% - 2rem), 44rem);
  margin-inline: auto;
  padding: 1rem;
  color: white;
  background: rgba(6, 43, 67, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.84rem;
}

.cookie-banner a {
  color: var(--yellow);
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 0.45rem;
}

.cookie-actions button {
  min-height: 2.45rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 750;
  cursor: pointer;
}

.cookie-accept,
.repair-story-points li:nth-child(2) > span,
.contact-practical-card--zone .contact-practical-icon {
  color: var(--navy);
  background: var(--yellow);
}

.cookie-refuse {
  color: white;
  background: transparent;
}

.sr-only,
.cc-form-label-sr-only,
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

[hidden] {
  display: none !important;
}

@media (min-width: 70.01rem) {
  .footer-inner {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.92fr) minmax(0, 1fr);
    gap: 1rem clamp(2rem, 3.4vw, 3.4rem);
    padding-block: 2.5rem 1.2rem;
  }

  .footer-profile {
    display: grid;
    grid-template-areas:
      "brand intro"
      "contact contact"
      "company company";
    grid-template-columns: minmax(15.5rem, 0.72fr) minmax(0, 1.8fr);
    align-items: center;
    gap: 0.82rem 1.5rem;
    padding: 1.25rem 1.35rem;
  }

  .footer-profile .brand {
    grid-area: brand;
  }

  .footer-intro {
    grid-area: intro;
    align-self: center;
    margin: 0;
    padding: 0.2rem 0 0.2rem 1.5rem;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .footer-contact-list {
    grid-area: contact;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .footer-contact-item {
    grid-template-columns: 2.15rem minmax(0, 1fr);
    align-content: start;
    align-items: start;
    gap: 0.6rem;
    min-height: 5.35rem;
    padding: 0.72rem 0.7rem;
  }

  .footer-contact-icon {
    width: 2.15rem;
    height: 2.15rem;
    flex-basis: 2.15rem;
  }

  .footer-company-meta {
    grid-area: company;
    grid-template-columns: minmax(0, 1.8fr) minmax(13rem, 0.75fr);
    gap: 1rem;
    margin: 0;
    padding: 0.6rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
  }

  .footer-company-meta > div {
    grid-template-columns: minmax(4.8rem, auto) minmax(0, 1fr);
    align-items: center;
    gap: 0.65rem;
    padding-block: 0.08rem;
  }

  .footer-company-meta > div + div {
    padding-left: 1rem;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
  }

  .footer-company-meta dt {
    font-size: 0.7rem;
  }

  .footer-company-meta dd {
    font-size: 0.78rem;
  }

  .footer-services,
  .footer-navigation {
    padding-right: clamp(1.25rem, 2.2vw, 2.2rem);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-title {
    margin-bottom: 0.65rem;
  }

  .footer-links {
    gap: 0.05rem;
  }

  .footer-links a,
  .footer-cookie-settings {
    min-height: 2.25rem;
    padding-block: 0.12rem;
    font-size: 0.88rem;
  }

  .footer-social {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 0.9rem;
  }

  .footer-social .footer-title {
    flex: 0 0 auto;
    margin-bottom: 0;
  }

  .footer-social .footer-title::after {
    margin-top: 0.4rem;
  }

  .footer-social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
  }

  .footer-social-links a {
    width: 2.7rem;
    height: 2.7rem;
    flex-basis: 2.7rem;
  }

  .footer-bottom {
    padding-top: 0.9rem;
    font-size: 0.84rem;
  }
}

@media (max-width: 70rem) {
  .site-header {
    background: var(--paper);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .header-action-copy small {
    display: none;
  }

  .header-action {
    grid-template-columns: 2.15rem minmax(0, auto);
    padding-inline: 0.65rem 0.8rem;
  }

  .blog-grid,
  .cc-carousel-extended,
  .cc-article-carousel-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .footer-contact-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-contact-item {
    align-content: start;
    min-height: 5.4rem;
  }

  .footer-company-meta {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    gap: 0.8rem;
  }

  .footer-company-meta > div + div {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 0.8rem;
  }

}

@media (max-width: 44rem) {
  .site-topbar {
    display: none;
  }

  .brand-copy small {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 3.15rem;
    height: 3.15rem;
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .header-primary-actions {
    display: none;
  }

  .header-inner {
    min-height: 4.65rem;
    gap: 0.7rem;
  }

  .nav-toggle {
    min-width: 6rem;
    min-height: 3rem;
    padding: 0.38rem 0.62rem;
  }

  .nav-toggle-icon {
    width: 2rem;
    height: 2rem;
  }

  .site-nav {
    top: var(--mobile-nav-top, calc(4.65rem + 1px));
    padding: 0.6rem 0.5rem 1.2rem;
  }

  .nav-panel {
    padding: 0.65rem;
    border-radius: 1.15rem;
  }

  .nav-panel-heading {
    min-height: 2.65rem;
    margin-bottom: 0.55rem;
    padding-inline: 0.8rem;
  }

  .nav-panel-heading span {
    display: none;
  }

  .nav-list {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .nav-item-wide {
    grid-column: auto;
  }

  .nav-link,
  .submenu-toggle {
    min-height: 4.05rem;
    padding: 0.52rem 0.62rem;
  }

  .nav-link {
    grid-template-columns: 2.45rem minmax(0, 1fr);
  }

  .submenu-toggle {
    grid-template-columns: 2.45rem minmax(0, 1fr) 2.25rem;
  }

  .submenu-trigger {
    width: 3rem;
    min-width: 3rem;
    min-height: 4.05rem;
  }

  .nav-icon {
    width: 2.45rem;
    height: 2.45rem;
  }

  .nav-label strong {
    font-size: 0.9rem;
  }

  .nav-label small {
    font-size: 0.69rem;
  }

  .submenu-chevron {
    width: 2.25rem;
    height: 2.25rem;
  }

  .submenu {
    grid-template-columns: 1fr;
    gap: 0.38rem;
    margin-top: 0.42rem;
    padding: 0.45rem;
  }

  .submenu a {
    grid-template-columns: 2.35rem minmax(0, 1fr) 1.1rem;
    min-height: 4.1rem;
    gap: 0.62rem;
    padding: 0.55rem 0.62rem;
  }

  .submenu-icon {
    width: 2.35rem;
    height: 2.35rem;
  }

  .submenu a strong {
    font-size: 0.82rem;
  }

  .submenu a small {
    font-size: 0.68rem;
  }

  .nav-mobile-only {
    display: block;
  }

  .page-heading-inner {
    padding-block: 2.6rem;
  }

  .cc-row,
  .row {
    display: block;
  }

  .cc-row > * + *,
  .row > * + * {
    margin-top: 1.25rem;
  }

  #servicestc > .cc-section-inner > .cc-row > .cc-grid-cell {
    max-width: 100%;
  }

  .table-scroll-hint {
    display: block;
  }

  .blog-grid,
  .cc-carousel-extended,
  .cc-carousel-inner,
  .cc-article-carousel-wrap {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-block: 2.25rem 1.2rem;
    gap: 0.8rem;
  }

  .site-footer {
    padding-bottom: calc(4.8rem + env(safe-area-inset-bottom));
  }

  .mobile-action-dock {
    position: fixed;
    z-index: 160;
    right: 0.65rem;
    bottom: 0.65rem;
    left: 0.65rem;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    width: auto;
    max-width: 30rem;
    min-height: 4.15rem;
    align-items: stretch;
    margin-inline: auto;
    padding: 0.42rem;
    gap: 0.45rem;
    background: rgba(4, 45, 69, 0.96);
    border: 1px solid rgba(174, 222, 242, 0.26);
    border-radius: 1.15rem;
    box-shadow: 0 1rem 2.4rem rgba(3, 35, 55, 0.3);
    backdrop-filter: blur(12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .mobile-action-link {
    display: flex;
    min-width: 0;
    min-height: 3.3rem;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.62rem;
    gap: 0.52rem;
    border: 1px solid transparent;
    border-radius: 0.82rem;
    line-height: 1.05;
    text-decoration: none;
    white-space: nowrap;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
  }

  .mobile-action-link i {
    display: inline-flex;
    width: 1.7rem;
    height: 1.7rem;
    flex: 0 0 1.7rem;
    align-items: center;
    justify-content: center;
    font-size: 0.98rem;
  }

  .mobile-action-copy {
    display: grid;
    min-width: 0;
    gap: 0.16rem;
  }

  .mobile-action-copy small {
    font-size: 0.58rem;
    font-weight: 760;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-action-copy strong {
    font-size: 0.88rem;
    font-weight: 850;
    line-height: 1.05;
  }

  .mobile-action-link--contact {
    color: #eff9fd;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
  }

  .mobile-action-link--contact small {
    color: #9fdcf3;
  }

  .mobile-action-link--contact:hover,
  .mobile-action-link--contact:focus-visible,
  .mobile-action-link--contact:active {
    color: #fff;
    background: #075f89;
    border-color: #9ce2f6;
    transform: translateY(-1px);
  }

  .mobile-action-link--contact:hover small,
  .mobile-action-link--contact:focus-visible small,
  .mobile-action-link--contact:active small {
    color: #d9f5ff;
  }

  .mobile-action-link--call {
    color: var(--navy);
    background: var(--yellow);
    border-color: rgba(255, 255, 255, 0.56);
    box-shadow: 0 0.45rem 1rem rgba(255, 216, 77, 0.18);
  }

  .mobile-action-link--call small {
    color: #674f00;
    font-size: 0.65rem;
    letter-spacing: 0.02em;
    text-transform: none;
  }

  .mobile-action-link:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
  }

  .nav-open .mobile-action-dock,
  .cookie-banner.is-visible + .mobile-action-dock {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(1rem);
  }

  .footer-profile,
  .footer-social,
  .footer-bottom {
    grid-column: auto;
  }

  .footer-profile {
    padding: 1.15rem;
  }

  .footer-profile .brand {
    justify-content: center;
    width: 100%;
  }

  .footer-profile .brand-copy small {
    display: block;
  }

  .footer-intro {
    text-align: center;
  }

  .footer-contact-list {
    grid-template-columns: 1fr;
  }

  .footer-contact-item {
    align-content: center;
    min-height: 3.65rem;
  }

  .footer-company-meta {
    grid-template-columns: 1fr;
  }

  .footer-company-meta > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
    padding-left: 0;
  }

  .footer-group,
  .footer-social {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-md);
  }

  .footer-title {
    text-align: center;
  }

  .footer-title::after {
    margin-inline: auto;
  }

  .footer-links {
    gap: 0.38rem;
  }

  .footer-links a,
  .footer-cookie-settings {
    justify-content: center;
    width: 100%;
    min-height: 2.75rem;
    padding: 0.55rem 0.7rem;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 0.65rem;
    text-align: center;
  }

  .footer-links a:hover,
  .footer-cookie-settings:hover {
    transform: none;
  }

  .footer-social-links {
    justify-content: center;
  }

  .footer-bottom,
  .cookie-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-bottom {
    align-items: center;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions button {
    flex: 1 1 0;
  }

}

/* ===========================================================================
   Système de composition éditoriale v8
   Une seule grammaire structure les pages de service, le blog, les articles,
   les dossiers et les documents légaux tout en conservant l'identité visuelle
   propre à Chevalier Company.
   ========================================================================== */

.section-kicker {
  margin: 0 0 0.65rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-heading-copy {
  max-width: 61rem;
}

.page-heading-summary {
  max-width: 49rem;
  margin: 1.15rem 0 0;
  color: #d8e9f1;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.65;
}

.article-byline {
  margin: 0.75rem 0 0;
  color: #c6dce7;
  font-size: 0.9rem;
  font-weight: 700;
}

.page-heading-signals {
  display: flex;
  flex-wrap: wrap;
  margin: 1.45rem 0 0;
  padding: 0;
  gap: 0.55rem;
  list-style: none;
}

.page-heading-signals li {
  display: inline-flex;
  min-height: 2.15rem;
  align-items: center;
  margin: 0;
  padding: 0.38rem 0.72rem;
  color: #eff8fb;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 720;
  backdrop-filter: blur(6px);
}

.page-heading-actions,
.conversion-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

.page-heading-actions {
  margin-top: 1.65rem;
}

.button-light {
  color: var(--navy);
  background: var(--paper);
  border-color: var(--paper);
  box-shadow: 0 0.75rem 1.8rem rgba(2, 26, 42, 0.24);
}

.button-ghost {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.button-ghost:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--blue);
  font-weight: 760;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(0.22rem);
}

.page-flow,
.article-template,
.blog-index,
.collection-page,
.legal-structure {
  display: grid;
  min-width: 0;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.page-flow > *,
.article-template > *,
.blog-index > *,
.collection-page > *,
.legal-structure > *,
.legal-layout > *,
.collection-results > *,
.sales-flow > *,
.sales-sections,
.sales-sections > *,
.sales-section :where(.cc-section-inner, .cc-row, .cc-column, .cc-content-stack),
.tag-related-sections,
.tag-related-sections > .container,
.tag-related-sections .container-inner,
.tag-related-sections .row,
.tag-related-sections [class*="col-"] {
  min-width: 0;
  max-width: 100%;
}

.page-sections,
.article-template {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.page-sections .site-section,
.collection-results .site-section {
  overflow: clip;
  padding: clamp(2rem, 5vw, 4.25rem) clamp(1rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.page-sections .site-section--paper,
.collection-results .site-section--paper {
  background: var(--paper);
}

.page-sections .site-section--soft,
.collection-results .site-section--soft {
  background: linear-gradient(145deg, #f4f9fb, var(--mist));
}

.site-section > :where(.cc-section-inner, .cc-container-inner, .container, .container-inner) {
  width: 100%;
}

.page-sections .site-section[data-section-background="image"] > .cc-section-overlay,
.collection-results .site-section[data-section-background="image"] > .cc-section-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block !important;
  background: rgba(255, 255, 255, 0.88) !important;
}

.page-sections .site-section[data-section-background="image"] > :not(.cc-section-overlay),
.collection-results .site-section[data-section-background="image"] > :not(.cc-section-overlay),
.conversion-panel > *,
.route-home .home-flow :where(.home-section--profile, .home-section--problem) > .cc-section-inner {
  position: relative;
  z-index: 1;
}

.page-sections .site-section :where(.cc-block-text-block, .cc-block-header) {
  max-width: 66rem;
}

.site-section--cards :where(.cc-row, .row),
.site-section--media :where(.cc-row, .row) {
  gap: clamp(1rem, 2vw, 1.35rem);
}

.page-sections .site-section--cards :where([class*="cc-col-"], [class*="col-lg-"], [class*="col-md-"]) > .cc-column {
  height: 100%;
  padding: clamp(1.2rem, 2.5vw, 1.7rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.site-section--contact form:not(.search-form) {
  padding: clamp(1.15rem, 3vw, 2rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.page-jump {
  padding: clamp(1rem, 2.5vw, 1.35rem);
  background: #f6fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.page-jump-title {
  margin: 0 0 0.75rem;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-jump ol {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  margin: 0;
  padding: 0;
  gap: 0.5rem 1.1rem;
  counter-reset: page-jump;
  list-style: none;
}

.page-jump li {
  min-width: 0;
  margin: 0;
  counter-increment: page-jump;
}

.page-jump a {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  align-items: start;
  gap: 0.55rem;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 690;
  line-height: 1.4;
  text-decoration: none;
}

.page-jump a::before {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 840;
  letter-spacing: 0.04em;
  content: counter(page-jump, decimal-leading-zero);
}

.page-jump a:hover {
  color: var(--blue);
}

.conversion-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.45fr) minmax(15rem, 0.55fr);
  align-items: center;
  padding: clamp(1.7rem, 4vw, 3.15rem);
  gap: clamp(1.4rem, 4vw, 3rem);
  color: white;
  background:
    radial-gradient(circle at 92% 12%, rgba(24, 183, 233, 0.28), transparent 18rem),
    linear-gradient(135deg, var(--navy), #0b547d);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.conversion-panel::after {
  position: absolute;
  right: -5rem;
  bottom: -6rem;
  width: 14rem;
  height: 14rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.conversion-panel h2,
.conversion-panel .section-kicker {
  color: white;
}

.conversion-panel h2 {
  max-width: 45rem;
  margin-bottom: 0.4em;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.conversion-panel p:last-child {
  max-width: 48rem;
  margin-bottom: 0;
  color: #d5e8f1;
}

.conversion-actions {
  justify-content: flex-end;
}

.conversion-panel .button-secondary,
.sales-page .conversion-panel .conversion-action--phone:hover .conversion-action-icon, .sales-page .conversion-panel .conversion-action--zone:hover .conversion-action-icon {
  color: var(--navy);
  background: white;
  border-color: white;
}

.conversion-actions--with-zone {
  display: grid;
  width: min(100%, 31rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  justify-self: end;
}

.conversion-actions--with-zone .button {
  width: 100%;
  min-height: 3.1rem;
  justify-content: center;
  text-align: center;
}

.conversion-actions--with-zone .conversion-zone-button {
  grid-column: 1 / -1;
  gap: 0.55rem;
  color: white;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: none;
}

.conversion-actions--with-zone .conversion-zone-button:hover,
.route-home .home-hero-card .home-hero-signal:nth-child(2)::before,
.page-heading--repair-home .repair-hero-card .home-hero-signal:nth-child(2)::before {
  color: var(--navy);
  background: var(--yellow);
  border-color: var(--yellow);
}

.conversion-actions--with-zone .conversion-zone-button i {
  font-size: 0.9rem;
}

/* Boutons de conversion communs aux pages de vente. */
.sales-page .conversion-panel {
  grid-template-columns: minmax(0, 1.25fr) minmax(27rem, 0.75fr);
}

.sales-page .conversion-panel .conversion-actions--featured {
  display: grid;
  width: min(100%, 27rem);
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  justify-self: end;
  gap: 0.75rem;
}

.sales-page .conversion-panel .conversion-actions--featured .button {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 4rem;
  overflow: hidden;
  grid-template-columns: 2.55rem minmax(0, 1fr) 2.55rem;
  align-items: center;
  padding: 0.55rem 0.8rem;
  gap: 0.65rem;
  border-radius: 1.1rem;
  line-height: 1.25;
  isolation: isolate;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease,
    border-color 160ms ease;
}

.sales-page .conversion-panel .conversion-action--primary {
  box-shadow: 0 0.75rem 1.7rem rgba(2, 27, 44, 0.24);
}

.sales-page .conversion-panel .conversion-action--phone {
  box-shadow: 0 0.65rem 1.45rem rgba(2, 27, 44, 0.16);
}

.sales-page .conversion-panel .conversion-action-icon {
  display: inline-flex;
  width: 2.55rem;
  height: 2.55rem;
  grid-column: 1;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.8rem;
  font-size: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.sales-page .conversion-panel .conversion-action--phone .conversion-action-icon {
  color: var(--blue);
  background: #eaf6fb;
  border-color: #c9e7f3;
}

.sales-page .conversion-panel .conversion-action--zone .conversion-action-icon {
  background: rgba(255, 255, 255, 0.1);
}

.sales-page .conversion-panel .conversion-action-label {
  min-width: 0;
  grid-column: 2;
  justify-self: center;
  text-align: center;
}

.sales-page .conversion-panel .conversion-action:hover .conversion-action-icon {
  transform: scale(1.06);
}





.sales-page
  .conversion-panel
  .conversion-actions--featured
  .conversion-zone-button {
  grid-column: auto;
}

@media (max-width: 64rem) {
  .sales-page .conversion-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .sales-page .conversion-panel .conversion-actions--featured {
    width: min(100%, 34rem);
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sales-page .conversion-panel .conversion-action,
  .sales-page .conversion-panel .conversion-action-icon {
    transition: none;
  }
}

/* Accueil : progression et respiration entre les contenus historiques. */
.home-flow {
  display: block;
}

.home-flow .page-content > .site-section:not(:first-child) {
  border-top: 1px solid rgba(214, 227, 233, 0.72);
}

.home-flow .page-content > .site-section--soft:not(.home-section--profile) {
  background: var(--mist);
}

.home-flow .page-content > .home-section--services-intro,
.home-flow .page-content > .home-section--reviews {
  background: var(--paper);
}

.route-home .home-flow .home-section--profile > .cc-section-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block !important;
  background: rgba(255, 255, 255, 0.86) !important;
}

.route-home .home-flow :where(.home-section--profile, .home-section--problem) {
  background-attachment: scroll !important;
}

.route-home .home-flow .home-section--profile > .cc-section-inner > .cc-row {
  display: grid;
  grid-template-columns: minmax(15rem, 0.78fr) minmax(20rem, 0.95fr) minmax(18rem, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.route-home .home-section--profile .cc-block-title,
.route-home .home-section--problem .cc-block-title,
.route-home .home-section--editorial .cc-block-title,
.route-home .home-section--faq .cc-block-title {
  text-align: left;
}

.route-home .home-section--profile > .cc-section-inner > .cc-row > :first-child .cc-block-title {
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  line-height: 1.18;
}

.route-home .home-section--profile > .cc-section-inner > .cc-row > :nth-child(2) {
  justify-self: center;
}

.route-home .home-section--profile > .cc-section-inner > .cc-row > :nth-child(2) .cc-block-single-image-container {
  width: min(100%, 26rem);
  aspect-ratio: 1;
}

.route-home .home-section--profile > .cc-section-inner > .cc-row > :nth-child(3) .cc-block-content {
  color: var(--ink-soft);
  line-height: 1.7;
}

.route-home .home-flow .home-section--problem > .cc-section-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block !important;
  background: linear-gradient(110deg, rgba(238, 245, 248, 0.98), rgba(255, 255, 255, 0.92)) !important;
}

.route-home .home-section--problem > .cc-section-inner > .cc-row {
  display: grid;
  grid-template-columns: minmax(16rem, 0.78fr) minmax(17rem, 0.86fr) minmax(20rem, 1fr);
  align-items: start;
  gap: clamp(1.4rem, 2.5vw, 2.25rem);
}

.route-home .home-section--problem > .cc-section-inner > .cc-row > :first-child .cc-content-stack {
  padding: clamp(1.35rem, 2.5vw, 2rem);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(214, 227, 233, 0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.route-home .home-section--problem > .cc-section-inner > .cc-row > :first-child .cc-block-title {
  font-size: clamp(1.85rem, 3.5vw, 3rem);
  line-height: 1.12;
}

.route-home .home-section--problem > .cc-section-inner > .cc-row > :first-child .cc-block-content {
  color: var(--ink-soft);
}

.route-home .home-section--problem > .cc-section-inner > .cc-row > :nth-child(2) .cc-block-single-image-container {
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}

.route-home .home-section--profile > .cc-section-inner > .cc-row > :nth-child(2) img,
.route-home .home-section--problem > .cc-section-inner > .cc-row > :nth-child(2) img {
  height: 100%;
  object-fit: cover;
}

.route-home .home-section--problem .cc-accordion-list {
  gap: 0.65rem;
}

.route-home .home-section--problem .cc-accordion-item {
  background: rgba(255, 255, 255, 0.97);
}

.route-home .home-section--editorial > .cc-section-inner > .cc-row {
  display: grid;
  grid-template-columns: minmax(18rem, 0.62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.route-home .home-section--editorial > .cc-section-inner > .cc-row > :first-child,
.route-home .home-section--editorial > .cc-section-inner > .cc-row > :first-child > .cc-column,
.route-home .home-section--editorial > .cc-section-inner > .cc-row > :first-child > .cc-column > .cc-content-stack {
  display: contents;
}

.route-home .home-section--editorial > .cc-section-inner > .cc-row > :nth-child(2),
.route-home .home-section--editorial > .cc-section-inner > .cc-row > :nth-child(4) {
  display: none;
}

.route-home .home-section--editorial .cc-block-type-text-block {
  grid-column: 1;
  grid-row: 1;
}

.route-home .home-section--editorial .cc-block-type-articles-scroller {
  min-width: 0;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.route-home .home-section--editorial > .cc-section-inner > .cc-row > :nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

.route-home .home-section--editorial .cc-button-wrap,
.route-home .home-section--editorial .cc-button {
  width: 100%;
}

.route-home .home-section--editorial .cc-article-carousel-wrap {
  align-items: stretch;
}

.route-home .home-section--faq > .cc-section-inner > .cc-row {
  display: grid;
  grid-template-columns: minmax(16rem, 0.62fr) repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.route-home .home-section--faq > .cc-section-inner > .cc-row > :first-child .cc-block-title {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.15;
}

.home-process {
  padding: clamp(3.5rem, 7vw, 6rem) 1rem;
  background: var(--paper);
}

.home-process .section-intro,
.home-process .process-grid {
  width: min(100%, var(--content));
  margin-inline: auto;
}

.section-intro {
  max-width: 54rem;
  margin-bottom: clamp(1.6rem, 4vw, 2.75rem);
}

.section-intro > :last-child,
.sales-section > .sales-section-intro p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 0;
  padding: 0;
  gap: 0;
  list-style: none;
  counter-reset: none;
}

.process-grid li {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 0 1.35rem 0 0;
}

.process-grid li + li {
  padding-left: 1.35rem;
  border-left: 1px solid var(--line);
}

.process-grid span {
  display: block;
  margin-bottom: 1rem;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 840;
  letter-spacing: 0.1em;
}

.process-grid h3 {
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}

.home-flow > .home-final-cta {
  width: min(calc(100% - 2rem), var(--content));
  margin: clamp(3rem, 6vw, 5rem) auto;
}

/* Blog et dossiers : une entrée éditoriale, des outils, puis une collection. */
.blog-overview,
.collection-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.65fr);
  align-items: center;
  padding: clamp(1.6rem, 4vw, 3rem);
  gap: clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(145deg, #f6fafc, var(--mist));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.blog-overview h2,
.collection-overview h2 {
  margin-bottom: 0.45em;
}

.blog-overview > div:first-child > :last-child,
.collection-overview > div:first-child > :last-child {
  margin-bottom: 0;
}

.blog-overview-description > :last-child {
  margin-bottom: 0;
}

.blog-overview-toggle {
  display: none;
  align-items: center;
  margin-top: 0.9rem;
  padding: 0.55rem 0;
  gap: 0.45rem;
  color: var(--blue);
  background: transparent;
  border: 0;
  font-weight: 780;
  text-align: left;
  cursor: pointer;
}

.blog-overview-toggle:hover {
  color: var(--navy);
}

.blog-overview-stats,
.home-zone-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.blog-overview-stats span {
  display: grid;
  min-width: 0;
  align-content: center;
  padding: 1rem 0.75rem;
  color: var(--ink-soft);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  line-height: 1.35;
  text-align: center;
}

.blog-overview-stats strong {
  margin-bottom: 0.2rem;
  color: var(--navy);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.blog-discovery,
.blog-collection,
.collection-results {
  padding: clamp(1.35rem, 3.5vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.blog-discovery {
  background: var(--paper);
}

.blog-discovery h2,
.blog-collection > h2 {
  font-size: clamp(1.45rem, 3vw, 2.15rem);
}

.blog-discovery .blog-tools {
  margin-bottom: 0;
}

.blog-collection,
.collection-results {
  background: #f7fafc;
}

.blog-card--featured {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(18rem, 0.95fr) minmax(0, 1.05fr);
  min-height: 23rem;
}

.blog-card--featured .blog-card-media,
.tag-library-card-media {
  min-height: 100%;
  aspect-ratio: auto;
}

.blog-card--featured .blog-card-body {
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 2.8rem);
}

.blog-card--featured h3 {
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

.blog-card--featured p:not(.blog-card-meta) {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.collection-overview > .button {
  justify-self: end;
}

.collection-topics {
  display: flex;
  overflow-x: auto;
  padding: 0.2rem 0 0.55rem;
  gap: 0.55rem;
  scrollbar-color: var(--blue) var(--mist);
}

.collection-topics .tag-chip {
  flex: 0 0 auto;
  white-space: nowrap;
}

.collection-results {
  display: grid;
  gap: 1.5rem;
}

/* Article : parcours de lecture complet inspiré des fonctions éditoriales BIW. */
.page-heading--article .page-heading-inner {
  padding-block: clamp(2.5rem, 6vw, 4.75rem);
}

.page-heading--article h1 {
  max-width: 66rem;
  font-size: clamp(2rem, 4.7vw, 3.85rem);
}

.article-meta-panel {
  padding: 0.9rem clamp(1rem, 2.4vw, 1.4rem);
  background: #f6fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-meta-details.article-info {
  margin: 0;
  padding: 0;
  border: 0;
}

.article-meta-details > span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.article-featured-media {
  float: none !important;
  overflow: hidden;
  width: 100%;
  margin: 0;
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.article-featured-media > img:first-child {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-reader-tools {
  display: grid;
  grid-template-columns: minmax(13rem, 0.75fr) minmax(17rem, 1fr);
  align-items: center;
  padding: clamp(1.15rem, 3vw, 1.7rem);
  gap: 1rem clamp(1.25rem, 4vw, 2.5rem);
  background: linear-gradient(145deg, #f6fafc, var(--mist));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.article-reader-intro h2 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
}

.article-reader-intro p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.article-reader-intro strong,
.article-reader-progress output {
  color: var(--navy);
}

.article-reader-progress {
  display: grid;
  gap: 0.45rem;
}

.article-reader-progress > div {
  display: flex;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-reader-progress progress {
  overflow: hidden;
  width: 100%;
  height: 0.55rem;
  appearance: none;
  background: #dbe8ed;
  border: 0;
  border-radius: 999px;
}

.article-reader-progress progress::-webkit-progress-bar {
  background: #dbe8ed;
}

.article-reader-progress progress::-webkit-progress-value,
.article-reader-progress progress::-moz-progress-bar {
  background: linear-gradient(90deg, var(--blue), var(--navy));
  border-radius: 999px;
}

.article-reader-controls {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  align-items: end;
  gap: 0.65rem;
}

.reader-control,
.reader-select select {
  min-height: 2.75rem;
  border: 1px solid #b8ced8;
  border-radius: var(--radius-sm);
  font: inherit;
}

.reader-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.9rem;
  gap: 0.45rem;
  color: var(--navy);
  background: var(--paper);
  font-size: 0.82rem;
  font-weight: 780;
  cursor: pointer;
}

.reader-control--primary,
.pagination .pagination-direction {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
}

.reader-control:disabled {
  opacity: 0.56;
  cursor: not-allowed;
}

.reader-select {
  display: grid;
  gap: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 760;
}

.reader-select select {
  min-width: 8.4rem;
  padding: 0.55rem 2rem 0.55rem 0.7rem;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.82rem;
}

.reader-topics-toggle strong {
  display: grid;
  min-width: 1.45rem;
  height: 1.45rem;
  place-items: center;
  color: white;
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.7rem;
}

.reader-topics-toggle:hover strong,
.reader-topics-toggle:focus-visible strong,
.reader-topics-toggle[aria-expanded="true"] strong {
  color: var(--blue);
  background: white;
}

.article-reader-status,
.article-share-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.article-share-status:empty {
  display: none;
}

.article-topics-panel {
  grid-column: 1 / -1;
  padding: 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.article-topics-panel[hidden] {
  display: none;
}

.article-topics-panel h3 {
  margin-bottom: 0.7rem;
  font-size: 1rem;
}

.article-topic-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  list-style: none;
}

.article-topic-list a {
  display: inline-flex;
  padding: 0.48rem 0.72rem;
  color: var(--navy);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 740;
  text-decoration: none;
}

.article-platform-share {
  grid-column: 1 / -1;
  padding-top: 0.25rem;
}

.article-platform-share summary {
  width: fit-content;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 760;
  cursor: pointer;
}

.article-platform-share-links.article-ratings-social-share {
  justify-content: flex-start;
  margin: 0.75rem 0 0;
}

.article-toc {
  scroll-margin-top: 7.5rem;
}

.article-toc .page-jump-title {
  color: var(--navy);
  font-size: clamp(1.12rem, 2vw, 1.4rem);
  letter-spacing: normal;
  text-transform: none;
}

.article-toc a[aria-current="location"] {
  color: var(--blue);
}

.article-toc a[aria-current="location"]::before {
  color: white;
  background: var(--blue);
  border-radius: 50%;
  text-align: center;
}

.article-reading-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 18.5rem);
  align-items: start;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.article-content-prose {
  min-width: 0;
  font-size: 1.04rem;
}

.article-content-prose > :where(.container, .container-inner, .cc-section-inner, .cc-container-inner),
.article-content-prose .article-details {
  width: 100%;
}

.article-content-prose .article-details {
  max-width: var(--reading);
  margin-inline: 0;
}

.article-content-prose :where(.article-body, .article-introtext) {
  font-size: inherit;
}

.article-content-prose :where(.article-body, .article-introtext) > p,
.article-content-prose :where(.article-body, .article-introtext) > ul,
.article-content-prose :where(.article-body, .article-introtext) > ol,
.article-content-prose :where(.article-body, .article-introtext) > blockquote {
  max-width: 47rem;
}

.article-content-prose h2 {
  scroll-margin-top: 8.5rem;
}

.article-support-card,
.legal-help-card {
  padding: 1.35rem;
  background: linear-gradient(145deg, #f3f9fb, var(--mist));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.article-support-card {
  position: sticky;
  top: 7.5rem;
}

.article-support-card h2 {
  font-size: 1.28rem;
}

.article-support-card p:not(.section-kicker) {
  color: var(--ink-soft);
  font-size: 0.87rem;
  line-height: 1.6;
}

.article-support-card .button {
  width: 100%;
}

.article-support-card .text-link {
  margin-top: 1rem;
  font-size: 0.84rem;
}

.article-sequential-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.article-sequential-link {
  display: grid;
  align-content: center;
  min-height: 8.5rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.article-sequential-link span {
  margin-bottom: 0.45rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-sequential-link strong {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.3;
}

.article-sequential-link--next {
  text-align: right;
}

.article-sequential-link:hover,
.article-sequential-link:focus-visible {
  color: var(--navy);
  border-color: var(--blue);
  transform: translateY(-2px);
}

/* Pages légales : navigation stable et largeur de lecture confortable. */
.legal-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 18rem) minmax(0, 1fr);
  align-items: start;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.legal-sidebar {
  position: sticky;
  top: 7.5rem;
  display: grid;
  gap: 1rem;
}

.legal-toc ol {
  display: block;
  max-height: 52vh;
  overflow-y: auto;
  padding-right: 0.4rem;
  scrollbar-color: var(--blue) var(--mist);
}

.legal-toc li + li {
  margin-top: 0.55rem;
}

.legal-help-card p {
  margin-bottom: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.83rem;
  line-height: 1.55;
}

.legal-help-card a {
  font-size: 0.85rem;
  font-weight: 760;
}

.legal-layout .legal-document {
  width: 100%;
  max-width: 58rem;
  margin-inline: 0;
}

@media (max-width: 70rem) {
  .article-reader-tools,
  .article-reading-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .article-support-card,
  .legal-sidebar {
    position: static;
  }

  .article-support-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.25rem 1rem;
  }

  .article-support-card > :not(.button) {
    grid-column: 1;
  }

  .article-support-card .button {
    width: auto;
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .legal-sidebar {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.38fr);
    align-items: start;
  }

  .legal-toc ol {
    max-height: none;
  }

  #servicestc > .cc-section-inner > .cc-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #servicestc > .cc-section-inner > .cc-row > .cc-grid-cell,
  #servicestc > .cc-section-inner > .cc-row > .cc-grid-cell > .cc-column,
  #servicestc > .cc-section-inner > .cc-row > .cc-grid-cell .cc-content-stack {
    display: contents;
  }

  #servicestc .cc-button {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .route-home .home-flow .home-section--profile > .cc-section-inner > .cc-row {
    grid-template-columns: minmax(17rem, 0.82fr) minmax(0, 1.18fr);
  }

  .route-home .home-section--profile > .cc-section-inner > .cc-row > :first-child {
    grid-column: 1 / -1;
  }

  .route-home .home-section--profile > .cc-section-inner > .cc-row > :first-child .cc-block-title {
    max-width: 48rem;
    margin-inline: auto;
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    text-align: center;
  }

  .route-home .home-section--problem > .cc-section-inner > .cc-row {
    grid-template-columns: minmax(17rem, 0.82fr) minmax(0, 1.18fr);
  }

  .route-home .home-section--problem > .cc-section-inner > .cc-row > :first-child {
    grid-column: 1 / -1;
  }

  .route-home .home-section--editorial > .cc-section-inner > .cc-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .route-home .home-section--editorial .cc-block-type-text-block,
  .route-home .home-section--editorial .cc-block-type-articles-scroller,
  .route-home .home-section--editorial > .cc-section-inner > .cc-row > :nth-child(3) {
    grid-column: 1;
  }

  .route-home .home-section--editorial .cc-block-type-text-block {
    grid-row: 1;
  }

  .route-home .home-section--editorial > .cc-section-inner > .cc-row > :nth-child(3) {
    grid-row: 2;
  }

  .route-home .home-section--editorial .cc-block-type-articles-scroller {
    grid-row: 3;
  }

  .route-home .home-section--editorial .cc-block-type-text-block {
    max-width: 50rem;
  }

  .route-home .home-section--editorial .cc-button {
    width: auto;
  }

  .route-home .home-section--editorial .cc-button-wrap {
    width: auto;
    justify-content: flex-start;
  }

  .route-home .home-section--faq > .cc-section-inner > .cc-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-home .home-section--faq > .cc-section-inner > .cc-row > :first-child {
    grid-column: 1 / -1;
  }

  .route-home .home-section--faq > .cc-section-inner > .cc-row > :first-child .cc-block-title {
    max-width: 52rem;
    margin-inline: auto;
    text-align: center;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 0;
  }

  .process-grid li:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 44rem) {
  .page-heading-summary {
    font-size: 1rem;
  }

  .article-meta-details.article-info,
  .article-support-card,
  .legal-sidebar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-heading-signals {
    margin-top: 1rem;
    gap: 0.4rem;
  }

  .page-heading-signals li {
    width: fit-content;
  }

  .breadcrumbs [aria-current="page"] {
    display: none;
  }

  .page-heading-actions,
  .conversion-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .page-heading-actions .button,
  .conversion-actions .button {
    width: 100%;
  }

  .page-sections .site-section,
  .collection-results .site-section {
    padding-inline: 1rem;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  #servicestc > .cc-section-inner > .cc-row,
  .route-home .home-flow .home-section--profile > .cc-section-inner > .cc-row,
  .route-home .home-section--problem > .cc-section-inner > .cc-row,
  .route-home .home-section--faq > .cc-section-inner > .cc-row {
    grid-template-columns: 1fr;
  }

  #servicestc > .cc-section-inner > .cc-row > *,
  .route-home .home-section--profile > .cc-section-inner > .cc-row > *,
  .route-home .home-section--problem > .cc-section-inner > .cc-row > *,
  .route-home .home-section--faq > .cc-section-inner > .cc-row > * {
    margin-top: 0;
  }

  .route-home .home-section--profile > .cc-section-inner > .cc-row > :first-child,
  .route-home .home-section--problem > .cc-section-inner > .cc-row > :first-child,
  .route-home .home-section--faq > .cc-section-inner > .cc-row > :first-child {
    grid-column: 1;
  }

  .route-home .home-section--profile > .cc-section-inner > .cc-row > :nth-child(2) {
    width: min(100%, 27rem);
    justify-self: center;
  }

  .route-home .home-section--problem > .cc-section-inner > .cc-row > :nth-child(2) {
    display: none;
  }

  .route-home .home-section--editorial .cc-button-wrap,
  .route-home .home-section--editorial .cc-button {
    width: 100%;
  }

  .route-home .home-section--faq > .cc-section-inner > .cc-row > :first-child .cc-block-title {
    text-align: left;
  }

  .route-home #hometc:first-of-type,
  .route-home .page-content > #hometc:first-child {
    min-height: 0;
    padding-block: 2.5rem;
  }

  .route-home #hometc:first-of-type h1,
  .route-home .page-content > #hometc:first-child h1 {
    font-size: clamp(2.3rem, 10.5vw, 2.75rem);
  }

  .route-home .home-section--hero .home-hero-copy h2 {
    margin-top: 1.15rem;
    font-size: clamp(1.5rem, 7vw, 1.85rem);
  }

  .route-home #hometc:first-of-type p:not(.page-kicker),
  .route-home .page-content > #hometc:first-child p:not(.page-kicker) {
    font-size: 1rem;
  }

  .conversion-panel,
  .blog-overview,
  .collection-overview,
  .article-sequential-navigation {
    grid-template-columns: 1fr;
  }

  .article-reader-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reader-control--primary {
    grid-column: 1 / -1;
  }

  .reader-select {
    min-width: 0;
  }

  .reader-control,
  .reader-select select {
    width: 100%;
  }

  .article-sequential-link--next {
    text-align: left;
  }

  .conversion-actions {
    justify-content: stretch;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-grid li,
  .process-grid li + li,
  .process-grid li:nth-child(3) {
    padding: 0 0 1.35rem 3.2rem;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid li + li {
    padding-top: 1.35rem;
  }

  .process-grid li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .process-grid span {
    position: absolute;
    top: 0;
    left: 0;
  }

  .process-grid li + li span {
    top: 1.35rem;
  }

  .blog-overview-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blog-overview-stats span {
    display: grid;
    padding-inline: 0.4rem;
    text-align: center;
  }

  .blog-overview-stats strong {
    font-size: 1.2rem;
  }

  .js .blog-overview-description:not(.is-expanded) > :first-child {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
  }

  .js .blog-overview-toggle {
    display: inline-flex;
  }

  .blog-discovery .blog-search {
    order: -1;
  }

  .blog-discovery .tag-cloud {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0.1rem 0 0.55rem;
    scroll-snap-type: inline proximity;
    scrollbar-color: var(--blue) var(--mist);
    scrollbar-width: thin;
  }

  .blog-discovery .tag-chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .blog-card--featured {
    display: flex;
    min-height: 0;
  }

  .blog-card--featured .blog-card-media,
  .tag-library-card-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .collection-overview > .button {
    width: 100%;
    justify-self: stretch;
  }

  .article-support-card > :not(.button),
  .article-support-card .button {
    grid-column: 1;
    grid-row: auto;
  }

  .legal-help-card {
    display: none;
  }

  .home-flow > .home-final-cta {
    width: calc(100% - 1rem);
  }
}

/* ==========================================================================
   Pages commerciales v19
   Hero compact, sections de vente structurées, cartes, avis et logos adaptés
   aux écrans PC, tablette et mobile sans masquer le contenu historique.
   ========================================================================== */

.sales-page:not(.route-home) {
  background: #f3f8fa;
}

.page-heading--sales .page-heading-inner {
  padding-block: clamp(1.75rem, 4vw, 3.35rem);
}

.page-heading--sales .breadcrumbs {
  margin-bottom: 1.2rem;
}

.sales-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(19rem, 0.55fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.page-heading--sales .page-heading-copy {
  max-width: 54rem;
}

.page-heading--sales h1,
.route-home .home-flow--sales-visual #hometc h1 {
  max-width: 51rem;
  font-size: clamp(2.35rem, 4.2vw, 3.75rem);
  line-height: 1.06;
}

.page-heading--sales .page-heading-summary {
  margin-top: 0.9rem;
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  line-height: 1.58;
}

.sales-hero-card {
  min-width: 0;
  padding: clamp(1.1rem, 2.2vw, 1.55rem);
  color: white;
  background: rgba(4, 35, 56, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 1.2rem 2.8rem rgba(2, 26, 42, 0.2);
  backdrop-filter: blur(10px);
}

.sales-hero-card-kicker {
  margin: 0 0 0.45rem;
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sales-hero-card h2 {
  margin-bottom: 0.35rem;
  color: white;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.sales-hero-card-copy {
  margin-bottom: 0;
  color: #d7e8f1;
  font-size: 0.86rem;
  line-height: 1.48;
}

.sales-hero-card .page-heading-signals {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0.9rem 0 0;
  gap: 0.42rem;
}

.sales-hero-card .page-heading-signals li {
  display: grid;
  width: 100%;
  min-height: 0;
  grid-template-columns: 0.85rem minmax(0, 1fr);
  padding: 0.42rem 0.55rem;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 0.65rem;
  font-size: 0.72rem;
  backdrop-filter: none;
}

.sales-hero-card .page-heading-signals li::before,
.route-home .home-hero-card .home-hero-signal::before {
  color: #77e0ba;
  font-weight: 900;
  content: "✓";
}

.sales-hero-card .page-heading-actions {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  margin-top: 0.9rem;
  gap: 0.5rem;
}

.sales-hero-card .page-heading-actions .button {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.62rem 0.85rem;
  font-size: 0.78rem;
}

.sales-hero-reassurance {
  margin: 0.75rem 0 0;
  color: #bcd7e5;
  font-size: 0.68rem;
  line-height: 1.4;
  text-align: center;
}

.sales-flow {
  min-width: 0;
  padding-block: clamp(1.6rem, 4vw, 3.4rem);
  gap: clamp(1.1rem, 2.5vw, 1.8rem);
}

.sales-flow .page-jump {
  padding: clamp(0.9rem, 2vw, 1.2rem);
  background: var(--paper);
  border-left: 0.28rem solid var(--blue);
  box-shadow: var(--shadow-sm);
}

.sales-sections {
  gap: clamp(1rem, 2.4vw, 1.6rem);
}

.sales-sections .sales-section {
  scroll-margin-top: 7rem;
  padding: clamp(1.7rem, 4vw, 3.25rem) clamp(1rem, 3vw, 2.25rem);
  box-shadow: 0 0.7rem 2rem rgba(11, 36, 53, 0.045);
}

.sales-section > .sales-section-intro {
  max-width: 48rem;
  margin-bottom: 1.25rem;
}

.sales-section > .sales-section-intro h2 {
  margin-bottom: 0.35rem;
}

.sales-section .cc-block-title {
  max-width: 48rem;
}

.sales-empty-column {
  display: none !important;
}

.sales-section--features > .cc-section-inner > .cc-row {
  display: grid;
  grid-template-columns: minmax(16rem, 0.82fr) minmax(18rem, 1fr) minmax(19rem, 1.05fr);
  align-items: start;
}

.sales-section--faq > .cc-section-inner > .cc-row {
  display: grid;
  grid-template-columns: minmax(15rem, 0.7fr) repeat(2, minmax(0, 1fr));
  align-items: start;
}

.sales-section--features .cc-accordion-item,
.sales-section--faq .cc-accordion-item {
  overflow: hidden;
  border-radius: 0.8rem;
}

.sales-card-column {
  flex: 1 1 18rem;
}

.sales-card-row {
  display: block;
}

.sales-card-track {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: clamp(0.8rem, 1.8vw, 1.2rem);
}

.sales-card-track--3,
.sales-card-track--5 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sales-card-track--4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sales-card-track .sales-card-column,
.page-services-informatiques .sales-section--media > .cc-section-inner > .cc-row > * {
  width: auto !important;
  max-width: none !important;
}

.sales-card-column > .cc-column {
  height: 100%;
  padding: clamp(1rem, 2vw, 1.35rem);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.sales-card-column > .cc-column .cc-block-wrap:first-child {
  margin-top: 0;
}

.sales-contact-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.14fr) minmax(19rem, 0.86fr);
  align-items: start;
}

.sales-contact-grid > :first-child {
  grid-row: 1 / span 2;
  grid-column: 1;
}

.sales-contact-grid > :nth-child(2),
.sales-contact-grid > :nth-child(3) {
  grid-column: 2;
}

.sales-contact-grid > :nth-child(2) {
  grid-row: 1;
}

.sales-contact-grid > :nth-child(3) {
  grid-row: 2;
}

.sales-contact-grid form {
  margin-top: 1rem;
}

.page-contact .sales-contact-grid > :nth-child(2) .cc-content-stack {
  display: grid;
  grid-template-columns: minmax(8rem, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 1rem;
}

.page-contact .sales-contact-grid > :nth-child(2) .cc-block-wrap {
  margin-top: 0 !important;
}

.page-contact .sales-contact-grid > :nth-child(2) .cc-block-single-image-container,
.page-contact .sales-contact-grid > :nth-child(2) .cc-block-single-image-container img {
  width: 100%;
  height: 100%;
}

.page-contact .sales-contact-grid > :nth-child(2) .cc-block-single-image-container img {
  max-height: 18rem;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.sales-section-heading-column {
  flex-basis: 100% !important;
}

.page-services-informatiques .sales-section--media > .cc-section-inner > .cc-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(0.8rem, 1.8vw, 1.2rem);
}

.page-services-informatiques .sales-section--media > .cc-section-inner > .cc-row > * > .cc-column {
  height: 100%;
  overflow: hidden;
  padding: clamp(0.9rem, 1.8vw, 1.2rem);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.page-services-informatiques .sales-section--media .cc-block-single-image-container img {
  width: 100% !important;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.sales-logo-grid {
  display: grid !important;
  height: auto !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.sales-logo-grid > .cc-block-type-image {
  height: 100%;
  margin-top: 0 !important;
}

.sales-logo-grid .cc-block-single-image-container,
.sales-logo-grid .cc-block-single-image-container a {
  display: flex;
  width: 100%;
  height: 5.35rem;
  align-items: center;
  justify-content: center;
}

.sales-logo-grid .cc-block-single-image-container {
  padding: 0.65rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
}

.sales-logo-grid .cc-block-single-image-container img {
  width: auto !important;
  max-width: 100%;
  height: auto !important;
  max-height: 3.9rem;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.sales-flat-logo-wall > .cc-section-inner > .cc-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sales-flat-logo-wall .sales-section-heading-column {
  grid-column: 1 / -1;
}

.sales-flat-logo-item > .cc-column {
  display: flex;
  min-height: 6rem;
  align-items: center;
  justify-content: center;
  padding: 0.7rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
}

.sales-flat-logo-item .cc-block-single-image-container img {
  width: auto !important;
  max-width: 100%;
  height: auto !important;
  max-height: 4.4rem;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

/* Réseau de partenaires : les logos historiques ont des marges intégrées.
   Ces cartes les laissent respirer dans une surface unique et ajoutent un
   libellé lisible sans modifier le mur des clients ou celui des annuaires. */
.page-clients-patenaires-annuaires .partners-directory-section > .cc-section-inner > .cc-row {
  align-items: stretch;
  gap: clamp(0.8rem, 1.4vw, 1.1rem);
}

.page-clients-patenaires-annuaires .partners-directory-section .partners-directory-item > .cc-column {
  display: block;
  height: 100%;
  min-height: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.page-clients-patenaires-annuaires .partners-directory-item :is(.cc-content-stack, .cc-block-wrap, .cc-block, .cc-block-content, .cc-block-single-image-container) {
  height: 100%;
}

.page-clients-patenaires-annuaires .partners-directory-link {
  display: grid;
  width: 100%;
  min-height: 10.75rem;
  grid-template-rows: minmax(5.9rem, 1fr) auto;
  align-items: stretch;
  gap: 0.65rem;
  padding: 0.8rem 0.95rem 0.78rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.page-clients-patenaires-annuaires .partners-directory-logo {
  display: flex;
  min-height: 5.9rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-clients-patenaires-annuaires .partners-directory-logo img {
  display: block;
  width: auto !important;
  max-width: none;
  height: clamp(3.75rem, 5.5vw, 4.35rem) !important;
  max-height: none;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.page-clients-patenaires-annuaires .partners-directory-name {
  display: flex;
  min-height: 1.6rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding-top: 0.62rem;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.25;
}

.page-clients-patenaires-annuaires .partners-directory-name::before {
  content: attr(data-partner-name);
}

.page-clients-patenaires-annuaires .partners-directory-name::after {
  flex: 0 0 auto;
  color: var(--blue);
  content: "↗";
  font-size: 1rem;
  font-weight: 800;
}

@media (hover: hover) {
  .page-clients-patenaires-annuaires .partners-directory-link:hover {
    border-color: #8fc3db;
    box-shadow: 0 12px 28px rgba(11, 36, 53, 0.12);
  }
}

.page-clients-patenaires-annuaires .partners-directory-link:focus-visible {
  outline: 3px solid rgba(8, 126, 181, 0.42);
  outline-offset: 3px;
}

@media (max-width: 60rem) {
  .page-clients-patenaires-annuaires .partners-directory-section > .cc-section-inner > .cc-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 44rem) {
  .page-clients-patenaires-annuaires .partners-directory-link {
    min-height: 9.9rem;
    padding: 0.7rem 0.75rem;
  }

  .page-clients-patenaires-annuaires .partners-directory-logo {
    min-height: 5.5rem;
  }

  .page-clients-patenaires-annuaires .partners-directory-logo img {
    width: 132% !important;
    max-width: none;
    height: auto !important;
    max-height: 3.75rem;
  }

  .page-clients-patenaires-annuaires .partners-directory-name {
    padding-top: 0.5rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 22rem) {
  .page-clients-patenaires-annuaires .partners-directory-section > .cc-section-inner > .cc-row {
    grid-template-columns: 1fr;
  }
}

.page-avis-informaticien .sales-profile-media > .cc-section-inner > .cc-row {
  display: grid;
  max-width: 48rem;
  grid-template-columns: repeat(2, minmax(0, 19rem));
  justify-content: center;
  margin-inline: auto;
}

.page-avis-informaticien .sales-profile-media .cc-grid-cell:nth-child(2) img,
.page-avis-informaticien .sales-profile-media .cc-grid-cell:nth-child(3) img {
  width: 100%;
  max-height: 19rem;
  aspect-ratio: 1;
  box-shadow: none;
}

.page-avis-informaticien .sales-profile-media .cc-grid-cell:nth-child(2) img {
  object-fit: cover;
}

.page-avis-informaticien .sales-profile-media .cc-grid-cell:nth-child(3) img {
  object-fit: contain;
}

.sales-section--carousel .cc-article-carousel-wrap,
.sales-section--reviews .cc-carousel-extended,
.route-home .home-section--editorial .cc-article-carousel-wrap,
.route-home .home-section--reviews .cc-carousel-extended {
  display: grid !important;
  grid-template-columns: none !important;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2.4rem) / 3);
  align-items: stretch;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0.2rem 0.1rem 0.8rem;
  scroll-snap-type: inline proximity;
  scrollbar-color: var(--blue) var(--mist);
  scrollbar-width: thin;
}

.sales-section--carousel .cc-article-carousel-column,
.sales-section--reviews .cc-carousel-extended-item,
.route-home .home-section--editorial .cc-article-carousel-column,
.route-home .home-section--reviews .cc-carousel-extended-item {
  min-width: 0;
  height: auto;
  scroll-snap-align: start;
}

.sales-section--reviews .cc-carousel-extended-item,
.route-home .home-section--reviews .cc-carousel-extended-item {
  display: flex;
  flex-direction: column;
  padding: 1.15rem;
}

.sales-section--reviews .cc-testimonial-carousel-content-wrap,
.route-home .home-section--reviews .cc-testimonial-carousel-content-wrap {
  margin-top: auto;
}

@media (max-width: 70rem) {
  .sales-hero-layout,
  .route-home .home-flow--sales-visual .home-section--hero .cc-row {
    grid-template-columns: minmax(0, 1.16fr) minmax(18rem, 0.84fr);
    gap: 1.5rem;
  }

  .page-heading--sales h1 {
    font-size: clamp(2.15rem, 4.3vw, 3.2rem);
  }

  .sales-section--features > .cc-section-inner > .cc-row,
  .sales-section--faq > .cc-section-inner > .cc-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sales-section--features > .cc-section-inner > .cc-row > :first-child,
  .sales-section--faq > .cc-section-inner > .cc-row > :first-child {
    grid-column: 1 / -1;
  }

  .sales-section--carousel .cc-article-carousel-wrap,
  .sales-section--reviews .cc-carousel-extended,
  .route-home .home-section--editorial .cc-article-carousel-wrap,
  .route-home .home-section--reviews .cc-carousel-extended {
    grid-auto-columns: calc((100% - 1.2rem) / 2);
  }

  .sales-card-track--3,
  .sales-card-track--4,
  .sales-card-track--5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-services-informatiques .sales-section--media > .cc-section-inner > .cc-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 52rem) {
  .sales-hero-layout,
  .sales-contact-grid,
  .sales-section--features > .cc-section-inner > .cc-row,
  .sales-section--faq > .cc-section-inner > .cc-row {
    grid-template-columns: 1fr;
  }

  .sales-contact-grid > :first-child,
  .sales-contact-grid > :nth-child(2),
  .sales-contact-grid > :nth-child(3) {
    grid-row: auto;
    grid-column: 1;
  }

  .sales-section--features > .cc-section-inner > .cc-row > :first-child,
  .sales-section--faq > .cc-section-inner > .cc-row > :first-child {
    grid-column: 1;
  }

  .page-services-informatiques .sales-section--media > .cc-section-inner > .cc-row {
    display: grid;
    width: calc(100% + 1rem);
    max-width: calc(100% + 1rem);
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(78vw, 31rem);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    margin-right: -1rem;
    padding: 0.15rem 1rem 0.7rem 0.05rem;
    scroll-snap-type: inline mandatory;
    scrollbar-color: var(--blue) var(--mist);
    scrollbar-width: thin;
  }

  .page-services-informatiques .sales-section--media > .cc-section-inner > .cc-row > * {
    scroll-snap-align: start;
  }
}

@media (max-width: 44rem) {
  .page-heading--sales .page-heading-inner {
    padding-block: 1.25rem 1.5rem;
  }

  .page-heading--sales .breadcrumbs {
    margin-bottom: 0.75rem;
    gap: 0.3rem;
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .sales-hero-layout {
    gap: 0.95rem;
  }

  .page-heading--sales .page-kicker {
    margin-bottom: 0.45rem;
    font-size: 0.68rem;
  }

  .page-heading--sales h1 {
    font-size: clamp(1.8rem, 8.2vw, 2.3rem);
    line-height: 1.05;
  }

  .page-heading--sales .page-heading-summary {
    margin-top: 0.7rem;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .sales-hero-card {
    padding: 0.9rem;
    border-radius: var(--radius);
  }

  .sales-hero-card h2 {
    margin-bottom: 0.25rem;
    font-size: 1.08rem;
  }

  .sales-hero-card-copy {
    font-size: 0.76rem;
  }

  .sales-hero-card .page-heading-signals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0.65rem;
  }

  .sales-hero-card .page-heading-signals li {
    align-content: center;
    font-size: 0.66rem;
    line-height: 1.25;
  }

  .sales-hero-card .page-heading-signals li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .sales-hero-card .page-heading-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0.7rem;
  }

  .sales-hero-card .page-heading-actions .button {
    min-height: 2.75rem;
    padding-inline: 0.45rem;
    font-size: 0.72rem;
  }

  .sales-hero-reassurance {
    margin-top: 0.55rem;
    font-size: 0.62rem;
  }

  .sales-flow {
    width: 100%;
    padding-block: 1rem 2rem;
    gap: 0.9rem;
  }

  .sales-flow .page-jump {
    width: calc(100% - 1rem);
    max-width: calc(100% - 1rem);
    overflow: hidden;
    margin-inline: auto;
    padding: 0.85rem;
  }

  .sales-flow .page-jump ol {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(80vw, 17rem);
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    scroll-snap-type: inline proximity;
    scrollbar-width: none;
  }

  .sales-flow .page-jump ol::-webkit-scrollbar {
    display: none;
  }

  .sales-flow .page-jump a {
    min-height: 4.2rem;
    align-content: center;
    padding: 0.65rem;
    background: #f7fbfd;
    border: 1px solid var(--line);
    border-radius: 0.75rem;
    scroll-snap-align: start;
  }

  .sales-sections {
    gap: 0.75rem;
  }

  .sales-sections .sales-section {
    padding-block: 1.45rem;
    box-shadow: none;
  }

  .sales-sections .sales-section :where(h2, .cc-block-title) {
    font-size: clamp(1.45rem, 7vw, 1.95rem);
  }

  .sales-card-column > .cc-column {
    padding: 1rem;
  }

  .sales-card-track,
  .sales-card-track--3,
  .sales-card-track--4,
  .sales-card-track--5 {
    display: grid;
    width: calc(100% + 1rem);
    max-width: calc(100% + 1rem);
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(82vw, 19rem);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    margin-right: -1rem;
    padding: 0.15rem 1rem 0.7rem 0.05rem;
    scroll-snap-type: inline mandatory;
    scrollbar-color: var(--blue) var(--mist);
    scrollbar-width: thin;
  }

  .sales-card-track .sales-card-column {
    scroll-snap-align: start;
  }

  .page-contact .sales-contact-grid > :nth-child(2) .cc-content-stack {
    grid-template-columns: 7.25rem minmax(0, 1fr);
    gap: 0.75rem;
  }

  .page-contact .sales-contact-grid > :nth-child(2) .cc-block-single-image-container img {
    max-height: 10rem;
  }

  .sales-logo-grid,
  .sales-flat-logo-wall > .cc-section-inner > .cc-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .sales-flat-logo-item > .cc-column {
    min-height: 4.65rem;
    padding: 0.5rem;
  }

  .sales-flat-logo-item .cc-block-single-image-container img {
    max-height: 3.5rem;
  }

  .sales-logo-grid .cc-block-single-image-container,
  .sales-logo-grid .cc-block-single-image-container a {
    height: 4.65rem;
  }

  .sales-logo-grid .cc-block-single-image-container {
    padding: 0.5rem;
  }

  .sales-logo-grid .cc-block-single-image-container img {
    max-height: 3.5rem;
  }

  .page-avis-informaticien .sales-profile-media > .cc-section-inner > .cc-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .page-avis-informaticien .sales-profile-media .cc-grid-cell:nth-child(2) img,
  .page-avis-informaticien .sales-profile-media .cc-grid-cell:nth-child(3) img {
    max-height: 10.5rem;
  }

  .sales-section--carousel .cc-article-carousel-wrap,
  .sales-section--reviews .cc-carousel-extended,
  .route-home .home-section--editorial .cc-article-carousel-wrap,
  .route-home .home-section--reviews .cc-carousel-extended {
    grid-auto-columns: 84%;
    gap: 0.75rem;
  }

  .sales-section--reviews .cc-carousel-extended-item,
  .route-home .home-section--reviews .cc-carousel-extended-item {
    padding: 1rem;
  }

  .sales-flow .conversion-panel {
    width: calc(100% - 1rem);
    margin-inline: auto;
    padding: 1.25rem;
    border-radius: var(--radius);
  }
}

@media (max-width: 22rem) {
  .article-reader-controls {
    grid-template-columns: 1fr;
  }

  .reader-control--primary {
    grid-column: 1;
  }

  .sales-hero-card .page-heading-actions {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Dossiers thématiques v21
   Une introduction visuelle, un résumé utile et une bibliothèque verticale
   reprennent la logique éditoriale de BIW avec l'identité Chevalier Company.
   ========================================================================== */

.page-heading--tag .page-heading-inner {
  padding-block: clamp(2rem, 5vw, 4rem);
}

.tag-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
  align-items: center;
  gap: clamp(1.75rem, 5vw, 4.5rem);
}

.page-heading--tag .page-heading-copy {
  max-width: 48rem;
}

.page-heading--tag h1 {
  max-width: 46rem;
  font-size: clamp(2.15rem, 4.7vw, 4rem);
}

.tag-hero-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 1.8rem 4rem rgba(2, 18, 31, 0.32);
}

.tag-index {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.2rem);
}

.tag-topic-overview {
  grid-template-columns: minmax(0, 1.4fr) minmax(15rem, 0.6fr);
  align-items: stretch;
}

.tag-topic-copy {
  align-self: center;
}

.tag-topic-stat {
  display: grid;
  align-content: center;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  background: linear-gradient(145deg, white, #eaf6fb);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.tag-topic-stat strong {
  color: var(--blue);
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(2.7rem, 6vw, 4.2rem);
  line-height: 1;
}

.tag-topic-stat span {
  margin-top: 0.25rem;
  color: var(--navy);
  font-weight: 820;
}

.tag-topic-stat p {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.tag-topic-points {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  gap: 0.75rem;
  list-style: none;
}

.tag-topic-points li {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  margin: 0;
  padding: 0.9rem 1rem;
  gap: 0.65rem;
  color: var(--navy);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 740;
}

.tag-topic-points li > span {
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 0.55rem;
  margin-top: 0.35rem;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 0.25rem rgba(24, 183, 233, 0.12);
}

.tag-deep-dive {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.tag-deep-dive summary {
  position: relative;
  padding: 1.05rem 3.4rem 1.05rem 1.2rem;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.tag-deep-dive summary::after {
  position: absolute;
  top: 50%;
  right: 1.2rem;
  color: var(--blue);
  font-size: 1.35rem;
  content: "+";
  transform: translateY(-50%);
}

.tag-deep-dive[open] summary::after {
  content: "−";
}

.tag-deep-dive-inner {
  padding: 0 clamp(1.2rem, 3vw, 2rem) clamp(1.4rem, 3vw, 2rem);
  border-top: 1px solid var(--line);
}

.tag-deep-dive-inner > h2 {
  margin-top: 1.5rem;
}

.tag-deep-dive-copy {
  margin-bottom: 0;
}

.tag-deep-dive-copy > :last-child {
  margin-bottom: 0;
}

.tag-library,
.tag-other-topics,
.tag-related-content {
  min-width: 0;
  padding: clamp(1.35rem, 3.5vw, 2.5rem);
  background: #f7fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.tag-section-heading {
  max-width: 54rem;
  margin-bottom: 1.35rem;
}

.tag-section-heading h2 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
}

.tag-section-heading > :last-child {
  margin-bottom: 0;
}

.tag-library-fields {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.8rem;
  gap: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 720;
}

.tag-library-fields span {
  padding: 0.3rem 0.55rem;
  background: var(--mist);
  border-radius: var(--radius-pill);
}

.tag-library-tools {
  margin-bottom: 1.35rem;
  padding: 1rem;
  background: linear-gradient(135deg, white, #e8f5fb);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.tag-library-tools label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.tag-library-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
}

.tag-library-search-row input {
  min-width: 0;
  min-height: 3.25rem;
  border-radius: var(--radius-pill);
}

.tag-library-status {
  min-width: 12rem;
  margin: 0;
  padding: 0.7rem 0.9rem;
  color: var(--navy);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.83rem;
  font-weight: 760;
  text-align: center;
}

.tag-library-card {
  display: grid;
  grid-template-columns: minmax(15rem, 0.42fr) minmax(0, 0.58fr);
  min-height: 14rem;
}

.js .tag-library-card[data-initially-hidden="true"] {
  display: none;
}

.tag-library-card-body {
  justify-content: center;
  padding: clamp(1.15rem, 3vw, 1.75rem);
}

.tag-library-card h3 {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
}

.tag-library-read {
  width: fit-content;
  margin-top: 1rem;
}

.tag-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.tag-load-more {
  min-height: 2.75rem;
}

.tag-other-topics {
  background: var(--paper);
}

.tag-other-topics .collection-topics {
  padding-bottom: 0.4rem;
}

.tag-related-sections > .container {
  width: 100%;
}

@media (max-width: 56rem) {
  .tag-hero-layout,
  .tag-topic-overview {
    grid-template-columns: 1fr;
  }

  .tag-hero-media {
    width: min(100%, 44rem);
    justify-self: center;
  }

  .tag-topic-stat {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0 1rem;
  }

  .tag-topic-stat strong {
    grid-row: 1 / 3;
  }

  .tag-topic-stat p {
    grid-column: 1 / -1;
  }

  .tag-topic-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 44rem) {
  .page-heading--tag .page-heading-inner {
    padding-block: 1.6rem 2.2rem;
  }

  .page-heading--tag h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .tag-hero-media {
    aspect-ratio: 16 / 11;
  }

  .tag-topic-stat {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .tag-library,
  .tag-other-topics,
  .tag-related-content {
    padding: 1.1rem;
    border-radius: var(--radius);
  }

  .tag-library-search-row,
  .tag-library-card {
    grid-template-columns: 1fr;
  }

  .tag-library-status {
    min-width: 0;
    text-align: left;
  }

  .tag-library-card {
    min-height: 0;
  }

  .tag-library-card-body {
    padding: 1rem;
  }

  .tag-deep-dive summary {
    padding-left: 1rem;
  }
}

/* Accueil aligné sur le langage visuel des pages commerciales v22.
   Le contenu historique reste intact ; seuls le rythme, les surfaces et la
   hiérarchie responsive sont harmonisés avec les pages de vente. */

.route-home {
  background: #f3f8fa;
}

.route-home .home-flow--sales-visual {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-top: 0;
  padding-bottom: clamp(0.5rem, 2vw, 1.5rem);
  background: #f3f8fa;
}

.route-home .home-flow--sales-visual .page-content {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(0.9rem, 2vw, 1.35rem);
}

.route-home .home-flow--sales-visual .page-content > .site-section:not(.home-section--hero),
.route-home .home-flow--sales-visual .page-content > .cc-section:not(.site-section) {
  width: min(calc(100% - 2rem), var(--content));
  max-width: var(--content);
  overflow: clip;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 0.7rem 2rem rgba(11, 36, 53, 0.045);
}

.route-home .home-flow--sales-visual .page-content > .site-section:not(.home-section--hero) {
  padding: clamp(1.7rem, 4vw, 3.25rem) clamp(1rem, 3vw, 2.25rem);
}

.route-home .home-flow--sales-visual .page-content > .cc-section:not(.site-section) {
  padding: clamp(0.8rem, 2vw, 1.15rem);
  background: var(--paper);
}

.route-home .home-flow--sales-visual #hometc.home-section--hero:first-of-type {
  min-height: 0;
  padding: clamp(2.75rem, 3.8vw, 3.3rem) 0 clamp(1.35rem, 2.6vw, 2.2rem);
  background:
    radial-gradient(circle at 88% 15%, rgba(218, 218, 218, 0.08), transparent 26rem),
    linear-gradient(90deg, rgba(36, 36, 36, 0.68), rgba(58, 58, 58, 0.52) 54%, rgba(82, 82, 82, 0.24)),
    var(--home-hero-background-image, none) center / cover no-repeat;
}

.route-home .home-flow--sales-visual .home-section--hero .cc-row {
  grid-template-columns: minmax(0, 1fr) minmax(23rem, 25rem);
  align-items: center;
  gap: clamp(1.75rem, 4vw, 4rem);
}

.route-home .home-flow--sales-visual .home-section--hero .home-hero-copy h2 {
  max-width: 40rem;
  margin-top: 1rem;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.route-home .home-flow--sales-visual #hometc .home-hero-copy .cc-block-content p {
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  line-height: 1.58;
}

.route-home .home-flow--sales-visual .home-hero-action > .cc-column {
  min-width: 0;
  padding: clamp(1.05rem, 1.7vw, 1.45rem);
  background: linear-gradient(160deg, rgba(7, 55, 83, 0.96), rgba(3, 28, 45, 0.98));
  border: 1px solid rgba(143, 222, 247, 0.24);
  border-radius: 1.5rem;
  box-shadow: 0 1.6rem 4rem rgba(2, 22, 36, 0.34);
  backdrop-filter: blur(14px);
}

.route-home .home-flow--sales-visual .home-hero-action .cc-button {
  min-height: 2.9rem;
  padding: 0.65rem 0.9rem;
  color: var(--navy);
  background: var(--paper);
  box-shadow: none;
  font-size: 0.8rem;
}

.route-home .home-flow--sales-visual .page-content > .site-section--paper:not(.home-section--hero),
.route-home .home-flow--sales-visual .home-process {
  background: var(--paper);
}

.route-home .home-flow--sales-visual .page-content > .site-section--soft:not([data-section-background="image"]) {
  background: linear-gradient(145deg, #f4f9fb, var(--mist));
}

.route-home .home-flow--sales-visual .page-content > .site-section:not(.home-section--hero)
  > .cc-section-inner > .cc-row > :first-child .cc-block-title {
  text-align: left;
}

.route-home .home-flow--sales-visual .home-section--profile
  > .cc-section-inner > .cc-row > :nth-child(2) .cc-block-single-image-container {
  width: min(100%, 22rem);
}

.route-home .home-flow--sales-visual .home-process .section-intro,
.route-home .home-flow--sales-visual .home-process .process-grid {
  width: 100%;
}

.route-home .home-flow--sales-visual .process-grid {
  gap: clamp(0.8rem, 1.8vw, 1.2rem);
}

.route-home .home-flow--sales-visual .process-grid li,
.route-home .home-flow--sales-visual .process-grid li + li,
.route-home .home-flow--sales-visual .process-grid li:nth-child(3) {
  padding: clamp(1rem, 2vw, 1.35rem);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.route-home .home-flow--sales-visual .home-final-cta {
  margin-block: clamp(1rem, 2.4vw, 1.6rem) 0;
}

@media (max-width: 70rem) {
  .route-home .home-flow--sales-visual #hometc h1 {
    font-size: clamp(2.15rem, 4.3vw, 3.2rem);
  }
}

@media (max-width: 64rem) {
  .route-home .home-flow--sales-visual .home-section--hero .cc-row {
    grid-template-columns: 1fr;
  }

  .route-home .home-flow--sales-visual .home-section--hero .home-hero-action {
    width: min(100%, 31rem);
    grid-column: 1;
  }
}

@media (max-width: 44rem) {
  .route-home .home-flow--sales-visual .page-content {
    gap: 0.75rem;
  }

  .route-home .home-flow--sales-visual .page-content > .site-section:not(.home-section--hero),
  .route-home .home-flow--sales-visual .page-content > .cc-section:not(.site-section) {
    width: calc(100% - 1rem);
    border-radius: var(--radius);
  }

  .route-home .home-flow--sales-visual .page-content > .site-section:not(.home-section--hero) {
    padding: 1.45rem 1rem;
    box-shadow: none;
  }

  .route-home .home-flow--sales-visual #hometc.home-section--hero:first-of-type {
    padding: 2.35rem 0 1.15rem;
  }

  .route-home .home-flow--sales-visual .home-section--hero .cc-row {
    gap: 1.2rem;
  }

  .route-home .home-flow--sales-visual .home-section--hero .home-hero-action > .cc-column {
    padding: 0.9rem;
  }

  .route-home .home-flow--sales-visual #hometc h1 {
    font-size: clamp(1.8rem, 8.2vw, 2.3rem);
  }

  .route-home .home-flow--sales-visual .home-section--hero .home-hero-copy h2 {
    font-size: 1.05rem;
  }

  .route-home .home-flow--sales-visual #hometc .home-hero-copy .cc-block-content p {
    font-size: 0.9rem;
  }

  .route-home .home-flow--sales-visual .process-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .route-home .home-flow--sales-visual .process-grid li,
  .route-home .home-flow--sales-visual .process-grid li + li,
  .route-home .home-flow--sales-visual .process-grid li:nth-child(3) {
    padding: 1rem;
  }

  .route-home .home-flow--sales-visual .process-grid span,
  .route-home .home-flow--sales-visual .process-grid li + li span {
    position: static;
    top: auto;
    left: auto;
    margin-bottom: 0.65rem;
  }
}

/* Mobile sans navigation horizontale v23 : les contenus deviennent des listes
   verticales compactes, tandis que les tableaux et extraits de code gardent
   leur défilement technique lorsqu'il est réellement nécessaire. */
@media (max-width: 44rem) {
  .collection-topics,
  .blog-discovery .tag-cloud {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0.2rem;
    scroll-snap-type: none;
  }

  .collection-topics .tag-chip,
  .blog-discovery .tag-chip {
    flex: 0 1 auto;
    white-space: normal;
    scroll-snap-align: none;
  }

  .sales-flow .page-jump ol {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    overflow-x: visible;
    padding-bottom: 0;
    gap: 0.45rem;
    scroll-snap-type: none;
    scrollbar-width: auto;
  }

  .sales-flow .page-jump a {
    min-height: 0;
    padding: 0.7rem;
    scroll-snap-align: none;
  }

  .sales-section--carousel .cc-article-carousel-wrap,
  .sales-section--reviews .cc-carousel-extended,
  .route-home .home-section--editorial .cc-article-carousel-wrap,
  .route-home .home-section--reviews .cc-carousel-extended {
    grid-template-columns: 1fr !important;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    overflow-x: visible;
    overscroll-behavior-inline: auto;
    padding: 0.1rem 0;
    gap: 0.75rem;
    scroll-snap-type: none;
    scrollbar-width: auto;
  }

  .sales-section--carousel .cc-article-carousel-column,
  .route-home .home-section--editorial .cc-article-carousel-column {
    display: grid;
    grid-template-columns: minmax(7.25rem, 0.34fr) minmax(0, 0.66fr);
    align-items: stretch;
  }

  .sales-section--carousel .cc-article-carousel-img,
  .route-home .home-section--editorial .cc-article-carousel-img {
    height: 100%;
    min-height: 9rem;
    aspect-ratio: auto;
  }

  .sales-section--carousel .cc-article-carousel-content,
  .route-home .home-section--editorial .cc-article-carousel-content {
    padding: 0.8rem 0.9rem;
  }

  .sales-section--carousel .cc-article-carousel-column,
  .sales-section--reviews .cc-carousel-extended-item,
  .route-home .home-section--editorial .cc-article-carousel-column,
  .route-home .home-section--reviews .cc-carousel-extended-item,
  .page-services-informatiques .sales-section--media > .cc-section-inner > .cc-row > *,
  .sales-card-track > .sales-card-column {
    width: 100%;
    max-width: none;
    scroll-snap-align: none;
  }

  .page-services-informatiques .sales-section--media > .cc-section-inner > .cc-row,
  .sales-card-track,
  .sales-card-track--3,
  .sales-card-track--4,
  .sales-card-track--5 {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    overflow-x: visible;
    overscroll-behavior-inline: auto;
    margin-right: 0;
    padding: 0.05rem 0;
    gap: 0.75rem;
    scroll-snap-type: none;
    scrollbar-width: auto;
  }

}

@media (max-width: 26rem) {
  .sales-section--carousel .cc-article-carousel-column,
  .route-home .home-section--editorial .cc-article-carousel-column {
    grid-template-columns: 1fr;
  }

  .sales-section--carousel .cc-article-carousel-img,
  .route-home .home-section--editorial .cc-article-carousel-img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

/* Parcours commercial unifié v24 : la home et les pages de vente partagent
   désormais la même hiérarchie, les mêmes surfaces et les mêmes repères UX. */

:is(.page-heading--sales .page-heading-copy, .route-home .sales-hero-copy) {
  align-self: center;
}

:is(.page-heading--sales .page-heading-copy, .route-home .sales-hero-copy) .page-kicker {
  width: fit-content;
  margin-bottom: 0;
  padding: 0.38rem 0.68rem;
  color: #bfefff;
  background: rgba(24, 183, 233, 0.12);
  border: 1px solid rgba(112, 216, 247, 0.24);
  border-radius: var(--radius-pill);
}

.route-home .home-breadcrumbs {
  position: absolute;
  top: var(--breadcrumb-offset-y);
  left: 50%;
  z-index: 3;
  width: min(calc(100% - 2rem), var(--content));
  margin: 0;
  color: #d8edf5;
  font-size: 0.77rem;
  transform: translateX(-50%);
}

.route-home .home-breadcrumbs [aria-current="page"] {
  display: inline;
}

.route-home .sales-hero-copy .page-kicker em {
  font-style: normal;
}

.route-home .sales-hero-copy .cc-content-stack {
  display: flex;
  max-width: 56rem;
  align-items: flex-start;
  flex-direction: column;
  gap: clamp(0.8rem, 1.8vw, 1.15rem);
}

.route-home .sales-hero-copy .cc-block-wrap {
  margin-top: 0;
}

.route-home .sales-hero-copy h1 {
  width: 100%;
  max-width: 56rem;
  margin-inline: 0;
  margin-bottom: 0;
  font-size: clamp(2.55rem, 3.65vw, 3.55rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-align: left !important;
  text-wrap: wrap;
}

.route-home .sales-hero-copy .home-hero-summary {
  max-width: 43rem;
  margin-bottom: 0;
  color: #d9eaf2;
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  line-height: 1.58;
}

@media (min-width: 75rem) {
  .route-home .sales-hero-copy .home-hero-summary {
    max-width: none;
    font-size: clamp(1rem, 1.15vw, 1.05rem);
    white-space: nowrap;
  }
}

.route-home .sales-hero-copy .home-hero-primary {
  min-height: 3.15rem;
  padding-inline: 1.35rem;
  color: var(--navy);
}

.route-home .home-hero-card {
  align-self: center;
}

.route-home .home-hero-card > .sales-hero-card {
  position: relative;
  display: flex;
  overflow: hidden;
  height: auto;
  min-height: 0;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(7, 55, 83, 0.97), rgba(3, 28, 45, 0.99));
  border-radius: 1.5rem;
}

.route-home .home-hero-card > .sales-hero-card::before,
.page-heading--repair-home .repair-hero-card::before,
.page-heading--services-home .services-hero-card::before,
.sitemap-hero-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 0.24rem;
  background: linear-gradient(90deg, var(--cyan), var(--yellow));
  content: "";
}

.route-home .home-hero-card .cc-content-stack {
  display: flex;
  height: auto;
  flex-direction: column;
  gap: 0;
}

.route-home .home-hero-card .cc-block-wrap {
  margin-top: 0;
}

.route-home .home-hero-card h2 {
  max-width: 19rem;
  margin: 0.1rem 0 0.6rem;
  color: white;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.route-home .home-hero-card .cc-block-content,
.repair-hero-signals,
.services-hero-signals {
  display: grid;
  gap: 0;
}

.route-home .home-hero-card .home-hero-signal {
  display: grid;
  grid-template-columns: 1.9rem minmax(0, 1fr);
  align-items: start;
  margin: 0;
  padding: 0.72rem 0;
  gap: 0.72rem;
  color: #e1eff5;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  font-size: 0.87rem;
  line-height: 1.48;
}

.route-home .home-flow--sales-visual #hometc .home-hero-card .home-hero-signal {
  font-size: clamp(0.82rem, 1vw, 0.88rem);
  line-height: 1.5;
}

.route-home .home-hero-card .home-hero-signal::before {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  color: #77e0ba;
  background: rgba(119, 224, 186, 0.1);
  border: 1px solid rgba(119, 224, 186, 0.24);
  border-radius: 50%;
  font-size: 0.8rem;
}

.route-home .home-hero-card .home-hero-signal-copy::before,
.repair-hero-signal-label,
.services-hero-signal-label {
  display: block;
  margin-bottom: 0.22rem;
  color: #8edff7;
  font-size: 0.62rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.route-home .home-hero-card .home-hero-signal:first-child .home-hero-signal-copy::before {
  content: "Diagnostic rapide";
}

.route-home .home-hero-card .home-hero-signal:nth-child(2),
.page-heading--repair-home .repair-hero-card .home-hero-signal:nth-child(2) {
  margin: 0.15rem 0 0.35rem;
  padding: 0.82rem;
  background: linear-gradient(145deg, rgba(255, 210, 64, 0.12), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 210, 64, 0.3);
  border-radius: 1rem;
}



.route-home .home-hero-card .home-hero-signal:nth-child(2) .home-hero-signal-copy::before {
  color: #ffe58b;
  content: "Tarif et garantie";
}

.route-home .home-hero-card .home-hero-signal:nth-child(2) strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--yellow);
  font-family: Montserrat, sans-serif;
  font-size: 1.02rem;
  line-height: 1.42;
}

.route-home .home-hero-card .home-hero-signal:nth-child(2) .home-hero-price {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "rate tax"
    "travel travel";
  align-items: baseline;
  column-gap: 0.75rem;
  row-gap: 0.32rem;
  font-size: clamp(0.84rem, 1.05vw, 0.94rem);
  letter-spacing: -0.015em;
}

.route-home .home-hero-card .home-hero-price-line,
.page-heading--repair-home .repair-hero-card .home-hero-price-line {
  display: block;
  white-space: nowrap;
}

.route-home .home-hero-card .home-hero-price-line.home-hero-price-line--rate {
  display: block;
  grid-area: rate;
  font-size: 1.16em;
  letter-spacing: -0.025em;
  line-height: 1.25;
  white-space: nowrap;
}

.route-home .home-hero-card .home-hero-price-line--travel {
  grid-area: travel;
  padding-top: 0.34rem;
  color: #fff0b3;
  border-top: 1px solid rgba(255, 224, 121, 0.2);
  font-size: 0.84em;
  font-weight: 760;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.route-home .home-hero-card .home-hero-price-tax {
  grid-area: tax;
  align-self: center;
  justify-self: end;
  padding: 0.24rem 0.42rem;
  color: var(--yellow);
  background: rgba(255, 216, 77, 0.12);
  border: 1px solid rgba(255, 216, 77, 0.32);
  border-radius: var(--radius-pill);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.route-home .home-hero-card .home-hero-guarantee,
.page-heading--repair-home .repair-hero-card .home-hero-guarantee {
  display: block;
  margin-top: 0.55rem;
  color: #e1eff5;
  font-style: italic;
  font-weight: 450;
}

.route-home .home-hero-card .home-hero-guarantee::before {
  content: "« ";
}

.route-home .home-hero-card .home-hero-guarantee::after {
  content: " »";
}

.route-home .home-hero-card .home-hero-signal:nth-child(2) br {
  display: block;
  margin-top: 0.5rem;
  content: "";
}

.route-home .home-hero-card .home-hero-signal:nth-child(3),
.page-heading--repair-home .repair-hero-card .home-hero-signal:nth-child(3) {
  padding-bottom: 0.4rem;
  border-top: 0;
}

.route-home .home-hero-card .home-hero-signal:nth-child(3) .home-hero-signal-copy::before {
  content: "Zone d’intervention";
}

.route-home .home-hero-card .home-hero-signal:nth-child(3) em {
  color: white;
  font-size: clamp(0.78rem, 0.9vw, 0.84rem);
  font-style: normal;
  font-weight: 720;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.route-home .home-hero-card .home-hero-signal-copy,
.page-heading--repair-home .repair-hero-card .home-hero-signal-copy {
  display: block;
  min-width: 0;
}

.route-home .home-hero-card .home-hero-action-link {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 3.8rem;
  align-items: center;
  justify-content: center;
  margin-top: 0.8rem;
  padding: 0.7rem 2.75rem 0.7rem 3.4rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 1rem;
  box-shadow: 0 0.9rem 2rem rgba(2, 22, 36, 0.28);
  font-family: Montserrat, sans-serif;
  font-size: 0.82rem;
  font-weight: 820;
  line-height: 1.25;
  text-align: center;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.route-home .home-hero-card .home-hero-action-link i,
.page-heading--repair-home .repair-hero-card .home-hero-action-link i,
.page-heading--services-home .services-hero-card .home-hero-action-link i {
  position: absolute;
  left: 0.85rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  background: rgba(3, 31, 49, 0.1);
  border-radius: 50%;
}

.route-home .home-hero-card .home-hero-action-link::after,
.page-heading--repair-home .repair-hero-card .home-hero-action-link::after,
.page-heading--services-home .services-hero-card .home-hero-action-link::after {
  position: absolute;
  right: 1rem;
  font-size: 1rem;
  content: "→";
}

.route-home .home-hero-card .home-hero-action-link:hover {
  box-shadow: 0 1.1rem 2.4rem rgba(2, 22, 36, 0.34);
  transform: translateY(-0.12rem);
}

/* Réparation PC : déclinaison directe du hero et du bloc réparation de la home. */
.page-heading--repair-home {
  isolation: isolate;
  min-height: clamp(38rem, 48vw, 46rem);
  background-color: #052b43;
  background-position: center 48% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-attachment: scroll !important;
}

.page-heading--repair-home::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at 86% 14%, rgba(24, 183, 233, 0.16), transparent 27rem),
    linear-gradient(90deg, rgba(2, 24, 39, 0.93) 0%, rgba(3, 35, 56, 0.84) 48%, rgba(3, 31, 49, 0.68) 100%);
  content: "";
}

.page-heading--repair-home::after {
  z-index: 0;
  opacity: 0.48;
}

.page-heading--repair-home .page-heading-inner,
.page-heading--services-home .page-heading-inner {
  z-index: 1;
  padding-block: clamp(2.2rem, 5vw, 4.35rem);
}

.page-heading--repair-home .breadcrumbs,
.page-heading--services-home .breadcrumbs {
  margin-bottom: clamp(1.5rem, 3vw, 2.35rem);
  color: #d2e7f0;
}

.page-heading--repair-home .repair-hero-layout {
  grid-template-columns: minmax(0, 1.22fr) minmax(21rem, 0.78fr);
  align-items: center;
  gap: clamp(1.6rem, 4vw, 4rem);
}

.page-heading--repair-home .repair-hero-copy,
.page-heading--services-home .services-hero-copy {
  display: flex;
  max-width: 55rem;
  align-items: flex-start;
  flex-direction: column;
  gap: clamp(0.75rem, 1.7vw, 1.05rem);
}

.page-heading--repair-home .repair-hero-copy .page-kicker {
  margin: 0;
}

.page-reparation-pc-a-domicile .page-heading--repair-home h1, .page-heading--repair-home .repair-hero-card h2,
.page-services-informatiques .page-heading--services-home h1, .page-heading--services-home .services-hero-card h2 {
  font-family: Montserrat, sans-serif;
  font-weight: 850;
}

.page-heading--repair-home h1 {
  max-width: 53rem;
  font-size: clamp(2.45rem, 3.65vw, 3.55rem);
  line-height: 1.01;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.page-heading--repair-home .repair-hero-zone {
  margin: 0;
  color: #8edff7;
  font-family: Montserrat, sans-serif;
  font-size: clamp(0.9rem, 1.35vw, 1.08rem);
  font-weight: 760;
  line-height: 1.45;
}

.page-heading--repair-home .repair-hero-zone em {
  font-style: italic;
}

.page-heading--repair-home .page-heading-summary {
  max-width: 48rem;
  margin: 0;
  color: #e2eef4;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.62;
}

.page-heading--repair-home .ai-text-disclosure,
.page-heading--services-home .ai-text-disclosure {
  margin-top: 0.1rem;
  color: #d3e5ed;
}

.repair-hero-mobile-call {
  display: none;
}

.page-heading--repair-home .repair-hero-card,
.page-heading--services-home .services-hero-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 0;
  align-self: center;
  flex-direction: column;
  padding: clamp(1.15rem, 2.2vw, 1.55rem);
  background: linear-gradient(160deg, rgba(7, 55, 83, 0.97), rgba(3, 28, 45, 0.99));
  border-color: rgba(143, 222, 247, 0.24);
  border-radius: 1.5rem;
  box-shadow: 0 1.6rem 4rem rgba(2, 22, 36, 0.34);
}



.page-heading--repair-home .repair-hero-card h2 {
  max-width: 21rem;
  margin: 0.1rem 0 0.6rem;
  color: white;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1.16;
  letter-spacing: -0.025em;
}



.page-heading--repair-home .repair-hero-card .home-hero-signal,
.page-heading--services-home .services-hero-card .home-hero-signal {
  display: grid;
  grid-template-columns: 1.9rem minmax(0, 1fr);
  align-items: start;
  margin: 0;
  padding: 0.72rem 0;
  gap: 0.72rem;
  color: #e1eff5;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: clamp(0.8rem, 1vw, 0.88rem);
  line-height: 1.5;
}

.page-heading--repair-home .repair-hero-card .home-hero-signal::before,
.page-heading--services-home .services-hero-card .home-hero-signal::before {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  color: #77e0ba;
  background: rgba(119, 224, 186, 0.1);
  border: 1px solid rgba(119, 224, 186, 0.24);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
  content: "✓";
}









.page-heading--repair-home .repair-hero-card .home-hero-signal:nth-child(2) .repair-hero-signal-label {
  color: #ffe58b;
}

.page-heading--repair-home .repair-hero-card .home-hero-price {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--yellow);
  font-family: Montserrat, sans-serif;
  font-size: clamp(0.84rem, 1.05vw, 0.94rem);
  font-weight: 820;
  letter-spacing: -0.015em;
  line-height: 1.42;
}



.page-heading--repair-home .repair-hero-card .home-hero-price-line--rate {
  display: flex;
  align-items: baseline;
  gap: 0.28em;
}

.page-heading--repair-home .repair-hero-card .home-hero-price-unit {
  color: inherit;
  font-size: 0.68em;
  font-weight: 760;
  letter-spacing: 0.015em;
  line-height: 1;
  white-space: nowrap;
}



.page-heading--repair-home .repair-hero-card .home-hero-guarantee::before {
  content: "« ";
}

.page-heading--repair-home .repair-hero-card .home-hero-guarantee::after {
  content: " »";
}



.page-heading--repair-home .repair-hero-card .home-hero-signal:nth-child(3) em {
  color: white;
  font-style: normal;
  font-weight: 720;
}

.page-heading--repair-home .repair-hero-card .page-heading-actions {
  margin-top: 0.8rem;
}

.page-heading--repair-home .repair-hero-card .home-hero-action-link,
.page-heading--services-home .services-hero-card .home-hero-action-link {
  position: relative;
  display: flex;
  min-height: 3.8rem;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 2.75rem 0.7rem 3.4rem;
  border-radius: 1rem;
  font-family: Montserrat, sans-serif;
  font-size: 0.8rem;
  font-weight: 820;
  line-height: 1.25;
  text-align: center;
}





.page-reparation-pc-a-domicile .repair-material-section::before {
  background: linear-gradient(90deg, var(--cyan), var(--yellow));
}

.page-reparation-pc-a-domicile .repair-material-section .home-repair-copy h2 {
  max-width: 46rem;
  margin-bottom: 0;
  color: var(--navy);
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.page-reparation-pc-a-domicile .repair-material-section .home-repair-issue-icon {
  color: var(--blue);
}

.page-reparation-pc-a-domicile .repair-material-section .home-repair-issue-content p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.65;
}

@media (max-width: 70rem) {
  .page-heading--repair-home h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.45rem);
  }
}

@media (max-width: 52rem) {
  .page-heading--repair-home {
    min-height: 0;
  }

  .page-heading--repair-home .repair-hero-layout {
    grid-template-columns: 1fr;
  }

  .page-heading--repair-home .repair-hero-card {
    width: min(100%, 34rem);
  }
}

@media (max-width: 44rem) {
  .page-heading--repair-home {
    background-position: 45% center !important;
  }

  .page-heading--repair-home::before {
    background: linear-gradient(180deg, rgba(2, 24, 39, 0.9) 0%, rgba(3, 35, 56, 0.82) 55%, rgba(3, 31, 49, 0.72) 100%);
  }

  .page-heading--repair-home .page-heading-inner {
    padding-block: 1.2rem 1.45rem;
  }

  .page-heading--repair-home .breadcrumbs,
  .page-heading--services-home .breadcrumbs {
    margin-bottom: 1rem;
    font-size: 0.7rem;
  }

  .page-heading--repair-home .repair-hero-layout {
    gap: 1rem;
  }

  .page-heading--repair-home .repair-hero-copy {
    gap: 0.7rem;
  }

  .page-heading--repair-home h1,
  .page-heading--services-home h1 {
    font-size: clamp(2rem, 9.2vw, 2.45rem);
    line-height: 1.03;
  }

  .page-heading--repair-home .repair-hero-zone {
    font-size: 0.86rem;
  }

  .page-heading--repair-home .page-heading-summary,
  .page-heading--services-home .page-heading-summary {
    font-size: 0.9rem;
    line-height: 1.52;
  }

  .page-heading--repair-home .ai-text-disclosure {
    font-size: 0.67rem;
  }

  .repair-hero-mobile-call,
  .services-hero-mobile-call {
    display: flex;
    width: 100%;
    min-height: 3.25rem;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 0.15rem;
    font-size: 0.76rem;
    text-align: center;
  }

  .page-heading--repair-home .repair-hero-card,
  .page-heading--services-home .services-hero-card {
    padding: 1rem;
    border-radius: 1.1rem;
  }

  .page-heading--repair-home .repair-hero-card h2,
  .route-home .home-hero-card h2,
  .page-heading--services-home .services-hero-card h2 {
    max-width: none;
    font-size: 1.3rem;
  }

  .page-heading--repair-home .repair-hero-card .home-hero-signal,
  .route-home .home-hero-card .home-hero-signal,
  .page-heading--services-home .services-hero-card .home-hero-signal {
    grid-template-columns: 1.75rem minmax(0, 1fr);
    padding: 0.62rem 0;
    gap: 0.62rem;
    font-size: 0.8rem;
  }

  .page-heading--repair-home .repair-hero-card .home-hero-signal:nth-child(2) {
    padding: 0.75rem;
  }

  .page-heading--repair-home .repair-hero-card .home-hero-price-line,
  .page-heading--repair-home .repair-hero-card .home-hero-price-line--rate {
    display: block;
    white-space: normal;
  }

  .page-heading--repair-home .repair-hero-card .page-heading-actions {
    display: none;
  }

  .page-reparation-pc-a-domicile .repair-material-section .home-repair-copy h2 {
    font-size: clamp(1.5rem, 7.3vw, 1.9rem);
  }
}

/* Direction visuelle BIW appliquée aux contenus intérieurs : le header reste
   strictement commun à toutes les pages, avec l'accueil comme référence. */
body:not(.route-home) {
  background: #f7fbfe;
  font-family: var(--font-sans);
}

body:not(.route-home) h1,
body:not(.route-home) h2,
body:not(.route-home) h3,
body:not(.route-home) h4,
body:not(.route-home) h5,
body:not(.route-home) h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.028em;
}

.ai-text-disclosure-wrap {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0.6rem auto 0;
}

.ai-text-disclosure-wrap .ai-text-disclosure {
  min-height: 1.55rem;
  margin: 0;
  color: #587083;
  font-size: 0.69rem;
}

.ai-text-disclosure-wrap .ai-text-disclosure > img {
  width: 1.15rem !important;
  height: 1.15rem !important;
  margin: 0 !important;
  object-fit: contain;
}

.ai-text-disclosure-wrap .ai-text-disclosure:hover,
.ai-text-disclosure-wrap .ai-text-disclosure:focus-visible {
  color: #004b87;
}

/* Le lien de transparence reste lisible sur les visuels des pages de vente. */
.page-heading--sales .ai-text-disclosure-wrap .ai-text-disclosure,
.page-heading--sales .ai-text-disclosure-wrap .ai-text-disclosure:hover,
.page-heading--sales .ai-text-disclosure-wrap .ai-text-disclosure:focus-visible {
  color: #fff;
  text-decoration: none !important;
}

@media (max-width: 44rem) {
  .ai-text-disclosure-wrap {
    width: calc(100% - 1.5rem);
    margin-top: 0.4rem;
  }
}

/* Gabarits éditoriaux : même grammaire BIW pour le blog, les articles et les
   dossiers, avec les contenus et médias Chevalier. */
.route-blog,
.route-article,
.route-tag {
  background: #f7fbfe;
}

:is(.editorial-visual-heading, .page-heading--tag) {
  overflow: visible;
  color: var(--ink);
  background: linear-gradient(145deg, #f8fcfe, #eaf7fc);
}

:is(.editorial-visual-heading, .page-heading--tag)::after {
  display: none;
}

:is(.editorial-visual-heading, .page-heading--tag) .page-heading-inner {
  width: min(calc(100% - 2rem), 1200px);
  padding: clamp(2rem, 4vw, 3.25rem) 0 0;
}

:is(.editorial-visual-heading, .page-heading--tag) .breadcrumbs {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 clamp(1.35rem, 3vw, 2.1rem);
  padding: 0.48rem 0.78rem;
  color: #5c7486;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 75, 135, 0.12);
  border-radius: var(--radius-pill);
  box-shadow: 0 0.8rem 1.8rem -1.65rem rgba(0, 47, 85, 0.28);
}

:is(.editorial-visual-heading, .page-heading--tag) .breadcrumbs a {
  color: var(--navy-2);
}

:is(.editorial-visual-heading, .page-heading--tag) .breadcrumbs a + span::before,
:is(.editorial-visual-heading, .page-heading--tag) .breadcrumbs a + a::before,
:is(.editorial-visual-heading, .page-heading--tag) .breadcrumbs span + span::before {
  color: #88a7b7;
}

.editorial-visual-hero,
.page-heading--tag .tag-hero-layout {
  display: grid;
  overflow: hidden;
  min-height: 28rem;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 1fr);
  background: #fff;
  border: 1px solid rgba(0, 75, 135, 0.14);
  border-left: 0.25rem solid #087eb5;
  border-radius: 1.45rem;
  box-shadow: 0 1.8rem 3.8rem -3rem rgba(0, 47, 85, 0.52);
}

.editorial-visual-hero .page-heading-copy,
.page-heading--tag .tag-hero-layout .page-heading-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1.65rem, 4vw, 3.4rem);
  flex-direction: column;
}

.editorial-visual-heading .page-kicker,
.page-heading--tag .page-kicker {
  width: fit-content;
  margin-bottom: 0.75rem;
  padding: 0.36rem 0.65rem;
  color: #08618b;
  background: #f7fbfe;
  border: 1px solid rgba(0, 75, 135, 0.13);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
}

.editorial-visual-heading h1,
.page-heading--tag h1 {
  max-width: 37rem;
  margin-bottom: 0.55em;
  color: #16324a;
  font-family: var(--font-heading);
  font-size: clamp(2.55rem, 4.35vw, 4.45rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.editorial-visual-heading .page-heading-summary,
.page-heading--tag .page-heading-summary {
  max-width: 34rem;
  margin-bottom: 1.2rem;
  color: #526b7a;
  font-size: clamp(0.96rem, 1.35vw, 1.1rem);
  line-height: 1.58;
}

.editorial-visual-heading .article-byline {
  margin: -0.3rem 0 1rem;
  color: #476172;
  font-size: 0.82rem;
  font-weight: 730;
}



.editorial-visual-heading .page-heading-signals li,
.page-heading--tag .page-heading-signals li {
  display: inline-flex;
  min-height: 2.4rem;
  align-items: center;
  padding: 0.45rem 0.72rem;
  color: #244b61;
  background: #f9fcfe;
  border: 1px solid rgba(0, 75, 135, 0.14);
  border-radius: var(--radius-pill);
  box-shadow: none;
  font-size: 0.76rem;
  font-weight: 760;
}

.editorial-hero-action {
  margin-top: 1.35rem;
}

.editorial-hero-media,
.page-heading--tag .tag-hero-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 28rem;
  margin: 0;
  overflow: hidden;
  background: #063c60;
}

.editorial-hero-media::after,
.page-heading--tag .tag-hero-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(0, 47, 85, 0.72), transparent);
  content: "";
  pointer-events: none;
}

.editorial-hero-image,
.page-heading--tag .tag-hero-image {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
}

.route-article .editorial-visual-hero {
  min-height: 31rem;
}

.route-article .editorial-visual-heading h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
}

.route-article .editorial-hero-media,
.route-article .editorial-hero-image {
  min-height: 31rem;
}

.route-article .content-shell.article-template {
  padding-top: clamp(1.4rem, 3vw, 2.5rem);
}

.route-blog .content-shell.blog-index,
.route-tag .content-shell.tag-index {
  width: min(calc(100% - 2rem), 1200px);
  padding-top: clamp(1.4rem, 3vw, 2.5rem);
}

.route-blog .blog-overview,
.route-tag .collection-overview {
  background: #fff;
  border-color: rgba(0, 75, 135, 0.12);
  border-radius: 1.25rem;
  box-shadow: 0 1.4rem 3.1rem -2.75rem rgba(0, 47, 85, 0.45);
}

.route-blog .blog-discovery,
.route-blog .blog-collection,
.route-tag .tag-library,
.route-tag .tag-other-topics,
.route-tag .tag-related-content {
  border-color: rgba(0, 75, 135, 0.12);
  border-radius: 1.25rem;
  box-shadow: 0 1.4rem 3.1rem -2.8rem rgba(0, 47, 85, 0.43);
}

.route-blog .blog-card,
.route-tag .tag-library-card {
  border-color: rgba(0, 75, 135, 0.13);
  border-radius: 1rem;
  box-shadow: 0 1.25rem 2.8rem -2.6rem rgba(0, 47, 85, 0.37);
}

.route-blog .blog-card h3,
.route-tag .tag-library-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.18rem, 1.9vw, 1.45rem);
  font-weight: 700;
}

@media (max-width: 64rem) {
  .editorial-visual-hero,
  .page-heading--tag .tag-hero-layout {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .editorial-hero-media,
  .page-heading--tag .tag-hero-media,
  .editorial-hero-image,
  .page-heading--tag .tag-hero-image,
  .route-article .editorial-hero-media,
  .route-article .editorial-hero-image {
    min-height: 19rem;
  }

  .editorial-visual-hero .page-heading-copy,
  .page-heading--tag .tag-hero-layout .page-heading-copy {
    padding: clamp(1.5rem, 5vw, 2.4rem);
  }
}

@media (max-width: 44rem) {
  :is(.editorial-visual-heading, .page-heading--tag) .page-heading-inner {
    width: 100%;
    padding-top: 0;
  }

  :is(.editorial-visual-heading, .page-heading--tag) .breadcrumbs {
    margin: 0.75rem;
  }

  .editorial-visual-hero,
  .page-heading--tag .tag-hero-layout {
    border-right: 0;
    border-bottom: 0;
    border-left-width: 0.2rem;
    border-radius: 0;
  }

  .editorial-visual-heading h1,
  .page-heading--tag h1 {
    font-size: clamp(2.4rem, 11.8vw, 3.25rem);
  }

  .editorial-hero-media,
  .page-heading--tag .tag-hero-media,
  .editorial-hero-image,
  .page-heading--tag .tag-hero-image {
    min-height: 15rem;
  }

  .route-blog .content-shell.blog-index,
  .route-tag .content-shell.tag-index {
    width: 100%;
    padding-top: 0.8rem;
  }
}

:is(.page-heading--sales .sales-hero-card, .route-home .home-hero-card > .sales-hero-card) {
  border-color: rgba(143, 222, 247, 0.22);
  box-shadow: 0 1.25rem 3rem rgba(2, 26, 42, 0.24);
}

.sales-flow .page-jump {
  border-top: 0.22rem solid var(--cyan);
}

.page-jump-details > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  list-style: none;
}

.page-jump-details > summary::-webkit-details-marker {
  display: none;
}

.page-jump-details > summary .page-jump-title {
  margin-bottom: 0;
}

.page-jump-summary-hint {
  display: none;
}

.page-jump-details > ol {
  margin-top: 0.8rem;
}

.sales-sections .sales-section {
  position: relative;
  border-top: 0.22rem solid rgba(8, 126, 181, 0.42);
}

.sales-sections .sales-section::after {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  color: var(--navy-2);
  background: rgba(24, 183, 233, 0.1);
  border: 1px solid rgba(8, 126, 181, 0.18);
  border-radius: 50%;
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  content: attr(data-section-index);
  pointer-events: none;
}

.sales-sections .sales-section :is(h2, .sales-section-heading-column .cc-block-title) {
  padding-right: 3rem;
}

:is(.sales-section-heading-column, .sales-section > .sales-section-intro) .cc-block-title::after,
.sales-section > .sales-section-intro h2::after {
  display: block;
  width: 3rem;
  height: 0.22rem;
  margin-top: 0.65rem;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: var(--radius-pill);
  content: "";
}

.sales-card-column > .cc-column {
  border-top: 0.2rem solid rgba(8, 126, 181, 0.3);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.sales-card-column .cc-icon-inner {
  display: inline-grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(145deg, #e8f7fc, #f5fbfd);
  border: 1px solid rgba(8, 126, 181, 0.16);
  border-radius: 0.9rem;
}

.sales-card-column .cc-block-title {
  margin-top: 0.15rem;
}

.sales-section--lead {
  border-top-color: var(--cyan) !important;
}

.route-home .home-flow--sales-visual .page-content > :is(
  .home-section--profile,
  .home-section--problem,
  .home-section--services-intro,
  .home-section--services,
  .home-section--editorial,
  .home-section--reviews,
  .home-section--faq,
  .home-process
) {
  border-top: 0.22rem solid rgba(8, 126, 181, 0.42);
}

.route-home .home-flow--sales-visual .page-content > :is(
  .home-section--profile,
  .home-section--problem,
  .home-section--services-intro,
  .home-section--services,
  .home-section--editorial,
  .home-section--reviews,
  .home-section--faq,
  .home-process
) :is(h2, .cc-block-title) {
  max-width: 50rem;
}

@media (hover: hover) and (pointer: fine) {
  .sales-card-column > .cc-column:hover {
    border-top-color: var(--cyan);
    box-shadow: 0 1.1rem 2.5rem rgba(11, 36, 53, 0.12);
    transform: translateY(-0.2rem);
  }
}

@media (min-width: 70.001rem) {
  .sales-flow .page-jump {
    position: sticky;
    z-index: 20;
    top: 5.65rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 0.75rem 2rem rgba(11, 36, 53, 0.1);
    backdrop-filter: blur(12px);
  }
}

@media (max-width: 52rem) {
  .route-home .home-flow--sales-visual .home-section--hero .home-hero-card {
    width: 100%;
  }

  .route-home .home-hero-card > .sales-hero-card {
    min-height: 0;
  }
}

@media (max-width: 44rem) {
  .page-jump-details > summary {
    min-height: 2.75rem;
    padding: 0.15rem 0.1rem;
    cursor: pointer;
  }

  .page-jump-summary-hint {
    display: inline-flex;
    min-width: 5.3rem;
    min-height: 2.15rem;
    align-items: center;
    justify-content: center;
    padding-inline: 0.7rem;
    color: var(--navy-2);
    background: var(--mist);
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    font-size: 0.68rem;
    font-weight: 780;
  }

  .page-jump-summary-hint::after {
    content: "Afficher";
  }

  .page-jump-details[open] .page-jump-summary-hint::after {
    content: "Masquer";
  }

  .page-jump-details > ol {
    margin-top: 0.65rem;
  }

  .sales-sections .sales-section::after {
    top: 0.7rem;
    right: 0.7rem;
    width: 2rem;
    height: 2rem;
    font-size: 0.62rem;
  }

  .sales-sections .sales-section :is(h2, .sales-section-heading-column .cc-block-title) {
    padding-right: 2.5rem;
  }

  .route-home .sales-hero-copy .home-hero-primary,
  .route-home .home-hero-card .home-hero-action-link {
    width: 100%;
  }

  .route-home .home-hero-card > .sales-hero-card {
    padding: 1.05rem;
    border-radius: 1.1rem;
  }





  .route-home .home-hero-card .home-hero-signal:nth-child(2) {
    padding: 0.75rem;
  }

  .route-home .home-hero-card .home-hero-price-line {
    white-space: normal;
  }

  .route-home .home-hero-card .home-hero-price-line.home-hero-price-line--rate {
    display: block;
    line-height: 1.3;
    white-space: normal;
  }

  .route-home .home-hero-card .home-hero-signal:nth-child(2) .home-hero-price {
    gap: 0.5rem;
  }

  .route-home .home-hero-card .home-hero-price-tax {
    font-size: 0.7rem;
  }

  .route-home .home-hero-card .home-hero-guarantee {
    margin-top: 0.7rem;
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .route-home .home-hero-card .home-hero-signal:nth-child(3) em {
    white-space: normal;
  }

  .route-home .home-hero-card .home-hero-action-link {
    min-height: 3.6rem;
    padding-inline: 3rem 2.4rem;
    font-size: 0.76rem;
  }
}

/* Règles responsives du système de mise en page Chevalier Company. */
@media (max-width: 35.999rem) {
  .cc-hide-xs {
    display: none !important;
  }
}

@media (min-width: 36rem) and (max-width: 47.999rem) {
  .cc-hide-sm {
    display: none !important;
  }
}

/* Accueil : composition éditoriale, FAQ progressive et zone d'intervention.
   Les réponses détaillées restent accessibles à la demande et les carrousels
   n'exposent jamais une navigation horizontale libre sur mobile. */
.route-home .home-editorial-flow {
  display: grid;
  width: min(calc(100% - 2rem), var(--content));
  min-width: 0;
  gap: clamp(0.9rem, 2vw, 1.35rem);
  margin-inline: auto;
}

.route-home .home-surface {
  position: relative;
  min-width: 0;
  overflow: clip;
  padding: clamp(1.65rem, 3.3vw, 2.85rem) clamp(1rem, 3vw, 2.25rem);
  background: var(--paper);
  border: 1px solid rgba(8, 126, 181, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: 0 1.35rem 3rem -2.5rem rgba(4, 37, 57, 0.34);
}

.route-home .home-surface::before {
  position: absolute;
  top: 0;
  right: auto;
  left: 0;
  width: clamp(5.5rem, 13vw, 9rem);
  height: 0.2rem;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 0 0 var(--radius-pill) 0;
  content: "";
}

.home-story-block {
  display: grid;
  grid-template-columns: minmax(18rem, 24rem) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  background:
    radial-gradient(circle at 15% 10%, rgba(24, 183, 233, 0.12), transparent 23rem),
    var(--paper) !important;
}

.route-home .home-story-copy h2,
.route-home .home-repair-copy h2,
.route-home .home-section-heading h2 {
  max-width: 46rem;
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.06;
}

.home-story-biography {
  display: grid;
  max-width: 43rem;
  gap: 0.7rem;
  margin: 1rem 0 1.3rem;
}

.home-story-biography p,
.home-repair-description p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(0.94rem, 1.2vw, 1.03rem);
  line-height: 1.68;
}

.home-story-biography a {
  color: var(--navy-2);
  font-weight: 800;
}

.home-inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.15rem;
  margin-top: 1.35rem;
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--navy-2);
  font-family: Montserrat, sans-serif;
  font-size: 0.84rem;
  font-weight: 820;
  text-decoration: none;
}

.home-text-link span {
  transition: transform 180ms ease;
}

.home-text-link:hover span {
  transform: translateX(0.2rem);
}

.home-story-media {
  position: relative;
  overflow: hidden;
  width: min(88%, 20rem);
  margin: 0;
  justify-self: center;
  align-self: center;
  background: var(--navy);
  border-radius: calc(var(--radius-lg) - 0.25rem);
  box-shadow: 0 1.2rem 2.8rem -1.8rem rgba(4, 37, 57, 0.42);
}

.home-story-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.home-story-media figcaption {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  left: 0.85rem;
  display: grid;
  gap: 0.12rem;
  padding: 0.82rem 0.9rem;
  color: #dcebf2;
  background: rgba(3, 31, 49, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.85rem;
  backdrop-filter: blur(10px);
}

.home-story-media figcaption strong {
  color: white;
  font-family: Montserrat, sans-serif;
  font-size: 0.9rem;
}

.home-story-media figcaption span {
  font-size: 0.73rem;
  line-height: 1.45;
}

.home-repair-section {
  background:
    radial-gradient(circle at 91% 8%, rgba(24, 183, 233, 0.13), transparent 27rem),
    linear-gradient(155deg, var(--paper) 0%, #f7fbfd 100%) !important;
}

.home-repair-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.56fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-bottom: clamp(1.3rem, 3vw, 2.15rem);
  padding-bottom: clamp(1.3rem, 3vw, 2.15rem);
  border-bottom: 1px solid var(--line);
}

.home-repair-description {
  display: grid;
  max-width: 48rem;
  gap: 0.7rem;
  margin-top: 1rem;
}

.home-repair-description strong {
  color: var(--navy);
}

.home-repair-media,
.repair-story-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--mist);
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius-lg) - 0.25rem);
  box-shadow: var(--shadow-lg);
}

.home-repair-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.home-repair-media img {
  width: 100%;
  height: clamp(20rem, 34vw, 29rem);
  object-fit: cover;
  object-position: center;
}

.home-repair-issues {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: clamp(0.7rem, 1.8vw, 1.05rem);
}

.home-repair-issues-column {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: clamp(0.7rem, 1.8vw, 1.05rem);
}

.home-repair-issue {
  overflow: clip;
  min-width: 0;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 0.45rem 1.3rem rgba(11, 36, 53, 0.045);
}

.home-repair-issue > summary {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.8rem 0.9rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.home-repair-issue > summary::-webkit-details-marker {
  display: none;
}

.home-repair-issue > summary:focus-visible {
  outline: 3px solid rgba(0, 133, 189, 0.28);
  outline-offset: -3px;
}

.home-repair-issue-title {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
  font-family: Montserrat, sans-serif;
  font-size: clamp(0.82rem, 1.15vw, 0.96rem);
  font-weight: 820;
  line-height: 1.3;
}

.home-repair-issue-icon {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  flex: 0 0 auto;
  place-items: center;
  background: #e6f6fb;
  border: 1px solid #c7e9f4;
  border-radius: 0.78rem;
  font-size: 1rem;
}

.home-repair-toggle {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--paper);
  background: var(--navy-2);
  border-radius: 50%;
}

.home-repair-toggle::after {
  content: "+";
  font-size: 1.05rem;
  font-weight: 600;
}

.home-repair-issue[open] {
  background: var(--paper);
  border-color: #a9d9e8;
}

.home-repair-issue[open] > summary {
  background: linear-gradient(145deg, #eef8fb, #f8fcfd);
  border-bottom: 1px solid var(--line);
}

.home-repair-issue[open] .home-repair-toggle::after {
  content: "−";
}

.home-repair-issue-content {
  padding: 0.95rem 1rem 1rem 1.25rem;
}

.home-repair-issue-content ul {
  display: grid;
  gap: 0.42rem;
  margin: 0;
  padding-left: 1.05rem;
}

.home-repair-issue-content li {
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.55;
}

.home-repair-issue-content li::marker {
  color: var(--blue);
}

.home-section-heading,
.repair-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(17rem, 0.58fr);
  align-items: end;
  gap: clamp(1rem, 4vw, 3.5rem);
  margin-bottom: clamp(1.15rem, 3vw, 2rem);
}

.home-section-heading > p {
  max-width: 33rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.65;
}

.home-section-heading--services {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 0.8rem;
}

.home-section-heading--services > p {
  max-width: 68ch;
  font-size: clamp(0.94rem, 1.25vw, 1.04rem);
}

.home-carousel {
  --home-carousel-gap: clamp(0.72rem, 1.6vw, 1.05rem);
  min-width: 0;
}

.home-carousel-toolbar {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  margin-bottom: 0.6rem;
}

.home-carousel-status {
  min-width: 4.8rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 760;
  text-align: right;
}

.home-carousel-buttons {
  display: flex;
  gap: 0.45rem;
}

.home-carousel-buttons button {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  place-items: center;
  color: var(--paper);
  background: var(--navy-2);
  border: 1px solid var(--navy-2);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.05rem;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.home-carousel-buttons button:hover:not(:disabled) {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-0.1rem);
}

.home-carousel-buttons button:disabled {
  color: #8297a3;
  background: #e8f0f3;
  border-color: var(--line);
  cursor: default;
}

.home-carousel-viewport {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  outline-offset: 0.28rem;
}

.home-carousel-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  align-items: stretch;
  gap: var(--home-carousel-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}

.js .home-carousel-track {
  display: flex;
  grid-template-columns: none;
  will-change: transform;
  transition: transform 360ms cubic-bezier(0.22, 0.7, 0.24, 1);
}

.js .home-carousel-track > [data-carousel-slide] {
  min-width: 0;
  flex: 0 0 auto;
}

.home-service-card,
.home-advice-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  background: #f8fbfc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.home-card-media {
  display: block;
  overflow: hidden;
  color: inherit;
  background: var(--mist);
}

.home-card-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 320ms ease;
}

.home-service-card:hover .home-card-media img,
.home-advice-card:hover .home-card-media img {
  transform: scale(1.025);
}

.home-card-body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(0.95rem, 2vw, 1.25rem);
}

.home-card-index {
  margin: 0 0 0.45rem;
  color: var(--blue);
  font-family: Montserrat, sans-serif;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-card-body h3,
.home-confidence-grid h3,
.home-step-card h3 {
  margin-bottom: 0.55rem;
  color: var(--navy);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.2;
}

.home-card-body > p,
.home-confidence-grid article > p:last-child,
.home-step-card p {
  margin-bottom: 1rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.58;
}

.home-card-link {
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  color: var(--navy-2);
  font-size: 0.76rem;
  font-weight: 820;
  text-decoration: none;
}

.home-card-link:focus-visible,
.home-text-link:focus-visible,
.home-section-link:focus-visible {
  outline: 0.18rem solid var(--blue);
  outline-offset: 0.18rem;
  border-radius: 0.35rem;
}

.home-service-card:focus-within,
.home-advice-card:focus-within {
  border-color: rgba(8, 126, 181, 0.45);
  box-shadow: 0 1rem 2.1rem -1.45rem rgba(4, 37, 57, 0.4);
}

.home-carousel-dots {
  display: flex;
  min-height: 1rem;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.8rem;
}

.home-carousel-dots span {
  width: 0.42rem;
  height: 0.42rem;
  background: #b8cad3;
  border-radius: 50%;
  transition: width 180ms ease, background-color 180ms ease;
}

.home-carousel-dots span.is-active {
  width: 1.35rem;
  background: var(--blue);
  border-radius: var(--radius-pill);
}

.home-carousel.is-static .home-carousel-toolbar,
.home-carousel.is-static .home-carousel-dots {
  display: none;
}

.home-confidence-block {
  background:
    radial-gradient(circle at 88% 12%, rgba(24, 183, 233, 0.2), transparent 24rem),
    linear-gradient(145deg, var(--navy), #083c5c) !important;
}

.route-home .home-confidence-block::before {
  right: 0;
  width: 100%;
  background: var(--cyan);
  border-radius: 0;
}

.home-confidence-block .section-kicker,
.home-confidence-block .home-section-heading > p {
  color: #bfe9f6;
}

.home-confidence-block .home-section-heading h2 {
  color: white;
}

.home-confidence-grid,
.repair-confidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.8vw, 1.1rem);
}

.home-confidence-grid article {
  min-width: 0;
  padding: clamp(1rem, 2.2vw, 1.35rem);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-confidence-grid .home-card-index {
  color: #76d9f4;
}

.home-confidence-grid h3 {
  color: white;
}

.home-confidence-grid article > p:last-child {
  margin-bottom: 0;
  color: #d8e9f0;
}

.home-confidence-icon,
.repair-confidence-icon {
  display: grid;
  width: 2.85rem;
  height: 2.85rem;
  margin-bottom: 1rem;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 0.85rem;
}

.home-step-card {
  min-width: 0;
  padding: clamp(1rem, 2.2vw, 1.35rem);
  background: linear-gradient(145deg, #f5fafc, var(--paper));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 0.8rem 1.8rem -1.55rem rgba(4, 37, 57, 0.34);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.home-step-card > span {
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  margin-bottom: 1rem;
  place-items: center;
  color: var(--paper);
  background: linear-gradient(145deg, var(--blue), var(--cyan));
  border-radius: 50%;
  font-family: Montserrat, sans-serif;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.home-step-card p {
  margin-bottom: 0;
}

.home-review-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  margin: 0;
  padding: clamp(1rem, 2.2vw, 1.35rem);
  background: #f7fbfd;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 0.8rem 1.8rem -1.55rem rgba(4, 37, 57, 0.34);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.home-review-stars {
  margin-bottom: 0.8rem;
  color: #e3a800;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.home-review-recommendation {
  margin: 0 0 0.8rem;
  color: #0b63b6;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.home-review-card blockquote {
  flex: 1;
  margin: 0 0 1.15rem;
  color: var(--ink);
  font-size: 0.93rem;
  font-style: normal;
  line-height: 1.65;
}

.home-review-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home-review-card figcaption img {
  width: 2.7rem;
  height: 2.7rem;
  object-fit: cover;
  border: 2px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

.home-review-card .home-review-avatar {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 2.7rem;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--blue), var(--cyan));
  border: 2px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1;
}

.home-review-card figcaption span {
  display: grid;
  line-height: 1.25;
}

.home-review-card figcaption strong {
  color: var(--navy);
  font-size: 0.82rem;
}

.home-review-card figcaption small {
  margin-top: 0.18rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.home-advice-card time {
  margin-bottom: 0.5rem;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 780;
  text-transform: uppercase;
}

.home-advice-card h3 a {
  color: var(--navy);
  text-decoration: none;
}

.home-advice-card h3 a:hover {
  color: var(--blue);
}

.home-section-link {
  width: fit-content;
  margin-top: 0.9rem;
}

.home-support-flow {
  margin-top: clamp(1rem, 2.4vw, 1.6rem);
}

.home-faq-section {
  background:
    radial-gradient(circle at 94% 6%, rgba(24, 183, 233, 0.11), transparent 24rem),
    var(--paper) !important;
}

.home-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 0.8rem 1rem;
}

.home-faq-column {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.home-faq-item {
  overflow: clip;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.home-faq-item > summary {
  display: grid;
  min-height: 4.8rem;
  grid-template-columns: minmax(0, 1fr) 2.55rem;
  align-items: center;
  gap: 0.85rem;
  padding: 0.82rem 0.85rem 0.82rem 1rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.home-faq-item > summary::-webkit-details-marker,
.home-zone-communes > summary::-webkit-details-marker {
  display: none;
}

.home-faq-item > summary:focus-visible,
.home-zone-communes > summary:focus-visible {
  outline: 0.18rem solid var(--cyan);
  outline-offset: -0.18rem;
}

.home-faq-question {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.82rem, 1.15vw, 0.92rem);
  font-weight: 810;
  line-height: 1.4;
}

.home-faq-toggle,
.home-zone-toggle {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 50%;
}

.home-faq-toggle::after,
.home-zone-toggle::after {
  font-size: 1.18rem;
  font-weight: 750;
  content: "+";
}

.home-faq-item[open] {
  border-color: rgba(8, 126, 181, 0.42);
  box-shadow: 0 0.55rem 1.5rem rgba(11, 36, 53, 0.07);
}

.home-faq-item[open] > summary {
  background: linear-gradient(145deg, #edf8fc, #f8fcfd);
  border-bottom: 1px solid var(--line);
}

.home-faq-item[open] .home-faq-toggle::after,
.home-zone-communes[open] .home-zone-toggle::after {
  content: "−";
}

.home-faq-answer {
  padding: 0.9rem 1rem 1.05rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.7;
}

.home-faq-answer > :last-child {
  margin-bottom: 0;
}

.home-faq-answer ul {
  margin: 0.55rem 0 0.8rem;
  padding-left: 1.2rem;
}

.home-faq-answer li + li {
  margin-top: 0.25rem;
}

.home-faq-answer a {
  font-weight: 760;
}

.home-zone-section {
  scroll-margin-top: 7rem;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 216, 77, 0.18), transparent 22rem),
    linear-gradient(145deg, #f7fbfd, var(--mist)) !important;
}

.home-zone-layout {
  display: grid;
  grid-template-columns: minmax(20rem, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(1.1rem, 3vw, 2rem);
}

.home-zone-map {
  overflow: clip;
  margin: 0;
  background: var(--navy);
  border: 1px solid rgba(6, 43, 67, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.home-zone-map-frame {
  background: #e9f4f5;
}

.home-zone-map-image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.home-zone-map figcaption {
  margin: 0;
  padding: 0.78rem 0.9rem;
  color: rgba(255, 255, 255, 0.83);
  background: var(--navy);
  font-size: 0.72rem;
  line-height: 1.5;
}

.home-zone-content {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.home-zone-facts article,
.home-zone-facts .home-zone-fact {
  display: grid;
  align-content: start;
  padding: 0.9rem;
  gap: 0.28rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.home-zone-facts strong {
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.15;
}

.home-zone-facts span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.45;
}

.home-zone-intro {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

.home-zone-communes {
  overflow: clip;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.home-zone-communes > summary {
  display: flex;
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.72rem 0.72rem 0.72rem 1rem;
  gap: 1rem;
  color: var(--navy);
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 810;
  list-style: none;
}

.home-zone-toggle {
  width: 2.45rem;
  height: 2.45rem;
}

.home-zone-communes[open] > summary,
.repair-depth-library[open] > summary {
  background: #eef8fb;
  border-bottom: 1px solid var(--line);
}

.home-zone-regions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0.8rem;
  gap: 0.7rem;
}

.home-zone-regions article {
  padding: 0.82rem;
  background: #f7fbfd;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.home-zone-regions h3 {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-size: 0.78rem;
  line-height: 1.4;
}

.home-zone-regions p,
.home-zone-additional {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.6;
}

.home-zone-additional {
  padding: 0 1rem 1rem;
}

@media (hover: hover) and (pointer: fine) {
  .home-service-card:hover,
  .home-advice-card:hover,
  .home-review-card:hover,
  .home-step-card:hover {
    border-color: rgba(8, 126, 181, 0.32);
    box-shadow: 0 1rem 2.2rem -1.45rem rgba(4, 37, 57, 0.4);
  }

  .home-confidence-grid article:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(143, 222, 247, 0.28);
    box-shadow: 0 1rem 2rem -1.5rem rgba(2, 22, 36, 0.7);
  }

  .home-repair-issue:not([open]) > summary:hover,
  .home-faq-item:not([open]) > summary:hover,
  .home-zone-communes:not([open]) > summary:hover {
    background: #f0f8fb;
  }
}
@media (max-width: 64rem) {
  .home-story-block {
    grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1fr);
  }

  .home-section-heading,
  .repair-section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.75rem;
  }

  .home-section-heading > p {
    max-width: 45rem;
  }

  .home-zone-layout {
    grid-template-columns: 1fr;
  }

  .home-zone-map {
    width: min(100%, 48rem);
    justify-self: center;
  }
}

@media (max-width: 52rem) {
  .home-story-block {
    grid-template-columns: 1fr;
  }

  .home-repair-intro {
    grid-template-columns: 1fr;
  }

  .home-repair-media {
    width: min(100%, 35rem);
  }

  .home-repair-media img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .home-confidence-grid {
    grid-template-columns: 1fr;
  }

  .home-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 44rem) {
  .route-home .home-editorial-flow {
    width: calc(100% - 1rem);
    gap: 0.75rem;
  }

  .route-home .home-surface {
    padding: 1.2rem 0.85rem;
    border-radius: var(--radius);
    box-shadow: none;
  }

  .route-home .home-story-copy h2,
  .route-home .home-repair-copy h2,
  .route-home .home-section-heading h2 {
    font-size: clamp(1.5rem, 7.3vw, 1.9rem);
  }

  .home-story-media {
    width: min(72%, 16rem);
  }

  .home-story-biography p {
    font-size: 0.9rem;
  }

  .home-repair-description p {
    font-size: 0.9rem;
  }

  .home-repair-issues {
    grid-template-columns: 1fr;
  }

  .home-repair-issue > summary {
    min-height: 4rem;
    padding: 0.7rem;
  }

  .home-repair-issue-title {
    font-size: 0.82rem;
  }

  .home-repair-issue-icon {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.95rem;
  }

  .home-repair-issue-content {
    padding: 0.85rem 0.85rem 0.9rem 1rem;
  }

  .home-repair-issue-content li {
    font-size: 0.8rem;
  }

  .home-inline-actions,
  .repair-inline-actions {
    align-items: flex-start;
    flex-flow: column nowrap;
  }

  .home-inline-actions .button {
    width: 100%;
  }

  .home-story-media figcaption,
  .repair-story-media figcaption {
    right: 0.55rem;
    bottom: 0.55rem;
    left: 0.55rem;
    padding: 0.68rem 0.72rem;
  }

  .home-section-heading {
    margin-bottom: 1rem;
  }

  .home-section-heading > p {
    font-size: 0.84rem;
  }

  .home-carousel-toolbar {
    justify-content: space-between;
    margin-bottom: 0.65rem;
  }

  /* Sur téléphone, les cartes restent toutes dans le flux vertical : aucune
     carte de carrousel ne demeure hors du viewport, même si JavaScript est actif. */
  .js .route-home .home-carousel-track:not(.sales-article-carousel-track) {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    transform: none !important;
    will-change: auto;
  }

  .js .route-home .home-carousel-track:not(.sales-article-carousel-track) > [data-carousel-slide] {
    width: 100%;
    flex: 0 1 auto;
  }

  .home-carousel-status {
    text-align: left;
  }

  .home-card-body {
    padding: 0.9rem;
  }

  .home-card-body > p,
  .home-confidence-grid article > p:last-child,
  .home-step-card p {
    font-size: 0.8rem;
  }

  .home-confidence-grid article,
  .home-step-card,
  .home-review-card {
    padding: 1rem;
  }

  .home-confidence-grid {
    gap: 0.65rem;
  }

  .home-confidence-grid article {
    padding: 0.9rem;
  }

  .home-confidence-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.7rem;
    border-radius: 0.72rem;
  }

  .home-support-flow {
    margin-top: 0.75rem;
  }

  .home-faq-item > summary {
    min-height: 4.2rem;
    grid-template-columns: minmax(0, 1fr) 2.3rem;
    padding: 0.72rem;
  }

  .home-faq-question {
    font-size: 0.8rem;
  }

  .home-faq-toggle {
    width: 2.3rem;
    height: 2.3rem;
  }

  .home-faq-answer {
    padding: 0.82rem;
    font-size: 0.8rem;
  }

  .home-zone-facts,
  .home-zone-regions {
    grid-template-columns: 1fr;
  }

  .home-zone-facts article,
  .home-zone-facts .home-zone-fact {
    grid-template-columns: minmax(7rem, auto) minmax(0, 1fr);
    align-items: center;
  }

  .home-zone-communes > summary {
    min-height: 3.8rem;
    padding-left: 0.8rem;
    font-size: 0.76rem;
  }

  .home-zone-regions {
    padding: 0.65rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .js .home-carousel-track,
  .home-card-media img,
  .home-text-link span,
  .home-service-card,
  .home-advice-card,
  .home-review-card,
  .home-step-card,
  .home-confidence-grid article {
    transition: none;
  }
}

/* ==========================================================================
   Crédit de réalisation web et SEO
   Page de transparence BIW Agency, alignée sur les pages commerciales.
   ========================================================================== */

.footer-credit-link {
  color: #d8edf5;
  font-weight: 760;
  text-decoration-color: rgba(141, 221, 245, 0.72);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.footer-credit-link:visited {
  color: #d8edf5;
}

.footer-credit-link:hover {
  color: white;
  text-decoration-color: var(--yellow);
}

.footer-credit-link:focus-visible {
  color: white;
  outline: 2px solid var(--yellow);
  outline-offset: 0.22rem;
  border-radius: 0.15rem;
}

.page-heading--web-credit {
  background:
    radial-gradient(circle at 84% 18%, rgba(24, 183, 233, 0.25), transparent 24rem),
    radial-gradient(circle at 14% 112%, rgba(255, 211, 78, 0.11), transparent 22rem),
    linear-gradient(135deg, #05283e, #0a4f72 70%, #08688a);
}

.page-heading--web-credit .page-heading-inner {
  padding-block: clamp(2rem, 4.5vw, 3.75rem);
}

.web-credit-hero-layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(19rem, 0.75fr);
}

.web-credit-hero-copy .page-heading-summary {
  max-width: 48rem;
}

.web-credit-hero-card {
  background: rgba(3, 35, 56, 0.66);
}

.web-credit-hero-signals,
.contact-hero-channels {
  display: grid;
  margin-top: 1rem;
  gap: 0.55rem;
}

.web-credit-hero-signals p {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  align-items: start;
  margin: 0;
  padding: 0.65rem;
  gap: 0.65rem;
  color: #d8e9f1;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.72rem;
  font-size: 0.74rem;
  line-height: 1.42;
}

.web-credit-hero-signals p > span:first-child {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: #8ee1f6;
  background: rgba(24, 183, 233, 0.13);
  border-radius: 0.62rem;
}

.web-credit-hero-signals strong {
  display: block;
  margin-bottom: 0.1rem;
  color: white;
  font-size: 0.77rem;
}

.page-realisation-site-web-seo-biw-agency .sales-sections {
  gap: clamp(1rem, 2.2vw, 1.45rem);
}

.page-realisation-site-web-seo-biw-agency .sales-section {
  padding: clamp(1.6rem, 3.8vw, 3rem) clamp(1rem, 3vw, 2.25rem);
}

.web-credit-section-heading {
  max-width: 49rem;
  margin-bottom: clamp(1.2rem, 2.5vw, 1.75rem);
}

.web-credit-section-heading .section-kicker,
.web-credit-intro-copy .section-kicker,
.web-credit-cta .section-kicker {
  margin-bottom: 0.45rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.web-credit-section-heading h2,
.web-credit-intro-copy h2,
.web-credit-cta h2 {
  margin-bottom: 0.65rem;
  color: var(--navy);
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.web-credit-section-heading > p:last-child,
.web-credit-intro-copy p,
.web-credit-card p,
.web-credit-role-card p,
.web-credit-method-list p {
  color: var(--text-soft);
  line-height: 1.65;
}

.web-credit-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  align-items: start;
  gap: clamp(1.3rem, 3.5vw, 3rem);
}

.web-credit-intro-copy p:last-child {
  margin-bottom: 0;
}

.web-credit-facts {
  display: grid;
  overflow: hidden;
  margin: 0;
  background: #f5fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.web-credit-facts > div {
  padding: 0.95rem 1rem;
}

.web-credit-facts > div + div {
  border-top: 1px solid var(--line);
}

.web-credit-facts dt,
.web-credit-role-label {
  margin-bottom: 0.22rem;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 830;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.web-credit-facts dd {
  margin: 0;
  color: var(--navy-2);
  font-size: 0.86rem;
  font-weight: 680;
  line-height: 1.48;
}

.web-credit-card-grid,
.web-credit-role-grid,
.web-credit-method-list,
.web-credit-identity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.8vw, 1.15rem);
}

.web-credit-card,
.web-credit-role-card,
.web-credit-method-list li {
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.4rem);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 0.55rem 1.5rem rgba(11, 36, 53, 0.055);
}

.web-credit-card {
  border-top: 0.2rem solid rgba(8, 126, 181, 0.42);
}

.web-credit-icon {
  display: inline-grid;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 0.9rem;
  place-items: center;
  color: var(--blue);
  background: #e9f7fc;
  border: 1px solid rgba(8, 126, 181, 0.14);
  border-radius: 0.85rem;
  font-size: 1.05rem;
}

.web-credit-card h3,
.web-credit-role-card h3,
.web-credit-method-list h3 {
  margin-bottom: 0.45rem;
  color: var(--navy);
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  font-weight: 820;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.web-credit-card p,
.web-credit-role-card p,
.web-credit-method-list p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.web-credit-role-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.web-credit-role-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.web-credit-role-card .text-link {
  margin-top: auto;
  padding-top: 1rem;
}

.web-credit-role-card--biw {
  color: white;
  background: linear-gradient(145deg, #07344f, #0a5575);
  border-color: rgba(24, 183, 233, 0.28);
}

.web-credit-role-card--biw h3,
.web-credit-role-card--biw p {
  color: white;
}

.web-credit-role-card--biw .web-credit-role-label,
.web-credit-role-card--biw .text-link {
  color: #8ee1f6;
}

.web-credit-identity-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 16.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(1.25rem, 2.7vw, 1.85rem) clamp(1rem, 2vw, 1.35rem);
  color: var(--navy);
  background:
    radial-gradient(circle at 50% 0, rgba(255, 211, 78, 0.09), transparent 9rem),
    white;
  border: 1px solid rgba(222, 171, 29, 0.52);
  border-top-width: 0.2rem;
  border-radius: var(--radius);
  box-shadow: 0 0.65rem 1.6rem rgba(11, 36, 53, 0.06);
  text-align: center;
  text-decoration: none;
}

.web-credit-identity-media {
  display: grid;
  overflow: hidden;
  width: clamp(6.7rem, 9vw, 8rem);
  aspect-ratio: 1;
  margin-bottom: 1rem;
  padding: 0.42rem;
  place-items: center;
  background: #fffdf8;
  border: 1px solid rgba(222, 171, 29, 0.48);
  border-radius: 50%;
  box-shadow: 0 0.55rem 1.25rem rgba(11, 36, 53, 0.08);
}

.web-credit-identity-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.web-credit-identity-media--portrait {
  padding: 0.18rem;
}

.web-credit-identity-media--portrait img {
  object-fit: cover;
}

.web-credit-identity-copy {
  display: grid;
  max-width: 18rem;
  gap: 0.45rem;
}

.web-credit-identity-copy strong {
  color: var(--navy);
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  font-weight: 820;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.web-credit-identity-copy > span {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.web-credit-identity-arrow {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: var(--blue);
  background: #e9f7fc;
  border: 1px solid rgba(8, 126, 181, 0.14);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 850;
}

.web-credit-identity-card:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 0.24rem;
}

.web-credit-method-list {
  margin: 0;
  padding: 0;
  counter-reset: web-credit-step;
  list-style: none;
}

.web-credit-method-list li {
  position: relative;
  padding-top: 4rem;
  counter-increment: web-credit-step;
}

.web-credit-method-list li::before {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  color: white;
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 850;
  content: counter(web-credit-step, decimal-leading-zero);
}

.web-credit-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: clamp(1.25rem, 3.5vw, 2rem);
  gap: clamp(1rem, 3vw, 2rem);
  color: white;
  background: linear-gradient(135deg, #062b43, #0a5577);
  border: 1px solid rgba(24, 183, 233, 0.25);
  border-radius: var(--radius-lg);
}

.web-credit-cta .section-kicker {
  color: #8ee1f6;
}

.web-credit-cta h2,
.web-credit-cta p {
  color: white;
}

.web-credit-cta p:last-child {
  max-width: 48rem;
  margin-bottom: 0;
  color: #cee3ec;
}

.web-credit-cta-actions {
  display: grid;
  min-width: min(100%, 15rem);
  gap: 0.65rem;
}

.web-credit-cta-actions .button {
  width: 100%;
  justify-content: center;
  text-align: center;
}

@media (hover: hover) and (pointer: fine) {
  .web-credit-card,
  .web-credit-identity-card {
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  }

  .web-credit-card:hover {
    border-top-color: var(--cyan);
    box-shadow: 0 0.9rem 2rem rgba(11, 36, 53, 0.09);
    transform: translateY(-0.15rem);
  }

  .web-credit-identity-card:hover {
    border-color: rgba(222, 171, 29, 0.88);
    box-shadow: 0 0.95rem 2rem rgba(11, 36, 53, 0.1);
    transform: translateY(-0.15rem);
  }
}

@media (max-width: 64rem) {
  .web-credit-hero-layout,
  .web-credit-intro-grid,
  .web-credit-cta {
    grid-template-columns: minmax(0, 1fr);
  }

  .web-credit-hero-card {
    width: min(100%, 38rem);
  }

  .web-credit-card-grid,
  .web-credit-method-list,
  .web-credit-identity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .web-credit-identity-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc((100% - clamp(0.8rem, 1.8vw, 1.15rem)) / 2);
    justify-self: center;
  }

  .web-credit-cta-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
}

@media (max-width: 44rem) {
  .page-heading--web-credit .page-heading-inner {
    padding-block: 1.4rem 1.6rem;
  }

  .page-heading--web-credit h1 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .web-credit-hero-signals p {
    grid-template-columns: 1.8rem minmax(0, 1fr);
    padding: 0.58rem;
    gap: 0.55rem;
  }

  .web-credit-hero-signals p > span:first-child {
    width: 1.8rem;
    height: 1.8rem;
  }

  .web-credit-card-grid,
  .web-credit-role-grid,
  .web-credit-identity-grid,
  .web-credit-method-list,
  .web-credit-cta-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .web-credit-identity-card:last-child:nth-child(odd),
  .page-contact .contact-website-card:last-child:nth-child(odd) {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }

  .web-credit-section-heading h2,
  .web-credit-intro-copy h2,
  .web-credit-cta h2 {
    font-size: clamp(1.45rem, 7vw, 1.8rem);
  }

  .web-credit-cta-actions .button {
    min-height: 3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .web-credit-card,
  .web-credit-identity-card,
  .footer-credit-link {
    transition: none;
  }

  .web-credit-card:hover,
  .web-credit-identity-card:hover {
    transform: none;
  }
}

/* Page Réparation PC : même parcours éditorial que l’accueil.
   Les informations de décision restent visibles et le contenu historique
   complet est conservé dans une bibliothèque progressive. */
.page-reparation-pc-a-domicile .sales-sections .page-content,
.repair-editorial-flow {
  display: grid;
  min-width: 0;
  gap: clamp(1rem, 2.4vw, 1.6rem);
}

.page-reparation-pc-a-domicile :is(
  .repair-editorial-flow,
  .repair-depth-library,
  .repair-blog-section,
  .repair-faq-section
) {
  width: min(calc(100% - 2rem), var(--content));
  min-width: 0;
  margin-inline: auto;
}



.page-reparation-pc-a-domicile .repair-surface {
  position: relative;
  min-width: 0;
  overflow: clip;
  padding: clamp(1.7rem, 4vw, 3.25rem) clamp(1rem, 3vw, 2.25rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 0.7rem 2rem rgba(11, 36, 53, 0.045);
}

.page-reparation-pc-a-domicile .repair-surface::before,
.page-services-informatiques .services-surface::before,
.page-services-informatiques-maintenance-securite .maintenance-surface::before,
.page-services-informatiques-sauvegarde-recuperation .backup-surface::before,
.page-services-informatiques-conseil-installation .installation-surface::before,
.page-services-informatiques-cours-informatique-a-domicile .training-surface::before,
.page-services-informatiques-creation-site-internet-charleroi .webcreation-surface::before,
.page-tarifs-depannage-ordinateur .pricing-surface::before,
.page-contact .contact-surface::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.24rem;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  content: "";
}

.repair-story-block {
  display: grid;
  grid-template-columns: minmax(18rem, 24rem) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  background:
    radial-gradient(circle at 12% 8%, rgba(24, 183, 233, 0.15), transparent 25rem),
    var(--paper) !important;
}

.page-reparation-pc-a-domicile :is(
  .repair-story-block,
  .repair-faq-section
)::before {
  background: linear-gradient(90deg, var(--cyan), var(--yellow));
}

.repair-story-copy h2,
.repair-section-heading h2 {
  max-width: 47rem;
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.08;
}

.repair-story-lead {
  max-width: 46rem;
  margin: 1rem 0 1.2rem;
  color: var(--ink-soft);
  font-size: clamp(0.94rem, 1.2vw, 1.03rem);
  line-height: 1.7;
}

.repair-story-points {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.repair-story-points li {
  display: grid;
  min-width: 0;
  grid-template-columns: 2.55rem minmax(0, 1fr);
  align-items: start;
  gap: 0.85rem;
  padding: 0.78rem 0.9rem;
  background: #f4f9fb;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.repair-story-points li > span {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  color: white;
  background: var(--navy-2);
  border-radius: 50%;
  font-family: Montserrat, sans-serif;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.05em;
}



.repair-story-points p {
  display: grid;
  gap: 0.18rem;
  margin: 0;
}

.repair-story-points strong {
  color: var(--navy);
  font-family: Montserrat, sans-serif;
  font-size: 0.85rem;
  line-height: 1.35;
}

.repair-story-points small {
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.5;
}

.repair-inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.15rem;
  margin-top: 1.3rem;
}

.repair-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--navy-2);
  font-family: Montserrat, sans-serif;
  font-size: 0.82rem;
  font-weight: 820;
  text-decoration: none;
}

.repair-text-link span {
  transition: transform 180ms ease;
}

.repair-text-link:hover span {
  transform: translateX(0.2rem);
}



.repair-story-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.repair-story-media figcaption {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  left: 0.8rem;
  display: grid;
  gap: 0.12rem;
  padding: 0.78rem 0.85rem;
  color: #dcebf2;
  background: rgba(3, 31, 49, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.85rem;
  backdrop-filter: blur(10px);
}

.repair-story-media figcaption strong {
  color: white;
  font-family: Montserrat, sans-serif;
  font-size: 0.86rem;
}

.repair-story-media figcaption span {
  font-size: 0.7rem;
  line-height: 1.45;
}



.repair-section-heading > p {
  max-width: 33rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

.repair-confidence-block {
  background:
    radial-gradient(circle at 88% 12%, rgba(24, 183, 233, 0.2), transparent 24rem),
    linear-gradient(145deg, var(--navy), #083c5c) !important;
}

.page-reparation-pc-a-domicile .repair-confidence-block::before {
  background: var(--cyan);
}

.repair-confidence-block .section-kicker,
.repair-confidence-block .repair-section-heading > p {
  color: #bfe9f6;
}

.repair-confidence-block .repair-section-heading h2 {
  color: white;
}



.repair-confidence-grid article {
  min-width: 0;
  padding: clamp(1rem, 2.2vw, 1.35rem);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}



.repair-card-index {
  margin: 0 0 0.45rem;
  color: #76d9f4;
  font-family: Montserrat, sans-serif;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.repair-confidence-grid h3 {
  margin-bottom: 0.55rem;
  color: white;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.2;
}

.repair-confidence-grid article > p:last-child {
  margin: 0;
  color: #d8e9f0;
  font-size: 0.84rem;
  line-height: 1.58;
}

.repair-issues-block {
  background:
    radial-gradient(circle at 8% 4%, rgba(24, 183, 233, 0.11), transparent 24rem),
    linear-gradient(150deg, var(--paper), #f7fbfd) !important;
}

.repair-issue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.72rem, 1.8vw, 1.05rem);
}

.repair-issue-grid article {
  min-width: 0;
  padding: clamp(1rem, 2.1vw, 1.3rem);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 0.45rem 1.3rem rgba(11, 36, 53, 0.04);
}

.repair-issue-grid article > span {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.85rem;
  place-items: center;
  color: var(--navy-2);
  background: #e6f6fb;
  border: 1px solid #c7e9f4;
  border-radius: 0.82rem;
}

.repair-issue-grid article:nth-child(3n + 2) > span {
  background: #fff6cf;
  border-color: #f2d46b;
}

.repair-issue-grid h3 {
  margin-bottom: 0.45rem;
  color: var(--navy);
  font-size: clamp(0.96rem, 1.45vw, 1.12rem);
  line-height: 1.25;
}

.repair-issue-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.58;
}

.repair-depth-library {
  padding: 0 !important;
}

.repair-depth-library > summary {
  display: grid;
  min-height: 6.5rem;
  grid-template-columns: minmax(0, 1fr) 3rem;
  align-items: center;
  gap: 1rem;
  padding: clamp(1rem, 2.5vw, 1.4rem) clamp(1rem, 3vw, 1.5rem);
  cursor: pointer;
  list-style: none;
}

.repair-depth-library > summary::-webkit-details-marker {
  display: none;
}

.repair-depth-library > summary:focus-visible {
  outline: 0.2rem solid var(--cyan);
  outline-offset: -0.2rem;
}

.repair-depth-library-heading {
  display: grid;
  gap: 0.25rem;
}

.repair-depth-library-heading .section-kicker {
  margin: 0;
}

.repair-depth-library-heading strong {
  color: var(--navy);
  font-family: Montserrat, sans-serif;
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.3;
}

.repair-depth-library-heading small {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.5;
}

.repair-depth-library-action {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  color: white;
  background: var(--navy-2);
  border-radius: 50%;
}

.repair-depth-library-action::after {
  content: "+";
  font-size: 1.35rem;
  line-height: 1;
}



.repair-depth-library[open] .repair-depth-library-action::after {
  content: "−";
}

.repair-depth-library-content {
  display: grid;
  padding: clamp(0.8rem, 2vw, 1.25rem);
  gap: clamp(0.8rem, 2vw, 1.25rem);
}

.page-reparation-pc-a-domicile .repair-reference-section {
  width: 100%;
  margin: 0;
  scroll-margin-top: 7rem;
  border-radius: var(--radius);
  box-shadow: none;
}

.page-reparation-pc-a-domicile .repair-reference-section::after {
  display: none;
}

.page-reparation-pc-a-domicile .repair-reference-section :is(
  h2,
  .sales-section-heading-column .cc-block-title
) {
  padding-right: 0;
}

.page-reparation-pc-a-domicile .repair-reference-section#hometc {
  min-height: 0;
}

.page-reparation-pc-a-domicile .repair-blog-section,
.page-reparation-pc-a-domicile .repair-faq-section {
  margin: 0 auto;
}

.page-reparation-pc-a-domicile .repair-faq-section {
  background:
    radial-gradient(circle at 94% 6%, rgba(24, 183, 233, 0.11), transparent 24rem),
    var(--paper) !important;
}

.repair-faq-heading > div {
  order: 1;
}

.repair-faq-heading > p {
  order: 2;
}

.page-reparation-pc-a-domicile .repair-blog-section::after,
.page-reparation-pc-a-domicile .repair-faq-section::after {
  display: none;
}

.page-reparation-pc-a-domicile .repair-blog-section > .cc-section-inner,
.page-reparation-pc-a-domicile .repair-faq-section > .cc-section-inner {
  width: 100%;
  max-width: none;
  padding: 0;
}

@media (hover: hover) and (pointer: fine) {
  .repair-issue-grid article {
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  }

  .repair-issue-grid article:hover {
    border-color: #a9d9e8;
    box-shadow: 0 0.85rem 2rem rgba(11, 36, 53, 0.08);
    transform: translateY(-0.16rem);
  }

  .repair-depth-library:not([open]) > summary:hover {
    background: #f0f8fb;
  }
}

@media (max-width: 64rem) {
  .repair-story-block {
    grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1fr);
    gap: 1.5rem;
  }



  .repair-section-heading > p {
    max-width: 45rem;
  }

  .repair-issue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 52rem) {
  .repair-story-block {
    grid-template-columns: 1fr;
  }

  .repair-story-media {
    width: min(100%, 34rem);
    justify-self: center;
  }

  .repair-confidence-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 44rem) {
  .page-reparation-pc-a-domicile :is(
    .repair-editorial-flow,
    .repair-depth-library,
    .repair-blog-section,
    .repair-faq-section
  ) {
    width: calc(100% - 1rem);
  }

  .page-reparation-pc-a-domicile .repair-surface {
    padding: 1.35rem 0.85rem;
    border-radius: var(--radius);
    box-shadow: none;
  }

  .repair-story-copy h2,
  .repair-section-heading h2 {
    font-size: clamp(1.55rem, 8vw, 2.05rem);
  }

  .repair-story-lead {
    font-size: 0.9rem;
  }

  .repair-story-points li {
    grid-template-columns: 2.35rem minmax(0, 1fr);
    padding: 0.72rem;
    gap: 0.7rem;
  }

  .repair-story-points li > span {
    width: 2.15rem;
    height: 2.15rem;
  }

  .repair-story-points strong {
    font-size: 0.8rem;
  }

  .repair-story-points small {
    font-size: 0.73rem;
  }



  .repair-inline-actions .button {
    width: 100%;
  }



  .repair-section-heading {
    margin-bottom: 1rem;
  }

  .repair-section-heading > p {
    font-size: 0.84rem;
  }

  .repair-issue-grid {
    grid-template-columns: 1fr;
  }

  .repair-issue-grid article {
    padding: 0.95rem;
  }

  .repair-depth-library > summary {
    min-height: 5.8rem;
    grid-template-columns: minmax(0, 1fr) 2.5rem;
    padding: 0.9rem 0.8rem;
    gap: 0.7rem;
  }

  .repair-depth-library-action {
    width: 2.4rem;
    height: 2.4rem;
  }

  .repair-depth-library-heading small {
    font-size: 0.72rem;
  }

  .repair-depth-library-content {
    padding: 0.55rem;
  }

  .page-reparation-pc-a-domicile .repair-reference-section {
    padding: 1rem 0.7rem;
  }

  .page-reparation-pc-a-domicile .repair-blog-section,
  .page-reparation-pc-a-domicile .repair-faq-section {
    padding: 1.35rem 0.85rem;
  }
}


@media (min-width: 48rem) and (max-width: 61.999rem) {
  .cc-hide-md {
    display: none !important;
  }
}

@media (min-width: 62rem) and (max-width: 74.999rem) {
  .cc-hide-lg {
    display: none !important;
  }
}

@media (min-width: 75rem) {
  .cc-hide-xl {
    display: none !important;
  }
}

/* Articles : composition éditoriale alignée sur la référence BIW. */
.route-article {
  --article-shell-width: 1200px;
  --article-reading-width: 72ch;
  --article-shell-gutter: 1.5rem;
  --article-flow: clamp(1.05rem, 1.8vw, 1.45rem);
  --article-surface-inline: clamp(1.5rem, 3vw, 2.65rem);
  --article-surface-block: clamp(1.45rem, 2.6vw, 2.3rem);
  background: linear-gradient(180deg, #f1f8fc 0%, #f7fbfe 46%, #fff 100%);
}

.route-article .editorial-visual-heading {
  overflow: visible;
  padding-bottom: 0;
  background: transparent;
}

.route-article .editorial-visual-heading .page-heading-inner {
  width: min(var(--article-shell-width), calc(100% - 3rem));
  padding: clamp(1.5rem, 2.6vw, 2.35rem) 0 0;
}

.route-article .editorial-visual-heading .breadcrumbs {
  width: 100%;
  margin: 0 0 var(--article-flow);
}

.route-article .editorial-visual-hero {
  display: grid;
  min-height: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.35rem);
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.route-article .editorial-visual-hero .page-heading-copy {
  display: flex;
  min-height: clamp(22rem, 36vw, 29rem);
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1.75rem, 3vw, 2.4rem);
  overflow: hidden;
  flex-direction: column;
  background:
    radial-gradient(circle at 100% 0, rgba(0, 174, 239, 0.14), transparent 22rem),
    linear-gradient(145deg, #fff, #eef8fe);
  border: 1px solid rgba(0, 75, 135, 0.18);
  border-left: 0.25rem solid #087eb5;
  box-shadow: 0 1.5rem 4rem -2.9rem rgba(0, 47, 85, 0.42);
}

.route-article .editorial-visual-heading .page-kicker {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  margin: 0 0 1rem;
  padding: 0.38rem 0.65rem;
  gap: 0.5rem;
  color: #07527f;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 75, 135, 0.18);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.route-article .editorial-visual-heading .page-kicker i {
  color: var(--blue);
  font-size: 0.75rem;
}

.route-article .editorial-visual-heading h1 {
  max-width: min(100%, 22ch);
  margin: 0;
  color: #082f4f;
  font-size: clamp(2rem, 3.75vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.route-article .editorial-visual-heading h1::after {
  display: block;
  width: 4.25rem;
  height: 0.2rem;
  margin-top: 1.15rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  content: "";
}

.route-article .article-hero-dates {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 1rem 0 0.85rem;
  gap: 0.4rem 0.75rem;
  color: #40576c;
}

.route-article .article-hero-date {
  display: inline-flex;
  align-items: baseline;
  margin: 0;
  gap: 0.3rem;
  color: inherit;
  font-size: clamp(0.84rem, 1vw, 0.94rem);
  font-weight: 650;
  line-height: 1.45;
}

.route-article .article-hero-date + .article-hero-date::before {
  width: 0.3rem;
  height: 0.3rem;
  margin-right: 0.35rem;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
  flex: 0 0 auto;
}

.route-article .article-hero-date span {
  color: #587084;
}

.route-article .article-hero-date time {
  color: #123b58;
  font-weight: 800;
}

.route-article .article-hero-date--updated time {
  color: #005f91;
}

.route-article .article-reading-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 0.55rem;
  list-style: none;
}

.route-article .article-reading-meta li {
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
  padding: 0.48rem 0.75rem;
  gap: 0.45rem;
  color: #1e293b;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 104, 176, 0.18);
  border-radius: var(--radius-pill);
  box-shadow: 0 0.75rem 1.6rem -1.5rem rgba(15, 23, 42, 0.44);
  font-size: 0.86rem;
  font-weight: 800;
}

.route-article .article-reading-meta i {
  color: var(--blue);
  font-size: 0.82rem;
}

.route-article .editorial-visual-heading .ai-text-disclosure-wrap {
  width: auto;
  margin: 0.7rem 0 0;
}

.route-article .editorial-visual-heading .ai-text-disclosure:hover,
.route-article .editorial-visual-heading .ai-text-disclosure:focus-visible {
  color: #004b87;
}

.route-article .editorial-hero-media {
  width: 100%;
  min-height: clamp(22rem, 36vw, 29rem);
  height: clamp(22rem, 36vw, 29rem);
  overflow: hidden;
  background: #0f172a;
  border: 1px solid rgba(0, 75, 135, 0.18);
  border-radius: 1.25rem;
  box-shadow: 0 1.5rem 4rem -2.9rem rgba(0, 47, 85, 0.5);
}

.route-article .editorial-hero-media::after {
  display: none;
}

.route-article .editorial-hero-image {
  width: 100%;
  min-height: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.route-article .content-shell.article-template {
  width: min(var(--article-shell-width), calc(100% - 3rem));
  margin-inline: auto;
  padding: var(--article-flow) 0 clamp(2.75rem, 4vw, 3.5rem);
  gap: var(--article-flow);
}

.route-article .article-reader-tools {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0.62rem 0.68rem 0.72rem;
  overflow: visible;
  color: #173c58;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 104, 176, 0.16);
  border-radius: 1.125rem;
  box-shadow: 0 1.125rem 2.75rem -2.4rem rgba(5, 47, 82, 0.55);
  backdrop-filter: blur(0.75rem);
}

.route-article .article-reader-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 110;
  width: 100%;
  height: 0.2rem;
  padding: 0;
  pointer-events: none;
}

.route-article .article-reader-progress progress {
  display: block;
  width: 100%;
  height: 0.2rem;
  overflow: hidden;
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.route-article .article-reader-progress progress::-webkit-progress-bar {
  background: transparent;
}

.route-article .article-reader-progress progress::-webkit-progress-value,
.route-article .article-reader-progress progress::-moz-progress-bar {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
}

.route-article .article-reader-controls {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.42rem;
}

.route-article .reader-control,
.route-article .reader-select select {
  min-height: 2.75rem;
  padding: 0.48rem 0.75rem;
  color: #12476d;
  background: #fff;
  border: 1px solid rgba(0, 104, 176, 0.18);
  border-radius: var(--radius-pill);
  box-shadow: none;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}

.route-article .reader-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  cursor: pointer;
}

.route-article .reader-control--primary {
  justify-content: flex-start;
  margin-right: auto;
  padding-right: 0.9rem;
  color: #fff;
  background: #0068b0;
  border-color: #0068b0;
}

.route-article .reader-control--primary:hover,
.route-article .reader-control--primary:focus-visible {
  color: #fff;
  background: #004f88;
  border-color: #004f88;
  transform: none;
}

.route-article .reader-control--primary i {
  display: inline-grid;
  width: 1.5rem;
  height: 1.5rem;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 0.62rem;
}

.route-article .reader-select {
  display: inline-flex;
  min-width: 0;
  color: #173c58;
}

.route-article .reader-select select {
  padding: 0.42rem 1.55rem 0.42rem 0.65rem;
  cursor: pointer;
}

.route-article .reader-select--voice select {
  width: 7.8rem;
}

.route-article .reader-select--rate select {
  width: 4.55rem;
}

.route-article .reader-select select:hover,
.route-article .reader-select select:focus-visible,
.route-article .reader-control:not(.reader-control--primary):hover,
.route-article .reader-control:not(.reader-control--primary):focus-visible,
.route-article .reader-topics-toggle[aria-expanded="true"] {
  color: #004f88;
  background: #edf8ff;
  border-color: rgba(0, 104, 176, 0.38);
}

.route-article .reader-topics-toggle strong {
  display: inline-grid;
  min-width: 1.5rem;
  height: 1.5rem;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.7rem;
}

.route-article .article-topics-panel:not([hidden]) {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0.65rem;
  z-index: 12;
  display: grid;
  width: min(24rem, calc(100vw - 2rem));
  max-height: min(28rem, 70vh);
  padding: 1rem;
  overflow-y: auto;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid rgba(0, 104, 176, 0.2);
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

.route-article .article-topics-panel h3 {
  margin: 0;
  color: #082f4f;
  font-size: 1.15rem;
}

.route-article .article-topic-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  list-style: none;
}

.route-article .article-topic-list a {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.55rem 0.7rem;
  color: #12476d;
  background: #f5faff;
  border: 1px solid rgba(0, 104, 176, 0.14);
  border-radius: 0.75rem;
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
}

.route-article .article-toc {
  width: 100%;
  min-height: 0;
  padding: clamp(1rem, 1.8vw, 1.25rem);
  background: linear-gradient(145deg, #f8fcfe, #eef8fd);
  border: 1px solid rgba(0, 104, 176, 0.16);
  border-radius: 1.25rem;
  box-shadow: 0 1.25rem 3rem -2.75rem rgba(5, 47, 82, 0.48);
}

.route-article .article-toc .page-jump-title {
  display: flex;
  align-items: center;
  margin: 0 0 0.8rem;
  gap: 0.5rem;
  color: #082f4f;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 700;
  line-height: 1.25;
}

.route-article .article-toc .page-jump-title i {
  color: #057fbd;
  font-size: 0.9em;
}

.route-article .article-toc ol {
  counter-reset: article-toc;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  margin: 0;
  padding: 0;
  gap: 0.55rem;
  list-style: none;
}

.route-article .article-toc li {
  counter-increment: article-toc;
  min-width: 0;
}

.route-article .article-toc a {
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  padding: 0.65rem 0.75rem;
  gap: 0.65rem;
  color: #1e293b;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 104, 176, 0.13);
  border-radius: 1rem;
  box-shadow: 0 0.65rem 1.5rem -1.45rem rgba(15, 23, 42, 0.42);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.route-article .article-toc a::before {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #0068b0;
  border-radius: 50%;
  content: counter(article-toc, decimal-leading-zero);
  font-size: 0.7rem;
  font-weight: 900;
}

.route-article .article-toc a:hover,
.route-article .article-toc a:focus-visible,
.route-article .article-toc a[aria-current="location"] {
  color: #004f88;
  background: #fff;
  border-color: rgba(0, 104, 176, 0.36);
  transform: translateY(-1px);
}

.route-article .article-toc a[aria-current="location"]::before {
  color: #fff;
  background: #004f88;
}

.route-article .article-reading-layout {
  display: block;
}

.route-article .article-content-prose {
  width: 100%;
  min-width: 0;
  padding: var(--article-surface-block) var(--article-surface-inline);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 75, 135, 0.13);
  border-radius: 1.25rem;
  box-shadow: 0 1.5rem 4rem -3.1rem rgba(0, 47, 85, 0.46);
  font-size: clamp(1rem, 1.1vw, 1.075rem);
  line-height: 1.78;
}

.route-article .article-content-prose > .container,
.route-article .article-content-prose > .container > .container-inner,
.route-article .article-content-prose .article-details,
.route-article .article-content-prose [itemprop="articleBody"],
.route-article .article-content-prose .page-content,
.route-article .article-content-prose > .container > .container-inner > .row,
.route-article .article-content-prose #cc-page-region,
.route-article .article-content-prose .cc-layout-region,
.route-article .article-content-prose :where(.cc-section-inner, .cc-container-inner),
.route-article .article-content-prose :where(.cc-column, .cc-content-stack, .cc-block-wrap, .cc-block-content) {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.route-article .article-content-prose .article-header,
.route-article .article-content-prose .article-can-edit {
  display: none;
}

.route-article .article-content-prose .page-content {
  display: grid;
  min-width: 0;
  gap: 0;
}

.route-article .article-content-prose .site-section {
  width: min(100%, var(--article-reading-width));
  max-width: var(--article-reading-width);
  min-height: 0;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  background: transparent !important;
  border: 0;
  border-radius: 0;
  box-shadow: none !important;
}

.route-article .article-content-prose .site-section + .site-section {
  margin-top: clamp(1.2rem, 1.8vw, 1.45rem);
  padding-top: clamp(1.05rem, 1.5vw, 1.25rem);
  border-top: 1px solid rgba(0, 75, 135, 0.12);
}

.route-article .article-content-prose .cc-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14.5rem), 1fr));
  margin: 0;
  gap: 0.9rem;
}

.route-article .article-content-prose .cc-grid-cell {
  width: 100%;
  max-width: none;
  min-width: 0;
  padding: 0;
}

.route-article .article-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 0.75rem;
}

.route-article .article-resource-item,
.route-article .article-resource-item :where(.cc-block-wrap, .cc-block-wrap > div, .cc-button-wrap) {
  display: flex;
  width: 100%;
  min-width: 0;
  height: 100%;
}

.route-article .article-resource-item .cc-button {
  width: 100%;
  min-width: 0;
  min-height: 4rem;
  justify-content: center;
  padding: 0.72rem 1rem;
  white-space: normal;
  text-align: center;
}

.route-article .article-resource-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.route-article .article-content-prose :where(h2, h3, h4) {
  max-width: 100%;
  color: #082f4f;
  text-wrap: balance;
}

.route-article .article-content-prose h2 {
  margin: clamp(1.9rem, 3vw, 2.35rem) 0 0.82rem;
  font-size: clamp(1.55rem, 2.6vw, 2.18rem);
  line-height: 1.12;
}

.route-article .article-content-prose h2::after {
  display: block;
  width: 3rem;
  height: 0.18rem;
  margin-top: 0.65rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  content: "";
}

.route-article .article-content-prose h3 {
  margin: clamp(1.35rem, 2.2vw, 1.7rem) 0 0.55rem;
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  line-height: 1.25;
}

.route-article .article-content-prose h4 {
  margin: 1.2rem 0 0.48rem;
  color: #164b70;
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.35;
}

.route-article .article-content-prose .site-section:first-child h2:first-of-type {
  margin-top: 0;
}

.route-article .article-content-prose :where(p, ul, ol, blockquote, figure, iframe, .table-scroll, pre, hr) {
  margin-top: 0;
  margin-bottom: clamp(0.82rem, 1.2vw, 1rem);
}

.route-article .article-content-prose :where(ul, ol) {
  padding-left: clamp(1.2rem, 2vw, 1.5rem);
}

.route-article .article-content-prose li + li {
  margin-top: 0.42rem;
}

.route-article .article-content-prose blockquote {
  padding: 0.9rem 1.05rem;
  color: #244a63;
  background: #eef8fd;
  border-left: 0.22rem solid var(--cyan);
  border-radius: 0 0.8rem 0.8rem 0;
}

.route-article .article-content-prose :where(img, video, iframe) {
  height: auto;
  border-radius: 1rem;
}

.route-article .article-content-prose :where(.table-scroll, pre) {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}

.route-article .article-content-prose .cc-block-social-share,
.route-article .article-content-prose .pagenavigation {
  display: none;
}

.route-article .article-end-share {
  display: flex;
  width: min(100%, var(--article-reading-width));
  justify-content: center;
  margin-inline: auto;
}

.route-article .article-end-share-button {
  width: min(100%, 20rem);
  min-height: 3.35rem;
  border: 0;
  font: inherit;
}

.route-article .article-sequential-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.7vw, 1.15rem);
}

.route-article .article-sequential-link {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: clamp(9rem, 13vw, 10.75rem);
  grid-template-columns: minmax(7.5rem, 36%) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  padding: 0;
  color: #0b3556;
  background: #fff;
  border: 1px solid rgba(0, 75, 135, 0.16);
  border-radius: 1.45rem;
  box-shadow: 0 1.4rem 3.1rem -2.65rem rgba(5, 47, 82, 0.58);
  text-align: left;
  text-decoration: none;
}

.route-article .article-sequential-link--next:only-child {
  grid-column: 2;
}

.route-article .article-sequential-media {
  display: block;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  background: #dcecf6;
}

.route-article .article-sequential-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.route-article .article-sequential-copy {
  display: flex;
  min-width: 0;
  justify-content: center;
  padding: clamp(1rem, 2.2vw, 1.4rem);
  gap: 0.55rem;
  flex-direction: column;
}

.route-article .article-sequential-label {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 0.48rem;
  color: #0068b0;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  line-height: 1.25;
  text-transform: uppercase;
}

.route-article .article-sequential-link strong {
  color: #082f4f;
  font-family: var(--font-heading);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  font-weight: 700;
  line-height: 1.22;
  overflow-wrap: anywhere;
  text-transform: none;
  text-wrap: balance;
}

.route-article .article-sequential-link:hover,
.route-article .article-sequential-link:focus-visible {
  color: #082f4f;
  border-color: rgba(0, 104, 176, 0.48);
  box-shadow: 0 1.75rem 3.5rem -2.4rem rgba(0, 75, 135, 0.55);
  transform: translateY(-2px);
}

.route-article .article-sequential-link:hover .article-sequential-media img,
.route-article .article-sequential-link:focus-visible .article-sequential-media img {
  transform: scale(1.035);
}

@media (max-width: 68.75rem) {
  .route-article .editorial-visual-hero {
    grid-template-columns: 1fr;
  }

  .route-article .editorial-visual-hero .page-heading-copy {
    min-height: 0;
  }

  .route-article .editorial-hero-media,
  .route-article .editorial-hero-image {
    min-height: clamp(20rem, 52vw, 32rem);
    height: clamp(20rem, 52vw, 32rem);
  }
}

@media (max-width: 47.5rem) {
  .route-article {
    --article-shell-gutter: 0.75rem;
    --article-surface-inline: 0.95rem;
    --article-surface-block: 1.15rem;
  }

  .route-article .editorial-visual-heading .page-heading-inner,
  .route-article .content-shell.article-template {
    width: calc(100% - 1.5rem);
  }

  .route-article .editorial-visual-heading .page-heading-inner {
    padding-top: 0.75rem;
  }

  .route-article .editorial-visual-heading .breadcrumbs {
    width: 100%;
    margin: 0 0 0.85rem;
    flex-wrap: wrap;
    white-space: normal;
  }

  .route-article .editorial-visual-heading .breadcrumbs span {
    display: inline;
  }

  .route-article .editorial-visual-hero {
    gap: 0.9rem;
  }

  .route-article .editorial-visual-hero .page-heading-copy {
    padding: 1.3rem;
    border-left-width: 0.2rem;
  }

  .route-article .editorial-visual-heading h1 {
    font-size: clamp(2rem, 10vw, 2.55rem);
  }

  .route-article .article-hero-dates {
    display: grid;
    gap: 0.2rem;
  }

  .route-article .article-hero-date + .article-hero-date::before {
    display: none;
  }

  .route-article .editorial-hero-media,
  .route-article .editorial-hero-image {
    min-height: clamp(14rem, 62vw, 21rem);
    height: clamp(14rem, 62vw, 21rem);
  }

  .route-article .content-shell.article-template {
    padding-top: 0.85rem;
    padding-bottom: 7rem;
  }

  .route-article .article-reader-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-article .reader-control,
  .route-article .reader-select,
  .route-article .reader-select select {
    width: 100%;
  }

  .route-article .reader-control--primary {
    grid-column: 1 / -1;
    justify-content: center;
    margin-right: 0;
  }

  .route-article .article-topics-panel:not([hidden]) {
    right: 0;
    left: 0;
    width: 100%;
  }

  .route-article .article-toc ol,
  .route-article .article-sequential-navigation {
    grid-template-columns: 1fr;
  }

  .route-article .article-resource-grid {
    grid-template-columns: 1fr;
  }

  .route-article .article-resource-item:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .route-article .article-sequential-link,
  .route-article .article-sequential-link--next:only-child {
    min-height: 7.6rem;
    grid-column: 1;
    grid-template-columns: 7.5rem minmax(0, 1fr);
  }
}

@media (max-width: 24.375rem) {
  .route-article .editorial-visual-hero .page-heading-copy {
    padding: 1.15rem 1rem;
  }

  .route-article .article-reading-meta li {
    padding-inline: 0.65rem;
    font-size: 0.8rem;
  }

  .route-article .article-reader-tools,
  .route-article .article-toc {
    padding-inline: 0.55rem;
  }

  .route-article .article-sequential-link,
  .route-article .article-sequential-link--next:only-child {
    grid-template-columns: 5.8rem minmax(0, 1fr);
  }

  .route-article .article-sequential-copy {
    padding: 0.9rem;
  }
}

@media (forced-colors: active) {
  .route-article .article-hero-date + .article-hero-date::before {
    background: CanvasText;
  }

  .route-article .editorial-visual-hero .page-heading-copy,
  .route-article .editorial-hero-media,
  .route-article .article-reader-tools,
  .route-article .article-toc,
  .route-article .article-content-prose,
  .route-article .article-sequential-link {
    border: 2px solid CanvasText;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-topbar,
  .site-header,
  .site-footer,
  .cookie-banner,
  .article-ratings-social-share,
  .article-reader-tools,
  .article-end-share,
  .article-support-card {
    display: none !important;
  }

  body {
    color: black;
    background: var(--paper);
    font-size: 11pt;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}

/* Index du blog : composition éditoriale alignée sur la référence BIW. */
.route-blog .editorial-visual-heading,
.route-tag .page-heading--tag {
  padding-bottom: 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(0, 174, 239, 0.09), transparent 28rem),
    linear-gradient(180deg, #f9fcfe 0%, #f2f9fc 100%);
}

.route-blog .editorial-visual-heading .page-heading-inner,
.route-tag .page-heading--tag .page-heading-inner {
  width: min(calc(100% - 2rem), 1200px);
  padding: clamp(2rem, 4vw, 3.1rem) 0 0;
}

.route-blog .editorial-visual-heading .breadcrumbs {
  margin-bottom: clamp(1rem, 2vw, 1.35rem);
}

.route-blog .blog-editorial-hero {
  position: relative;
  min-height: 33rem;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  padding: clamp(0.9rem, 1.65vw, 1.35rem);
  gap: clamp(1rem, 2vw, 2rem);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 174, 239, 0.82), rgba(0, 174, 239, 0)) top left / 9.5rem 0.24rem no-repeat,
    linear-gradient(145deg, #ffffff 0%, #f9fcfe 55%, #edf8fd 100%);
  border: 1px solid rgba(0, 75, 135, 0.18);
  border-radius: clamp(1.15rem, 2.2vw, 1.75rem);
  box-shadow: 0 1.35rem 3.2rem -2.65rem rgba(0, 47, 85, 0.58);
}

.route-blog .blog-editorial-copy {
  display: flex;
  min-width: 0;
  min-height: 100%;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(0.25rem, 0.65vw, 0.65rem);
}

.route-blog .blog-editorial-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 2rem;
  align-items: center;
  margin: 0 0 0.6rem;
  padding: 0.34rem 0.7rem;
  gap: 0.48rem;
  color: #004b7f;
  background: #eaf7fd;
  border: 1px solid rgba(0, 90, 151, 0.2);
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 760;
  line-height: 1.25;
}

.route-blog .blog-editorial-badge i {
  color: var(--blue);
}

.route-blog .blog-editorial-kicker {
  margin: 0 0 0.4rem;
  color: #087b8b;
  font-size: clamp(0.72rem, 0.68rem + 0.16vw, 0.82rem);
  font-weight: 820;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.route-blog .blog-editorial-hero h1 {
  max-width: none;
  margin: 0;
  color: #07324f;
  font-size: clamp(2.35rem, 3.2vw, 3.65rem);
  line-height: 1.02;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.route-blog .blog-editorial-hero .page-heading-summary {
  max-width: 42rem;
  margin: clamp(0.65rem, 1.2vw, 0.9rem) 0 0;
  color: #35556b;
  font-size: clamp(0.96rem, 0.93rem + 0.16vw, 1.06rem);
  line-height: 1.55;
}

.route-blog .blog-editorial-footer {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-top: clamp(0.72rem, 1.35vw, 1rem);
  padding-top: clamp(0.68rem, 1.15vw, 0.85rem);
  gap: 0.65rem clamp(0.75rem, 1.6vw, 1.1rem);
  border-top: 1px solid rgba(0, 75, 135, 0.14);
}

.route-blog .blog-editorial-meta {
  display: flex;
  min-width: 0;
  margin: 0;
  flex-wrap: wrap;
  gap: 0.38rem clamp(0.7rem, 1.4vw, 1.15rem);
  color: #34566d;
  font-size: 0.82rem;
  line-height: 1.35;
}

.route-blog .blog-editorial-meta span {
  display: inline-flex;
  align-items: baseline;
  gap: 0.34rem;
}

.route-blog .blog-editorial-meta strong {
  color: #005a97;
  font-size: 1rem;
  font-weight: 820;
}

.route-blog .blog-editorial-cta,
.route-blog .blog-editorial-cta:visited {
  min-height: 2.75rem;
  margin: 0;
  flex: 0 0 auto;
  gap: 0.5rem;
  color: #fff;
  background: #005a97;
  border-color: #005a97;
  box-shadow: 0 0.85rem 1.65rem -1.15rem rgba(0, 65, 112, 0.78);
}

.route-blog .blog-editorial-cta:hover,
.route-blog .blog-editorial-cta:focus-visible,
.route-tag .tag-library-read:hover,
.route-tag .tag-library-read:focus-visible {
  color: #fff;
  background: #003f70;
  border-color: #003f70;
}

.route-blog .blog-editorial-copy .ai-text-disclosure-wrap {
  width: 100%;
  margin: auto 0 0;
  padding-top: clamp(0.75rem, 1.4vw, 1rem);
}

.route-blog .blog-editorial-copy .ai-text-disclosure-inner {
  width: 100%;
}

.route-blog .blog-editorial-copy .ai-text-disclosure {
  min-height: 1.55rem;
  color: #587083;
  font-size: 0.69rem;
}

.route-blog .blog-editorial-hero .editorial-hero-media {
  align-self: center;
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 75, 135, 0.2);
  border-radius: clamp(0.9rem, 1.7vw, 1.35rem);
  box-shadow: 0 1.4rem 2.7rem -2.25rem rgba(0, 47, 85, 0.72);
}

.route-blog .blog-editorial-hero .editorial-hero-media::after {
  display: none;
}

.route-blog .blog-editorial-hero .editorial-hero-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.route-blog .blog-editorial-hero figcaption {
  padding: 0.58rem 0.8rem 0.65rem;
  color: #47667a;
  background: #fff;
  border-top: 1px solid rgba(0, 75, 135, 0.12);
  font-size: 0.76rem;
  line-height: 1.4;
}

.route-blog .content-shell.blog-index {
  width: min(calc(100% - 2rem), 1200px);
  padding: clamp(1rem, 3vw, 2.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  gap: 0;
}

.route-blog .blog-collection {
  padding: clamp(1.25rem, 3vw, 2.25rem);
  background: #fff;
  border: 1px solid rgba(0, 75, 135, 0.14);
  border-radius: 1.25rem;
  box-shadow: 0 1.4rem 3.1rem -2.75rem rgba(0, 47, 85, 0.45);
}

.route-blog .blog-collection-header {
  margin-bottom: clamp(1rem, 2vw, 1.35rem);
}

.route-blog .blog-collection-header h2 {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 1.1rem;
  padding-bottom: 0.65rem;
  color: #073c61;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.7vw, 2.3rem);
  line-height: 1.08;
}

.route-blog .blog-collection-header h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3.1rem;
  height: 0.18rem;
  background: linear-gradient(90deg, #087eb5, #19b9e7);
  border-radius: var(--radius-pill);
  content: "";
}

.route-blog .blog-collection-lead {
  max-width: 67rem;
  margin: 0;
  color: #526b7a;
  font-size: 0.98rem;
  line-height: 1.65;
}

.route-blog .blog-collection-toolbar {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  margin: 0;
  padding: clamp(0.9rem, 2vw, 1.15rem);
  gap: 0.9rem 1rem;
  background: #f8fbfd;
  border: 1px solid rgba(0, 104, 176, 0.16);
  border-radius: calc(var(--radius) + 0.25rem);
  box-shadow: 0 1.1rem 2.6rem -2.125rem rgba(15, 23, 42, 0.48);
}

.route-blog .blog-search {
  display: grid;
  width: 100%;
  max-width: none;
  gap: 0.45rem;
}

.route-blog .blog-search label {
  display: inline-flex;
  align-items: center;
  margin: 0;
  gap: 0.45rem;
  color: #172a3a;
  font-size: 0.9rem;
  font-weight: 820;
}

.route-blog .blog-search label i {
  color: var(--blue);
}

.route-blog .blog-search input {
  width: 100%;
  min-height: 3rem;
  padding: 0.72rem 0.85rem;
  color: #172a3a;
  background: #fff;
  border: 1px solid #cbdbe4;
  border-radius: var(--radius);
}

.route-blog .blog-topic-directory {
  margin: 0 0 1.2rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 104, 176, 0.16);
  border-radius: var(--radius);
}

.route-blog .blog-topic-directory summary {
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.9rem;
  gap: 0.75rem;
  color: #172a3a;
  font-weight: 820;
  list-style: none;
  cursor: pointer;
}

.route-blog .blog-topic-directory summary::-webkit-details-marker {
  display: none;
}

.route-blog .blog-topic-directory summary span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.route-blog .blog-topic-directory summary span i {
  color: var(--blue);
}

.route-blog .blog-topic-directory-chevron {
  color: #526b7a;
  font-size: 0.78rem;
  transition: transform 180ms ease;
}

.route-blog .blog-topic-directory[open] .blog-topic-directory-chevron {
  transform: rotate(180deg);
}

.route-blog .blog-topic-directory summary:focus-visible,
.route-tag .tag-archive-details > summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: -3px;
}

.route-blog .blog-topic-directory nav {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  gap: 0.5rem;
}

.route-blog .blog-topic-directory-content {
  display: grid;
  padding: 0.15rem 0.9rem 0.9rem;
  gap: 0.9rem;
}

.route-blog .blog-collection-introduction {
  padding: 0.9rem;
  background: #f8fbfd;
  border: 1px solid rgba(0, 104, 176, 0.12);
  border-radius: var(--radius-sm);
}

.route-blog .blog-collection-introduction h3 {
  margin: 0 0 0.55rem;
  color: #073c61;
  font-size: 1rem;
}

.route-blog .blog-collection-intro {
  color: #526b7a;
  font-size: 0.9rem;
  line-height: 1.65;
}

.route-blog .blog-collection-intro > :last-child {
  margin-bottom: 0;
}

.route-blog .blog-topic-directory .tag-chip {
  min-height: 2.35rem;
  padding: 0.45rem 0.7rem;
  color: #005a97;
  background: #edf7fc;
  border: 0;
  font-size: 0.8rem;
  font-weight: 780;
}

.route-blog .blog-topic-directory .tag-chip:hover,
.route-blog .blog-topic-directory .tag-chip:focus-visible {
  color: #fff;
  background: #005a97;
}

.route-blog .blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.route-blog .blog-card {
  display: grid;
  min-height: 0;
  grid-template-rows: auto minmax(0, 1fr);
  background: #fff;
  border: 1px solid rgba(0, 75, 135, 0.14);
  border-radius: 1rem;
  box-shadow: 0 1.25rem 2.8rem -2.6rem rgba(0, 47, 85, 0.37);
}

.route-blog .blog-card-media {
  aspect-ratio: 16 / 9;
}

.route-blog .blog-card-body {
  display: grid;
  min-height: 9rem;
  grid-template-rows: minmax(0, 1fr) auto;
  padding: 1rem 1.05rem 1.15rem;
  gap: 0.8rem;
}

.route-blog .blog-card h3 {
  display: block;
  min-height: 0;
  max-height: 3.9em;
  margin: 0;
  overflow: hidden;
  color: #073c61;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  font-weight: 760;
  line-height: 1.3;
}

.route-blog .blog-card h3 a {
  color: #07547d;
}

.route-blog .blog-card h3 a:hover,
.route-blog .blog-card h3 a:focus-visible {
  color: #003f70;
}

.route-blog .blog-card .blog-card-date {
  align-self: end;
  margin: 0;
  padding-top: 0.65rem;
  color: #526b7a;
  border-top: 1px solid rgba(0, 75, 135, 0.1);
  font-size: 0.79rem;
  font-weight: 720;
}

.route-blog .blog-card .blog-card-date time {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: none;
}

.route-blog .blog-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.route-blog .blog-load-more {
  width: fit-content;
  min-width: min(100%, 15rem);
}

.js .route-blog .pagination-summary,
.js .route-blog .pagination {
  display: none;
}

@media (min-width: 51.3125rem) and (max-width: 64rem) {
  .route-blog .blog-editorial-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1rem;
  }

  .route-blog .blog-editorial-hero .editorial-hero-media,
  .route-blog .blog-editorial-hero .editorial-hero-image {
    min-height: 0;
  }

  .route-blog .blog-editorial-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 70rem) {
  .route-blog .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 51.25rem) {
  .route-blog .blog-editorial-hero {
    min-height: 47rem;
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0;
  }

  .route-blog .blog-editorial-copy {
    padding: clamp(1rem, 4vw, 1.4rem);
  }

  .route-blog .blog-editorial-footer {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .route-blog .blog-editorial-cta {
    justify-content: center;
  }

  .route-blog .blog-editorial-hero .editorial-hero-media {
    width: 100%;
    min-height: 0;
    border-width: 1px 0 0;
    border-radius: 0 0 clamp(1.15rem, 2.2vw, 1.75rem) clamp(1.15rem, 2.2vw, 1.75rem);
    box-shadow: none;
  }
}

@media (max-width: 47.5rem) {
  .route-blog .blog-topic-directory nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .route-blog .blog-topic-directory .tag-chip {
    flex: 0 0 auto;
  }
}

@media (max-width: 44rem) {
  .route-blog .editorial-visual-heading .breadcrumbs {
    margin-top: 1.5rem;
  }

  .route-blog .editorial-visual-heading .breadcrumbs span[aria-current="page"] {
    display: inline;
  }

  .route-blog .blog-editorial-hero {
    margin-inline: 0.75rem;
    border: 1px solid rgba(0, 75, 135, 0.18);
    border-radius: 1.15rem;
  }

  .route-blog .blog-editorial-hero h1 {
    font-size: clamp(2rem, 10.6vw, 2.75rem);
  }

  .route-blog .content-shell.blog-index {
    width: calc(100% - 1.5rem);
    padding-top: 0.75rem;
  }

  .route-blog .blog-collection {
    padding: 1rem;
    border-radius: 1.05rem;
  }

  .route-blog .blog-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .route-blog .blog-card-body {
    min-height: 8.25rem;
  }
}

@media (max-width: 32.5rem) {
  .route-blog .blog-editorial-copy {
    padding: 0.95rem;
  }

  .route-blog .blog-editorial-kicker {
    font-size: 0.66rem;
  }

  .route-blog .blog-editorial-hero .page-heading-summary {
    font-size: 0.91rem;
  }

  .route-blog .blog-editorial-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem 0.6rem;
    font-size: 0.76rem;
  }

  .route-blog .blog-editorial-hero figcaption {
    padding: 0.56rem 0.72rem 0.62rem;
    font-size: 0.69rem;
  }

  .route-blog .blog-load-more {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-blog .blog-topic-directory-chevron {
    transition: none;
  }
}

/* Pages de thématiques : composition et rythme alignés sur les dossiers BIW. */

.route-tag .page-heading--tag .breadcrumbs {
  margin-bottom: clamp(1rem, 2vw, 1.35rem);
}

.route-tag .page-heading--tag .tag-hero-layout {
  display: grid;
  min-height: 30.25rem;
  grid-template-columns: minmax(0, 0.82fr) minmax(20rem, 0.9fr);
  grid-template-areas:
    "copy media"
    "action media";
  grid-template-rows: auto auto;
  align-items: center;
  padding: clamp(1.35rem, 3vw, 2.2rem);
  gap: clamp(1.35rem, 3.2vw, 2.7rem);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 174, 239, 0.82), rgba(0, 174, 239, 0)) top left / 9.5rem 0.24rem no-repeat,
    linear-gradient(145deg, #fff 0%, #f9fcfe 58%, #eaf7fc 100%);
  border: 1px solid rgba(0, 75, 135, 0.14);
  border-left: 0.25rem solid #087eb5;
  border-radius: 0;
  box-shadow: 0 1.35rem 3.2rem -2.65rem rgba(0, 47, 85, 0.58);
}

.route-tag .page-heading--tag .tag-hero-layout .page-heading-copy {
  display: flex;
  grid-area: copy;
  min-width: 0;
  max-width: none;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  flex-direction: column;
}

.route-tag .page-heading--tag .page-kicker {
  margin: 0 0 0.7rem;
  color: #08618b;
  background: #f7fbfe;
}

.route-tag .page-heading--tag h1 {
  max-width: 17ch;
  margin: 0;
  color: #16324a;
  font-size: clamp(2.45rem, 4vw, 3.55rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.route-tag .page-heading--tag h1::after {
  display: block;
  width: 5.5rem;
  height: 0.22rem;
  margin-top: 0.8rem;
  content: "";
  background: #00aeef;
  border-radius: var(--radius-pill);
}

.route-tag .page-heading--tag .page-heading-summary {
  max-width: 46ch;
  margin: clamp(0.85rem, 1.5vw, 1.15rem) 0 0;
  color: #526b7a;
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  line-height: 1.62;
}

.route-tag .page-heading--tag .page-heading-actions {
  grid-area: action;
  align-self: start;
  margin-top: clamp(1rem, 2vw, 1.45rem);
}

.route-tag .page-heading--tag .button-light,
.route-tag .page-heading--tag .button-light:visited {
  min-height: 3rem;
  color: #07547d;
  background: #fff;
  border-color: rgba(0, 75, 135, 0.2);
  box-shadow: 0 1rem 2rem -1.55rem rgba(0, 47, 85, 0.72);
}

.route-tag .page-heading--tag .button-light:hover,
.route-tag .page-heading--tag .button-light:focus-visible {
  color: #fff;
  background: #005a97;
  border-color: #005a97;
}

.route-tag .page-heading--tag .tag-hero-media {
  position: relative;
  grid-area: media;
  align-self: start;
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #082f4f;
  border: 1px solid rgba(0, 75, 135, 0.18);
  border-radius: 1.05rem;
  box-shadow: 0 1.5rem 3.4rem -2.1rem rgba(0, 47, 85, 0.72);
}

.route-tag .page-heading--tag .tag-hero-media::after {
  display: none;
}

.route-tag .page-heading--tag .tag-hero-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.route-tag .page-heading--tag .ai-text-disclosure-wrap {
  width: 100%;
  margin: 0.65rem 0 0;
}

.route-tag .page-heading--tag .ai-text-disclosure-inner {
  width: 100%;
}

.route-tag .page-heading--tag .ai-text-disclosure {
  color: #587083;
  font-size: 0.69rem;
}

.route-tag .content-shell.tag-index {
  width: min(calc(100% - 2rem), 1200px);
  padding: clamp(1.7rem, 3vw, 2.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  gap: clamp(1.35rem, 2.6vw, 2rem);
}

.route-tag .tag-topic-overview {
  min-height: 31.25rem;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 18rem);
  align-items: stretch;
  padding: clamp(2rem, 4vw, 3rem);
  gap: clamp(1rem, 2vw, 1.35rem);
  background:
    linear-gradient(135deg, rgba(237, 248, 255, 0.96), rgba(255, 255, 255, 0.98)),
    #fff;
}

.route-tag .tag-topic-copy {
  align-self: start;
}

.route-tag .tag-topic-copy .section-kicker,
.route-tag .tag-section-heading .section-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 2rem;
  align-items: center;
  margin: 0 0 0.55rem;
  padding: 0.35rem 0.7rem;
  color: #0068b0;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 104, 176, 0.18);
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.route-tag .tag-topic-copy h2,
.route-tag .tag-section-heading h2 {
  margin: 0;
  color: #073c61;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.65vw, 2.25rem);
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}

.route-tag .tag-topic-copy > p:last-child,
.route-tag .tag-section-heading > p:last-child {
  max-width: 54rem;
  margin: 0.75rem 0 0;
  color: #526b7a;
  font-size: 0.98rem;
  line-height: 1.7;
}

.route-tag .tag-topic-stat {
  min-height: 18rem;
  align-content: start;
  padding: clamp(1.2rem, 2.6vw, 1.55rem);
  background: linear-gradient(145deg, #effaff, #fff);
  border-color: rgba(0, 104, 176, 0.16);
  box-shadow: 0 1.15rem 2.7rem -2.1rem rgba(0, 79, 136, 0.65);
}

.route-tag .tag-topic-stat strong {
  color: #0068b0;
  font-size: clamp(3.2rem, 6vw, 4.5rem);
}

.route-tag .tag-topic-stat span {
  color: #172a3a;
  font-weight: 850;
}

.route-tag .tag-topic-stat p {
  color: #526b7a;
  font-size: 0.94rem;
  line-height: 1.65;
}

.route-tag .tag-topic-points {
  grid-column: 1;
  align-self: end;
  gap: 0.75rem;
}

.route-tag .tag-topic-points li {
  min-height: 5rem;
  align-items: flex-start;
  padding: 1rem;
  color: #172a3a;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(0, 104, 176, 0.13);
  font-size: 0.9rem;
  line-height: 1.55;
}

.route-tag .tag-library,
.route-tag .tag-other-topics {
  padding: clamp(1.75rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(237, 248, 255, 0.92), rgba(255, 255, 255, 0.98)),
    #f3f9fd;
}

.route-tag .tag-section-heading {
  max-width: 54rem;
  margin-bottom: clamp(1rem, 2vw, 1.35rem);
}

.route-tag .tag-library-tools {
  margin-bottom: clamp(1rem, 2vw, 1.35rem);
  padding: 1rem;
  background: linear-gradient(135deg, #fff, #e8f7fd);
  border-color: rgba(0, 104, 176, 0.16);
}

.route-tag .tag-library-tools label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.55rem;
  gap: 0.45rem;
  color: #172a3a;
  font-size: 0.88rem;
  font-weight: 820;
}

.route-tag .tag-library-search-row input {
  min-height: 3.25rem;
  color: #172a3a;
  background: #fff;
  border-color: #9eb6c4;
  border-radius: var(--radius-pill);
}

.route-tag .tag-library-status {
  color: #172a3a;
  background: #fff;
  border-color: rgba(0, 104, 176, 0.16);
}

.route-tag .tag-library-list {
  gap: clamp(1rem, 2vw, 1.35rem);
}

.route-tag .tag-library-card {
  display: grid;
  min-height: 18rem;
  grid-template-columns: minmax(12rem, 18rem) minmax(0, 1fr);
  align-items: stretch;
  padding: clamp(0.85rem, 1.8vw, 1.1rem);
  gap: clamp(1rem, 2vw, 1.35rem);
  background: #fff;
  border: 1px solid rgba(0, 104, 176, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 1.15rem 2.65rem -2.125rem rgba(15, 23, 42, 0.45);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.route-tag .tag-library-card:hover,
.route-tag .tag-library-card:focus-within {
  border-color: rgba(0, 104, 176, 0.34);
  box-shadow: 0 1.5rem 2.75rem -1.875rem rgba(0, 104, 176, 0.46);
  transform: translateY(-2px);
}

.route-tag .tag-library-card-media {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #082f4f;
  border: 1px solid rgba(0, 75, 135, 0.16);
  border-radius: var(--radius);
}

.route-tag .tag-library-card-media > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 12rem;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 200ms ease;
}

.route-tag .tag-library-card:hover .tag-library-card-media > img,
.route-tag .tag-library-card:focus-within .tag-library-card-media > img {
  transform: scale(1.035);
}

.route-tag .tag-library-card .ai-media-label img,
.route-tag .tag-library-card:hover .ai-media-label img,
.route-tag .tag-library-card:focus-within .ai-media-label img {
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  transform: none;
}

.route-tag .tag-library-card-body {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  gap: 0.65rem;
  flex-direction: column;
}

.route-tag .tag-library-card .blog-card-meta {
  margin: 0;
}

.route-tag .tag-library-card .blog-card-meta time {
  color: #0068b0;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: none;
}

.route-tag .tag-library-card h3 {
  margin: 0;
  color: #172a3a;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  font-weight: 800;
  line-height: 1.28;
}

.route-tag .tag-library-card h3 a {
  color: #172a3a;
}

.route-tag .tag-library-card h3 a:hover,
.route-tag .tag-library-card h3 a:focus-visible {
  color: #0068b0;
}

.route-tag .tag-library-card-body > p:not(.blog-card-meta) {
  margin: 0;
  color: #526b7a;
  font-size: 0.94rem;
  line-height: 1.65;
}

.route-tag .tag-library-read,
.route-tag .tag-library-read:visited {
  display: inline-flex;
  width: fit-content;
  min-height: 2.7rem;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0.55rem 0.9rem;
  color: #fff;
  background: #005a97;
  border: 1px solid #005a97;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 850;
}

.route-tag .tag-library-read::after {
  margin-left: 0.35rem;
}

.route-tag .tag-load-more {
  min-width: min(100%, 16rem);
}

.route-tag .tag-other-topics {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(126, 213, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(237, 248, 255, 0.96), #fff 58%);
}

.route-tag .tag-topic-grid {
  display: grid;
  width: 100%;
  max-width: 52.5rem;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.5vw, 1rem);
}

.route-tag .tag-topic-card,
.route-tag .tag-topic-card:visited {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
  color: #082f4f;
  background: #fff;
  border: 1px solid rgba(0, 75, 135, 0.2);
  border-radius: 1rem;
  box-shadow: 0 1rem 2.125rem -1.75rem rgba(0, 47, 85, 0.62);
  text-align: left;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.route-tag .tag-topic-card-media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #082f4f;
  line-height: 0;
}



.route-tag .tag-topic-card-media > img,
.route-tag .tag-topic-card-media > .ai-media-frame > img {
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.route-tag .tag-topic-card-copy {
  display: flex;
  min-width: 0;
  min-height: 7.25rem;
  justify-content: space-between;
  padding: clamp(0.85rem, 1.5vw, 1rem);
  gap: 0.8rem;
  flex-direction: column;
}

.route-tag .tag-topic-card-title {
  display: block;
  color: #082f4f;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  font-size: clamp(0.92rem, 1.3vw, 1.02rem);
  font-weight: 800;
  line-height: 1.38;
  text-wrap: balance;
}

.route-tag .tag-topic-card-action {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: #005b99;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
}

.route-tag .tag-topic-card-action::after {
  font-size: 1rem;
  line-height: 1;
  content: "\2192";
  transition: transform 180ms ease;
}

.route-tag .tag-topic-card:hover,
.route-tag .tag-topic-card:focus-visible {
  color: #082f4f;
  background: #f9fdff;
  border-color: rgba(0, 104, 176, 0.7);
  box-shadow: 0 1.375rem 2.625rem -1.75rem rgba(0, 75, 135, 0.72);
  transform: translateY(-3px);
}

.route-tag .tag-topic-card:hover .tag-topic-card-action::after,
.route-tag .tag-topic-card:focus-visible .tag-topic-card-action::after {
  transform: translateX(0.2rem);
}

.route-tag .tag-archive-details {
  overflow: visible;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(0, 75, 135, 0.14);
  border-radius: 0;
  box-shadow: none;
}

.route-tag .tag-archive-details > summary {
  position: relative;
  min-height: 2.75rem;
  padding: 0.65rem 2.3rem 0.65rem 0;
  color: #526b7a;
  font-size: 0.86rem;
  font-weight: 760;
  list-style: none;
  cursor: pointer;
}

.route-tag .tag-archive-details > summary::-webkit-details-marker {
  display: none;
}

.route-tag .tag-archive-details > summary::after {
  position: absolute;
  top: 50%;
  right: 0.2rem;
  color: #0068b0;
  font-size: 1.1rem;
  content: "+";
  transform: translateY(-50%);
}

.route-tag .tag-archive-details[open] > summary::after {
  content: "−";
}

.route-tag .tag-related-sections,
.route-tag .tag-deep-dive-inner {
  padding: clamp(1rem, 3vw, 2rem);
  border-top: 1px solid rgba(0, 75, 135, 0.12);
}

@media (max-width: 56.25rem) {
  .route-tag .page-heading--tag .tag-hero-layout {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media"
      "action";
    grid-template-rows: auto;
  }

  .route-tag .page-heading--tag .tag-hero-media,
  .route-tag .page-heading--tag .tag-hero-image {
    min-height: 0;
  }

  .route-tag .tag-topic-overview {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .route-tag .tag-topic-stat {
    min-height: 0;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0 1rem;
  }

  .route-tag .tag-topic-stat strong {
    grid-row: 1 / 3;
  }

  .route-tag .tag-topic-stat p {
    grid-column: 1 / -1;
  }

  .route-tag .tag-topic-points {
    grid-template-columns: 1fr;
  }

  .route-tag .tag-library-card {
    grid-template-columns: minmax(0, 12rem) minmax(0, 1fr);
  }

  .route-tag .tag-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 44rem) {
  .route-tag .page-heading--tag .page-heading-inner,
  .route-tag .content-shell.tag-index {
    width: calc(100% - 1.5rem);
  }

  .route-tag .page-heading--tag .page-heading-inner {
    padding-top: 0.75rem;
  }

  .route-tag .page-heading--tag .breadcrumbs {
    width: 100%;
    margin: 0 0 0.85rem;
    flex-wrap: wrap;
    white-space: normal;
  }

  .route-tag .page-heading--tag .breadcrumbs span[aria-current="page"] {
    display: inline;
  }

  .route-tag .page-heading--tag .tag-hero-layout {
    padding: 1.15rem;
    gap: 0.75rem;
    border: 1px solid rgba(0, 75, 135, 0.14);
    border-left-width: 0.2rem;
    border-radius: 0;
  }

  .route-tag .page-heading--tag h1 {
    max-width: 12ch;
    font-size: clamp(2rem, 10vw, 2.45rem);
    line-height: 1.04;
  }

  .route-tag .page-heading--tag .page-heading-summary {
    font-size: 0.96rem;
  }

  .route-tag .page-heading--tag .page-heading-actions,
  .route-tag .page-heading--tag .button-light {
    width: 100%;
  }

  .route-tag .page-heading--tag .button-light {
    justify-content: center;
  }

  .route-tag .page-heading--tag .tag-hero-media {
    margin-top: 0.35rem;
    border-radius: var(--radius-sm);
  }

  .route-tag .page-heading--tag .ai-text-disclosure-wrap {
    width: 100%;
    margin-top: 0.5rem;
  }

  .route-tag .content-shell.tag-index {
    padding-top: 0.85rem;
  }

  .route-tag .tag-topic-overview,
  .route-tag .tag-library,
  .route-tag .tag-other-topics {
    min-height: 0;
    padding: 1.1rem;
    border-radius: var(--radius);
  }

  .route-tag .tag-topic-copy h2,
  .route-tag .tag-section-heading h2 {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }

  .route-tag .tag-topic-points li {
    min-height: 0;
  }

  .route-tag .tag-library-search-row,
  .route-tag .tag-library-card {
    grid-template-columns: 1fr;
  }

  .route-tag .tag-library-card {
    min-height: 0;
    padding: 0.85rem;
  }

  .route-tag .tag-library-card-media > img {
    min-height: 11.5rem;
  }

  .route-tag .tag-library-read {
    width: 100%;
  }

  .route-tag .tag-topic-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.7rem;
  }

  .route-tag .tag-topic-card,
  .route-tag .tag-topic-card:visited {
    grid-template-columns: 7rem minmax(0, 1fr);
    grid-template-rows: minmax(7rem, auto);
  }

  .route-tag .tag-topic-card-media {
    height: 100%;
    min-height: 7rem;
    aspect-ratio: auto;
  }

  .route-tag .tag-topic-card-copy {
    min-height: 7rem;
    padding: 0.78rem 0.82rem;
    gap: 0.45rem;
  }

  .route-tag .tag-topic-card-title {
    font-size: 0.9rem;
    line-height: 1.32;
    text-wrap: pretty;
  }

  .route-tag .tag-topic-card-action {
    font-size: 0.73rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-tag .tag-library-card,
  .route-tag .tag-library-card-media > img,
  .route-tag .tag-topic-card,
  .route-tag .tag-topic-card-action::after {
    transition: none;
  }

  .route-tag .tag-library-card:hover,
  .route-tag .tag-library-card:focus-within,
  .route-tag .tag-library-card:hover .tag-library-card-media > img,
  .route-tag .tag-library-card:focus-within .tag-library-card-media > img,
  .route-tag .tag-topic-card:hover,
  .route-tag .tag-topic-card:focus-visible,
  .route-tag .tag-topic-card:hover .tag-topic-card-action::after,
  .route-tag .tag-topic-card:focus-visible .tag-topic-card-action::after {
    transform: none;
  }
}

/* Services informatiques : même langage visuel que la home et Réparation PC. */
.page-heading--services-home {
  isolation: isolate;
  min-height: clamp(38rem, 48vw, 46rem);
  background-color: #052b43;
  background-position: 50% 34% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-attachment: scroll !important;
}

.page-heading--services-home::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at 84% 14%, rgba(24, 183, 233, 0.17), transparent 27rem),
    linear-gradient(90deg, rgba(2, 24, 39, 0.95) 0%, rgba(3, 35, 56, 0.87) 48%, rgba(3, 31, 49, 0.7) 100%);
  content: "";
}

.page-heading--services-home::after {
  z-index: 0;
  opacity: 0.45;
}





.page-heading--services-home .services-hero-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(21rem, 0.8fr);
  align-items: center;
  gap: clamp(1.6rem, 4vw, 4rem);
}



.page-heading--services-home .services-hero-copy .page-kicker {
  margin: 0;
}



.page-heading--services-home h1 {
  max-width: 52rem;
  font-size: clamp(2.45rem, 3.65vw, 3.55rem);
  line-height: 1.01;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.page-heading--services-home .page-heading-summary {
  max-width: 47rem;
  margin: 0;
  color: #e2eef4;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.62;
}



.services-hero-mobile-call {
  display: none;
}





.page-heading--services-home .services-hero-card h2 {
  max-width: 22rem;
  margin: 0.1rem 0 0.6rem;
  color: white;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1.16;
  letter-spacing: -0.025em;
}







.page-heading--services-home .services-hero-card .home-hero-signal:nth-child(2) {
  margin-block: 0.1rem;
  padding-inline: 0.72rem;
  background: linear-gradient(145deg, rgba(24, 183, 233, 0.11), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(142, 223, 247, 0.2);
  border-radius: 0.95rem;
}



.page-heading--services-home .services-hero-card .page-heading-actions {
  margin-top: 0.9rem;
}







.page-heading--services-home .services-hero-card .sales-hero-reassurance {
  margin-top: 0.8rem;
  color: #b9d6e2;
  font-size: 0.68rem;
  line-height: 1.45;
}

.page-services-informatiques .services-editorial-flow,
.page-services-informatiques-maintenance-securite .maintenance-editorial-flow,
.page-services-informatiques-sauvegarde-recuperation .backup-editorial-flow,
.page-services-informatiques-conseil-installation .installation-editorial-flow,
.page-services-informatiques-cours-informatique-a-domicile .training-editorial-flow,
.page-services-informatiques-creation-site-internet-charleroi .webcreation-editorial-flow,
.page-tarifs-depannage-ordinateur .pricing-editorial-flow,
.page-contact .contact-editorial-flow {
  display: grid;
  width: min(calc(100% - 2rem), var(--content));
  min-width: 0;
  gap: clamp(1rem, 2.4vw, 1.6rem);
  margin-inline: auto;
}

.page-services-informatiques .services-surface,
.page-services-informatiques-maintenance-securite .maintenance-surface,
.page-services-informatiques-sauvegarde-recuperation .backup-surface,
.page-services-informatiques-conseil-installation .installation-surface,
.page-services-informatiques-cours-informatique-a-domicile .training-surface,
.page-services-informatiques-creation-site-internet-charleroi .webcreation-surface,
.page-tarifs-depannage-ordinateur .pricing-surface,
.page-contact .contact-surface {
  position: relative;
  min-width: 0;
  overflow: clip;
  padding: clamp(1.7rem, 4vw, 3.1rem) clamp(1rem, 3vw, 2.25rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 0.7rem 2rem rgba(11, 36, 53, 0.045);
}



.page-services-informatiques .home-section-heading h2 {
  max-width: 48rem;
  margin-bottom: 0;
  color: var(--navy);
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.85rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.page-services-informatiques .services-confidence-block::before {
  background: var(--cyan);
}

.page-services-informatiques .services-confidence-block .home-section-heading h2 {
  color: white;
}

.page-services-informatiques .services-confidence-grid h3,
.page-services-informatiques .services-directory-card h3,
.page-services-informatiques .services-advice-card h3 {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-services-informatiques .services-confidence-grid article > p:last-child {
  margin: 0;
}

.services-directory-grid, .services-advice-grid,
.maintenance-service-grid, .maintenance-advice-grid,
.backup-service-grid, .backup-advice-grid,
.installation-service-grid, .installation-advice-grid,
.training-process-grid, .training-advice-grid,
.webcreation-service-grid,
.contact-needs-grid,
.contact-practical-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(0.8rem, 1.8vw, 1.15rem);
}

.page-services-informatiques .services-directory-card,
.page-services-informatiques .services-advice-card {
  height: 100%;
}

.page-services-informatiques .home-card-media, .page-services-informatiques .home-card-media .ai-media-frame,
.page-services-informatiques-maintenance-securite .maintenance-advice-card .home-card-media, .page-services-informatiques-maintenance-securite .maintenance-advice-card .ai-media-frame,
.page-services-informatiques-sauvegarde-recuperation .backup-advice-card .home-card-media, .page-services-informatiques-sauvegarde-recuperation .backup-advice-card .ai-media-frame,
.page-services-informatiques-conseil-installation .installation-advice-card .home-card-media, .page-services-informatiques-conseil-installation .installation-advice-card .ai-media-frame,
.page-services-informatiques-cours-informatique-a-domicile .training-advice-card .home-card-media, .page-services-informatiques-cours-informatique-a-domicile .training-advice-card .ai-media-frame,
.page-services-informatiques-creation-site-internet-charleroi .webcreation-agency-card .home-card-media {
  display: block;
  width: 100%;
}

.page-services-informatiques .services-directory-card .home-card-media img {
  aspect-ratio: 3 / 2;
}

.page-services-informatiques .services-advice-card .home-card-media img {
  aspect-ratio: 16 / 9;
}

.page-services-informatiques .home-card-body h3 {
  font-size: clamp(1.02rem, 1.55vw, 1.2rem);
}

.page-services-informatiques .home-card-body > p {
  margin-bottom: 1rem;
}

.page-services-informatiques .home-card-link {
  min-height: 2.75rem;
}

.page-services-informatiques .services-advice-card time,
.page-services-informatiques-maintenance-securite .maintenance-advice-card time,
.page-services-informatiques-sauvegarde-recuperation .backup-advice-card time,
.page-services-informatiques-conseil-installation .installation-advice-card time,
.page-services-informatiques-cours-informatique-a-domicile .training-advice-card time {
  margin-bottom: 0.6rem;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-services-informatiques .services-advice-card h3 a,
.page-services-informatiques-maintenance-securite .maintenance-advice-card h3 a,
.page-services-informatiques-sauvegarde-recuperation .backup-advice-card h3 a,
.page-services-informatiques-conseil-installation .installation-advice-card h3 a,
.page-services-informatiques-cours-informatique-a-domicile .training-advice-card h3 a,
.webcreation-agency-card h3 a {
  color: inherit;
  text-decoration: none;
}

.page-services-informatiques .services-advice-card h3 a::after,
.page-services-informatiques-maintenance-securite .maintenance-advice-card h3 a::after,
.page-services-informatiques-sauvegarde-recuperation .backup-advice-card h3 a::after,
.page-services-informatiques-conseil-installation .installation-advice-card h3 a::after,
.page-services-informatiques-cours-informatique-a-domicile .training-advice-card h3 a::after,
.webcreation-agency-card h3 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.page-services-informatiques .services-advice-card {
  position: relative;
}

.page-services-informatiques .services-advice-card .home-card-link {
  pointer-events: none;
}

.page-services-informatiques .home-section-link {
  margin-top: clamp(1rem, 2.5vw, 1.4rem);
}

.page-services-informatiques .services-conversion-panel {
  border-top-color: var(--cyan);
}

@media (max-width: 64rem) {
  .services-directory-grid,
  .services-advice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 52rem) {
  .page-heading--services-home {
    min-height: 0;
  }

  .page-heading--services-home .services-hero-layout {
    grid-template-columns: 1fr;
  }

  .page-heading--services-home .services-hero-card {
    width: min(100%, 34rem);
  }
}

@media (max-width: 44rem) {
  .page-heading--services-home {
    background-position: 45% center !important;
  }

  .page-heading--services-home::before {
    background: linear-gradient(180deg, rgba(2, 24, 39, 0.92) 0%, rgba(3, 35, 56, 0.84) 55%, rgba(3, 31, 49, 0.75) 100%);
  }

  .page-heading--services-home .page-heading-inner {
    padding-block: 1.2rem 1.45rem;
  }



  .page-heading--services-home .services-hero-layout {
    gap: 1rem;
  }

  .page-heading--services-home .services-hero-copy {
    gap: 0.7rem;
  }





  .page-heading--services-home .ai-text-disclosure {
    font-size: 0.67rem;
  }









  .page-heading--services-home .services-hero-card .home-hero-signal:nth-child(2) {
    padding-inline: 0.62rem;
  }

  .page-heading--services-home .services-hero-card .page-heading-actions,
  .page-heading--services-home .services-hero-card .sales-hero-reassurance {
    display: none;
  }

  .page-services-informatiques .services-editorial-flow {
    width: calc(100% - 1.5rem);
  }

  .page-services-informatiques .services-surface {
    padding: 1.25rem 1rem;
    border-radius: var(--radius);
  }

  .page-services-informatiques .home-section-heading,
  .services-directory-grid,
  .services-advice-grid,
  .page-services-informatiques .services-confidence-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-services-informatiques .home-section-heading h2 {
    font-size: clamp(1.5rem, 7.3vw, 1.9rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-services-informatiques .home-card-media img,
  .page-services-informatiques .home-service-card,
  .page-services-informatiques .home-advice-card,
  .page-heading--services-home .home-hero-action-link {
    transition: none;
  }

  .page-services-informatiques .home-service-card:hover .home-card-media img,
  .page-services-informatiques .home-advice-card:hover .home-card-media img {
    transform: none;
  }
}

/* Maintenance & sécurité : déclinaison éditoriale de la home et des services. */
body.page-services-informatiques-maintenance-securite
  #cc-section-739736e8-98fe-401b-b177-85404b10c902.page-heading--maintenance-home {
  min-height: clamp(39rem, 49vw, 46rem);
  background-position: 52% 55% !important;
  background-attachment: scroll !important;
}

.page-heading--maintenance-home::before {
  background:
    radial-gradient(circle at 79% 18%, rgba(24, 183, 233, 0.2), transparent 25rem),
    linear-gradient(90deg, rgba(2, 24, 39, 0.97) 0%, rgba(3, 35, 56, 0.9) 48%, rgba(3, 31, 49, 0.73) 100%);
}

.page-services-informatiques-maintenance-securite .page-heading--maintenance-home h1,
.page-services-informatiques-maintenance-securite .page-heading--maintenance-home h2,
.page-services-informatiques-maintenance-securite .maintenance-editorial-flow h2,
.page-services-informatiques-maintenance-securite .maintenance-editorial-flow h3 {
  font-family: Montserrat, sans-serif;
}

.page-heading--maintenance-home h1 {
  max-width: 50rem;
}

.page-heading--maintenance-home .maintenance-hero-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(21rem, 0.85fr);
}

.page-heading--maintenance-home .maintenance-hero-card h2 {
  max-width: 25rem;
}

.page-heading--maintenance-home .maintenance-hero-rate,
.page-heading--backup-home .backup-hero-rate,
.page-heading--installation-home .installation-hero-rate {
  margin-top: 0.1rem;
  padding: 0.8rem 0.75rem !important;
  background: linear-gradient(145deg, rgba(255, 214, 64, 0.12), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 222, 96, 0.22) !important;
  border-radius: 0.95rem;
}

.page-heading--maintenance-home .maintenance-hero-rate strong,
.page-heading--backup-home .backup-hero-rate strong,
.page-heading--installation-home .installation-hero-rate strong {
  display: block;
  margin: 0.05rem 0 0.15rem;
  color: #fff1a9;
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 850;
  line-height: 1.1;
}

.page-heading--maintenance-home .maintenance-hero-rate span:not(.services-hero-signal-label),
.page-heading--maintenance-home .maintenance-hero-rate em {
  display: block;
}

.page-heading--maintenance-home .maintenance-hero-rate em,
.page-heading--backup-home .backup-hero-rate em,
.page-heading--installation-home .installation-hero-rate em,
.page-heading--training-home .training-hero-rate em {
  margin-top: 0.22rem;
  color: #cbe6f0;
  font-size: 0.72rem;
}







.page-services-informatiques-maintenance-securite .maintenance-editorial-flow h2 {
  max-width: 49rem;
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3.4vw, 2.85rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.maintenance-lead-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 183, 233, 0.11), transparent 28rem),
    var(--paper) !important;
}

.maintenance-lead-layout,
.backup-lead-layout,
.installation-lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.7fr);
  align-items: center;
  gap: clamp(1.2rem, 4vw, 3.5rem);
}

.maintenance-lead-copy {
  min-width: 0;
}

.maintenance-lead-copy .section-kicker {
  margin-bottom: 0.6rem;
}

.maintenance-lead-offer {
  max-width: 55rem;
  margin: 1.2rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(0.94rem, 1.3vw, 1.04rem);
  line-height: 1.65;
}

.maintenance-lead-offer strong {
  display: inline-block;
  color: var(--navy);
  font-family: Montserrat, sans-serif;
  font-size: clamp(1rem, 1.55vw, 1.15rem);
  font-weight: 800;
}

.maintenance-lead-zone,
.backup-lead-zone,
.installation-lead-zone {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin: 0.8rem 0 0;
  padding: 0.5rem 0.75rem;
  color: var(--navy-2);
  background: #eef8fc;
  border: 1px solid rgba(8, 126, 181, 0.2);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
}

.maintenance-lead-actions {
  margin-top: 1.15rem;
}

.maintenance-lead-actions .button {
  min-height: 3rem;
}

.maintenance-lead-actions .home-text-link,
.backup-lead-actions .home-text-link,
.installation-lead-actions .home-text-link,
.training-lead-actions .home-text-link,
.webcreation-lead-actions .home-text-link,
.pricing-online-card .home-text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.45rem;
}

.maintenance-lead-note,
.backup-lead-note,
.installation-lead-note,
.training-lead-note,
.webcreation-lead-note {
  min-width: 0;
  padding: clamp(1.1rem, 2.5vw, 1.55rem);
  color: #dcebf2;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 183, 233, 0.2), transparent 14rem),
    linear-gradient(145deg, var(--navy), #083c5c);
  border: 1px solid rgba(143, 222, 247, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 1.4rem 3rem -2rem rgba(2, 22, 36, 0.75);
}

.maintenance-lead-note-icon,
.backup-lead-note-icon,
.installation-lead-note-icon,
.training-lead-note-icon,
.webcreation-lead-note-icon,
.pricing-zone-icon {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1rem;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 0.85rem;
}

.maintenance-lead-note .home-card-index {
  color: #76d9f4;
}

.maintenance-lead-note > p:not(.home-card-index),
.backup-lead-note > p:not(.home-card-index) {
  margin: 0;
  color: #dcebf2;
  font-size: 0.9rem;
  line-height: 1.65;
}

.maintenance-lead-note > p + p {
  margin-top: 0.75rem !important;
}



.maintenance-service-card {
  height: 100%;
}

.maintenance-service-card > span,
.backup-service-card > span,
.installation-service-card > span, .installation-buying-card > span,
.training-process-card > span,
.webcreation-service-card > span,
.pricing-service-card > span,
.contact-need-card > span {
  font-size: 1rem;
  letter-spacing: 0;
}

.maintenance-service-card .home-card-index {
  margin-bottom: 0.45rem;
}

.maintenance-service-card h3, .maintenance-benefit-grid h3, .maintenance-practical-card h3, .maintenance-advice-card h3,
.backup-service-card h3, .backup-benefit-grid h3, .backup-practical-card h3, .backup-advice-card h3,
.installation-service-card h3, .installation-buying-card h3, .installation-buying-summary h3, .installation-linux-grid h3, .installation-practical-card h3, .installation-advice-card h3,
.training-process-card h3, .training-practical-card h3, .training-advice-card h3,
.webcreation-service-card h3, .webcreation-contact-card h3, .webcreation-agency-card h3,
.pricing-service-card h3, .pricing-conditions-card h3, .pricing-online-card h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-services-informatiques-maintenance-securite .maintenance-benefits-section::before {
  background: var(--cyan);
}

.page-services-informatiques-maintenance-securite .maintenance-benefits-section h2 {
  color: white;
}

.maintenance-benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.maintenance-benefit-grid article {
  height: 100%;
}

.maintenance-practical-card,
.backup-practical-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 1.2fr);
  align-items: center;
  margin-top: clamp(0.8rem, 1.8vw, 1.1rem);
  padding: clamp(1rem, 2.2vw, 1.35rem);
  gap: clamp(1rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
}

.maintenance-practical-card .home-card-index {
  color: #76d9f4;
}

.maintenance-practical-card h3,
.backup-practical-card h3,
.installation-practical-card h3 {
  margin: 0 0 0.55rem;
  color: white;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.maintenance-practical-card p, .maintenance-practical-card li,
.backup-practical-card p, .backup-practical-card li {
  color: #d8e9f0;
  font-size: 0.86rem;
  line-height: 1.58;
}

.maintenance-practical-card p {
  margin: 0;
}

.maintenance-practical-card ul,
.backup-practical-card ul,
.sitemap-hero-signals {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.55rem;
  list-style: none;
}

.maintenance-practical-card li,
.backup-practical-card li {
  position: relative;
  padding-left: 1.55rem;
}

.maintenance-practical-card li::before,
.backup-practical-card li::before {
  position: absolute;
  top: 0.08rem;
  left: 0;
  color: #77e0ba;
  font-weight: 900;
  content: "✓";
}

.maintenance-advice-card,
.webcreation-agency-card {
  position: relative;
  height: 100%;
}



.page-services-informatiques-maintenance-securite .maintenance-advice-card .home-card-media img {
  aspect-ratio: 16 / 9;
}







.page-services-informatiques-maintenance-securite .maintenance-advice-card .home-card-link,
.page-services-informatiques-sauvegarde-recuperation .backup-advice-card .home-card-link,
.page-services-informatiques-conseil-installation .installation-advice-card .home-card-link,
.page-services-informatiques-cours-informatique-a-domicile .training-advice-card .home-card-link,
.webcreation-agency-card .home-card-link {
  min-height: 2.75rem;
  pointer-events: none;
}

.page-services-informatiques-maintenance-securite .maintenance-advice-section .home-section-link {
  margin-top: clamp(1rem, 2.5vw, 1.4rem);
}

.page-services-informatiques-maintenance-securite .maintenance-conversion-panel {
  border-top-color: var(--cyan);
}

@media (max-width: 64rem) {
  .maintenance-lead-layout {
    grid-template-columns: 1fr;
  }

  .maintenance-lead-note {
    width: min(100%, 42rem);
  }

  .maintenance-service-grid,
  .maintenance-advice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 52rem) {
  .page-heading--maintenance-home .maintenance-hero-layout,
  .maintenance-practical-card {
    grid-template-columns: 1fr;
  }

  .maintenance-benefit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 44rem) {
  body.page-services-informatiques-maintenance-securite
    #cc-section-739736e8-98fe-401b-b177-85404b10c902.page-heading--maintenance-home {
    background-position: 58% center !important;
  }

  .page-heading--maintenance-home::before {
    background: linear-gradient(180deg, rgba(2, 24, 39, 0.94) 0%, rgba(3, 35, 56, 0.88) 57%, rgba(3, 31, 49, 0.78) 100%);
  }

  .page-services-informatiques-maintenance-securite .maintenance-editorial-flow,
  .page-services-informatiques-sauvegarde-recuperation .backup-editorial-flow,
  .page-services-informatiques-conseil-installation .installation-editorial-flow,
  .page-services-informatiques-cours-informatique-a-domicile .training-editorial-flow,
  .page-services-informatiques-creation-site-internet-charleroi .webcreation-editorial-flow,
  .page-tarifs-depannage-ordinateur .pricing-editorial-flow,
  .page-contact .contact-editorial-flow {
    width: calc(100% - 1.5rem);
    gap: 0.8rem;
  }

  .page-services-informatiques-maintenance-securite .maintenance-surface,
  .page-services-informatiques-sauvegarde-recuperation .backup-surface,
  .page-services-informatiques-conseil-installation .installation-surface,
  .page-services-informatiques-cours-informatique-a-domicile .training-surface,
  .page-services-informatiques-creation-site-internet-charleroi .webcreation-surface,
  .page-tarifs-depannage-ordinateur .pricing-surface,
  .page-contact .contact-surface {
    padding: 1.25rem 1rem;
    border-radius: var(--radius);
    box-shadow: none;
  }

  .page-services-informatiques-maintenance-securite .maintenance-editorial-flow h2 {
    font-size: clamp(1.5rem, 7.3vw, 1.9rem);
  }

  .maintenance-service-grid,
  .maintenance-advice-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .maintenance-lead-zone,
  .backup-lead-zone,
  .installation-lead-zone {
    align-items: flex-start;
    border-radius: var(--radius-sm);
    line-height: 1.45;
  }

  .maintenance-practical-card {
    gap: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-services-informatiques-maintenance-securite .home-card-media img,
  .page-services-informatiques-maintenance-securite .home-step-card,
  .page-services-informatiques-maintenance-securite .home-advice-card,
  .page-heading--maintenance-home .home-hero-action-link {
    transition: none;
  }

  .page-services-informatiques-maintenance-securite .home-advice-card:hover .home-card-media img {
    transform: none;
  }
}

/* Sauvegarde & récupération : parcours éditorial aligné sur la home. */
body.page-services-informatiques-sauvegarde-recuperation
  #cc-section-1619009032568.page-heading--backup-home {
  min-height: clamp(39rem, 49vw, 46rem);
  background-image: url("/assets/images/content/sauvegarde-minitool-4883c81ff5f3.webp") !important;
  background-position: center 54% !important;
  background-size: cover !important;
  background-attachment: scroll !important;
}

.page-heading--backup-home::before {
  background:
    radial-gradient(circle at 81% 18%, rgba(24, 183, 233, 0.2), transparent 25rem),
    linear-gradient(90deg, rgba(2, 24, 39, 0.97) 0%, rgba(3, 35, 56, 0.92) 49%, rgba(3, 31, 49, 0.76) 100%);
}

.page-services-informatiques-sauvegarde-recuperation .page-heading--backup-home h1,
.page-services-informatiques-sauvegarde-recuperation .page-heading--backup-home h2,
.page-services-informatiques-sauvegarde-recuperation .backup-editorial-flow h2,
.page-services-informatiques-sauvegarde-recuperation .backup-editorial-flow h3 {
  font-family: Montserrat, sans-serif;
}

.page-heading--backup-home h1 {
  max-width: 53rem;
}

.page-heading--backup-home .backup-hero-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(21rem, 0.85fr);
}

.page-heading--backup-home .backup-hero-card h2 {
  max-width: 25rem;
}





.page-heading--backup-home .backup-hero-rate span:not(.services-hero-signal-label),
.page-heading--backup-home .backup-hero-rate em {
  display: block;
}









.page-services-informatiques-sauvegarde-recuperation .backup-editorial-flow h2 {
  max-width: 54rem;
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3.4vw, 2.85rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.backup-lead-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 183, 233, 0.11), transparent 28rem),
    var(--paper) !important;
}



.backup-lead-copy {
  min-width: 0;
}

.backup-lead-copy .section-kicker {
  margin-bottom: 0.6rem;
}

.backup-lead-intro {
  margin: 1.1rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.65;
}

.backup-lead-offer {
  max-width: 50rem;
  margin: 0.85rem 0 0;
  color: var(--navy);
  font-size: clamp(1rem, 1.55vw, 1.15rem);
  line-height: 1.55;
}

.backup-lead-offer strong,
.installation-offer-options strong {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
}



.backup-lead-actions {
  margin-top: 1.15rem;
}

.backup-lead-actions .button {
  min-height: 3rem;
}







.backup-lead-note .home-card-index {
  color: #76d9f4;
}

.backup-lead-note h3,
.installation-lead-note h3 {
  margin: 0.25rem 0 0.7rem;
  color: white;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 800;
  line-height: 1.25;
}



.backup-lead-note > p + p {
  margin-top: 0.75rem !important;
}



.backup-service-card,
.backup-advice-card {
  height: 100%;
}



.backup-service-card .home-card-index {
  margin-bottom: 0.45rem;
}



.page-services-informatiques-sauvegarde-recuperation .backup-benefits-section::before {
  background: var(--cyan);
}

.page-services-informatiques-sauvegarde-recuperation .backup-benefits-section h2 {
  color: white;
}

.backup-benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.backup-benefit-grid article {
  height: 100%;
}



.backup-practical-card .home-card-index {
  color: #76d9f4;
}





.backup-practical-card p {
  margin: 0;
}







.backup-advice-card {
  position: relative;
}



.page-services-informatiques-sauvegarde-recuperation .backup-advice-card .home-card-media img {
  aspect-ratio: 16 / 9;
}









.page-services-informatiques-sauvegarde-recuperation .backup-advice-section .home-section-link {
  margin-top: clamp(1rem, 2.5vw, 1.4rem);
}

.page-services-informatiques-sauvegarde-recuperation .backup-conversion-panel {
  border-top-color: var(--cyan);
}

@media (max-width: 64rem) {
  .backup-lead-layout {
    grid-template-columns: 1fr;
  }

  .backup-lead-note {
    width: min(100%, 42rem);
  }

  .backup-service-grid,
  .backup-advice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 52rem) {
  body.page-services-informatiques-sauvegarde-recuperation
    #cc-section-1619009032568.page-heading--backup-home {
    background-image: url("/assets/images/content/sauvegarde-minitool-3d3625ec78b7.webp") !important;
    background-position: center !important;
  }

  .page-heading--backup-home .backup-hero-layout,
  .backup-practical-card {
    grid-template-columns: 1fr;
  }

  .backup-benefit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 44rem) {
  body.page-services-informatiques-sauvegarde-recuperation
    #cc-section-1619009032568.page-heading--backup-home {
    background-image: url("/assets/images/content/sauvegarde-minitool-2db2fc20143e.webp") !important;
    background-position: 54% center !important;
  }

  .page-heading--backup-home::before {
    background: linear-gradient(180deg, rgba(2, 24, 39, 0.96) 0%, rgba(3, 35, 56, 0.9) 58%, rgba(3, 31, 49, 0.8) 100%);
  }





  .page-services-informatiques-sauvegarde-recuperation .backup-editorial-flow h2 {
    font-size: clamp(1.5rem, 7.3vw, 1.9rem);
  }

  .backup-service-grid,
  .backup-advice-grid {
    grid-template-columns: minmax(0, 1fr);
  }



  .backup-practical-card {
    gap: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-services-informatiques-sauvegarde-recuperation .home-card-media img,
  .page-services-informatiques-sauvegarde-recuperation .home-step-card,
  .page-services-informatiques-sauvegarde-recuperation .home-advice-card,
  .page-heading--backup-home .home-hero-action-link {
    transition: none;
  }

  .page-services-informatiques-sauvegarde-recuperation .home-advice-card:hover .home-card-media img {
    transform: none;
  }
}

/* Conseil & installation : déclinaison éditoriale de la home et des services. */
body.page-services-informatiques-conseil-installation
  #cc-section-1619009032568.page-heading--installation-home {
  min-height: clamp(40rem, 50vw, 47rem);
  background-image: url("/assets/images/content/open-graph6-84d8f2c0d0a1.jpg") !important;
  background-position: center 52% !important;
  background-size: cover !important;
  background-attachment: scroll !important;
}

.page-heading--installation-home::before {
  background:
    radial-gradient(circle at 80% 18%, rgba(24, 183, 233, 0.2), transparent 25rem),
    linear-gradient(90deg, rgba(2, 24, 39, 0.97) 0%, rgba(3, 35, 56, 0.92) 50%, rgba(3, 31, 49, 0.77) 100%);
}

.page-services-informatiques-conseil-installation .page-heading--installation-home h1,
.page-services-informatiques-conseil-installation .page-heading--installation-home h2,
.page-services-informatiques-conseil-installation .installation-editorial-flow h2,
.page-services-informatiques-conseil-installation .installation-editorial-flow h3 {
  font-family: Montserrat, sans-serif;
}

.page-heading--installation-home h1 {
  max-width: 55rem;
  font-size: clamp(2.25rem, 4.5vw, 4.35rem);
}

.page-heading--installation-home .installation-hero-layout {
  grid-template-columns: minmax(0, 1.18fr) minmax(21rem, 0.82fr);
}

.page-heading--installation-home .installation-hero-card h2 {
  max-width: 25rem;
}





.page-heading--installation-home .installation-hero-rate span:not(.services-hero-signal-label),
.page-heading--installation-home .installation-hero-rate em {
  display: block;
}









.page-services-informatiques-conseil-installation .installation-editorial-flow h2 {
  max-width: 56rem;
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3.4vw, 2.85rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.installation-lead-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 183, 233, 0.11), transparent 28rem),
    var(--paper) !important;
}



.installation-lead-copy {
  min-width: 0;
}

.installation-lead-copy .section-kicker {
  margin-bottom: 0.6rem;
}

.installation-lead-intro {
  max-width: 50rem;
  margin: 1.1rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.65;
}

.installation-offer-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
  gap: 0.7rem;
}

.installation-offer-options p {
  display: grid;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  margin: 0;
  padding: 0.8rem;
  color: var(--navy);
  background: #f3f9fc;
  border: 1px solid rgba(8, 126, 181, 0.16);
  border-radius: var(--radius-sm);
  gap: 0.7rem;
  font-size: 0.88rem;
  line-height: 1.45;
}

.installation-offer-options p > span {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--blue), var(--cyan));
  border-radius: 0.75rem;
}





.installation-lead-actions {
  margin-top: 1.15rem;
}

.installation-lead-actions .button {
  min-height: 3rem;
}







.installation-lead-note .home-card-index {
  color: #76d9f4;
}



.installation-lead-note p,
.installation-lead-note li {
  color: #dcebf2;
  font-size: 0.86rem;
  line-height: 1.6;
}

.installation-lead-note > p {
  margin: 0;
}

.installation-lead-note > p + p {
  margin-top: 0.7rem;
}

.installation-lead-note ul {
  display: grid;
  margin: 1rem 0 0;
  padding: 0;
  gap: 0.45rem;
  list-style: none;
}

.installation-lead-note li {
  position: relative;
  padding-left: 1.35rem;
}

.installation-lead-note li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #77e0ba;
  font-weight: 900;
  content: "✓";
}



.installation-service-card,
.installation-advice-card {
  height: 100%;
}



.installation-service-card .home-card-index,
.installation-buying-card .home-card-index {
  margin-bottom: 0.45rem;
}



.installation-buying-section {
  background:
    radial-gradient(circle at 0% 100%, rgba(24, 183, 233, 0.08), transparent 24rem),
    var(--paper) !important;
}

.installation-buying-grid,
.training-topic-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(0.8rem, 1.8vw, 1.15rem);
}

.installation-buying-card {
  height: 100%;
}

.installation-buying-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  margin-top: clamp(0.8rem, 1.8vw, 1.15rem);
  padding: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--navy);
  background: linear-gradient(135deg, #edf8fc, #f9fcfd);
  border: 1px solid rgba(8, 126, 181, 0.16);
  border-radius: var(--radius);
  gap: clamp(0.9rem, 2.5vw, 1.4rem);
}

.installation-buying-summary > span {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--blue), var(--cyan));
  border-radius: 1rem;
}

.installation-buying-summary h3 {
  margin: 0.2rem 0 0.5rem;
  color: var(--navy);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.installation-buying-summary p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

.page-services-informatiques-conseil-installation .installation-linux-section::before {
  background: var(--cyan);
}

.page-services-informatiques-conseil-installation .installation-linux-section h2 {
  color: white;
}

.installation-linux-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.installation-linux-grid article {
  height: 100%;
}

.installation-practical-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-top: clamp(0.8rem, 1.8vw, 1.1rem);
  padding: clamp(1rem, 2.2vw, 1.35rem);
  gap: clamp(1rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
}

.installation-practical-card .home-card-index {
  color: #76d9f4;
}



.installation-practical-card p {
  margin: 0;
  color: #d8e9f0;
  font-size: 0.88rem;
  line-height: 1.58;
}

.installation-practical-card .button,
.training-practical-actions .button,
.webcreation-contact-actions .button {
  min-height: 3rem;
  white-space: nowrap;
}

.installation-advice-card {
  position: relative;
}



.page-services-informatiques-conseil-installation .installation-advice-card .home-card-media img {
  aspect-ratio: 16 / 9;
}









.page-services-informatiques-conseil-installation .installation-advice-section .home-section-link {
  margin-top: clamp(1rem, 2.5vw, 1.4rem);
}

.page-services-informatiques-conseil-installation .installation-conversion-panel {
  border-top-color: var(--cyan);
}

@media (max-width: 64rem) {
  .installation-lead-layout {
    grid-template-columns: 1fr;
  }

  .installation-lead-note {
    width: min(100%, 45rem);
  }

  .installation-service-grid,
  .installation-advice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 52rem) {
  body.page-services-informatiques-conseil-installation
    #cc-section-1619009032568.page-heading--installation-home {
    background-image: url("/assets/images/content/installation-windows-linux-c14a431615f2.avif") !important;
    background-position: center !important;
  }

  .page-heading--installation-home .installation-hero-layout,
  .installation-practical-card {
    grid-template-columns: 1fr;
  }

  .installation-linux-grid {
    grid-template-columns: 1fr;
  }

  .installation-practical-card .button,
  .training-practical-actions .button {
    width: fit-content;
    white-space: normal;
  }
}

@media (max-width: 44rem) {
  body.page-services-informatiques-conseil-installation
    #cc-section-1619009032568.page-heading--installation-home {
    background-position: 50% center !important;
  }

  .page-heading--installation-home::before {
    background: linear-gradient(180deg, rgba(2, 24, 39, 0.96) 0%, rgba(3, 35, 56, 0.91) 59%, rgba(3, 31, 49, 0.82) 100%);
  }

  .page-heading--installation-home h1 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }





  .page-services-informatiques-conseil-installation .installation-editorial-flow h2 {
    font-size: clamp(1.5rem, 7.3vw, 1.9rem);
  }

  .installation-offer-options,
  .installation-service-grid,
  .installation-buying-grid,
  .installation-advice-grid {
    grid-template-columns: minmax(0, 1fr);
  }



  .installation-buying-summary {
    grid-template-columns: 1fr;
  }

  .installation-practical-card {
    gap: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-services-informatiques-conseil-installation .home-card-media img,
  .page-services-informatiques-conseil-installation .home-step-card,
  .page-services-informatiques-conseil-installation .home-advice-card,
  .page-heading--installation-home .home-hero-action-link {
    transition: none;
  }

  .page-services-informatiques-conseil-installation .home-advice-card:hover .home-card-media img {
    transform: none;
  }
}

/* Cours informatique : parcours pédagogique dans la continuité de la home. */
body.page-services-informatiques-cours-informatique-a-domicile
  #cc-section-6uYJpwUtY-7RqkcFgABdJ.page-heading--training-home {
  min-height: clamp(40rem, 50vw, 47rem);
  background-image: url("/assets/images/content/formation-informatique-domicile-e88f2ae991b7.webp") !important;
  background-position: center 48% !important;
  background-size: cover !important;
  background-attachment: scroll !important;
}

.page-heading--training-home::before {
  background:
    radial-gradient(circle at 78% 16%, rgba(24, 183, 233, 0.18), transparent 25rem),
    linear-gradient(90deg, rgba(2, 24, 39, 0.97) 0%, rgba(3, 35, 56, 0.93) 49%, rgba(3, 31, 49, 0.79) 100%);
}

.page-services-informatiques-cours-informatique-a-domicile .page-heading--training-home h1,
.page-services-informatiques-cours-informatique-a-domicile .page-heading--training-home h2,
.page-services-informatiques-cours-informatique-a-domicile .training-editorial-flow h2,
.page-services-informatiques-cours-informatique-a-domicile .training-editorial-flow h3 {
  font-family: Montserrat, sans-serif;
}

.page-heading--training-home h1 {
  max-width: 53rem;
  font-size: clamp(2.2rem, 4.25vw, 4.05rem);
}

.page-heading--training-home .training-hero-layout {
  grid-template-columns: minmax(0, 1.16fr) minmax(21rem, 0.84fr);
}

.page-heading--training-home .training-hero-copy .page-heading-summary {
  max-width: 51rem;
}

.page-heading--training-home .training-hero-card h2 {
  max-width: 25rem;
}

.page-heading--training-home .training-hero-rate {
  margin-top: 0.1rem;
  padding: 0.8rem 0.75rem !important;
  background: linear-gradient(145deg, rgba(255, 214, 64, 0.13), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 222, 96, 0.24) !important;
  border-radius: 0.95rem;
}

.page-heading--training-home .training-hero-rate strong {
  display: block;
  margin: 0.05rem 0 0.15rem;
  color: #fff1a9;
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 850;
  line-height: 1.1;
}

.page-heading--training-home .training-hero-rate span:not(.services-hero-signal-label),
.page-heading--training-home .training-hero-rate em {
  display: block;
}









.page-services-informatiques-cours-informatique-a-domicile .training-editorial-flow h2,
.page-services-informatiques-creation-site-internet-charleroi .webcreation-editorial-flow h2,
.page-tarifs-depannage-ordinateur .pricing-editorial-flow h2,
.page-contact .contact-editorial-flow h2 {
  max-width: 58rem;
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3.4vw, 2.85rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.training-lead-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 183, 233, 0.11), transparent 28rem),
    var(--paper) !important;
}

.training-lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(19rem, 0.72fr);
  align-items: center;
  gap: clamp(1.2rem, 4vw, 3.5rem);
}

.training-lead-copy {
  min-width: 0;
}

.training-lead-copy .section-kicker {
  margin-bottom: 0.6rem;
}

.training-lead-copy > p:not(.section-kicker) {
  max-width: 52rem;
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 1.3vw, 1.04rem);
  line-height: 1.7;
}

.training-lead-intro {
  margin-top: 1.1rem;
  color: var(--navy) !important;
  font-size: clamp(1rem, 1.45vw, 1.12rem) !important;
}

.training-lead-actions {
  margin-top: 1.15rem;
}

.training-lead-actions .button {
  min-height: 3rem;
}







.training-lead-note .home-card-index {
  color: #76d9f4;
}

.training-lead-note h3 {
  margin: 0.25rem 0 0.85rem;
  color: white;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 800;
  line-height: 1.25;
}

.training-offer-grid,
.contact-profile-links {
  display: grid;
  gap: 0.55rem;
}

.training-offer-grid p {
  display: grid;
  margin: 0;
  padding: 0.75rem 0.8rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.85rem;
  gap: 0.12rem;
}

.training-offer-grid strong {
  color: white;
  font-family: Montserrat, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
}

.training-offer-grid span,
.training-quote-note {
  color: #dcebf2;
  font-size: 0.78rem;
  line-height: 1.45;
}

.training-quote-note {
  margin: 0.8rem 0 0;
  font-style: italic;
}

.training-topics-section {
  background:
    radial-gradient(circle at 0% 100%, rgba(24, 183, 233, 0.08), transparent 24rem),
    var(--paper) !important;
}



.training-topic-group {
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(145deg, #f7fbfd, #fff);
  border: 1px solid rgba(8, 126, 181, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 0.9rem 2rem -1.75rem rgba(7, 49, 74, 0.45);
}

.training-group-heading {
  display: flex;
  align-items: center;
  padding: 1rem 1.05rem;
  color: var(--navy);
  background: #eef8fc;
  border-bottom: 1px solid rgba(8, 126, 181, 0.14);
  gap: 0.7rem;
}

.training-group-heading > span {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--blue), var(--cyan));
  border-radius: 0.78rem;
}

.training-group-heading p {
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.training-topic-item {
  padding: 1rem 1.05rem;
}

.training-topic-item + .training-topic-item {
  border-top: 1px solid rgba(8, 126, 181, 0.12);
}

.training-topic-item h3 {
  margin: 0 0 0.45rem;
  color: var(--navy);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -0.015em;
}

.training-topic-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.58;
}



.training-process-card,
.training-advice-card {
  height: 100%;
}



.training-process-card .home-card-index {
  margin-bottom: 0.45rem;
}



.training-process-card > p:last-child {
  font-size: 0.84rem;
  line-height: 1.62;
}

.training-practical-card,
.webcreation-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-top: clamp(0.8rem, 1.8vw, 1.15rem);
  padding: clamp(1.1rem, 2.5vw, 1.55rem);
  color: #dcebf2;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 183, 233, 0.2), transparent 18rem),
    linear-gradient(145deg, var(--navy), #083c5c);
  border: 1px solid rgba(143, 222, 247, 0.2);
  border-radius: var(--radius);
  gap: clamp(1rem, 3vw, 2.5rem);
}

.training-practical-card .home-card-index {
  color: #76d9f4;
}

.training-practical-card h3,
.webcreation-contact-card h3 {
  margin: 0.15rem 0 0.55rem;
  color: white;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.training-practical-card p:last-child {
  max-width: 56rem;
  margin: 0;
  color: #d8e9f0;
  font-size: 0.88rem;
  line-height: 1.58;
}

.training-practical-actions {
  justify-content: flex-end;
}



.training-practical-actions .home-text-link,
.webcreation-contact-actions .home-text-link {
  color: #dff4fb;
  white-space: nowrap;
}

.training-advice-card {
  position: relative;
}



.page-services-informatiques-cours-informatique-a-domicile .training-advice-card .home-card-media img {
  aspect-ratio: 16 / 9;
}









.page-services-informatiques-cours-informatique-a-domicile .training-advice-section .home-section-link {
  margin-top: clamp(1rem, 2.5vw, 1.4rem);
}

.page-services-informatiques-cours-informatique-a-domicile .training-conversion-panel {
  border-top-color: var(--cyan);
}

@media (max-width: 64rem) {
  .training-lead-layout {
    grid-template-columns: 1fr;
  }

  .training-lead-note {
    width: min(100%, 45rem);
  }

  .training-process-grid {
    grid-template-columns: 1fr;
  }

  .training-advice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 52rem) {
  body.page-services-informatiques-cours-informatique-a-domicile
    #cc-section-6uYJpwUtY-7RqkcFgABdJ.page-heading--training-home {
    background-image: url("/assets/images/content/formation-informatique-domicile-7cff439f57b1.webp") !important;
    background-position: 58% center !important;
  }

  .page-heading--training-home .training-hero-layout,
  .training-topic-groups,
  .training-practical-card {
    grid-template-columns: 1fr;
  }

  .training-practical-actions {
    justify-content: flex-start;
  }


}

@media (max-width: 44rem) {
  .page-heading--training-home::before {
    background: linear-gradient(180deg, rgba(2, 24, 39, 0.97) 0%, rgba(3, 35, 56, 0.92) 59%, rgba(3, 31, 49, 0.84) 100%);
  }

  .page-heading--training-home h1 {
    font-size: clamp(1.95rem, 9.6vw, 2.65rem);
  }





  .page-services-informatiques-cours-informatique-a-domicile .training-editorial-flow h2 {
    font-size: clamp(1.5rem, 7.3vw, 1.9rem);
  }

  .training-advice-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .training-lead-actions .button,
  .training-practical-actions .button {
    width: 100%;
  }

  .training-group-heading,
  .training-topic-item {
    padding-right: 0.85rem;
    padding-left: 0.85rem;
  }

  .training-practical-card {
    gap: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-services-informatiques-cours-informatique-a-domicile .home-card-media img,
  .page-services-informatiques-cours-informatique-a-domicile .home-step-card,
  .page-services-informatiques-cours-informatique-a-domicile .home-advice-card,
  .page-heading--training-home .home-hero-action-link {
    transition: none;
  }

  .page-services-informatiques-cours-informatique-a-domicile .home-advice-card:hover .home-card-media img {
    transform: none;
  }
}

/* Création de site internet : offre BIW Agency dans la continuité de la home. */
body.page-services-informatiques-creation-site-internet-charleroi
  #cc-section-135a9513-e29d-4f19-a55b-135425ab8af7.page-heading--webcreation-home {
  min-height: clamp(41rem, 52vw, 48rem);
  background-image: url("/assets/images/content/creation-site-internet-charleroi-agence-web-e24e7c29c547.webp") !important;
  background-position: center 48% !important;
  background-size: cover !important;
  background-attachment: scroll !important;
}

.page-heading--webcreation-home::before {
  background:
    radial-gradient(circle at 80% 15%, rgba(24, 183, 233, 0.2), transparent 25rem),
    linear-gradient(90deg, rgba(2, 24, 39, 0.97) 0%, rgba(3, 35, 56, 0.93) 50%, rgba(3, 31, 49, 0.76) 100%);
}

.page-services-informatiques-creation-site-internet-charleroi .page-heading--webcreation-home h1,
.page-services-informatiques-creation-site-internet-charleroi .page-heading--webcreation-home h2,
.page-services-informatiques-creation-site-internet-charleroi .webcreation-editorial-flow h2,
.page-services-informatiques-creation-site-internet-charleroi .webcreation-editorial-flow h3 {
  font-family: Montserrat, sans-serif;
}

.page-heading--webcreation-home h1 {
  max-width: 51rem;
  font-size: clamp(2.25rem, 4vw, 3.75rem);
}

.page-heading--webcreation-home .webcreation-hero-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(21rem, 0.85fr);
}

.page-heading--webcreation-home .webcreation-hero-copy .page-heading-summary {
  max-width: 49rem;
}

.page-heading--webcreation-home .webcreation-hero-card h2 {
  max-width: 26rem;
}









.webcreation-lead-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 183, 233, 0.11), transparent 28rem),
    var(--paper) !important;
}

.webcreation-lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.72fr);
  align-items: center;
  gap: clamp(1.2rem, 4vw, 3.5rem);
}

.webcreation-lead-copy {
  min-width: 0;
}

.webcreation-lead-copy .section-kicker {
  margin-bottom: 0.6rem;
}

.webcreation-lead-copy > p:not(.section-kicker) {
  max-width: 54rem;
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 1.3vw, 1.04rem);
  line-height: 1.7;
}

.webcreation-lead-intro {
  margin-top: 1.1rem;
  color: var(--navy) !important;
  font-size: clamp(1rem, 1.45vw, 1.12rem) !important;
  font-weight: 650;
}

.webcreation-lead-actions {
  margin-top: 1.15rem;
}

.webcreation-lead-actions .button {
  min-height: 3rem;
}







.webcreation-lead-note .home-card-index {
  color: #76d9f4;
}

.webcreation-lead-note h3 {
  margin: 0.25rem 0 0.75rem;
  color: white;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 800;
  line-height: 1.25;
}

.webcreation-lead-note > p:not(.home-card-index),
.pricing-zone-card > p:not(.home-card-index) {
  margin: 0;
  color: #dcebf2;
  font-size: 0.88rem;
  line-height: 1.65;
}

.webcreation-lead-note > p + p {
  margin-top: 0.75rem !important;
}

.page-services-informatiques-creation-site-internet-charleroi .webcreation-confidence-section::before {
  background: var(--cyan);
}

.page-services-informatiques-creation-site-internet-charleroi .webcreation-confidence-section h2 {
  color: white;
}

.webcreation-reason-grid article {
  height: 100%;
}



.webcreation-service-card {
  height: 100%;
}



.webcreation-service-card .home-card-index {
  margin-bottom: 0.45rem;
}





.webcreation-contact-card .home-card-index {
  color: #76d9f4;
}



.webcreation-contact-card p:last-child {
  max-width: 55rem;
  margin: 0;
  color: #d8e9f0;
  font-size: 0.88rem;
  line-height: 1.58;
}

.webcreation-contact-actions {
  justify-content: flex-end;
}





.webcreation-agency-section {
  background:
    radial-gradient(circle at 0% 100%, rgba(24, 183, 233, 0.08), transparent 24rem),
    var(--paper) !important;
}

.webcreation-agency-heading {
  margin-bottom: 0.8rem;
}

.webcreation-local-link {
  width: fit-content;
  margin-bottom: clamp(1.1rem, 2.5vw, 1.5rem);
}

.webcreation-agency-group + .webcreation-agency-group {
  margin-top: clamp(1.5rem, 3vw, 2.2rem);
}

.webcreation-group-label {
  display: flex;
  align-items: center;
  margin: 0 0 0.8rem;
  color: var(--navy);
  font-family: Montserrat, sans-serif;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  gap: 0.65rem;
}

.webcreation-group-label > span {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--blue), var(--cyan));
  border-radius: 0.72rem;
}

.webcreation-agency-grid {
  display: grid;
  align-items: stretch;
  gap: clamp(0.8rem, 1.8vw, 1.15rem);
}

.webcreation-agency-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.webcreation-agency-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}





.page-services-informatiques-creation-site-internet-charleroi .webcreation-agency-card .home-card-media img {
  aspect-ratio: 16 / 9;
}

.webcreation-agency-card .home-card-body > .home-card-index {
  margin-bottom: 0.45rem;
}





.webcreation-agency-card h3 a:focus-visible {
  outline: 0.18rem solid var(--blue);
  outline-offset: 0.22rem;
  border-radius: 0.2rem;
}



.page-services-informatiques-creation-site-internet-charleroi .webcreation-conversion-panel {
  border-top-color: var(--cyan);
}

.page-services-informatiques-creation-site-internet-charleroi
  .webcreation-conversion-panel
  .conversion-actions--featured {
  width: min(100%, 30rem);
}

@media (max-width: 64rem) {
  .webcreation-lead-layout {
    grid-template-columns: 1fr;
  }

  .webcreation-lead-note {
    width: min(100%, 46rem);
  }

  .webcreation-service-grid,
  .webcreation-agency-grid--three,
  .webcreation-agency-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .webcreation-contact-card {
    grid-template-columns: 1fr;
  }

  .webcreation-contact-actions {
    justify-content: flex-start;
  }

  .page-services-informatiques-creation-site-internet-charleroi .webcreation-conversion-panel {
    grid-template-columns: minmax(0, 1fr);
  }

}

@media (max-width: 52rem) {
  body.page-services-informatiques-creation-site-internet-charleroi
    #cc-section-135a9513-e29d-4f19-a55b-135425ab8af7.page-heading--webcreation-home {
    background-image: url("/assets/images/content/creation-site-internet-charleroi-agence-web-db72cbdf1a22.webp") !important;
    background-position: 56% center !important;
  }

  .page-heading--webcreation-home .webcreation-hero-layout,
  .webcreation-reason-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 44rem) {
  body.page-services-informatiques-creation-site-internet-charleroi
    #cc-section-135a9513-e29d-4f19-a55b-135425ab8af7.page-heading--webcreation-home {
    background-image: url("/assets/images/content/creation-site-internet-charleroi-agence-web-e7dd550766d5.webp") !important;
    background-position: 53% center !important;
  }

  .page-heading--webcreation-home::before {
    background: linear-gradient(180deg, rgba(2, 24, 39, 0.97) 0%, rgba(3, 35, 56, 0.92) 59%, rgba(3, 31, 49, 0.84) 100%);
  }

  .page-heading--webcreation-home h1 {
    font-size: clamp(1.9rem, 9.1vw, 2.55rem);
  }





  .page-services-informatiques-creation-site-internet-charleroi .webcreation-editorial-flow h2 {
    font-size: clamp(1.5rem, 7.3vw, 1.9rem);
  }

  .webcreation-service-grid,
  .webcreation-agency-grid--three,
  .webcreation-agency-grid--four {
    grid-template-columns: minmax(0, 1fr);
  }

  .webcreation-lead-actions .button,
  .webcreation-contact-actions .button {
    width: 100%;
  }

  .webcreation-contact-actions .home-text-link {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-services-informatiques-creation-site-internet-charleroi .home-card-media img,
  .page-services-informatiques-creation-site-internet-charleroi .home-step-card,
  .page-services-informatiques-creation-site-internet-charleroi .home-service-card,
  .page-heading--webcreation-home .home-hero-action-link {
    transition: none;
  }

  .page-services-informatiques-creation-site-internet-charleroi .home-service-card:hover .home-card-media img {
    transform: none;
  }
}

/* Tarifs : lecture immédiate des prix dans la continuité de la home. */
body.page-tarifs-depannage-ordinateur
  #cc-section-1680190701138.page-heading--pricing-home {
  min-height: clamp(41rem, 52vw, 48rem);
  background-image: url("/assets/images/content/open-graph11-7d37c2207a87.webp") !important;
  background-position: center 50% !important;
  background-size: cover !important;
  background-attachment: scroll !important;
}

.page-heading--pricing-home::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(24, 183, 233, 0.2), transparent 24rem),
    linear-gradient(90deg, rgba(2, 24, 39, 0.97) 0%, rgba(3, 35, 56, 0.93) 52%, rgba(3, 31, 49, 0.76) 100%);
}

.page-tarifs-depannage-ordinateur .page-heading--pricing-home h1,
.page-tarifs-depannage-ordinateur .page-heading--pricing-home h2,
.page-tarifs-depannage-ordinateur .pricing-editorial-flow h2,
.page-tarifs-depannage-ordinateur .pricing-editorial-flow h3 {
  font-family: Montserrat, sans-serif;
}

.page-heading--pricing-home h1 {
  max-width: 52rem;
  font-size: clamp(2.2rem, 3.85vw, 3.65rem);
}

.page-heading--pricing-home .pricing-hero-layout {
  grid-template-columns: minmax(0, 1.12fr) minmax(21rem, 0.88fr);
}

.page-heading--pricing-home .pricing-hero-copy .page-heading-summary {
  max-width: 49rem;
}

.pricing-hero-card h2 {
  max-width: 27rem;
}

.pricing-hero-signals .home-hero-signal-copy > strong {
  display: block;
  margin: 0.1rem 0 0.25rem;
  color: white;
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.2;
}

.pricing-hero-total {
  border-color: rgba(255, 218, 48, 0.42) !important;
  background: rgba(255, 218, 48, 0.09) !important;
}

.pricing-hero-total .home-hero-signal-copy > em {
  display: block;
  margin-top: 0.35rem;
  color: #fff2a8;
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1.4;
}









.pricing-lead-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 183, 233, 0.1), transparent 28rem),
    var(--paper) !important;
}

.pricing-lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(19rem, 0.65fr);
  align-items: center;
  gap: clamp(1.2rem, 4vw, 3.5rem);
}

.pricing-lead-copy {
  min-width: 0;
}

.pricing-lead-copy .section-kicker {
  margin-bottom: 0.6rem;
}

.pricing-lead-intro {
  max-width: 53rem;
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 1.3vw, 1.04rem);
  line-height: 1.7;
}

.pricing-equation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1.12fr);
  align-items: stretch;
  margin-top: clamp(1.1rem, 2.6vw, 1.6rem);
  gap: 0.55rem;
}

.pricing-equation-item {
  display: flex;
  min-width: 0;
  min-height: 8.2rem;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  background: #f7fbfd;
  border: 1px solid rgba(8, 126, 181, 0.16);
  border-radius: 1rem;
}

.pricing-equation-item > span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-equation-item > strong {
  margin: 0.3rem 0 0.15rem;
  color: var(--navy);
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.6rem, 2.7vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.pricing-equation-item > small {
  color: var(--ink-soft);
  font-size: 0.74rem;
  line-height: 1.35;
}

.pricing-equation-item--total {
  color: white;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 183, 233, 0.24), transparent 11rem),
    linear-gradient(145deg, var(--navy), #083c5c);
  border-color: rgba(143, 222, 247, 0.24);
}

.pricing-equation-item--total > span {
  color: #76d9f4;
}

.pricing-equation-item--total > strong,
.pricing-equation-item--total > small {
  color: white;
}

.pricing-equation-operator {
  display: grid;
  width: 1.75rem;
  place-items: center;
  color: var(--blue);
  font-family: Montserrat, sans-serif;
  font-size: 1.25rem;
  font-weight: 850;
}

.pricing-lead-actions {
  margin-top: 1.2rem;
}

.pricing-lead-actions .button {
  min-height: 3rem;
}

.pricing-zone-card {
  min-width: 0;
  padding: clamp(1.15rem, 2.7vw, 1.7rem);
  color: #dcebf2;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 183, 233, 0.2), transparent 14rem),
    linear-gradient(145deg, var(--navy), #083c5c);
  border: 1px solid rgba(143, 222, 247, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 1.4rem 3rem -2rem rgba(2, 22, 36, 0.75);
}



.pricing-zone-card .home-card-index {
  color: #76d9f4;
}

.pricing-zone-card h3 {
  margin: 0.25rem 0 0.75rem;
  color: white;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 800;
  line-height: 1.25;
}



.pricing-zone-card .home-text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: #e7f7fc;
}

.pricing-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(0.8rem, 1.8vw, 1.15rem);
}

.pricing-service-card {
  height: 100%;
}





.pricing-service-card h3 {
  min-height: 3.25rem;
}

.pricing-service-price {
  display: flex;
  min-height: 3.4rem;
  align-items: baseline;
  margin: 0.85rem 0 0.7rem;
  color: var(--navy);
  gap: 0.4rem;
}

.pricing-service-price strong {
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.pricing-service-price small {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-service-card > p:not(.home-card-index, .pricing-service-price),
.pricing-online-card > p:not(.home-card-index, .pricing-online-price, .pricing-online-extra) {
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.58;
}

.pricing-service-list {
  display: grid;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  gap: 0.45rem;
}

.pricing-service-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.pricing-service-list li::before {
  position: absolute;
  top: 0.47em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  background: var(--cyan);
  border-radius: 50%;
  content: "";
}

.pricing-conditions-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  margin-top: clamp(0.8rem, 1.8vw, 1.15rem);
  padding: clamp(1rem, 2.4vw, 1.35rem);
  background: #f4fafd;
  border: 1px solid rgba(8, 126, 181, 0.16);
  border-radius: var(--radius);
  gap: 1rem;
}

.pricing-conditions-card > span {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--blue), var(--cyan));
  border-radius: 0.85rem;
}

.pricing-conditions-card h3 {
  margin: 0.15rem 0 0.35rem;
  color: var(--navy);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.pricing-conditions-card p:last-child {
  max-width: 70rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

.page-tarifs-depannage-ordinateur .pricing-online-section {
  color: #dcebf2;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 183, 233, 0.2), transparent 25rem),
    linear-gradient(145deg, var(--navy), #083c5c) !important;
  border-color: rgba(143, 222, 247, 0.2);
}

.page-tarifs-depannage-ordinateur .pricing-online-section::before {
  background: var(--cyan);
}

.page-tarifs-depannage-ordinateur .pricing-online-section h2 {
  color: white;
}

.pricing-online-heading > p {
  color: #d8e9f0 !important;
}

.pricing-online-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(19rem, 0.62fr);
  align-items: center;
  gap: clamp(1.2rem, 4vw, 3.5rem);
}

.pricing-online-copy > p:first-child {
  max-width: 52rem;
  margin-top: 0;
  color: #d8e9f0;
  font-size: clamp(0.94rem, 1.3vw, 1.02rem);
  line-height: 1.7;
}

.pricing-online-list {
  display: grid;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  gap: 0.65rem;
}

.pricing-online-list li {
  display: flex;
  align-items: flex-start;
  color: #e4f2f7;
  font-size: 0.86rem;
  line-height: 1.5;
  gap: 0.65rem;
}

.pricing-online-list i {
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 0.62rem;
}

.pricing-online-actions {
  margin-top: 1.15rem;
}

.pricing-online-actions .button {
  min-height: 3rem;
}

.pricing-online-note {
  margin: 0.8rem 0 0;
  color: #bcd9e5;
  font-size: 0.76rem;
  line-height: 1.5;
}

.pricing-online-note i {
  margin-right: 0.35rem;
}

.pricing-online-card {
  min-width: 0;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  color: var(--ink);
  background: white;
  border: 1px solid rgba(143, 222, 247, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 1.4rem 3rem -2rem rgba(0, 10, 18, 0.8);
}

.pricing-online-card .home-card-index {
  color: var(--blue);
}

.pricing-online-price {
  display: flex;
  align-items: baseline;
  margin: 0.55rem 0 0.4rem;
  color: var(--navy);
  gap: 0.45rem;
}

.pricing-online-price strong {
  font-family: Montserrat, sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.pricing-online-price small {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.07em;
}

.pricing-online-card h3 {
  margin: 0 0 0.65rem;
  color: var(--navy);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}



.pricing-online-extra {
  display: grid;
  margin: 1rem 0;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 0.2rem;
}

.pricing-online-extra strong {
  color: var(--navy);
  font-family: Montserrat, sans-serif;
  font-size: 1.05rem;
}

.pricing-online-extra span {
  color: var(--ink-soft);
  font-size: 0.76rem;
}



.page-tarifs-depannage-ordinateur .pricing-conversion-panel {
  border-top-color: var(--cyan);
}

@media (max-width: 64rem) {
  .pricing-lead-layout {
    grid-template-columns: 1fr;
  }

  .pricing-zone-card {
    width: min(100%, 46rem);
  }

  .pricing-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-tarifs-depannage-ordinateur .pricing-conversion-panel {
    grid-template-columns: minmax(0, 1fr);
  }

}

@media (max-width: 52rem) {
  body.page-tarifs-depannage-ordinateur
    #cc-section-1680190701138.page-heading--pricing-home {
    background-image: url("/assets/images/content/open-graph11-eadad4d487d3.webp") !important;
    background-position: 58% center !important;
  }

  .page-heading--pricing-home .pricing-hero-layout,
  .pricing-online-layout {
    grid-template-columns: 1fr;
  }

  .pricing-online-card {
    width: min(100%, 34rem);
  }
}

@media (max-width: 44rem) {
  body.page-tarifs-depannage-ordinateur
    #cc-section-1680190701138.page-heading--pricing-home {
    background-image: url("/assets/images/content/open-graph11-4a1ba9b984ee.webp") !important;
    background-position: 55% center !important;
  }

  .page-heading--pricing-home::before {
    background: linear-gradient(180deg, rgba(2, 24, 39, 0.97) 0%, rgba(3, 35, 56, 0.93) 61%, rgba(3, 31, 49, 0.86) 100%);
  }

  .page-heading--pricing-home h1 {
    font-size: clamp(1.85rem, 8.8vw, 2.45rem);
  }





  .page-tarifs-depannage-ordinateur .pricing-editorial-flow h2 {
    font-size: clamp(1.5rem, 7.3vw, 1.9rem);
  }

  .pricing-equation,
  .pricing-service-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-equation-operator {
    display: none;
  }

  .pricing-equation-item {
    min-height: 6.8rem;
  }

  .pricing-service-card h3 {
    min-height: 0;
  }

  .pricing-conditions-card {
    grid-template-columns: 1fr;
  }

  .pricing-lead-actions .button,
  .pricing-online-actions .button {
    width: 100%;
  }

  .pricing-online-card {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-tarifs-depannage-ordinateur .home-step-card,
  .page-heading--pricing-home .home-hero-action-link {
    transition: none;
  }
}

/* Contact : accès direct au formulaire, aux coordonnées et aux repères pratiques. */
body.page-contact #hometc.page-heading--contact-home {
  min-height: clamp(41rem, 52vw, 47rem);
  background-image: url("/assets/images/content/og-open-graph8-6da5fea9b5b7.webp") !important;
  background-position: center 50% !important;
  background-size: cover !important;
  background-attachment: scroll !important;
}

.page-heading--contact-home::before {
  background:
    radial-gradient(circle at 84% 16%, rgba(24, 183, 233, 0.19), transparent 23rem),
    linear-gradient(90deg, rgba(2, 24, 39, 0.97) 0%, rgba(3, 35, 56, 0.94) 52%, rgba(3, 31, 49, 0.79) 100%);
}

.page-contact .page-heading--contact-home h1,
.page-contact .page-heading--contact-home h2,
.page-contact .contact-editorial-flow h2,
.page-contact .contact-editorial-flow h3 {
  font-family: Montserrat, sans-serif;
}

.page-heading--contact-home h1 {
  max-width: 48rem;
  font-size: clamp(2.25rem, 4.15vw, 3.8rem);
}

.page-heading--contact-home .contact-hero-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(21rem, 0.92fr);
}

.page-heading--contact-home .contact-hero-copy .page-heading-summary {
  max-width: 47rem;
}

.contact-hero-card h2 {
  max-width: 27rem;
}



.contact-hero-channels .home-hero-signal {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  margin: 0;
  color: #e4f2f7;
  text-decoration: none;
  gap: 0.7rem;
}

.page-heading--contact-home
  .contact-hero-card
  .contact-hero-channels
  .home-hero-signal::before {
  display: none;
  content: none;
}

.contact-hero-channels a.home-hero-signal {
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.contact-hero-channels a.home-hero-signal:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(143, 222, 247, 0.42);
  transform: translateY(-1px);
}

.contact-hero-channel-icon {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 0.75rem;
}

.contact-hero-channels .home-hero-signal-copy {
  min-width: 0;
}



.contact-hero-channels .home-hero-signal-copy > strong {
  margin-top: 0.06rem;
  color: white;
  font-size: 0.92rem;
  line-height: 1.3;
}

.contact-hero-channels .home-hero-signal-copy > small {
  margin-top: 0.12rem;
  color: #bad6e1;
  font-size: 0.68rem;
  line-height: 1.35;
}

.contact-hero-actions {
  grid-template-columns: minmax(0, 1.25fr) minmax(8.5rem, 0.75fr) !important;
}









.contact-section-heading > p:last-child,
.contact-form-panel > .contact-section-heading > p:last-child {
  max-width: 53rem;
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(0.92rem, 1.2vw, 1rem);
  line-height: 1.65;
}

.contact-form-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 183, 233, 0.1), transparent 30rem),
    var(--paper) !important;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(19rem, 0.68fr);
  align-items: start;
  gap: clamp(1.2rem, 4vw, 3rem);
}

.contact-form-panel,
.contact-profile-card,
.contact-form-panel [data-contact-form-slot] {
  min-width: 0;
}

.contact-form-guidance {
  display: flex;
  align-items: flex-start;
  margin: 1rem 0;
  padding: 0.75rem 0.85rem;
  color: var(--ink-soft);
  background: #f4fafd;
  border: 1px solid rgba(8, 126, 181, 0.14);
  border-radius: 0.8rem;
  font-size: 0.76rem;
  line-height: 1.5;
  gap: 0.5rem;
}

.contact-form-guidance i {
  margin-top: 0.2rem;
  color: var(--blue);
}

.contact-request-form {
  position: relative;
  gap: 0.9rem !important;
}

.contact-request-form .cc-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  gap: 0.8rem;
}

.contact-request-form .cc-grid-cell {
  width: auto !important;
  max-width: none !important;
  padding: 0;
}

.contact-request-form label {
  font-size: 0.78rem;
}

.contact-request-form input:not(:where([type="checkbox"], [type="radio"], [type="submit"])),
.contact-request-form textarea {
  background: white;
  border-color: #bed5e0;
}

.contact-request-form textarea {
  min-height: 10.5rem;
}

.contact-request-form > label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 550;
  line-height: 1.55;
  gap: 0.55rem;
}

.contact-request-form > label input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.14rem;
  accent-color: var(--blue);
}

.contact-request-form > button[type="submit"] {
  display: inline-flex;
  width: fit-content;
  min-width: 15.5rem;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  color: white;
  background: linear-gradient(135deg, var(--blue), #075c88);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 0.9rem 1.8rem -1.15rem rgba(3, 68, 103, 0.72);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 820;
  cursor: pointer;
  transition: box-shadow 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.contact-request-form > button[type="submit"]:hover {
  box-shadow: 0 1rem 2rem -1.1rem rgba(3, 68, 103, 0.9);
  transform: translateY(-1px);
}

.contact-request-form > button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.contact-profile-card {
  padding: clamp(1.1rem, 2.8vw, 1.6rem);
  color: #dcebf2;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 183, 233, 0.23), transparent 15rem),
    linear-gradient(145deg, var(--navy), #083c5c);
  border: 1px solid rgba(143, 222, 247, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 1.4rem 3rem -2rem rgba(2, 22, 36, 0.75);
}

.contact-profile-figure {
  display: grid;
  grid-template-columns: 5.25rem minmax(0, 1fr);
  align-items: center;
  margin: 0 0 1rem;
  gap: 0.9rem;
}

.contact-profile-media,
.contact-profile-media img {
  display: block;
  width: 5.25rem;
  height: 5.25rem;
}

.contact-profile-media img {
  object-fit: cover;
  border: 0.2rem solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 0.9rem 2rem -1.2rem rgba(0, 0, 0, 0.9);
}

.contact-profile-figure figcaption {
  min-width: 0;
}

.contact-profile-figure figcaption strong,
.contact-profile-figure figcaption span {
  display: block;
}

.contact-profile-figure figcaption strong {
  color: white;
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.25;
}

.contact-profile-figure figcaption span {
  margin-top: 0.25rem;
  color: #bad6e1;
  font-size: 0.75rem;
  line-height: 1.45;
}



.contact-profile-links > a {
  display: grid;
  min-width: 0;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  align-items: center;
  padding: 0.7rem;
  color: #e7f7fc;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(143, 222, 247, 0.16);
  border-radius: 0.8rem;
  text-decoration: none;
  gap: 0.65rem;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.contact-profile-links > a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(143, 222, 247, 0.38);
}

.contact-profile-links > a > span:first-child {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 0.65rem;
}

.contact-profile-links > a > span:last-child {
  min-width: 0;
}



.contact-profile-links small {
  color: #9fd3e5;
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-profile-links strong {
  margin-top: 0.12rem;
  color: white;
  font-size: 0.78rem;
  line-height: 1.35;
}

.contact-profile-links strong + span {
  margin-top: 0.08rem;
  color: #bad6e1;
  font-size: 0.68rem;
}

.contact-profile-hours {
  display: flex;
  align-items: flex-start;
  margin-top: 0.8rem;
  padding: 0.8rem 0.25rem 0;
  border-top: 1px solid rgba(143, 222, 247, 0.16);
  color: #bad6e1;
  font-size: 0.7rem;
  line-height: 1.45;
  gap: 0.55rem;
}

.contact-profile-hours i {
  margin-top: 0.2rem;
  color: var(--yellow);
}

.contact-profile-hours strong {
  display: block;
  color: white;
}

.contact-admin-details {
  margin-top: 0.7rem;
  color: #bad6e1;
  font-size: 0.7rem;
}

.contact-admin-details summary {
  min-height: 2.75rem;
  align-content: center;
  color: #dff4fa;
  cursor: pointer;
  font-weight: 750;
}

.contact-admin-details p {
  margin: 0.35rem 0 0;
  padding: 0.7rem 0.8rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0.7rem;
  line-height: 1.55;
}



.contact-need-card {
  height: 100%;
}



.contact-need-card h3 {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.contact-need-card > p:not(.home-card-index),
.contact-practical-card > p:not(.home-card-index) {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.58;
}

.contact-need-card .home-card-link {
  margin-top: auto;
  padding-top: 0.85rem;
  font-size: 0.76rem;
}

.contact-practical-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 183, 233, 0.09), transparent 25rem),
    var(--paper) !important;
}



.contact-practical-card {
  min-width: 0;
  padding: clamp(1rem, 2.4vw, 1.35rem);
  background: #f7fbfd;
  border: 1px solid rgba(8, 126, 181, 0.16);
  border-radius: var(--radius);
}

.contact-practical-card--zone {
  color: #dcebf2;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 183, 233, 0.23), transparent 15rem),
    linear-gradient(145deg, var(--navy), #083c5c);
  border-color: rgba(143, 222, 247, 0.2);
}

.contact-practical-icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.9rem;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--blue), var(--cyan));
  border-radius: 0.82rem;
}



.contact-practical-card h3 {
  margin: 0.3rem 0 0.7rem;
  color: var(--navy);
  font-size: clamp(1.05rem, 1.75vw, 1.3rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.025em;
}



.contact-practical-card .home-text-link {
  display: inline-flex;
  margin-top: 0.9rem;
  font-size: 0.76rem;
}

.contact-practical-card--zone .home-card-index {
  color: #76d9f4;
}

.contact-practical-card--zone h3,
.contact-practical-card--zone > p:not(.home-card-index),
.contact-practical-card--zone .home-text-link {
  color: white;
}

.contact-practical-card--steps ol {
  display: grid;
  margin: 0.6rem 0 0;
  padding: 0;
  list-style: none;
  gap: 0.65rem;
}

.contact-practical-card--steps li {
  position: relative;
  min-height: 2.55rem;
  padding-left: 2.45rem;
  counter-increment: contact-step;
}

.contact-practical-card--steps ol {
  counter-reset: contact-step;
}

.contact-practical-card--steps li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 1.85rem;
  height: 1.85rem;
  place-items: center;
  color: white;
  background: var(--blue);
  border-radius: 50%;
  content: counter(contact-step, decimal-leading-zero);
  font-size: 0.63rem;
  font-weight: 850;
}

.contact-practical-card--steps li strong,
.contact-practical-card--steps li span {
  display: block;
}

.contact-practical-card--steps li strong {
  color: var(--navy);
  font-size: 0.8rem;
}

.contact-practical-card--steps li span {
  margin-top: 0.12rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.4;
}

.contact-faq-section {
  background: #f7fbfd !important;
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 0.75rem;
}

.contact-faq-item {
  min-width: 0;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  box-shadow: 0 0.6rem 1.4rem rgba(11, 36, 53, 0.035);
}

.contact-faq-item summary {
  display: grid;
  min-height: 4.4rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 0.9rem 1rem;
  color: var(--navy);
  cursor: pointer;
  font-size: 0.83rem;
  font-weight: 800;
  line-height: 1.42;
  list-style: none;
  gap: 0.8rem;
}

.contact-faq-item summary::-webkit-details-marker {
  display: none;
}

.contact-faq-toggle {
  position: relative;
  display: block;
  width: 1.85rem;
  height: 1.85rem;
  background: var(--mist);
  border-radius: 50%;
}

.contact-faq-toggle::before,
.contact-faq-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.72rem;
  height: 0.12rem;
  background: var(--blue);
  border-radius: 999px;
  content: "";
  transform: translate(-50%, -50%);
}

.contact-faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease;
}

.contact-faq-item[open] .contact-faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.contact-faq-answer {
  padding: 0 1rem 1rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.58;
}

.contact-faq-answer p {
  margin: 0;
}

.contact-faq-answer p + p {
  margin-top: 0.65rem;
}

.page-contact .contact-websites-section {
  padding: clamp(1.6rem, 3.7vw, 3rem) !important;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 0, rgba(24, 183, 233, 0.1), transparent 20rem),
    #071f31;
  border: 1px solid #174e6d;
  border-radius: clamp(1rem, 2vw, 1.35rem);
  box-shadow: 0 1.4rem 3rem -2.5rem rgba(0, 31, 52, 0.72);
}

.page-contact .contact-websites-heading {
  display: grid;
  width: min(100%, 52rem);
  justify-items: center;
  gap: 0;
  margin: 0 auto clamp(1.35rem, 3vw, 2.2rem);
  text-align: center;
}

.page-contact .contact-websites-heading .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.7rem;
  color: #8ce8ff;
}

.page-contact .contact-websites-heading .section-kicker i {
  font-size: 0.75rem;
}

.page-contact .contact-websites-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 2.75rem) !important;
  line-height: 1.08;
}

.page-contact .contact-websites-heading > p:last-child {
  max-width: 66ch;
  margin: 0.75rem 0 0;
  color: #d6eaf4;
  font-size: clamp(0.96rem, 1.35vw, 1.08rem);
  line-height: 1.65;
}

.page-contact .contact-websites-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.page-contact .contact-website-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  padding: clamp(1.15rem, 2.4vw, 1.7rem);
  color: #ffffff;
  background: #0d2b40;
  border: 1px solid #315a72;
  border-radius: 1rem;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.page-contact .contact-website-card:hover,
.page-contact .contact-website-card:focus-visible {
  color: #ffffff;
  background: #12364d;
  border-color: #73d9f4;
  transform: translateY(-2px);
}

.page-contact .contact-website-card:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
}

.page-contact .contact-website-logo {
  display: grid;
  width: clamp(5.35rem, 8vw, 6.4rem);
  height: clamp(5.35rem, 8vw, 6.4rem);
  flex: 0 0 auto;
  margin-bottom: 0.95rem;
  padding: 0.62rem;
  overflow: hidden;
  place-items: center;
  background: #ffffff;
  border: 1px solid #b9d9e8;
  border-radius: 50%;
}

.page-contact .contact-website-logo img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
}

.page-contact .contact-website-logo--portrait {
  padding: 0;
  background: #aac4d2;
  border-color: #8bdff4;
}

.page-contact .contact-website-logo--portrait img {
  border-radius: 50%;
  object-fit: cover;
}

.page-contact .contact-website-tag {
  display: inline-flex;
  width: fit-content;
  min-height: 1.8rem;
  align-items: center;
  margin: 0 0 0.8rem;
  padding: 0.28rem 0.65rem;
  color: #bdefff;
  background: rgba(140, 232, 255, 0.08);
  border: 1px solid rgba(140, 232, 255, 0.45);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.page-contact .contact-website-card h3 {
  margin: 0;
  color: #ffffff;
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 820;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.page-contact .contact-website-card > p {
  flex: 1;
  margin: 0.65rem 0 1.15rem;
  color: #d6e8f2;
  font-size: 0.9rem;
  line-height: 1.65;
}

.page-contact .contact-website-action {
  display: inline-flex;
  min-height: 2.7rem;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  margin-top: auto;
  padding: 0.62rem 0.9rem;
  color: #00598c;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 0.5rem 1rem -0.8rem rgba(0, 0, 0, 0.75);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.2;
}

.page-contact .contact-website-card:hover .contact-website-action,
.page-contact .contact-website-card:focus-visible .contact-website-action {
  color: #004c79;
  background: #eaf8fd;
}

.contact-partners-section {
  padding: clamp(1.25rem, 3vw, 2.4rem) !important;
}

.contact-partners-heading {
  width: min(100%, 52rem);
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 0.65rem;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.contact-partners-heading > p {
  max-width: 52rem;
  margin: 0.75rem auto 0;
}

.contact-partners-heading .section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.contact-partners-heading .section-kicker i {
  font-size: 0.7rem;
}

.contact-partners-heading h2 {
  font-size: clamp(1.8rem, 3.3vw, 2.7rem) !important;
}

.contact-partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-partner-link {
  display: grid;
  grid-template-rows: 6.75rem auto;
  min-width: 0;
  min-height: 10.5rem;
  gap: 0.75rem;
  padding: 0.85rem;
  color: var(--ink);
  background: white;
  border: 1px solid #c8dce7;
  border-radius: 0.9rem;
  box-shadow: 0 0.75rem 1.5rem -1.35rem rgba(6, 43, 67, 0.3);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-partner-link:hover {
  color: var(--ink);
  border-color: rgba(8, 126, 181, 0.34);
  box-shadow: 0 0.9rem 1.7rem -1.2rem rgba(3, 68, 103, 0.42);
  transform: translateY(-1px);
}

.contact-partner-link:focus-visible {
  outline-color: var(--blue);
}

.contact-partner-logo-frame {
  display: flex;
  min-width: 0;
  min-height: 6.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  overflow: hidden;
  background: #f4f8fa;
  border: 1px solid #dfebf1;
  border-radius: 0.75rem;
}

.contact-partner-logo {
  width: min(80%, 11rem) !important;
  max-width: none;
  height: 3.65rem !important;
  max-height: none;
  object-fit: contain;
}

.contact-partner-logo-frame--orbe,
.contact-partner-logo-frame--atom {
  background: white;
}

.contact-partner-logo--orbe {
  width: min(76%, 9.5rem) !important;
  height: 3.25rem !important;
}

.contact-partner-logo--atom {
  width: min(88%, 13.5rem) !important;
  height: 4.5rem !important;
  filter: brightness(0) saturate(1);
}

.contact-partner-name {
  display: block;
  align-self: center;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

@media (max-width: 64rem) {
  .contact-form-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.88fr);
  }

  .page-contact .contact-websites-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-contact .contact-website-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc((100% - clamp(0.85rem, 2vw, 1.25rem)) / 2);
    justify-self: center;
  }

  .contact-needs-grid,
  .contact-practical-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-practical-card--steps {
    grid-column: 1 / -1;
  }

  .contact-practical-card--steps ol {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 52rem) {
  body.page-contact #hometc.page-heading--contact-home {
    background-image: url("/assets/images/content/og-open-graph8-9655490b9aaa.webp") !important;
    background-position: 48% center !important;
  }

  .page-heading--contact-home .contact-hero-layout,
  .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .contact-profile-card {
    width: min(100%, 38rem);
  }

  .contact-partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 44rem) {
  body.page-contact #hometc.page-heading--contact-home {
    min-height: auto;
    background-image: url("/assets/images/content/og-open-graph8-d7d265512157.webp") !important;
    background-position: 42% center !important;
  }

  .page-heading--contact-home::before {
    background: linear-gradient(180deg, rgba(2, 24, 39, 0.97) 0%, rgba(3, 35, 56, 0.94) 62%, rgba(3, 31, 49, 0.87) 100%);
  }

  .page-heading--contact-home h1 {
    font-size: clamp(1.85rem, 8.8vw, 2.45rem);
  }

  .contact-hero-actions {
    grid-template-columns: 1fr !important;
  }





  .page-contact .contact-partners-section {
    padding: 1.25rem 1rem !important;
  }

  .page-contact .contact-editorial-flow h2 {
    font-size: clamp(1.5rem, 7.3vw, 1.9rem);
  }

  .contact-request-form .cc-row,
  .contact-needs-grid,
  .contact-practical-grid,
  .contact-practical-card--steps ol,
  .contact-faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-practical-card--steps {
    grid-column: auto;
  }

  .contact-request-form > button[type="submit"] {
    width: 100%;
    min-width: 0;
  }

  .contact-profile-figure {
    grid-template-columns: 4.5rem minmax(0, 1fr);
  }

  .contact-profile-media,
  .contact-profile-media img {
    width: 4.5rem;
    height: 4.5rem;
  }

  .page-contact .contact-websites-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-contact .contact-website-card {
    min-height: 0;
  }

  .contact-partner-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
  }

  .contact-partner-link {
    min-height: 10.5rem;
    padding: 0.85rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .page-contact .contact-need-card,
  .page-contact .contact-request-form > button[type="submit"],
  .page-contact .contact-website-card,
  .page-contact .contact-partner-link,
  .page-contact .contact-hero-channels a.home-hero-signal {
    transition: none;
  }

  .page-contact .contact-request-form > button[type="submit"]:hover,
  .page-contact .contact-website-card:hover,
  .page-contact .contact-partner-link:hover,
  .page-contact .contact-hero-channels a.home-hero-signal:hover {
    transform: none;
  }
}

/* Plan du site HTML : navigation éditoriale exhaustive et lisible. */
.page-sitemap {
  background: #f3f8fa;
}

.page-heading--sitemap {
  isolation: isolate;
  min-height: clamp(31rem, 43vw, 39rem);
  background:
    radial-gradient(circle at 84% 18%, rgba(24, 183, 233, 0.24), transparent 25rem),
    radial-gradient(circle at 8% 112%, rgba(255, 216, 77, 0.1), transparent 21rem),
    linear-gradient(132deg, #041f32 0%, #073b59 58%, #075f80 100%);
}

.page-heading--sitemap::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 3rem 3rem;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black 32%, black);
}

.page-heading--sitemap .page-heading-inner {
  padding-block: clamp(2.1rem, 5vw, 4.15rem);
}

.sitemap-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(19rem, 0.82fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.sitemap-hero-copy {
  display: flex;
  max-width: 50rem;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.9rem;
}

.sitemap-hero-copy .page-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0;
  gap: 0.5rem;
}

.page-heading--sitemap h1 {
  max-width: 44rem;
  font-size: clamp(2.75rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.page-heading--sitemap .page-heading-summary {
  max-width: 45rem;
  margin: 0;
  color: #dcecf3;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.65;
}

.page-heading--sitemap .page-heading-actions {
  margin-top: 0.35rem;
}

.sitemap-hero-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 2.5vw, 1.85rem);
  color: #dcecf3;
  background: linear-gradient(155deg, rgba(7, 59, 89, 0.94), rgba(2, 26, 42, 0.98));
  border: 1px solid rgba(147, 224, 246, 0.22);
  border-radius: 1.55rem;
  box-shadow: 0 1.6rem 4rem rgba(2, 21, 34, 0.34);
}



.sitemap-hero-card-icon {
  display: inline-grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.8rem;
  place-items: center;
  color: #9be6f8;
  background: rgba(24, 183, 233, 0.13);
  border: 1px solid rgba(148, 227, 248, 0.2);
  border-radius: 0.95rem;
  font-size: 1.2rem;
}

.sitemap-hero-card-kicker {
  margin: 0 0 0.25rem;
  color: #8edcf2;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sitemap-hero-card h2 {
  margin-bottom: 0.9rem;
  color: white;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}



.sitemap-hero-signals li {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  align-items: center;
  padding: 0.65rem 0.7rem;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.8rem;
  font-size: 0.78rem;
  line-height: 1.4;
}

.sitemap-hero-signals li > i {
  color: #8edcf2;
  text-align: center;
}

.sitemap-hero-signals strong {
  display: block;
  margin-bottom: 0.04rem;
  color: white;
  font-size: 0.82rem;
}

.sitemap-content-shell {
  padding-block: clamp(1.5rem, 4vw, 3.75rem);
}

.sitemap-editorial-flow {
  display: grid;
  gap: clamp(1rem, 2.3vw, 1.6rem);
}

.sitemap-overview,
.sitemap-section {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid #cfe0e8;
  border-radius: clamp(1.1rem, 2.2vw, 1.65rem);
  box-shadow: 0 1.15rem 3.3rem rgba(6, 43, 67, 0.075);
}

.sitemap-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(26rem, 0.82fr);
  align-items: center;
  padding: clamp(1.35rem, 3vw, 2.2rem);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  background:
    radial-gradient(circle at 98% 0%, rgba(24, 183, 233, 0.12), transparent 20rem),
    white;
}

.sitemap-overview::before,
.sitemap-section::before {
  position: absolute;
  inset: 0 0 auto;
  height: 0.22rem;
  background: linear-gradient(90deg, var(--cyan), #70d8ef 55%, transparent);
  content: "";
}

.sitemap-overview .section-kicker,
.sitemap-section .section-kicker {
  margin-bottom: 0.35rem;
  color: var(--blue);
}

.sitemap-overview h2,
.sitemap-section h2 {
  margin-bottom: 0.45rem;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.sitemap-overview-copy > p:last-child,
.sitemap-section-heading > div > p:last-child {
  max-width: 47rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.62;
}

.sitemap-overview-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  gap: 0.65rem;
}

.sitemap-overview-stats div {
  padding: 0.95rem 0.8rem;
  background: rgba(238, 247, 250, 0.9);
  border: 1px solid #d1e4eb;
  border-radius: 0.9rem;
  text-align: center;
}

.sitemap-overview-stats dt {
  color: var(--navy);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 850;
  line-height: 1;
}

.sitemap-overview-stats dd {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.35;
}

.sitemap-section {
  padding: clamp(1.35rem, 3vw, 2.35rem);
}

.sitemap-section--primary {
  background:
    linear-gradient(135deg, rgba(239, 249, 252, 0.8), transparent 44%),
    white;
}

.sitemap-section-heading {
  display: grid;
  grid-template-columns: 3.3rem minmax(0, 1fr) auto;
  align-items: center;
  margin-bottom: clamp(1.1rem, 2.5vw, 1.65rem);
  gap: 1rem;
}

.sitemap-section-icon {
  display: inline-grid;
  width: 3.3rem;
  height: 3.3rem;
  place-items: center;
  color: var(--blue);
  background: #e8f6fb;
  border: 1px solid #c8e5ef;
  border-radius: 1rem;
  font-size: 1.15rem;
}

.sitemap-section-count {
  display: inline-flex;
  align-items: baseline;
  padding: 0.55rem 0.8rem;
  gap: 0.32rem;
  color: #31576b;
  background: #f0f7fa;
  border: 1px solid #d6e6ed;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 720;
  white-space: nowrap;
}

.sitemap-section-count strong {
  color: var(--navy);
  font-size: 0.9rem;
}

.sitemap-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.sitemap-link-card {
  display: grid;
  min-height: 7.2rem;
  grid-template-columns: 2.85rem minmax(0, 1fr);
  align-items: center;
  padding: 1rem;
  gap: 0.85rem;
  color: var(--ink);
  background: #fbfdfe;
  border: 1px solid #d4e3e9;
  border-radius: 1rem;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.sitemap-link-card:hover,
.sitemap-link-card:focus-visible {
  color: var(--ink);
  border-color: #8acde4;
  box-shadow: 0 0.85rem 2rem rgba(6, 74, 107, 0.11);
  transform: translateY(-2px);
}

.sitemap-link-icon {
  display: inline-grid;
  width: 2.85rem;
  height: 2.85rem;
  place-items: center;
  color: var(--blue);
  background: #e7f6fb;
  border-radius: 0.85rem;
  font-size: 1rem;
}

.sitemap-link-card strong,
.sitemap-link-card small {
  display: block;
}

.sitemap-link-card strong {
  color: var(--navy);
  font-size: 0.96rem;
  line-height: 1.28;
}

.sitemap-link-card small {
  margin-top: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.48;
}

.sitemap-blog-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  gap: 0.85rem;
}

.sitemap-blog-featured,
.sitemap-topic-card {
  padding: 0.85rem;
  background: #f7fbfd;
  border: 1px solid #d2e3ea;
  border-radius: 1.1rem;
}

.sitemap-link-card--featured {
  min-height: 7.8rem;
  background: white;
}

.sitemap-archive-links,
.sitemap-topic-links {
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
}

.sitemap-archive-links {
  display: grid;
  gap: 0.38rem;
}

.sitemap-archive-links a,
.sitemap-compact-grid a {
  display: flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.62rem 0.75rem;
  gap: 0.75rem;
  color: var(--navy);
  background: white;
  border: 1px solid #dae7ec;
  border-radius: 0.75rem;
  font-size: 0.76rem;
  font-weight: 740;
  line-height: 1.35;
  text-decoration: none;
}

.sitemap-archive-links a:hover,
.sitemap-archive-links a:focus-visible,
.sitemap-compact-grid a:hover,
.sitemap-compact-grid a:focus-visible {
  color: var(--blue);
  border-color: #91cee2;
}

.sitemap-archive-links i,
.sitemap-compact-grid i {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 0.68rem;
}

.sitemap-topic-heading {
  display: flex;
  align-items: center;
  padding: 0.35rem 0.35rem 0.55rem;
  gap: 0.65rem;
}

.sitemap-topic-heading > span {
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue);
  background: #e6f5fa;
  border-radius: 0.75rem;
}

.sitemap-topic-heading h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
}

.sitemap-topic-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem;
}

.sitemap-topic-links a {
  display: flex;
  min-height: 3.15rem;
  align-items: center;
  padding: 0.65rem 0.75rem;
  color: #17465f;
  background: white;
  border: 1px solid #d9e7ec;
  border-radius: 0.75rem;
  font-size: 0.74rem;
  font-weight: 720;
  line-height: 1.32;
  text-decoration: none;
}

.sitemap-topic-links a:hover,
.sitemap-topic-links a:focus-visible {
  color: var(--blue);
  border-color: #8bcde3;
}

.sitemap-articles-details {
  overflow: hidden;
  background: #f7fbfd;
  border: 1px solid #d1e3ea;
  border-radius: 1.1rem;
}

.sitemap-articles-details > summary {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
}

.sitemap-articles-details > summary::-webkit-details-marker {
  display: none;
}

.sitemap-articles-details > summary strong,
.sitemap-articles-details > summary small {
  display: block;
}

.sitemap-articles-details > summary strong {
  color: var(--navy);
  font-size: 0.98rem;
}

.sitemap-articles-details > summary small {
  margin-top: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.73rem;
}

.sitemap-summary-icon {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  background: var(--navy-2);
  border-radius: 50%;
}

.sitemap-summary-icon::before,
.sitemap-summary-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8rem;
  height: 0.12rem;
  background: white;
  border-radius: var(--radius-pill);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 160ms ease;
}

.sitemap-summary-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.sitemap-articles-details[open] .sitemap-summary-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.sitemap-article-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 1rem 1rem;
  gap: 0.8rem;
  border-top: 1px solid #d7e6ec;
}

.sitemap-article-group {
  min-width: 0;
  padding: 1rem;
  background: white;
  border: 1px solid #d9e6eb;
  border-radius: 0.9rem;
}

.sitemap-article-group h3 {
  margin-bottom: 0.65rem;
  color: var(--navy);
  font-size: 0.9rem;
}

.sitemap-article-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.sitemap-article-list li + li {
  border-top: 1px solid #e5eef2;
}

.sitemap-article-link {
  display: grid;
  min-height: 3.35rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 0.58rem 0.25rem;
  gap: 0.75rem;
  color: #16445d;
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.38;
  text-decoration: none;
}

.sitemap-article-link:hover,
.sitemap-article-link:focus-visible {
  color: var(--blue);
}

.sitemap-article-meta {
  max-width: 7.5rem;
  color: #6b8290;
  font-size: 0.62rem;
  font-weight: 620;
  text-align: right;
}

.sitemap-compact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.sitemap-compact-grid a {
  min-height: 3.45rem;
  padding-inline: 0.9rem;
  font-size: 0.79rem;
}

.sitemap-compact-grid a[aria-current="page"] {
  color: var(--navy);
  background: #edf8fb;
  border-color: #a9d9e8;
}

.sitemap-xml-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 1rem 0 0;
  padding: 0.8rem 0.9rem;
  gap: 0.35rem;
  color: var(--ink-soft);
  background: #f3f8fa;
  border-radius: 0.8rem;
  font-size: 0.72rem;
}

.sitemap-xml-link > i {
  margin-right: 0.2rem;
  color: var(--blue);
}

.sitemap-xml-link a {
  font-weight: 760;
}

@media (max-width: 64rem) {
  .sitemap-hero-layout,
  .sitemap-overview {
    grid-template-columns: minmax(0, 1fr);
  }

  .sitemap-hero-card {
    width: min(100%, 42rem);
  }

  .sitemap-overview-stats {
    max-width: 42rem;
  }

  .sitemap-blog-layout {
    grid-template-columns: minmax(17rem, 0.9fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 50rem) {
  .sitemap-card-grid,
  .sitemap-blog-layout,
  .sitemap-topic-links,
  .sitemap-compact-grid,
  .sitemap-article-groups {
    grid-template-columns: minmax(0, 1fr);
  }

  .sitemap-section-heading {
    grid-template-columns: 3.3rem minmax(0, 1fr);
  }

  .sitemap-section-count {
    width: fit-content;
    grid-column: 2;
  }
}

@media (max-width: 44rem) {
  .page-heading--sitemap {
    min-height: auto;
  }

  .page-heading--sitemap .page-heading-inner {
    padding-block: 1.6rem 2rem;
  }

  .page-heading--sitemap h1 {
    font-size: clamp(2.35rem, 13vw, 3.25rem);
  }

  .page-heading--sitemap .page-heading-actions {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .page-heading--sitemap .page-heading-actions .button {
    width: 100%;
  }

  .sitemap-hero-card {
    padding: 1.15rem;
    border-radius: 1.15rem;
  }

  .sitemap-content-shell {
    width: calc(100% - 1.5rem);
    padding-block: 1rem 2rem;
  }

  .sitemap-overview,
  .sitemap-section {
    padding: 1.15rem 0.95rem;
    border-radius: 1.05rem;
    box-shadow: none;
  }

  .sitemap-overview-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .sitemap-overview-stats div {
    display: grid;
    grid-template-columns: 3.5rem minmax(0, 1fr);
    align-items: center;
    padding: 0.7rem 0.85rem;
    text-align: left;
  }

  .sitemap-overview-stats dd {
    margin: 0;
  }

  .sitemap-section-heading {
    align-items: start;
    gap: 0.75rem;
  }

  .sitemap-section-icon {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.82rem;
  }

  .sitemap-section-count {
    grid-column: 1 / -1;
  }

  .sitemap-link-card {
    min-height: 6.4rem;
    grid-template-columns: 2.55rem minmax(0, 1fr);
    padding: 0.85rem;
  }

  .sitemap-link-icon {
    width: 2.55rem;
    height: 2.55rem;
  }

  .sitemap-articles-details > summary {
    min-height: 4.5rem;
    padding: 0.85rem;
  }

  .sitemap-article-groups {
    padding: 0.75rem;
  }

  .sitemap-article-group {
    padding: 0.75rem;
  }

  .sitemap-article-link {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.2rem;
  }

  .sitemap-article-meta {
    max-width: none;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sitemap-link-card,
  .sitemap-summary-icon::before,
  .sitemap-summary-icon::after {
    transition: none;
  }

  .sitemap-link-card:hover,
  .sitemap-link-card:focus-visible {
    transform: none;
  }
}

/* Le fil d’Ariane reprend sur chaque gabarit la hauteur de référence de la
   home. Il reste dans le flux afin que les libellés longs puissent revenir à
   la ligne sans chevaucher le contenu du hero. */
body:not(.route-home) .page-heading > .page-heading-inner {
  padding-top: var(--breadcrumb-offset-y);
}

body:not(.route-home) .page-heading > .page-heading-inner > .breadcrumbs {
  margin-block-start: 0;
}

/* Sur mobile, le dock fixe fournit les actions d’appel et de contact. Les
   coordonnées et les liens de navigation ordinaires restent visibles. */
@media (max-width: 44rem) {
  :is(#main-content, .page-heading) a[href^="tel:"]:is(.button, .cc-button, .home-text-link),
  #main-content .cc-block-wrap.cc-block-type-button:has(a[href^="tel:"]:is(.button, .cc-button)),
  #main-content .article-resource-item:has(a[href^="tel:"]:is(.button, .cc-button)) {
    display: none;
  }

  :is(#main-content, .page-heading) a:is(.button, .cc-button, .home-text-link):is([href*="/contact"], [href="#formulaire-contact"]),
  #main-content .cc-block-wrap.cc-block-type-button:has(a:is(.button, .cc-button):is([href*="/contact"], [href="#formulaire-contact"])),
  #main-content .article-resource-item:has(a:is(.button, .cc-button):is([href*="/contact"], [href="#formulaire-contact"])) {
    display: none;
  }

  :is(#main-content, .page-heading) :is(.home-inline-actions, .conversion-actions, .page-heading-actions):has(> a:is(.button, .cc-button, .home-text-link):is([href*="/contact"], [href="#formulaire-contact"])):not(:has(> a[href]:not(:is([href*="/contact"], [href="#formulaire-contact"], [href^="tel:"])))):not(:has(> button)) {
    display: none;
  }

  /* Exception demandée : le rendez-vous principal de la home reste présent,
     même si son bloc était auparavant masqué sur les petits écrans. */
  body.route-home #main-content #hometc .home-hero-card .cc-block-wrap.cc-block-type-button:has(.home-hero-action-link[href="/contact"]) {
    display: block !important;
  }

  body.route-home #main-content #hometc .home-hero-card .home-hero-action-link[href="/contact"] {
    display: flex;
  }
}

/* ==========================================================================
   Avis clients v20
   Un parcours de preuve sociale : témoignages, identité, puis dépôt d’avis.
   ========================================================================== */

.page-avis-informaticien .page-heading--reviews .page-heading-inner {
  padding-block: clamp(2rem, 4vw, 3.75rem);
}

.page-avis-informaticien .review-hero-card {
  background: linear-gradient(145deg, rgba(3, 35, 56, 0.86), rgba(6, 70, 100, 0.76));
}

.page-avis-informaticien .review-hero-card .sales-hero-card-copy {
  max-width: 29rem;
}

.page-avis-informaticien .review-hero-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-avis-informaticien .review-hero-actions .button {
  min-height: 3rem;
}

.page-avis-informaticien .review-hero-card .sales-hero-reassurance a {
  color: white;
  font-weight: 800;
}

.page-avis-informaticien .cc-page-layout-content {
  display: flex;
  flex-direction: column;
}

.page-avis-informaticien .review-testimonial-section {
  order: 1;
}

.page-avis-informaticien .review-identity-section {
  order: 2;
}

.page-avis-informaticien .review-platform-section {
  order: 3;
}

.page-avis-informaticien .review-testimonial-section {
  background:
    radial-gradient(circle at 94% 5%, rgba(24, 183, 233, 0.16), transparent 21rem),
    var(--paper);
}

.page-avis-informaticien .review-testimonial-section > .sales-section-intro {
  max-width: 44rem;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.page-avis-informaticien .review-testimonial-intro {
  max-width: 38rem;
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
}

.page-avis-informaticien .review-testimonial-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-auto-flow: row;
  grid-auto-columns: auto;
  align-items: stretch;
  overflow: visible;
  padding: 0;
  gap: clamp(0.8rem, 1.8vw, 1.2rem);
  scroll-snap-type: none;
}

.page-avis-informaticien .review-testimonial-grid .review-testimonial {
  min-height: 15.5rem;
  padding: clamp(1rem, 2.2vw, 1.35rem);
  background: rgba(255, 255, 255, 0.94);
  border-top: 0.22rem solid rgba(8, 126, 181, 0.38);
  box-shadow: 0 0.75rem 1.7rem rgba(11, 36, 53, 0.07);
}

.page-avis-informaticien .review-testimonial-grid .review-testimonial--empty {
  display: none !important;
}

.page-avis-informaticien .review-testimonial .cc-testimonial-carousel-item-content {
  display: flex;
  padding-top: 1.7rem;
}

.page-avis-informaticien .review-testimonial .cc-testimonial-carousel-message {
  align-self: center;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.62;
  white-space: pre-line;
}

.page-avis-informaticien .review-testimonial .cc-testimonial-carousel-client-rating {
  margin-bottom: 0.48rem;
  color: #e3a800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.page-avis-informaticien .review-testimonial .review-testimonial-recommendation {
  color: #0b63b6;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.page-avis-informaticien .review-testimonial .cc-testimonial-carousel-content-wrap {
  min-height: 2.5rem;
  margin-top: 1.25rem;
  padding-top: 0.85rem;
}

.page-avis-informaticien .review-testimonial .cc-testimonial-carousel-img-wrap {
  display: none;
}

.page-avis-informaticien .review-testimonial .cc-testimonial-carousel-name {
  color: var(--navy);
  font-size: 0.88rem;
}

.page-avis-informaticien .review-testimonial .cc-testimonial-carousel-designation {
  margin-top: 0.16rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.page-avis-informaticien .review-identity-section {
  background: linear-gradient(135deg, #edf8fb, #ffffff 62%);
}

.page-avis-informaticien .review-identity-section > .cc-section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.75rem);
}

.page-avis-informaticien .review-identity-copy {
  max-width: 40rem;
}

.page-avis-informaticien .review-identity-copy h2 {
  max-width: 30rem;
  margin-bottom: 0.7rem;
}

.page-avis-informaticien .review-identity-copy > p:not(.section-kicker) {
  max-width: 37rem;
  margin-bottom: 1.15rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.page-avis-informaticien .review-identity-link {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  padding: 0.65rem 0;
  gap: 0.48rem;
  color: var(--blue);
  font-weight: 820;
  text-decoration: none;
}

.page-avis-informaticien .review-identity-link:hover {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.page-avis-informaticien .review-identity-link:focus-visible,
.page-avis-informaticien .review-platform-link:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.page-avis-informaticien .review-identity-section > .cc-section-inner > .cc-row {
  display: grid;
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  margin: 0;
  gap: clamp(0.65rem, 1.6vw, 1rem);
}

.page-avis-informaticien .review-identity-section .cc-grid-cell,
.page-avis-informaticien .review-platform-grid > .cc-grid-cell {
  width: auto;
  max-width: none;
  margin: 0 !important;
}

.page-avis-informaticien .review-identity-section .sales-empty-column {
  display: none;
}

.page-avis-informaticien .review-identity-section .cc-block-single-image-container {
  display: block;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(8, 126, 181, 0.16);
  border-radius: 1rem;
  box-shadow: 0 0.8rem 1.7rem rgba(11, 36, 53, 0.08);
}

.page-avis-informaticien .review-identity-section .cc-grid-cell img {
  display: block;
  width: 100%;
  max-height: none;
  aspect-ratio: 1;
  box-shadow: none;
}

.page-avis-informaticien .review-identity-section .cc-grid-cell:nth-child(2) img {
  object-fit: cover;
}

.page-avis-informaticien .review-identity-section .cc-grid-cell:nth-child(3) img {
  padding: 0.85rem;
  object-fit: contain;
}

.page-avis-informaticien .review-platform-section {
  background: linear-gradient(135deg, #f7fbfc, #edf6f9);
}

.page-avis-informaticien .review-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  margin: 0;
  gap: clamp(0.75rem, 1.8vw, 1.1rem);
}

.page-avis-informaticien .review-platform-heading {
  grid-column: 1 / -1;
}

.page-avis-informaticien .review-platform-heading .cc-block-title {
  max-width: 41rem;
  margin-bottom: 0.55rem;
}

.page-avis-informaticien .review-platform-card,
.page-avis-informaticien .review-platform-card > .cc-column,
.page-avis-informaticien .review-platform-card .cc-content-stack,
.page-avis-informaticien .review-platform-card .cc-block-wrap,
.page-avis-informaticien .review-platform-card .cc-button-wrap {
  height: 100%;
}

.page-avis-informaticien .review-platform-card .cc-button-wrap {
  display: flex;
}

.page-avis-informaticien .review-platform-link {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 8.25rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem 2.4rem 1rem 1rem;
  gap: 0.6rem;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(8, 126, 181, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 0.65rem 1.45rem rgba(11, 36, 53, 0.065);
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: left;
}

.page-avis-informaticien .review-platform-link:hover {
  color: var(--navy);
  background: white;
  border-color: rgba(8, 126, 181, 0.42);
}

.page-avis-informaticien .review-platform-link i {
  color: var(--blue);
  font-size: 1.35rem;
}

.page-avis-informaticien .review-platform-link--google {
  border-top: 0.22rem solid #4285f4;
}

.page-avis-informaticien .review-platform-link--facebook {
  border-top: 0.22rem solid #1877f2;
}

.page-avis-informaticien .review-platform-link--trustpilot {
  border-top: 0.22rem solid #00b67a;
}

.page-avis-informaticien .review-platform-link-external {
  position: absolute;
  top: 0.85rem;
  right: 0.9rem;
  color: var(--blue);
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 70rem) {
  .page-avis-informaticien .review-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .page-avis-informaticien .review-identity-section > .cc-section-inner {
    grid-template-columns: minmax(0, 1.12fr) minmax(15rem, 0.88fr);
    gap: 1.5rem;
  }
}

@media (max-width: 44rem) {
  .page-avis-informaticien .sales-flow {
    padding-bottom: calc(7.5rem + env(safe-area-inset-bottom));
  }

  .page-avis-informaticien .review-hero-actions {
    grid-template-columns: 1fr;
  }

  .page-avis-informaticien .review-testimonial-grid,
  .page-avis-informaticien .review-platform-grid,
  .page-avis-informaticien .review-identity-section > .cc-section-inner {
    grid-template-columns: 1fr !important;
  }

  .page-avis-informaticien .review-identity-section > .cc-section-inner > .cc-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-avis-informaticien .review-testimonial-grid .review-testimonial {
    min-height: 0;
  }

  .page-avis-informaticien .review-platform-link {
    min-height: 4.7rem;
    flex-direction: row;
    align-items: center;
    padding: 0.85rem 2.25rem 0.85rem 0.95rem;
    gap: 0.7rem;
  }
}

/* Héros photo des pages de vente : voile gris transparent pour préserver
   l'image tout en maintenant la lisibilité du contenu. */
.sales-page :is(.page-heading--repair-home, .page-heading--services-home)::before {
  background:
    radial-gradient(circle at 88% 15%, rgba(175, 178, 181, 0.09), transparent 26rem),
    linear-gradient(90deg, rgba(29, 32, 34, 0.64) 0%, rgba(41, 44, 46, 0.5) 54%, rgba(56, 59, 61, 0.25) 100%);
}

@media (max-width: 44rem) {
  .sales-page :is(.page-heading--repair-home, .page-heading--services-home)::before {
    background: linear-gradient(180deg, rgba(29, 32, 34, 0.64) 0%, rgba(41, 44, 46, 0.5) 55%, rgba(56, 59, 61, 0.25) 100%);
  }
}

/* Les héros photo suivent la hauteur disponible, comme le premier bloc BIW.
   La hauteur minimale protège toutefois les cartes et les textes longs. */
@media (min-width: 52.0625rem) {
  .sales-page :is(.page-heading--repair-home, .page-heading--services-home) {
    min-height: clamp(32rem, 64vh, 38rem) !important;
  }

  .sales-page :is(.page-heading--repair-home, .page-heading--services-home) .page-heading-inner {
    padding-bottom: clamp(1.2rem, 3.2vh, 2.5rem);
  }
}

@media (min-width: 52.0625rem) and (max-height: 48rem) {
  body.sales-page:not(.route-home) .page-heading--services-home > .page-heading-inner {
    padding-top: var(--breadcrumb-offset-y);
    padding-bottom: 1rem;
  }

  .sales-page .page-heading--services-home .breadcrumbs {
    margin-bottom: 1.15rem;
  }
}

/* Le premier héros image occupe exactement l'espace restant sous la barre et
   le menu, comme sur BIW. Une min-height évite de couper les contenus longs. */
.route-home .home-flow--sales-visual #hometc.home-section--hero:first-of-type,
.sales-page :is(.page-heading--repair-home, .page-heading--services-home) {
  min-height: var(--visual-hero-viewport-height) !important;
}

@media (min-width: 52.0625rem) {
  .sales-page :is(.page-heading--repair-home, .page-heading--services-home) {
    display: grid;
    align-items: center;
  }
}

/* Articles des pages de vente : slider éditorial inspiré du format BIW,
   en conservant les contenus et médias du blog Chevalier Company. */
.sales-article-carousel {
  --sales-article-surface: linear-gradient(145deg, #073952 0%, #075e88 100%);
  min-width: 0;
}

.sales-article-carousel-action-row {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 0.8rem;
}

.sales-article-carousel-blog-link.home-section-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  margin: 0;
  padding: 0.55rem 0.85rem;
  color: var(--navy-2);
  background: #fff;
  border: 1px solid rgba(8, 126, 181, 0.34);
  border-radius: var(--radius-pill);
  box-shadow: 0 0.35rem 0.95rem rgba(11, 36, 53, 0.05);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.sales-article-carousel-blog-link.home-section-link:hover {
  color: white;
  background: var(--navy-2);
  border-color: var(--navy-2);
}

.sales-article-carousel-toolbar {
  min-height: 2.75rem;
  margin: 0;
}

.sales-article-carousel-status {
  min-width: max-content;
  color: var(--ink-soft);
  font-family: Montserrat, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sales-article-carousel-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sales-article-carousel-button {
  display: grid;
  width: 2.72rem;
  height: 2.72rem;
  padding: 0;
  place-items: center;
  color: var(--navy-2);
  background: #fff;
  border: 1px solid rgba(8, 126, 181, 0.28);
  border-radius: 50%;
  box-shadow: 0 0.32rem 0.9rem rgba(11, 36, 53, 0.05);
  cursor: pointer;
  font-size: 0.86rem;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.sales-article-carousel-button:hover:not(:disabled) {
  color: white;
  background: var(--navy-2);
  border-color: var(--navy-2);
  transform: translateY(-0.08rem);
}

.sales-article-carousel-button:focus-visible,
.sales-article-carousel-blog-link.home-section-link:focus-visible,
.sales-article-carousel-cta:focus-visible {
  outline: 0.18rem solid var(--blue);
  outline-offset: 0.18rem;
}

.sales-article-carousel-dots {
  min-height: 2.72rem;
  margin: 0;
}

.sales-article-carousel-dots span {
  width: 0.42rem;
  height: 0.42rem;
  background: #bdd8e5;
}

.sales-article-carousel-dots span.is-active {
  width: 1.35rem;
  background: var(--blue);
}

.sales-article-carousel-viewport {
  padding: clamp(0.7rem, 1.8vw, 1rem);
  background: var(--sales-article-surface);
  border: 1px solid rgba(8, 126, 181, 0.18);
  border-radius: clamp(1rem, 2vw, 1.45rem);
  box-shadow: 0 1rem 2rem rgba(3, 48, 74, 0.13);
}

.sales-article-carousel-track {
  gap: 0;
}

.js .sales-article-carousel-track > .sales-article-carousel-slide {
  display: grid;
  min-height: clamp(20rem, 28vw, 25.5rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.9fr);
  overflow: hidden;
  background: #fff;
  border: 0;
  border-radius: clamp(0.85rem, 1.7vw, 1.2rem);
  box-shadow: none;
}

.sales-article-carousel-slide:focus-within {
  border-color: transparent;
  box-shadow: none;
}

.sales-article-carousel-media,
.sales-article-carousel-media.ai-media-frame {
  position: relative;
  display: block;
  min-height: 100%;
  background: #0b3851;
}

.sales-article-carousel-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.sales-article-carousel-media:hover img {
  transform: scale(1.018);
}

.sales-article-carousel-card .home-card-body {
  justify-content: center;
  padding: clamp(1.35rem, 3.5vw, 2.55rem);
}

.sales-article-carousel-date {
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.42rem 0.65rem;
  color: var(--navy-2);
  background: #eaf6fb;
  border-radius: var(--radius-pill);
  font-family: Montserrat, sans-serif;
  font-size: 0.68rem;
  font-weight: 820;
  line-height: 1.2;
}

.sales-article-carousel-card .home-card-body h3 {
  max-width: 23ch;
  margin: 0 0 1.25rem;
  color: var(--navy);
  font-family: Montserrat, sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 2.25rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.sales-article-carousel-category {
  display: inline-flex;
  width: fit-content;
  margin: -0.6rem 0 1.1rem;
  color: var(--blue);
  font-family: Montserrat, sans-serif;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.sales-article-carousel-category:hover {
  color: var(--navy-2);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.sales-article-carousel-cta {
  width: fit-content;
  min-height: 2.85rem;
  margin-top: 0;
  border-radius: var(--radius-pill);
  font-family: Montserrat, sans-serif;
  font-size: 0.82rem;
  font-weight: 820;
}

.sales-article-carousel-cta i {
  margin-left: 0.1rem;
}

.repair-article-carousel-heading {
  margin-bottom: clamp(1.15rem, 3vw, 2rem);
}

.repair-article-carousel-description {
  max-width: 35rem;
}

.repair-article-carousel-description p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.repair-article-carousel-description p + p {
  margin-top: 0.75rem;
}

@media (max-width: 64rem) {
  .js .sales-article-carousel-track > .sales-article-carousel-slide {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.82fr);
  }

  .sales-article-carousel-card .home-card-body h3 {
    font-size: clamp(1.3rem, 3.35vw, 1.85rem);
  }
}

@media (max-width: 44rem) {
  .sales-article-carousel-action-row {
    align-items: stretch;
  }

  .sales-article-carousel-blog-link.home-section-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .sales-article-carousel-toolbar {
    width: 100%;
    justify-content: space-between;
  }

  .sales-article-carousel-status {
    min-width: 0;
    font-size: 0.66rem;
  }

  .sales-article-carousel-viewport {
    padding: 0.55rem;
    border-radius: 1rem;
  }

  .js .sales-article-carousel-track > .sales-article-carousel-slide {
    grid-template-columns: minmax(0, 1fr);
    border-radius: 0.72rem;
  }

  .sales-article-carousel-media,
  .sales-article-carousel-media.ai-media-frame {
    min-height: 0;
  }

  .sales-article-carousel-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .sales-article-carousel-card .home-card-body {
    min-height: 14.75rem;
    padding: 1.2rem;
  }

  .sales-article-carousel-card .home-card-body h3 {
    max-width: none;
    margin-bottom: 1.05rem;
    font-size: clamp(1.28rem, 6vw, 1.65rem);
  }

  .repair-article-carousel-description p {
    font-size: 0.84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .sales-article-carousel-track,
  .sales-article-carousel-button,
  .sales-article-carousel-media img {
    transition: none;
  }
}
