:root {
  --ink: #17212b;
  --muted: #5f6d75;
  --paper: #fffdf8;
  --paper-strong: #ffffff;
  --line: #b3c2bd;
  --teal: #0f766e;
  --teal-deep: #0a4f4a;
  --coral: #c0402b;
  --gold: #946608;
  --blue: #2f6f9f;
  --soft: #edf6f3;
  --shadow: 0 18px 60px rgba(23, 33, 43, 0.16);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(217, 225, 223, 0.82);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.2);
}

.brand-logo {
  display: block;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(23, 33, 43, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #2e3b43;
  font-size: 0.95rem;
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal-deep);
  background: #e6f2ef;
  outline: none;
}

.language-control {
  position: relative;
  font-size: 0.74rem;
  width: 2.9em;
  height: 2.5em;
}

.language-control::after {
  content: "";
  position: absolute;
  top: 1.05em;
  right: -0.9em;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #4a5960;
  pointer-events: none;
}

.language-list {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  width: max-content;
  min-width: 100%;
  max-height: 2.5em;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  transition: max-height 160ms ease;
  z-index: 30;
}

.language-control:focus-within .language-list {
  max-height: 200px;
  box-shadow: 0 10px 24px rgba(23, 33, 43, 0.14);
}

@media (hover: hover) {
  .language-control:hover .language-list {
    max-height: 200px;
    box-shadow: 0 10px 24px rgba(23, 33, 43, 0.14);
  }
}

.language-button {
  display: inline-grid;
  place-items: center;
  width: 100%;
  height: 2.3em;
  flex-shrink: 0;
  border: 0;
  color: #4a5960;
  background: transparent;
  font-size: inherit;
  -webkit-text-size-adjust: 100%;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

/* neutralise le padding de .site-nav a, qui rognait les libelles dans la boite */
.language-list .language-button {
  padding: 0;
}

.language-button:hover,
.language-button:focus-visible {
  color: var(--teal-deep);
  background: #e6f2ef;
  outline: none;
}

.language-button.is-active {
  order: -1;
  color: #ffffff;
  background: var(--teal-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 17px;
}

.language-control--mobile {
  display: none;
}

.language-control.is-open .language-list {
  max-height: 200px;
  box-shadow: 0 10px 24px rgba(23, 33, 43, 0.14);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(600px, calc(100svh - 110px), 760px);
  padding: clamp(72px, 9vw, 120px) clamp(20px, 6vw, 72px);
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 18, 24, 0.76) 0%, rgba(8, 18, 24, 0.48) 42%, rgba(8, 18, 24, 0.1) 100%),
    linear-gradient(0deg, rgba(8, 18, 24, 0.16), rgba(8, 18, 24, 0.04));
}

.hero-media {
  z-index: -2;
}

.hero-content {
  width: min(660px, 100%);
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #b7fbef;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.8rem, 10vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

/* Le titre du panneau chatbot est un h2 de 17px : le resserrage des grands
   titres ne doit pas l'atteindre. */
.chatbot-header h2 {
  letter-spacing: normal;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-lead {
  width: min(600px, 100%);
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.hero-payment-note {
  width: min(600px, 100%);
  margin-bottom: 28px;
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: #ffffff;
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  box-shadow: 0 1px 2px rgba(23, 33, 43, 0.08), 0 10px 24px rgba(10, 79, 74, 0.22);
  font-weight: 700;
}

.button-primary:hover,
.button-primary:focus-visible {
  color: #ffffff;
  background: #0d3f3b;
}

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}
.section {
  padding: clamp(72px, 9vw, 112px) clamp(20px, 5vw, 56px);
}

.section-heading,
.service-grid,
.project-list,
.why-layout,
.contact-layout {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
  width: min(680px, 100%);
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

/* Les quatre cartes d une categorie tiennent sur une seule ligne. Sous 1024px
   la largeur par carte devient trop faible : on repasse a deux colonnes, puis
   a une seule sous 640px (regle plus bas). */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 244px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 1px 2px rgba(23, 33, 43, 0.04), 0 12px 28px rgba(23, 33, 43, 0.08);
}

/* Titres longs (le neerlandais soude ses mots) : ils se coupent plutot que
   de deborder de la carte, devenue plus etroite depuis le passage a quatre
   colonnes par categorie. */
.service-card h3 {
  overflow-wrap: break-word;
}

.service-card[hidden] {
  display: none;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card--accent {
  color: #ffffff;
  border-color: var(--teal-deep);
  background: var(--teal-deep);
}

.service-card--accent p,
.service-card--accent .service-index {
  color: rgba(255, 255, 255, 0.82);
}

.service-index {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--coral);
  font-weight: 900;
}

.service-group {
  width: min(var(--max), 100%);
  margin: 0 auto 40px;
}

.service-group:last-of-type {
  margin-bottom: 0;
}

.service-group__title {
  margin-bottom: 18px;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}
.service-group__budget {
  margin: -8px 0 18px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

/* L etoile est un marqueur de la carte, pas un morceau du titre : elle se
   pose dans le coin superieur droit. Le titre des cartes concernees reserve la
   place correspondante pour ne jamais passer dessous. */
.service-star {
  position: absolute;
  top: 14px;
  right: 16px;
  color: var(--gold);
  font-size: 0.86rem;
  line-height: 1;
  opacity: 0.85;
}

.service-card--etoile h3 {
  padding-right: 16px;
}


.service-card--expandable.is-expanded {
  grid-column: 1 / -1;
}

.service-card__toggle {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding: 14px 0 0;
  border: none;
  background: none;
  color: var(--teal-deep);
  font-weight: 800;
  font-size: 0.92rem;
  font-family: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.service-card--expandable.is-expanded .service-card__toggle {
  margin-top: 14px;
}

/* Carte depliee : le bouton « En savoir plus » disparait, seul « Reduire »
   reste dans le detail. Il revient a la fermeture. */
.service-card--expandable.is-expanded > .service-card__toggle {
  display: none;
}

.service-card__details {
  margin-top: 14px;
}

.service-card__details p {
  color: var(--muted);
  margin-bottom: 10px;
}

.service-card__details ul {
  margin: 0 0 10px;
  padding-left: 18px;
  color: var(--muted);
}

.service-card__details li {
  margin-bottom: 8px;
}

.section-tinted {
  background: #eef7f4;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 28px;
  align-items: start;
}

.project-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid #cbdad6;
}

.project-row p {
  margin: 0;
  color: #4c5d64;
}

.project-tag {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-group {
  text-align: center;
}

.project-group__tag {
  display: block;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 800;
  text-transform: none;
  letter-spacing: normal;
}

.project-examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.project-examples h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  min-height: 2.4em;
}

.project-examples p {
  display: block;
  margin: 0;
  color: #4c5d64;
}

.project-example__toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  text-align: center;
  cursor: pointer;
}

.project-example__text {
  margin-top: 10px;
}

.project-example__text[hidden] {
  display: none;
}

.project-example__arrow {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  color: var(--teal-deep);
  animation: project-example-bounce 1.6s ease-in-out infinite;
}

.project-example__toggle[aria-expanded="true"] .project-example__arrow,
.project-group__toggle[aria-expanded="true"] .project-example__arrow {
  transform: rotate(180deg);
  animation: none;
}

.project-group__toggle {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 18px auto 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

@keyframes project-example-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.project-example__toggle {
  cursor: default;
}

.project-example__toggle .project-example__arrow {
  display: none;
}

@media (max-width: 920px) and (orientation: portrait) {
  .chat-actions.chat-actions--pending {
    display: none;
  }

  .chatbot-form.chatbot-form--pending {
    display: none;
  }

  .global-copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .global-copyright__sep {
    display: none;
  }

  .project-group {
    display: flex;
    flex-direction: column;
  }

  .project-group__tag {
    order: 1;
  }

  .project-group__toggle {
    order: 2;
  }

  .project-examples {
    grid-template-columns: 1fr;
    order: 3;
    display: none;
  }

  .project-group.is-open .project-examples {
    display: grid;
  }
}

.project-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.project-chip {
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}

.project-chip:hover {
  border-color: var(--teal);
}

.project-chip[aria-selected="true"] {
  border-color: var(--teal-deep);
  background: var(--teal-deep);
  color: #ffffff;
}

.project-chip-panels {
  width: min(640px, 100%);
  margin: 0 auto;
}

.project-chip-panel {
  margin: 0;
  color: #4c5d64;
}

.project-chip-panel[hidden] {
  display: none;
}

.method-section {
  background: var(--paper);
}

.method-carousel {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(640px, 100%);
  margin-inline: auto;
}

.method-slides {
  position: relative;
  display: grid;
  flex: 1;
  min-width: 0;
}

.method-slide {
  grid-area: 1 / 1;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.method-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.method-slide span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 24px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--teal-deep);
  font-weight: 900;
}

.method-slide p {
  margin-bottom: 0;
  color: var(--muted);
}

.method-nav {
  display: grid;
  place-items: center;
  flex: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(23, 33, 43, 0.1);
  color: #d7d2c2;
  cursor: pointer;
  transition: color 140ms ease, box-shadow 140ms ease;
}

.method-nav:hover {
  color: #b7b09a;
  box-shadow: 0 2px 10px rgba(23, 33, 43, 0.16);
}

.method-nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.method-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.method-dot {
  width: 22px;
  height: 3px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #ece7d8;
  cursor: pointer;
  transition: background 140ms ease, width 140ms ease;
}

.method-dot:hover {
  background: #ddd6c0;
}

.method-dot.is-active {
  width: 34px;
  background: #cfc6a8;
}

/* A partir de 900px, les 6 etapes sont montrees d'un seul tenant : le
   carrousel (fleches + puces) reste actif en dessous, sur mobile. */
@media (min-width: 900px) {
  .method-carousel {
    display: block;
    width: min(var(--max), 100%);
  }

  .method-nav,
  .method-dots {
    display: none;
  }

  .method-slides {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 28px;
    row-gap: 20px;
  }

  .method-slide {
    position: relative;
    grid-area: auto;
    padding: 26px 24px 24px;
    text-align: left;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: none;
  }

  .method-slide span {
    margin: 0 0 18px;
  }

  /* trait de liaison entre deux etapes d'une meme rangee */
  .method-slide:not(:nth-child(3n))::after {
    content: "";
    position: absolute;
    top: 43px;
    left: 100%;
    width: 28px;
    height: 1px;
    background: var(--line);
  }
}

.why-section {
  color: #ffffff;
  background: linear-gradient(135deg, #12202a 0%, #0f4f4a 52%, #2f6f73 100%);
}

.why-section .eyebrow {
  color: #acf5e6;
}

.why-layout {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.why-copy {
  display: grid;
  gap: 18px;
}

.why-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.contact-section {
  background: #ffffff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.contact-copy p {
  color: var(--muted);
}

.contact-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.contact-points li {
  position: relative;
  padding-left: 24px;
  color: #364850;
}

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  /* Centre la puce sur la premiere ligne : mi-hauteur de ligne (0,775em)
     moins la moitie de la puce (0,28em). */
  top: 0.49em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.contact-direct {
  margin: 20px 0 0;
  color: #364850;
}

.contact-direct-lien {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.contact-direct-lien:hover,
.contact-direct-lien:focus-visible {
  color: var(--teal-deep);
}

.contact-lead-lien {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-lead-lien:hover,
.contact-lead-lien:focus-visible {
  color: var(--teal-deep);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row-full,
.form-button,
.form-status {
  grid-column: 1 / -1;
}

label {
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd7d4;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #ffffff;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(15, 118, 110, 0.14);
}

.form-button {
  width: 100%;
  border: 0;
}

.form-delai {
  grid-column: 1 / -1;
  margin: -6px 0 0;
  color: #66747b;
  font-size: 0.92rem;
  text-align: center;
}

.form-status {
  min-height: 24px;
  margin: -4px 0 0;
  color: var(--teal-deep);
  font-weight: 700;
}

.global-copyright {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 12px 20px 18px;
  border-top: 1px solid var(--line);
  color: #66747b;
  background: var(--paper);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.chatbot-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: grid;
  justify-items: end;
  gap: 10px;
  width: min(390px, calc(100vw - 32px));
  pointer-events: none;
}

.chatbot-widget > * {
  pointer-events: auto;
}

.chatbot-launcher {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(217, 225, 223, 0.95);
  border-radius: 8px;
  color: #ffffff;
  background: var(--teal-deep);
  box-shadow: 0 16px 38px rgba(10, 79, 74, 0.28);
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
}

.chatbot-launcher:hover,
.chatbot-launcher:focus-visible {
  background: var(--teal);
  outline: none;
  transform: translateY(-1px);
}

.chatbot-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #96f4df;
  box-shadow: 0 0 0 5px rgba(150, 244, 223, 0.18);
}

.chatbot-panel {
  display: grid;
  grid-template-rows: auto minmax(220px, 1fr) auto auto;
  width: 100%;
  max-height: min(680px, calc(100svh - 96px));
  overflow: hidden;
  border: 1px solid rgba(217, 225, 223, 0.95);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 24px 72px rgba(23, 33, 43, 0.22);
}

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

.chatbot-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.chatbot-kicker {
  margin: 0 0 4px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chatbot-header h2 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.15;
}

.chatbot-header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.chatbot-history-button {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #304149;
  background: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.chatbot-history-button:hover:not(:disabled),
.chatbot-history-button:focus-visible:not(:disabled) {
  border-color: var(--teal);
  color: var(--teal-deep);
  background: #e6f2ef;
  outline: none;
}

.chatbot-history-button--reset {
  color: #a43232;
}

.chatbot-history-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.chatbot-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #26343c;
  background: #ffffff;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.chatbot-reset-confirm {
  padding: 16px;
  border-bottom: 1px solid #efb2b2;
  color: #7c1e1e;
  background: #fff0f0;
}

.chatbot-reset-confirm[hidden] {
  display: none;
}

.chatbot-reset-confirm strong {
  display: block;
  margin-bottom: 5px;
  color: #8e2020;
}

.chatbot-reset-confirm p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
}

.chatbot-reset-confirm > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.chatbot-reset-confirm button {
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid #d58c8c;
  border-radius: 8px;
  color: #7c1e1e;
  background: #ffffff;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  cursor: pointer;
}

#chatbot-reset-confirm-button {
  border-color: #a92929;
  color: #ffffff;
  background: #a92929;
}

.chatbot-close:hover,
.chatbot-close:focus-visible {
  color: var(--teal-deep);
  background: #e6f2ef;
  outline: none;
}

.chatbot-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  overflow: auto;
  background: #f7fbf9;
}

.chat-message {
  display: grid;
  gap: 8px;
  max-width: 92%;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 0.92rem;
}

.chat-message p,
.chat-message ul,
.chat-message ol {
  margin: 0;
}

.chat-message ul,
.chat-message ol {
  display: grid;
  gap: 5px;
  padding-left: 18px;
}

.chat-message li {
  padding-left: 1px;
}

.chat-message pre {
  max-height: 210px;
  overflow: auto;
  padding: 10px;
  margin: 0;
  border: 1px solid #d7e1dd;
  border-radius: 8px;
  color: #263840;
  background: #f7fbf9;
  font: inherit;
  font-size: 0.86rem;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.chat-message--bot {
  justify-self: start;
  color: #263840;
  border: 1px solid #d7e1dd;
  background: #ffffff;
}

.chat-message--thinking {
  opacity: 0.68;
  font-style: italic;
}

.chat-message--user {
  justify-self: end;
  color: #ffffff;
  background: var(--teal-deep);
}

.chat-message--user.chat-message--editing {
  outline: 3px solid rgba(223, 160, 27, 0.42);
  outline-offset: 3px;
}

.chat-message strong {
  color: inherit;
}

.chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 2px;
}

.chat-actions a,
.chat-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 9px;
  border: 1px solid #cbd8d4;
  border-radius: 8px;
  color: var(--teal-deep);
  background: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
}

.chat-actions a:hover,
.chat-actions button:hover,
.chat-actions a:focus-visible,
.chat-actions button:focus-visible {
  border-color: var(--teal);
  background: #e6f2ef;
  outline: none;
}

.chat-actions .chat-intent-choice {
  flex: 1 1 290px;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
  min-height: 88px;
  padding: 13px 15px;
  text-align: left;
}

.chat-intent-choice strong {
  font-size: 0.94rem;
}

.chat-intent-choice span {
  color: #51666d;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.4;
}

.chat-intent-choice:disabled {
  cursor: default;
  opacity: 0.52;
}

.chatbot-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.chatbot-quick-actions button {
  min-height: 32px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #304149;
  background: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.chatbot-quick-actions button:hover,
.chatbot-quick-actions button:focus-visible {
  color: var(--teal-deep);
  background: #e6f2ef;
  outline: none;
}

.chatbot-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.chatbot-form textarea {
  display: block;
  width: 100%;
  min-height: 44px;
  max-height: 130px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  resize: none;
  overflow-y: auto;
  box-sizing: border-box;
}

.chatbot-form button {
  width: 44px;
  height: 44px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: var(--coral);
  font-weight: 900;
  cursor: pointer;
}

.chatbot-form button:hover,
.chatbot-form button:focus-visible {
  background: #a63523;
  outline: none;
}

.chatbot-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(15, 118, 110, 0.14);
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 16px auto 16px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 12px;
  }

.site-nav .language-control {
    display: none;
  }

  .language-control--mobile {
    display: block;
  }

  .chatbot-form textarea {
    min-height: 44px;
    padding: 11px 14px;
    line-height: 20px;
  }

  .why-layout,
  .contact-layout,
  .project-row,
  .project-group {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
  }

  .site-nav {
    top: 64px;
  }

  .hero {
    min-height: clamp(560px, calc(100svh - 96px), 680px);
    padding-top: 64px;
    align-items: flex-end;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(8, 18, 24, 0.92) 0%, rgba(8, 18, 24, 0.8) 45%, rgba(8, 18, 24, 0.6) 100%);
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.6rem);
  }

  h2 {
    font-size: clamp(1.8rem, 10vw, 2.4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .chatbot-widget {
    right: 12px;
    bottom: 12px;
    width: min(100% - 24px, 390px);
  }

  .chatbot-launcher {
    min-height: 34px;
    padding: 6px 10px;
    gap: 6px;
    font-size: 0.8rem;
  }

  .chatbot-launcher .chatbot-dot {
    width: 7px;
    height: 7px;
  }

  .chatbot-panel {
    max-height: calc(100svh - 86px);
  }

  .chat-message {
    max-width: 100%;
  }

  .chatbot-form {
    grid-template-columns: 1fr;
  }

  .chatbot-form button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* Spacious, conversation-first assistant interface */
body.experience-assistant .chatbot-messages {
  align-content: center;
  gap: clamp(12px, 1.5vh, 18px);
  padding: clamp(42px, 10vh, 110px) 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(15, 118, 110, 0.055), transparent 42%),
    #f7fbf9;
  scroll-padding-block: 40px;
}

body.experience-assistant .chatbot-messages:has(.chat-message:nth-child(4)) {
  align-content: start;
}

body.experience-assistant .chat-message {
  max-width: min(82%, 760px);
  padding: clamp(15px, 1.6vw, 20px) clamp(17px, 2vw, 24px);
  border-radius: 18px;
  font-size: clamp(1.05rem, 0.72rem + 0.55vw, 1.35rem);
  line-height: 1.58;
  box-shadow: 0 8px 28px rgba(23, 33, 43, 0.055);
}

body.experience-assistant .chat-message--user {
  border-bottom-right-radius: 6px;
}

body.experience-assistant .chat-message--bot {
  border-bottom-left-radius: 6px;
}

body.experience-assistant .chatbot-form {
  grid-template-columns: minmax(0, 1fr) 54px;
  align-items: end;
  gap: 0;
  width: min(820px, calc(100% - 40px));
  padding: 14px 0 clamp(22px, 4vh, 42px);
  border-top: 0;
  background: transparent;
}

body.experience-assistant .chatbot-form textarea {
  min-height: 58px;
  max-height: 180px;
  padding: 16px 20px;
  resize: none;
  border: 1px solid #cbd8d4;
  border-radius: 22px 0 0 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(23, 33, 43, 0.08);
  font-size: clamp(1rem, 0.84rem + 0.3vw, 1.16rem);
  line-height: 1.45;
}

body.experience-assistant .chatbot-form button {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  min-height: 54px;
  padding: 0;
  border: 1px solid #cbd8d4;
  border-left: 0;
  border-radius: 0 8px 8px 0;
  background: var(--teal-deep);
  box-shadow: 0 10px 24px rgba(10, 79, 74, 0.24);
}

body.experience-assistant .chatbot-form button span {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}

body.experience-assistant .chatbot-form button:hover,
body.experience-assistant .chatbot-form button:focus-visible {
  background: var(--teal);
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  body.experience-assistant .chatbot-messages,
  body.experience-assistant .chatbot-form {
    width: min(100% - 24px, 820px);
  }

  body.experience-assistant .chatbot-messages {
    padding-block: clamp(28px, 7vh, 64px);
  }

  body.experience-assistant .chat-message {
    max-width: 92%;
    font-size: clamp(1rem, 3.8vw, 1.16rem);
  }

  body.experience-assistant .chatbot-form {
    grid-template-columns: minmax(0, 1fr) 50px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }

  body.experience-assistant .chatbot-form button {
    width: 50px;
    height: 50px;
    min-height: 50px;
  }
}

/* Centered guided-conversation composition */
body.experience-assistant .chatbot-panel {
  grid-template-rows: minmax(24px, 1fr) auto auto auto minmax(24px, 1fr);
  background:
    radial-gradient(circle at 50% 48%, rgba(15, 118, 110, 0.07), transparent 38%),
    #f7fbf9;
}

body.experience-assistant .chatbot-conversation-toolbar {
  grid-row: 2;
  width: min(820px, calc(100% - 40px));
  margin-inline: auto;
  padding-bottom: 14px;
  transition: opacity 0.15s ease;
}

body.experience-assistant .chatbot-correction-note {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 7px 8px 7px 12px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 999px;
  color: #34565a;
  background: rgba(229, 244, 240, 0.9);
  font-size: clamp(0.66rem, 1vw, 0.74rem);
  font-weight: 700;
  line-height: 1.3;
}

.chatbot-correction-note__text {
  flex: 1 1 auto;
}

@media (max-width: 480px) {
  body.experience-assistant .chatbot-correction-note {
    display: block;
  }

  body.experience-assistant .chatbot-correction-note__icon {
    vertical-align: middle;
    margin-right: 6px;
  }

  body.experience-assistant .chatbot-correction-note__text {
    display: inline;
  }
}

body.experience-assistant .chatbot-correction-note__icon {
  display: inline-grid;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #0f766e;
  font-size: 0.75rem;
}

body.experience-assistant .chatbot-conversation-toolbar .chatbot-history-button {
  flex: 0 0 auto;
  min-height: 0;
  padding: 3px 10px;
  border-color: rgba(164, 50, 50, 0.32);
  border-radius: 999px;
  background: transparent;
  font-size: 0.68rem;
  transition: opacity 0.15s ease;
}

body.experience-assistant .chatbot-conversation-toolbar .chatbot-history-button--reset {
  color: #a43232;
}

body.experience-assistant .chatbot-messages {
  grid-row: 3;
  align-content: end;
  width: min(820px, calc(100% - 40px));
  max-height: min(48vh, 480px);
  padding: 0;
  background: transparent;
  overflow: auto;
}

body.experience-assistant .chat-message {
  max-width: 100%;
}

body.experience-assistant .chat-message p {
  white-space: pre-line;
}

body.experience-assistant .chatbot-form {
  grid-row: 4;
  width: min(820px, calc(100% - 40px));
  padding: 12px 0 0;
}

body.experience-assistant .chatbot-form > button[type="submit"] {
  align-self: center;
}

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

body.experience-assistant .chatbot-reset-confirm {
  position: fixed;
  z-index: 4;
  top: 50%;
  left: 50%;
  grid-row: auto;
  width: min(520px, calc(100% - 32px));
  padding: 22px;
  border: 1px solid #efb2b2;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(23, 33, 43, 0.22);
  transform: translate(-50%, -50%);
}

@media (max-width: 760px) {
  body.experience-assistant .chatbot-panel {
    grid-template-rows: minmax(16px, 1fr) auto auto auto minmax(16px, 1fr);
  }

  body.experience-assistant .chatbot-conversation-toolbar,
  body.experience-assistant .chatbot-messages,
  body.experience-assistant .chatbot-form {
    width: min(100% - 24px, 820px);
  }

  body.experience-assistant .chatbot-conversation-toolbar {
    padding-bottom: 10px;
  }

  body.experience-assistant .chatbot-messages {
    max-height: 52vh;
    padding: 0;
  }

  body.experience-assistant .chatbot-form {
    padding-top: 10px;
    padding-bottom: 0;
  }
}

/* Dual entry experience */
body.experience-locked {
  overflow: hidden;
}

body.experience-locked .global-copyright {
  display: none;
}

.experience-copyright {
  position: static;
  width: 100%;
  margin: clamp(38px, 6vh, 68px) 0 0;
  padding: 15px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.experience-gate {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 72px);
  min-height: calc(100svh - 72px);
  color: #ffffff;
  background: #102129;
  padding: 14px 0 56px;
}

.experience-gate__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 auto;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: clamp(64px, 7vw, 104px);
}

.experience-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
#experience-title {
  grid-column: 1 / -1;
}


.experience-column--assistant {
  display: flex;
}

.experience-column--assistant .experience-choice {
  width: 100%;
}

@media (max-width: 900px) {
  .experience-columns {
    grid-template-columns: 1fr;
  }
}

#experience-title {
  width: 100%;
  margin: 0 0 clamp(72px, 9vw, 120px);
  color: #8ce6d5;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
  white-space: pre-line;
}

/* La question porte le regard ; la reponse la suit, plus petite, et sa largeur
   est bornee pour rester lisible une fois centree. */
.experience-title__question {
  display: block;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
}

.experience-title__answer {
  display: block;
  max-width: 72ch;
  margin: 14px auto 0;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 600;
  line-height: 1.55;
}

.experience-questions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  margin: 22px 0 40px;
}

.experience-question {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  line-height: 1.35;
}

.experience-question__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  font-size: 1rem;
  color: #8ce6d5;
  overflow: hidden;
}

.experience-question__icon--spin {
  font-size: 1.3rem;
  animation: qiconSpin 5s linear infinite;
}

@keyframes qiconSpin {
  to { transform: rotate(360deg); }
}

.experience-question__icon--rise {
  font-size: 1.15rem;
  font-weight: 900;
  -webkit-text-stroke: 2px #8ce6d5;
  text-shadow: 0 0 1px #8ce6d5;
  animation: qiconRise 5s ease-in-out infinite;
}

@keyframes qiconRise {
  0%   { transform: translateY(0); opacity: 1; }
  28%  { transform: translateY(-10px); opacity: 0; }
  29%  { transform: translateY(10px); opacity: 0; }
  58%  { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

.experience-question__icon--cmd svg {
  width: 18px;
  height: 18px;
}

.experience-question__icon--cmd path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dashoffset: 0;
  stroke-dasharray: 0 1000;
  animation: qiconDrawCmd 5s ease-in-out infinite;
}

/* Cinquieme icone : un point d'interrogation qui se trace, puis son point
   apparait. Meme cycle de 5s que les quatre autres. */
/* Sixieme question, ajoutee le 2026-08-28 : un cadenas dont l anse se souleve
   puis se referme, sur le meme tempo de 5 s que les autres icones. */
.experience-question__icon--lock svg {
  width: 18px;
  height: 18px;
}

.experience-question__icon--lock .ql-anse,
.experience-question__icon--lock .ql-corps {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.experience-question__icon--lock .ql-anse {
  transform-box: view-box;
  transform-origin: 15.4px 12.2px;
  animation: qiconCadenas 5s ease-in-out infinite;
}

@keyframes qiconCadenas {
  0%, 46%, 100% { transform: translateY(0) rotate(0deg); }
  58%, 84% { transform: translateY(-1.8px) rotate(32deg); }
}

.experience-question__icon--ask svg {
  width: 20px;
  height: 20px;
}

.experience-question__icon--ask .qa-mark {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 0 100;
  animation: qiconDrawAsk 5s ease-in-out infinite;
}

.experience-question__icon--ask .qa-dot {
  fill: currentColor;
  opacity: 0;
  animation: qiconAskDot 5s ease-in-out infinite;
}

@keyframes qiconDrawAsk {
  0%   { stroke-dasharray: 0 100; }
  35%  { stroke-dasharray: 19 100; }
  55%  { stroke-dasharray: 19 100; }
  90%  { stroke-dasharray: 0 100; }
  100% { stroke-dasharray: 0 100; }
}

@keyframes qiconAskDot {
  0%, 32%   { opacity: 0; }
  42%, 58%  { opacity: 1; }
  85%, 100% { opacity: 0; }
}

@keyframes qiconDrawCmd {
  0%   { stroke-dasharray: 0 1000; }
  35%  { stroke-dasharray: 112 1000; }
  55%  { stroke-dasharray: 112 1000; }
  90%  { stroke-dasharray: 0 1000; }
  100% { stroke-dasharray: 0 1000; }
}

.experience-question__icon--circle svg {
  width: 26px;
  height: 26px;
  animation: qiconHeartbeat 5s ease-in-out infinite;
}

.experience-question__icon--circle .qc-outer {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 62.8;
  stroke-dashoffset: 62.8;
  transform-origin: center;
  transform: rotate(-90deg);
  animation: qiconDrawCircleOuter 5s ease-in-out infinite;
}

.experience-question__icon--circle .qc-inner {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 31.4;
  stroke-dashoffset: 31.4;
  transform-origin: center;
  transform: rotate(-90deg);
  animation: qiconDrawCircleInner 5s ease-in-out infinite;
}

@keyframes qiconDrawCircleOuter {
  0%   { stroke-dashoffset: 62.8; }
  35%  { stroke-dashoffset: 0; }
  85%  { stroke-dashoffset: 0; }
  86%  { stroke-dashoffset: 62.8; }
  100% { stroke-dashoffset: 62.8; }
}

@keyframes qiconDrawCircleInner {
  0%   { stroke-dashoffset: 31.4; }
  15%  { stroke-dashoffset: 31.4; }
  50%  { stroke-dashoffset: 0; }
  85%  { stroke-dashoffset: 0; }
  86%  { stroke-dashoffset: 31.4; }
  100% { stroke-dashoffset: 31.4; }
}

@keyframes qiconHeartbeat {
  0%, 60% { transform: scale(1); }
  70%     { transform: scale(1.18); }
  75%     { transform: scale(1); }
  80%     { transform: scale(1.12); }
  85%     { transform: scale(1); }
  100%    { transform: scale(1); }
}

@media (max-width: 640px) {
  .experience-questions {
    grid-template-columns: 1fr;
  }
}

.experience-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.experience-choice {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 18px;
  min-height: 258px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.experience-choice::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 240ms ease;
}

.experience-choice:hover,
.experience-choice:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.55);
  outline: none;
}

.experience-choice:hover::after {
  transform: scale(1.18);
}

.experience-choice--assistant {
  background: linear-gradient(145deg, rgba(15, 118, 110, 0.92), rgba(8, 72, 69, 0.9));
}

.experience-choice--site:hover {
  background: rgba(255, 255, 255, 0.13);
}

.experience-choice__number {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.experience-choice__icon {
  display: grid;
  place-items: center;
  grid-column: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  font-size: 1.1rem;
}

.experience-choice strong,
.experience-choice > span:not(.experience-choice__number, .experience-choice__icon, .experience-choice__action) {
  grid-column: 1 / -1;
}

.experience-choice strong {
  align-self: end;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.experience-choice > span:not(.experience-choice__number, .experience-choice__icon, .experience-choice__action) {
  width: min(440px, 100%);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  white-space: pre-line;
}

.experience-choice__action {
  z-index: 1;
  grid-column: 1 / -1;
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.88rem;
  font-weight: 900;
}

.experience-choice__action b {
  font-size: 1.35rem;
}

.experience-reassurance {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.54);
  text-align: center;
  font-size: 0.82rem;
}

.experience-payment-note {
  margin: 8px 0 0;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
}

.experience-switch {
  position: fixed;
  z-index: 1002;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 10px 18px 10px 10px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: #0f4f4a;
  box-shadow: 0 18px 45px rgba(12, 33, 40, 0.25);
  cursor: pointer;
  font-weight: 900;
}

.experience-switch[hidden] {
  display: none;
}



.scroll-top {
  position: fixed;
  z-index: 1002;
  right: 20px;
  bottom: 84px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: #0f4f4a;
  box-shadow: 0 18px 45px rgba(12, 33, 40, 0.25);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.scroll-top[hidden] {
  display: none;
}

.experience-switch__icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #0f4f4a;
  background: #ffffff;
}

/* La pastille de l'assistant est disponible sur tout le site. Elle etait
   masquee partout depuis le retrait de la pop-up d'entree, qui etait la seule
   a poser la classe experience-site. */
.chatbot-widget {
  /* grid, et non block : c'est ce qui fait agir le justify-items: end du bloc
     principal, donc ce qui colle la pastille au bord droit. */
  display: grid;
}

/* Sur l'accueil, tant que l'encadre de l'assistant est a l'ecran, la pastille
   s'efface : c'est script.js qui pose la classe. */
body.assistant-en-vue .chatbot-widget {
  display: none;
}

/* En mode conversation plein ecran, le conteneur reprend son comportement de
   bloc, comme avant. */
body.experience-assistant .chatbot-widget {
  display: block;
}

body.experience-site .chatbot-launcher,
body.experience-assistant .chatbot-launcher {
  display: none;
}

body.experience-assistant {
  display: flex;
  flex-direction: column;
  height: 100svh;
  overflow: hidden;
  background: #eef6f4;
}

body.experience-assistant .global-copyright {
  display: none;
}

/* En mode assistant, l'en-tete du site reste la seule barre visible : la page
   d'entree, le contenu et le bouton de remontee s'effacent derriere la
   conversation. */
body.experience-assistant > main,
body.experience-assistant > .experience-gate,
body.experience-assistant > .scroll-top {
  display: none;
}

body.experience-assistant > .site-header {
  flex: 0 0 auto;
}

body.experience-assistant .chatbot-widget {
  position: relative;
  inset: auto;
  z-index: 1;
  flex: 1 1 auto;
  width: auto;
  min-height: 0;
}

body.experience-assistant .chatbot-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  width: 100%;
  max-height: none;
  padding-bottom: 34px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.chatbot-copyright {
  display: none;
}

body.experience-assistant .chatbot-copyright {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 8px;
  left: 20px;
  display: block;
  margin: 0;
  color: #5f7076;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  pointer-events: none;
}

/* L'assistant n'a plus de bandeau : il ne reste que le bouton de retour, cale
   sous l'en-tete du site, a gauche. */
body.experience-assistant .chatbot-header {
  gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 12px clamp(18px, 4vw, 48px);
  border-bottom: 0;
  color: inherit;
  background: transparent;
}

body.experience-assistant .chatbot-close {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
  min-height: 32px;
  padding: 6px 14px;
  border-radius: 999px;
  color: #34565a;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0;
}

/* Le libelle suit la langue declaree sur <html>, sans passer par le PHP. */
body.experience-assistant .chatbot-close::before {
  content: "← Revenir";
  font-size: 0.8rem;
  font-weight: 800;
}

html:lang(en) body.experience-assistant .chatbot-close::before {
  content: "← Back";
}

html:lang(nl) body.experience-assistant .chatbot-close::before {
  content: "← Terug";
}

html:lang(it) body.experience-assistant .chatbot-close::before {
  content: "← Indietro";
}

html:lang(es) body.experience-assistant .chatbot-close::before {
  content: "← Volver";
}

body.experience-assistant .chatbot-kicker,
body.experience-assistant .chatbot-header h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.experience-assistant .chatbot-history-button {
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

body.experience-assistant .chatbot-history-button--reset {
  color: #ffd0d0;
}

body.experience-assistant .chatbot-reset-confirm {
  padding-inline: max(24px, calc((100vw - 980px) / 2));
}

body.experience-assistant .chatbot-messages,
body.experience-assistant .chatbot-quick-actions,
body.experience-assistant .chatbot-form {
  width: min(900px, calc(100% - 40px));
  margin-inline: auto;
}

body.experience-assistant .chatbot-messages {
  padding: 30px 0;
}

body.experience-assistant .chatbot-quick-actions {
  padding-inline: 0;
}

body.experience-assistant .chatbot-form {
  padding: 18px 0 24px;
}

@media (max-width: 760px) {
  .experience-gate__content {
    width: min(100% - 28px, 1120px);
  }

  .experience-gate__topbar {
    --gate-inset: max(14px, calc((100% - 1120px) / 2));
  }

  .experience-gate__topbar {
    padding-top: 16px;
  }

  .experience-brand span {
    display: none;
  }

  .experience-languages a {
    min-width: 36px;
    padding: 7px 8px;
  }

  .experience-gate__content {
    align-self: start;
    margin-top: 34px;
  }


  .experience-intro {
    margin: 18px 0 24px;
  }

  .experience-choices {
    grid-template-columns: 1fr;
  }

  .experience-choice {
    min-height: 220px;
    padding: 22px;
  }

  .experience-switch {
    right: 12px;
    bottom: 12px;
    min-height: 40px;
    padding: 7px 14px 7px 7px;
    gap: 7px;
    font-size: 0.82rem;
  }

  .experience-switch__icon {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }

  .scroll-top {
    right: 12px;
    bottom: 60px;
    width: 40px;
    height: 40px;
  }

  body.experience-assistant .chatbot-header {
    padding: 18px 20px;
  }

  .chatbot-header {
    align-items: flex-start;
  }

  .chatbot-header-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  body.experience-assistant .chatbot-header {
    gap: 10px;
  }

  body.experience-assistant .chatbot-reset-confirm {
    padding-inline: 20px;
  }
}

/* Keep the conversation composition above the legacy full-screen overrides. */
body.experience-assistant .chatbot-messages {
  grid-row: 3;
  padding: clamp(42px, 10vh, 110px) 0;
}

body.experience-assistant .chatbot-form {
  grid-row: 4;
  width: min(820px, calc(100% - 40px));
  padding: 14px 0 clamp(22px, 4vh, 42px);
}

body.experience-assistant .chatbot-header {
  grid-row: 1;
}

body.experience-assistant .chatbot-reset-confirm {
  grid-row: 2;
}

@media (max-width: 760px) {
  body.experience-assistant .chatbot-messages,
  body.experience-assistant .chatbot-form {
    width: min(100% - 24px, 820px);
  }

  body.experience-assistant .chatbot-messages {
    padding-block: clamp(28px, 7vh, 64px);
  }

  body.experience-assistant .chatbot-form {
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }
}

/* Final cascade for the centered assistant layout. */
body.experience-assistant .chatbot-panel {
  grid-template-rows: minmax(24px, 1fr) auto auto auto minmax(24px, 1fr);
}

body.experience-assistant .chatbot-messages {
  grid-row: 3;
  align-content: end;
  width: min(820px, calc(100% - 40px));
  max-height: min(48vh, 480px);
  padding: 0;
  background: transparent;
}

body.experience-assistant .chatbot-form {
  grid-row: 4;
  width: min(820px, calc(100% - 40px));
  padding: 12px 0 0;
}

@media (max-width: 760px) {
  body.experience-assistant .chatbot-panel {
    grid-template-rows: minmax(16px, 1fr) auto auto auto minmax(16px, 1fr);
  }

  body.experience-assistant .chatbot-messages,
  body.experience-assistant .chatbot-form {
    width: min(100% - 24px, 820px);
  }

  body.experience-assistant .chatbot-messages {
    max-height: 52vh;
    padding: 0;
  }

  body.experience-assistant .chatbot-form {
    padding: 10px 0 0;
  }
}

/* Keep the copyright in the page flow on mobile and tablet. */
@media (max-width: 1024px) {
  .experience-gate {
    grid-template-rows: auto minmax(0, 1fr);
    padding-bottom: 0;
  }

  .experience-copyright {
    padding-bottom: max(4px, env(safe-area-inset-bottom));
  }

  body.experience-assistant .chatbot-panel {
    overflow-y: auto;
    padding-bottom: 0;
  }

  body.experience-assistant .chatbot-copyright {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-row: 5;
    align-self: end;
    width: 100%;
    padding: 11px 130px 11px 16px;
    padding-bottom: max(11px, env(safe-area-inset-bottom));
    background: rgba(238, 246, 244, 0.96);
    text-align: left;
    box-sizing: border-box;
  }

  body.experience-assistant .experience-switch {
    right: 16px;
    bottom: max(11px, env(safe-area-inset-bottom));
    min-height: 0;
    gap: 4px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #5f7076;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  body.experience-assistant .experience-switch__icon {
    width: auto;
    height: auto;
    background: transparent;
    color: #5f7076;
    font-size: 0.78rem;
  }

  body.experience-assistant.chat-input-focused .experience-switch,
  body.experience-assistant.chat-input-focused .chatbot-copyright {
    display: none;
  }
}

/* Contenu principal centre dans l'espace disponible, footer colle au bord bas, applique au desktop (mobile/tablette inchange). */
@media (min-width: 1025px) {
  .experience-gate {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }

  .experience-gate__content {
    justify-content: center;
  }

  .experience-copyright {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
  }
}

@media (max-width: 600px) {
  body.experience-assistant .chatbot-copyright-full {
    display: none;
  }
}

@media (hover: none) and (pointer: coarse) {
  body.experience-assistant .chatbot-copyright {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-row: 5;
    align-self: end;
    width: 100%;
    padding: 11px 130px 11px 16px;
    padding-bottom: max(11px, env(safe-area-inset-bottom));
    background: rgba(238, 246, 244, 0.96);
    text-align: left;
    box-sizing: border-box;
  }

  body.experience-assistant .experience-switch {
    right: 16px;
    bottom: max(11px, env(safe-area-inset-bottom));
  }

  body.experience-assistant.chat-input-focused .experience-switch,
  body.experience-assistant.chat-input-focused .chatbot-copyright {
    display: none;
  }
}

@media (max-width: 1366px) {
  body.experience-assistant .chatbot-panel {
    overflow-y: auto;
    padding-bottom: 0;
  }

  body.experience-assistant .chatbot-copyright {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-row: 5;
    align-self: end;
    width: 100%;
    padding: 11px 130px 11px 16px;
    padding-bottom: max(11px, env(safe-area-inset-bottom));
    background: rgba(238, 246, 244, 0.96);
    text-align: left;
    box-sizing: border-box;
  }

  body.experience-assistant .experience-switch {
    right: 16px;
    bottom: max(11px, env(safe-area-inset-bottom));
    min-height: 0;
    gap: 4px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #5f7076;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  body.experience-assistant .experience-switch__icon {
    width: auto;
    height: auto;
    background: transparent;
    color: #5f7076;
    font-size: 0.78rem;
  }

  body.experience-assistant.chat-input-focused .experience-switch,
  body.experience-assistant.chat-input-focused .chatbot-copyright {
    display: none;
  }
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 32px auto 0;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  padding: 4px 24px;
}

.faq-item summary {
  position: relative;
  padding: 18px 32px 18px 0;
  list-style: none;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 14px;
  right: 0;
  color: var(--teal-deep);
  font-size: 1.4rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-note {
  color: var(--ink);
}

.global-copyright a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.global-copyright a:hover {
  color: var(--teal-deep);
}

.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.legal-page .legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.legal-page .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}

.legal-page .legal-back {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.legal-page .legal-back:hover {
  color: var(--teal-deep);
}

.legal-page h1 {
  font-size: 2rem;
  line-height: 1.15;
  margin: 0 0 8px;
}

.legal-page .legal-updated {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0 0 40px;
}

.legal-page h2 {
  font-size: 1.15rem;
  margin: 40px 0 12px;
  color: var(--teal-deep);
}

.legal-page p,
.legal-page li {
  line-height: 1.7;
  color: var(--ink);
}

.legal-page ul {
  padding-left: 20px;
  margin: 0 0 16px;
}

.legal-page a.legal-mail {
  color: var(--teal-deep);
  font-weight: 600;
}

/* Mobile/tablet-portrait: fill the screen instead of centering with big empty margins. */
@media (max-width: 920px) and (orientation: portrait) {
  body.experience-assistant .chatbot-panel {
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    padding-top: 40px;
  }

  body.experience-assistant .chatbot-messages {
    align-content: start;
    max-height: none;
    padding: 14px 0;
  }

  body.experience-assistant .chatbot-form {
    margin-bottom: 40px;
  }
}


/* Text entry height must exactly match the send button height. */
@media (max-width: 920px) and (orientation: portrait) {
  body.experience-assistant .chatbot-form textarea {
    min-height: 54px;
    max-height: 54px;
    padding: 12px 20px;
  }
}

@media (max-width: 760px) {
  body.experience-assistant .chatbot-form textarea {
    min-height: 50px;
    max-height: 50px;
    padding: 12px 20px;
  }
}


body.experience-assistant .chatbot-correction-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* Dark header — all breakpoints (2026-08-10) */
.site-header {
  background: #000000;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: none;
}

.brand {
  color: #ffffff;
}

.site-nav > a {
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  transition: transform 160ms ease, font-weight 160ms ease, color 160ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible {
  color: #ffffff;
  background: transparent;
  transform: scale(1.12);
  font-weight: 800;
  outline: none;
}

.nav-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.nav-toggle__bar {
  background: #ffffff;
}

/* Language list — same look everywhere (header desktop + header mobile), matches the entry-gate list */
.language-list {
  background: #fffdf8;
  border-radius: 10px;
}

.language-button.is-active {
  background: #ffffff;
  color: #102129;
}

.language-button:not(.is-active) {
  color: rgba(23, 33, 43, 0.72);
}

.language-button:hover,
.language-button:focus-visible {
  color: var(--teal-deep);
  background: #e6f2ef;
  outline: none;
}


/* The mobile slide-down nav panel (≤920px) has its own white background — keep its link text dark, not the header's white */
@media (max-width: 920px) {
  .site-nav a {
    color: #2e3b43;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--teal-deep);
    background: #e6f2ef;
    transform: none;
    font-weight: 400;
  }
}


/* Language dropdown items: grow + bold on hover instead of the boxed highlight — desktop & landscape tablet only (2026-08-10) */
@media (min-width: 921px), (orientation: landscape) {
  .language-button {
    transition: transform 160ms ease, font-weight 160ms ease, color 160ms ease;
  }

  .language-button:hover,
  .language-button:focus-visible {
    background: transparent;
    color: var(--teal-deep);
    transform: scale(1.12);
    font-weight: 800;
    outline: none;
  }
}


/* ==========================================================================
   Page d'aperçu d'une démonstration : barre identique au header du site,
   puis l'outil occupe tout le reste de l'écran.
   Les valeurs de couleur et de gabarit sont reprises telles quelles de
   .site-header, pour que le logo ne se déplace pas d'un pixel quand on passe
   du site à la démonstration.
   ========================================================================== */

.corps-apercu {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #000000;
}

.apercu-barre {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: #000000;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.apercu-marque {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
}

.apercu-marque img { display: block; }

.apercu-etiquette {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  white-space: nowrap;
}

.apercu-titre {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  margin-right: auto;
}

.apercu-lien {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}

.apercu-lien:hover,
.apercu-lien:focus-visible { color: #ffffff; text-decoration: underline; text-underline-offset: 3px; }

.apercu-action {
  background: #1f8f7a;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  white-space: nowrap;
}

.apercu-action:hover, .apercu-action:focus-visible { background: #17705f; }

.apercu-cadre {
  flex: 1;
  display: flex;
  min-height: 0;
}

.apercu-cadre iframe {
  flex: 1;
  width: 100%;
  border: 0;
  background: #fffdf8;
}

.apercu-mobile { display: none; }

/* La démonstration est réservée aux grands écrans : sur téléphone, on remplace
   l'outil par une explication et une porte de sortie, jamais par une impasse.
   Seuil ramené de 780 à 700 px le 2026-09-05 : une tablette en portrait
   (768 px) recevait le message « se teste sur ordinateur » alors que les
   outils s'y utilisent. */
@media (max-width: 700px) {
  .apercu-barre { gap: 14px; }
  .apercu-cadre { display: none; }
  .apercu-mobile {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 1.5rem;
    color: #ffffff;
    text-align: center;
  }
  .apercu-mobile h1 { font-size: 1.3rem; margin: 0; }
  .apercu-mobile p { margin: 0; color: rgba(255, 255, 255, 0.78); line-height: 1.6; }
  .apercu-mobile .apercu-action { align-self: center; }
  .apercu-titre { width: 100%; margin-right: 0; }
}

/* Lien d'essai d'une démonstration, sur la page exemples.
   Volontairement sobre : un lien souligné, pas un bouton. La page présente
   quinze services, un aplat de couleur par démonstration la transformerait
   en tableau de bord. */

.project-group__demo {
  display: inline-block;
  margin: 0.5rem 0 0;
  color: #17705f;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-size: 0.94rem;
  font-weight: 550;
}

.project-group__demo:hover,
.project-group__demo:focus-visible { color: #0f5346; text-decoration-thickness: 2px; }

/* Page 404 maison (remplace celle d'Hostinger, en anglais et avec du tracking tiers). */
.corps-erreur {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 32px;
  background: #08151c;
  color: #fffdf8;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

.erreur-404 {
  width: min(560px, 100%);
  text-align: center;
  display: grid;
  gap: 18px;
  justify-items: center;
}

.erreur-404 img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
}

.erreur-404 .erreur-code {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.55);
}

.erreur-404 h1 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.2;
}

.erreur-404 p {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 253, 248, 0.78);
}

.erreur-liens {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 6px;
}

.erreur-liens a {
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  color: #fffdf8;
  text-decoration: none;
  font-size: 0.95rem;
}

.erreur-liens a.principal {
  background: var(--teal);
  border-color: var(--teal);
  font-weight: 600;
}

.erreur-liens a:hover,
.erreur-liens a:focus-visible {
  border-color: rgba(255, 253, 248, 0.6);
}

.erreur-liens a.principal:hover,
.erreur-liens a.principal:focus-visible {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
}

/* -------------------------------------------------------------------------
   Pages dediees par service (/fr/services/<slug>/).
   Gabarit de texte long. Tout ce qui existait deja est reutilise tel quel :
   .section, .section-tinted, .eyebrow, .faq-list, .button. Le h1 global est
   calibre pour l ecran d accueil (jusqu a 7.4rem), il faut donc le ramener
   ici a une taille de titre de page.
   ------------------------------------------------------------------------- */
.page-service {
  width: min(760px, 100%);
  margin-inline: auto;
}

.page-service h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.page-service h2 {
  margin: 0 0 18px;
  font-size: clamp(1.4rem, 3.4vw, 1.9rem);
  line-height: 1.2;
  color: var(--teal-deep);
}

.page-service h3 {
  margin: 30px 0 8px;
  font-size: 1.08rem;
  color: var(--ink);
}

.page-service p,
.page-service li {
  line-height: 1.7;
  color: var(--ink);
}

.page-service ul,
.page-service ol {
  margin: 0 0 18px;
  padding-left: 20px;
}

.page-service li {
  margin-bottom: 10px;
}

.page-service__lead {
  font-size: 1.12rem;
  color: var(--muted);
}

.page-service__essai {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.98rem;
}

.page-service__note {
  padding: 12px 16px;
  border-left: 3px solid var(--teal);
  border-radius: 0 8px 8px 0;
  background: var(--soft);
  font-weight: 600;
}

.page-service__cas {
  padding-left: 14px;
  border-left: 2px solid var(--line);
  color: var(--muted);
}

.page-service__cas strong,
.page-service__etapes li strong {
  color: var(--teal-deep);
}

.page-service__etapes li {
  margin-bottom: 14px;
}

.page-service__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-service__actions .button {
  text-decoration: none;
}

/* Le bouton secondaire de l accueil est blanc sur fond sombre : sur ces pages
   claires il serait invisible, donc on le repeint. */
.page-service .button-secondary {
  color: var(--teal-deep);
  border-color: var(--line);
  background: var(--paper-strong);
}

.page-service .button-secondary:hover,
.page-service .button-secondary:focus-visible {
  background: var(--soft);
}

.page-service__retour {
  margin-top: 28px;
}

.page-service__retour a {
  color: var(--teal-deep);
  font-weight: 600;
}

/* Lien vers la page dediee, depuis la carte depliable de l accueil. */
.service-card__lien {
  margin-top: auto;
  padding-top: 14px;
}

.service-card__lien a {
  color: var(--teal-deep);
  font-weight: 700;
}

/* ==========================================================================
   ANIMATION D'ARRIVEE (accueil uniquement). Moteur : /f1.js
   La classe .f1-arrivee est posee sur <html> avant le premier affichage, puis
   retiree a la fin. Hors animation, aucune de ces regles ne s'applique.
   ========================================================================== */

.f1-arrivee .site-header {
  overflow: hidden;
}

/* La marque est seulement masquee : elle reste dans le document, donc lisible
   par les moteurs de recherche. */
.f1-arrivee .site-header .brand {
  opacity: 0;
}

/* Pendant l'animation, marque et navigation restent au-dessus du reste. */
.f1-arrivee .site-header .brand,
.f1-arrivee .site-header .header-actions {
  position: relative;
  z-index: 2;
}

/* Sortie de secours : si le visiteur refuse les animations, la page est
   normale, quoi qu'il arrive du cote du script. */
@media (prefers-reduced-motion: reduce) {
  .f1-arrivee .site-header .brand { opacity: 1; }
}

/* ==========================================================================
   BOUTON FLOTTANT DE L'ASSISTANT, retabli le 2026-08-26.
   C'est le bouton a losange, disparu le 24 aout lors de la fusion des modes
   d'experience. Son style .experience-switch etait reste intact dans ce
   fichier, seul son balisage avait ete retire de _page.php.
   ========================================================================== */

/* Il remplace le lanceur « Besoin d'aide ? », qui reste dans le document
   parce que le script s'en sert, mais ne s'affiche plus. */
.chatbot-launcher {
  display: none;
}

/* Sur l'accueil, le bouton s'efface tant que l'encadre de l'assistant est a
   l'ecran : inutile de proposer deux fois la meme chose. */
body.assistant-en-vue .experience-switch {
  display: none;
}

/* Pendant la conversation en plein ecran, on sort par la croix du panneau. */
body.experience-assistant .experience-switch {
  display: none;
}

/* ---------------------------------------------------------------------------
   Accueil : titre principal, bande d'apercus, cartes de categorie
   Ajoute le 2026-08-27. Les regles .service-card / .service-grid restent en
   place : elles ne servent plus a l'accueil mais restent sans effet.
   --------------------------------------------------------------------------- */

.experience-h1 {
  margin: 0 0 clamp(56px, 9vw, 112px);
  padding-left: clamp(18px, 4vw, 48px);
  color: #9fd6cd;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.apercus-grille {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.apercu-carte {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-strong);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(23, 33, 43, 0.04), 0 12px 28px rgba(23, 33, 43, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.apercu-carte:hover,
.apercu-carte:focus-visible {
  transform: translateY(-3px);
  border-color: var(--teal-deep);
  box-shadow: 0 2px 4px rgba(23, 33, 43, 0.06), 0 18px 36px rgba(23, 33, 43, 0.14);
}

.apercu-carte__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.apercu-carte__nom {
  padding: 14px 16px 0;
  font-weight: 700;
  line-height: 1.25;
}

.apercu-carte__essai {
  padding: 6px 16px 16px;
  color: var(--teal-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.apercu-carte__essai::after {
  content: " \2192";
}

.categorie-grille {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

/* Deux colonnes depuis le 2026-08-28 : l accueil separe les quatre categories
   qui suivent la methode des deux qui n y entrent pas, en deux grilles de part
   et d autre du bloc .services-exception. Quatre cartes tombent en 2 x 2 et
   les deux dernieres cote a cote. En dessous de 700 px, une seule colonne. */
@media (max-width: 700px) {
  .categorie-grille {
    grid-template-columns: 1fr;
  }
}

.categorie-carte {
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-strong);
  box-shadow: 0 1px 2px rgba(23, 33, 43, 0.04), 0 12px 28px rgba(23, 33, 43, 0.08);
}

.categorie-carte__titre {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  line-height: 1.25;
}

.categorie-carte__liste {
  margin: 0;
  padding: 0;
  list-style: none;
}

.categorie-carte__liste li + li {
  margin-top: 8px;
}

.categorie-carte__liste a {
  color: var(--teal-deep);
  text-decoration: underline;
  text-decoration-color: rgba(10, 79, 74, 0.35);
  text-underline-offset: 3px;
  line-height: 1.35;
}

.categorie-carte__liste a:hover,
.categorie-carte__liste a:focus-visible {
  color: var(--teal-deep);
  text-decoration: underline;
  text-decoration-color: currentColor;
}

/* Les deux dernieres categories ne portent plus la liste de leurs services
   depuis le 2026-09-02 : seulement leur intitule. Sans liste en dessous, le
   filet du titre n aurait plus rien a separer. */
.categorie-carte--simple .categorie-carte__titre {
  margin: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

/* Chaque intitule de categorie mene a sa categorie sur la page des services.
   Il reste noir comme un titre ; le soulignement n apparait qu au survol et au
   clavier. */
.categorie-carte__titre a {
  color: inherit;
  text-decoration: none;
}

.categorie-carte__titre a:hover,
.categorie-carte__titre a:focus-visible {
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 4px;
}

/* Cible d ancre : le titre du groupe ne doit pas passer sous l en tete collant. */
.service-group[id] {
  scroll-margin-top: 96px;
}

@media (max-width: 900px) {
  .apercus-grille {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .apercus-grille {
    grid-template-columns: 1fr;
  }
}

/* Vignettes de la page Exemples, ajoutees le 2026-08-27. */

.project-group__apercu {
  display: block;
  width: min(440px, 100%);
  margin: 0 auto 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-strong);
  box-shadow: 0 1px 2px rgba(23, 33, 43, 0.04), 0 10px 24px rgba(23, 33, 43, 0.07);
  transition: transform 180ms ease, border-color 180ms ease;
}

.project-group__apercu:hover {
  transform: translateY(-2px);
  border-color: var(--teal-deep);
}

.project-group__apercu img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

/* ---------------------------------------------------------------------------
   Titre principal des pages Services et Exemples, ajoute le 2026-08-28.
   Le h1 global est calibre pour l ecran d accueil (jusqu a 7.4rem). On le
   ramene ici aux mesures exactes du h2 qu il remplace, pour que le passage de
   h2 a h1 ne change rien a l oeil.
   --------------------------------------------------------------------------- */
.section-heading h1 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

/* Passerelle de l accueil vers la page Services. */
.services-cta {
  margin: 28px 0 0;
  text-align: center;
}

/* ---------------------------------------------------------------------------
   Page Services : la coupure entre les quatre premieres categories et les deux
   dernieres. Sécurité et « Ameliorer ce que vous avez deja » ne suivent pas la
   frise Methode de l accueil, le trait et le texte le disent avant de les
   afficher. Ajoute le 2026-08-28.
   --------------------------------------------------------------------------- */
/* Trait de separation pleine largeur depuis le 2026-09-03 : les marges
   negatives annulent le padding horizontal de .section pour que le trait
   touche les deux bords de l ecran, le padding compensatoire garde le
   texte aligne sur le reste de la page. */
.services-exception {
  width: auto;
  margin: 44px calc(-1 * clamp(20px, 5vw, 56px)) 40px;
  padding: 28px clamp(20px, 5vw, 56px) 0;
  border-top: 1px solid var(--line);
}

/* Accueil, depuis le 2026-09-06 : le trait s arrete aux bords du texte, comme
   avant le 2026-09-03, soit la largeur des deux grilles de cartes qui
   l encadrent. La page Services garde le trait pleine largeur ci-dessus. */
body[data-page="accueil"] .services-exception {
  width: min(var(--max), 100%);
  margin: 44px auto 40px;
  padding: 28px 0 0;
}

.services-exception p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.services-exception p:last-child {
  margin-bottom: 0;
}

.services-exception p.services-exception__intro {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.35;
}

.services-exception > p,
.services-exception > p.services-exception__intro {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

/* ---------------------------------------------------------------------------
   Titre de l accueil : une seule ligne, quelle que soit la largeur d ecran.
   Le titre n a pas la meme longueur dans les cinq langues, donc chaque langue
   recoit la plus grande taille qui tienne encore sur une ligne a 320 px, avec
   10 % de marge. Le min() plafonne a 0,95rem : au-dela de ~570 px la taille ne
   bouge plus et le rendu bureau est inchange.
   Pour recalculer apres un changement de titre : mesurer la largeur du texte a
   100 px de police, puis vw = (1 - 18/320) / (largeur/100) * 100 * 0,9.
   Ajoute le 2026-08-28.
   --------------------------------------------------------------------------- */
html[lang="fr"] .experience-h1 {
  font-size: min(3vw, 0.95rem);
}

html[lang="en"] .experience-h1 {
  font-size: min(2.65vw, 0.95rem);
}

html[lang="nl"] .experience-h1 {
  font-size: min(2.4vw, 0.95rem);
}

html[lang="it"] .experience-h1 {
  font-size: min(3.4vw, 0.95rem);
}

html[lang="es"] .experience-h1 {
  font-size: min(3vw, 0.95rem);
}

/* ---------------------------------------------------------------------------
   Porte d entree reorganisee le 2026-08-28. Le titre garde toute la largeur,
   puis une ligne a deux colonnes : les quatre arguments a gauche, la carte de
   l assistant a droite. Les cinq questions passent sous cette ligne et se
   repartissent, au lieu d empiler un pave a gauche.
   --------------------------------------------------------------------------- */
.experience-arguments {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.experience-argument {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.experience-argument__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-top: 1px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #8ce6d5;
}

.experience-argument__icon svg {
  width: 17px;
  height: 17px;
  overflow: visible;
}

.experience-argument__icon .ea-trait {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.experience-argument__icon .ea-pupille {
  fill: currentColor;
}

.experience-argument__texte {
  display: block;
}

.experience-argument__texte strong {
  display: block;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.experience-argument__texte span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.45;
}

/* Quatre animations discretes, une par argument, sur le meme tempo de 5 s que
   les icones des questions. */
.experience-argument__icon--idee svg {
  animation: eaLueur 5s ease-in-out infinite;
}

.experience-argument__icon--envoi svg {
  animation: eaEnvol 5s ease-in-out infinite;
}

.experience-argument__icon--oeil .ea-pupille {
  transform-origin: center;
  animation: eaClin 5s ease-in-out infinite;
}

.experience-argument__icon--echelle .ea-fleche-g {
  animation: eaEcarterG 5s ease-in-out infinite;
}

.experience-argument__icon--echelle .ea-fleche-d {
  animation: eaEcarterD 5s ease-in-out infinite;
}

@keyframes eaLueur {
  0%, 70%, 100% { opacity: 0.65; transform: scale(1); }
  80%, 90% { opacity: 1; transform: scale(1.12); }
}

@keyframes eaEnvol {
  0%, 60%, 100% { transform: translate(0, 0); }
  75% { transform: translate(3px, -3px); }
  85% { transform: translate(-1px, 1px); }
}

@keyframes eaClin {
  0%, 78%, 100% { transform: scaleY(1); }
  82%, 86% { transform: scaleY(0.1); }
}

@keyframes eaEcarterG {
  0%, 60%, 100% { transform: translateX(0); }
  80% { transform: translateX(-2.5px); }
}

@keyframes eaEcarterD {
  0%, 60%, 100% { transform: translateX(0); }
  80% { transform: translateX(2.5px); }
}

/* Les questions passent sous la ligne a deux colonnes et occupent toute la
   largeur : elles se repartissent au lieu de s empiler. */
/* Les cinq questions ont quitte la porte d entree pour la section Services,
   qui est sur fond clair : il faut donc reprendre bordure, fond et couleur de
   texte, sinon le blanc translucide de la porte d entree y est illisible.
   Deplace le 2026-08-28. */
#services .experience-questions {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  width: min(var(--max), 100%);
  margin: 24px auto 30px;
}

#services .experience-question {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(145deg, rgba(15, 118, 110, 0.92), rgba(8, 72, 69, 0.9));
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 2px rgba(23, 33, 43, 0.08), 0 12px 28px rgba(10, 79, 74, 0.18);
}

#services .experience-question__icon {
  border-color: rgba(255, 255, 255, 0.28);
  color: #8ce6d5;
}

@media (prefers-reduced-motion: reduce) {
  .experience-question__icon--lock .ql-anse,
  .experience-argument__icon svg,
  .experience-argument__icon .ea-pupille,
  .experience-argument__icon .ea-fleche-g,
  .experience-argument__icon .ea-fleche-d {
    animation: none;
  }
}


/* Page Exemples, 2026-08-29 : la liste verticale devient une grille de neuf
   outils essayables. Ni categorie ni description, la vignette et son lien
   suffisent. Les prestations sans demonstration ne figurent plus ici. */

@media (max-width: 900px) {
  .project-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .project-list {
    grid-template-columns: 1fr;
  }
}

.project-autres {
  width: min(var(--max), 100%);
  margin: 40px auto 0;
  text-align: center;
  color: var(--muted);
}

.project-autres a {
  color: #17705f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.apercu-carte--tous .apercu-carte__essai {
  padding-top: 14px;
}

.apercu-langues {
  display: flex;
  gap: 10px;
  align-items: center;
}
.apercu-langues a,
.apercu-langues span {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.apercu-langues a:hover,
.apercu-langues a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.apercu-langues .apercu-langues__active {
  color: #ffffff;
  font-weight: 700;
}


/* Telephone uniquement : le bouton de retour de FastSolve IA remonte juste
   sous l'en-tete du site, sans le toucher. */
@media (max-width: 760px) {
  body.experience-assistant .chatbot-panel {
    padding-top: 0;
  }

  body.experience-assistant .chatbot-header {
    gap: 0;
    padding-top: 8px;
    padding-left: 12px;
  }
}

/* ---------------------------------------------------------------------------
   Note sur les services marques d une etoile, page Services (2026-09-03).
   Le paragraphe standard des en-tetes est limite a 680px, ce qui casse cette
   note en trois lignes serrees a gauche. On l elargit pour qu elle tienne sur
   deux lignes dans les cinq langues (l italien est le plus long : 870px).
   --------------------------------------------------------------------------- */
.section-heading p.section-note {
  width: min(900px, 100%);
}

/* ---------------------------------------------------------------------------
   Chapeaux d en-tete qui prennent toute la largeur (2026-09-03).
   Meme cause que la note etoile ci-dessus : la mesure de 680px casse ces textes
   en trois ou quatre lignes serrees a gauche. Ils sont trop longs pour tenir
   sur deux lignes a 900px, on leur laisse donc toute la largeur du conteneur.
   --------------------------------------------------------------------------- */
.section-heading p.section-note-pleine {
  width: 100%;
}
