/* ============================================================
   site.css — site marketing "Dylan" (MarketingController, route /v2).
   Autonome et isolé du site de Romain : ce fichier n'est chargé QUE
   par layouts/site.html.erb, et toutes les classes sont préfixées `sh-`
   (le site de Romain utilise `mkt-` dans application.css — aucune
   collision). Réutilise les tokens du design system (--color-*,
   --space-*, --radius-*, --shadow-*, --font-*) — aucune couleur inventée.
   ============================================================ */

.sh { margin: 0; font-family: var(--font-sans); color: var(--color-primary-900);
  background: var(--color-white); -webkit-font-smoothing: antialiased; line-height: var(--leading-normal); }
.sh *, .sh *::before, .sh *::after { box-sizing: border-box; }

.sh-container { width: 100%; max-width: 1120px; margin-inline: auto; padding-inline: var(--space-6); }

/* Icônes Lucide inline */
.sh-ic { display: inline-block; vertical-align: middle; flex: none; }

/* Révélation au scroll (JS: scroll_reveal_controller). L'état caché est
   conditionné à la présence du contrôleur → pas de FOUC, et rien n'est masqué
   si le JS/observer est absent. */
[data-controller~="scroll-reveal"] .sh-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
[data-controller~="scroll-reveal"] .sh-reveal.sh-reveal--in { opacity: 1; transform: none; }
/* Léger décalage en cascade dans les grilles / étapes / colonnes */
.sh-grid > .sh-reveal:nth-child(3n+2)  { transition-delay: 0.08s; }
.sh-grid > .sh-reveal:nth-child(3n)    { transition-delay: 0.16s; }
.sh-steps > .sh-reveal:nth-child(2)    { transition-delay: 0.08s; }
.sh-steps > .sh-reveal:nth-child(3)    { transition-delay: 0.16s; }
.sh-proof > .sh-reveal:nth-child(2)    { transition-delay: 0.10s; }
.sh-plans > .sh-reveal:nth-child(2)    { transition-delay: 0.10s; }
@media (prefers-reduced-motion: reduce) {
  [data-controller~="scroll-reveal"] .sh-reveal { opacity: 1; transform: none; transition: none; }
}

/* Problème : les deux conversations arrivent l'une après l'autre */
[data-controller~="scroll-reveal"] .sh-convos .sh-convo {
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.sh-convos.sh-reveal--in .sh-convo { opacity: 1; transform: none; }
.sh-convos.sh-reveal--in .sh-convo:nth-child(2) { transition-delay: 0.35s; }

/* Pulse « disponibilités lues en direct » (pastille verte du hero) */
.sh-live__dot { position: relative; }
.sh-live__dot::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-full);
  animation: sh-pulse 2s ease-out infinite;
}
@keyframes sh-pulse {
  0%   { box-shadow: 0 0 0 0 rgb(16 185 129 / 0.5); }
  70%  { box-shadow: 0 0 0 9px rgb(16 185 129 / 0); }
  100% { box-shadow: 0 0 0 0 rgb(16 185 129 / 0); }
}
/* Créneau sélectionné (14:00) qui « respire » doucement */
.sh-mock__slot--picked { animation: sh-breathe 2.4s ease-in-out infinite; }
@keyframes sh-breathe {
  0%, 100% { box-shadow: 0 0 0 0 rgb(29 82 218 / 0); }
  50%      { box-shadow: 0 0 0 4px rgb(29 82 218 / 0.18); }
}

/* Barre du haut condensée après le haut de page */
.sh-topbar { transition: box-shadow 0.2s ease, background 0.2s ease; }
.sh-topbar__inner { transition: height 0.2s ease; }
.sh-topbar--condensed { background: rgb(255 255 255 / 0.95); box-shadow: var(--shadow-md); }
.sh-topbar--condensed .sh-topbar__inner { height: 3.25rem; }

@media (prefers-reduced-motion: reduce) {
  [data-controller~="scroll-reveal"] .sh-convos .sh-convo { opacity: 1; transform: none; transition: none; }
  .sh-live__dot::after, .sh-mock__slot--picked { animation: none; }
  .sh-topbar, .sh-topbar__inner { transition: none; }
}

/* Défilement fluide des ancres ; scroll-margin pour ne pas passer sous la barre */
html { scroll-behavior: smooth; }
.sh [id] { scroll-margin-top: 5rem; }

/* Panneau confiance : les lignes ✓/✕ arrivent en cascade quand il se révèle */
[data-controller~="scroll-reveal"] .sh-trust__panel .sh-permit__row {
  opacity: 0; transform: translateX(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.sh-trust__panel.sh-reveal--in .sh-permit__row { opacity: 1; transform: none; }
.sh-trust__panel.sh-reveal--in .sh-permit__row:nth-child(1) { transition-delay: 0.10s; }
.sh-trust__panel.sh-reveal--in .sh-permit__row:nth-child(2) { transition-delay: 0.25s; }
.sh-trust__panel.sh-reveal--in .sh-permit__row:nth-child(3) { transition-delay: 0.40s; }
.sh-trust__panel.sh-reveal--in .sh-permit__row:nth-child(4) { transition-delay: 0.55s; }

/* Survol des cartes : l'icône réagit légèrement */
.sh-card__icon .sh-ic { transition: transform 0.25s ease; }
.sh-card:hover .sh-card__icon .sh-ic { transform: translateY(-2px) scale(1.08); }

/* Mini-démo maquette : badge ✓ qui pop sur le créneau sélectionné */
.sh-mock__slot--picked { position: relative; }
.sh-mock__slot--picked::after {
  content: "✓";
  position: absolute; top: -6px; right: -6px;
  width: 15px; height: 15px; border-radius: var(--radius-full);
  background: var(--color-secondary-500); color: var(--color-white);
  font-size: 9px; font-weight: var(--font-weight-bold);
  display: grid; place-items: center;
  animation: sh-pop 0.35s ease;
}
@keyframes sh-pop { from { transform: scale(0); } to { transform: scale(1); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-controller~="scroll-reveal"] .sh-trust__panel .sh-permit__row { opacity: 1; transform: none; transition: none; }
  .sh-card:hover .sh-card__icon .sh-ic { transform: none; }
  .sh-mock__slot--picked::after { animation: none; }
}

/* ---------- Boutons ---------- */
.sh-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  border: 1px solid transparent; border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-5);
  font-family: inherit; font-size: var(--text-sm); font-weight: var(--font-weight-bold);
  line-height: 1; text-decoration: none; cursor: pointer;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}
.sh-btn--lg { padding: var(--space-4) var(--space-8); font-size: var(--text-base); }
.sh-btn--block { width: 100%; }
.sh-btn--primary { background: var(--color-primary-500); color: var(--color-white); }
.sh-btn--primary:hover { background: var(--color-primary-600); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.sh-btn--ghost { background: transparent; color: var(--color-primary-800); border-color: var(--color-neutral-300); }
.sh-btn--ghost:hover { background: var(--color-primary-50); border-color: var(--color-primary-300); }
.sh-btn--white { background: var(--color-white); color: var(--color-primary-800); }
.sh-btn--white:hover { background: var(--color-primary-50); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.sh-btn--ghost-light { background: transparent; color: var(--color-white); border-color: rgb(255 255 255 / 0.4); }
.sh-btn--ghost-light:hover { background: rgb(255 255 255 / 0.1); border-color: var(--color-white); }
/* button_to renders a <form>; keep it inline so buttons sit on one row */
.sh-inline-form { display: inline; margin: 0; }

/* ---------- Petits éléments ---------- */
.sh-eyebrow { display: inline-block; font-size: var(--text-xs); font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-primary-500); }
.sh-accent { color: var(--color-primary-500); }

.sh-logo { display: inline-flex; align-items: center; gap: var(--space-2); text-decoration: none; }
/* Glyph de marque SyncHire : deux barres décalées (cf. public/icon.svg) */
.sh-logo__mark { display: flex; flex-direction: column; gap: 2px; width: 1.25rem; height: 1.25rem; flex: none; }
.sh-logo__mark span { display: block; height: 48%; }
.sh-logo__mark span:first-child { background: var(--color-primary-800); border-radius: var(--radius-full) 0 0 var(--radius-full); }
.sh-logo__mark span:last-child  { background: var(--color-primary-400); border-radius: 0 var(--radius-full) var(--radius-full) 0; }
.sh-logo__word { font-weight: var(--font-weight-bold); font-size: var(--text-lg); color: var(--color-primary-900); letter-spacing: -0.01em; }
/* Sur fond sombre (footer) : barres blanche + bleu clair, comme l'icône brand */
.sh-logo--light .sh-logo__word { color: var(--color-white); }
.sh-logo--light .sh-logo__mark span:first-child { background: var(--color-white); }
.sh-logo--light .sh-logo__mark span:last-child  { background: var(--color-primary-300); }

/* ---------- Barre du haut ---------- */
.sh-topbar { position: sticky; top: 0; z-index: 50; background: rgb(255 255 255 / 0.85);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--color-neutral-200); }
.sh-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); height: 4rem; }
.sh-topnav { display: flex; gap: var(--space-6); }
.sh-topnav a { font-size: var(--text-sm); font-weight: var(--font-weight-medium); color: var(--color-neutral-600); text-decoration: none; }
.sh-topnav a:hover { color: var(--color-primary-600); }
.sh-topbar__actions { display: flex; align-items: center; gap: var(--space-3); }
.sh-topbar__signin { font-size: var(--text-sm); font-weight: var(--font-weight-semibold); color: var(--color-primary-800); text-decoration: none; }
.sh-topbar__signin:hover { color: var(--color-primary-600); }
.sh-lang { display: inline-flex; align-items: center; gap: var(--space-1); font-size: var(--text-xs); font-weight: var(--font-weight-bold); }
.sh-lang__opt { color: var(--color-neutral-400); text-decoration: none; padding: var(--space-1); }
.sh-lang__opt:hover { color: var(--color-primary-600); }
.sh-lang__opt.is-active { color: var(--color-primary-700); }
.sh-lang__sep { color: var(--color-neutral-300); }

/* ---------- Hero ---------- */
.sh-hero {
  background: radial-gradient(60rem 30rem at 110% -10%, var(--color-primary-100), transparent 60%),
    linear-gradient(180deg, var(--color-primary-50), var(--color-white));
  padding-block: var(--space-14) var(--space-12);
}
.sh-hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: var(--space-12); }
.sh-hero__tag {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--color-primary-100); color: var(--color-primary-700);
  border: 1px solid var(--color-primary-200);
  font-size: var(--text-sm); font-weight: var(--font-weight-bold);
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-full);
}
.sh-hero__tag::before { content: ""; width: 6px; height: 6px; border-radius: var(--radius-full); background: var(--color-primary-500); }
.sh-hero__title { margin: var(--space-4) 0 0; font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: var(--leading-tight); font-weight: var(--font-weight-extrabold); letter-spacing: -0.02em; color: var(--color-primary-900); }
.sh-hero__lead { margin: var(--space-5) 0 0; font-size: var(--text-lg); color: var(--color-neutral-600); max-width: 34rem; }
.sh-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-3); margin-top: var(--space-8); }
.sh-hero__note { margin-top: var(--space-4); font-size: var(--text-sm); color: var(--color-neutral-500); }
.sh-hero__kicker { margin: var(--space-5) 0 0; font-size: var(--text-base); font-weight: var(--font-weight-semibold);
  color: var(--color-primary-700); padding-left: var(--space-3); border-left: 3px solid var(--color-primary-300); }

/* ---------- Vignette (page candidat, décorative) ---------- */
.sh-hero__visual { display: flex; justify-content: center; }
.sh-mock { width: 100%; max-width: 26rem; background: var(--color-white);
  border: 1px solid var(--color-neutral-200); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); padding: var(--space-5); transform: rotate(1deg); }
.sh-mock__head { display: flex; align-items: center; gap: var(--space-3); }
.sh-mock__avatar { display: grid; place-items: center; width: 2.25rem; height: 2.25rem; flex: none;
  border-radius: var(--radius-full); background: var(--color-primary-100); color: var(--color-primary-600); font-weight: var(--font-weight-bold); }
.sh-mock__title { font-weight: var(--font-weight-bold); font-size: var(--text-sm); }
.sh-mock__sub { font-size: var(--text-xs); color: var(--color-neutral-500); }
.sh-mock__strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-2); margin-top: var(--space-4); }
.sh-mock__col { display: flex; flex-direction: column; gap: var(--space-2); }
.sh-mock__day { font-size: var(--text-xs); font-weight: var(--font-weight-bold); color: var(--color-neutral-500); text-align: center; }
.sh-mock__slot { text-align: center; font-size: var(--text-xs); font-weight: var(--font-weight-semibold);
  padding: var(--space-2) 0; border-radius: var(--radius); border: 1px solid var(--color-neutral-200);
  color: var(--color-primary-800); background: var(--color-neutral-50); }
.sh-mock__slot--picked { background: var(--color-primary-500); color: var(--color-white); border-color: var(--color-primary-500); }
.sh-mock__slot--empty { color: var(--color-neutral-300); background: transparent; border-style: dashed; }
.sh-mock__foot { display: flex; align-items: center; justify-content: space-between; margin-top: var(--space-4);
  padding-top: var(--space-3); border-top: 1px solid var(--color-neutral-200); }
.sh-mock__meet { display: inline-flex; align-items: center; gap: var(--space-1); font-size: var(--text-xs); color: var(--color-neutral-600); }
.sh-mock__cta { font-size: var(--text-xs); font-weight: var(--font-weight-bold); color: var(--color-white);
  background: var(--color-secondary-500); padding: var(--space-2) var(--space-4); border-radius: var(--radius); }
.sh-live { display: inline-flex; align-items: center; gap: var(--space-2); margin-top: var(--space-4);
  font-size: var(--text-xs); font-weight: var(--font-weight-semibold); color: var(--color-secondary-700); }
.sh-live__dot { width: 0.5rem; height: 0.5rem; border-radius: var(--radius-full); background: var(--color-secondary-500);
  box-shadow: 0 0 0 3px var(--color-secondary-100); }

/* ---------- Vraies captures d'app (régénérées par test/system/marketing_shots_test.rb) ---------- */
.sh-shot { display: block; width: 100%; overflow: hidden; background: var(--color-white);
  border: 1px solid var(--color-neutral-200); border-radius: var(--radius-xl); box-shadow: var(--shadow-md); }
.sh-shot img { display: block; width: 100%; height: auto; }
.sh-shot--hero { max-width: 27rem; box-shadow: var(--shadow-lg); transform: rotate(1deg); }

/* ---------- Sections ---------- */
.sh-section { padding-block: var(--space-14); }
.sh-section--tint { background: var(--color-neutral-50); }
.sh-section__head { max-width: 42rem; margin-bottom: var(--space-10); }
.sh-section__title { margin: var(--space-3) 0 0; font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--font-weight-extrabold); letter-spacing: -0.02em; line-height: var(--leading-snug); color: var(--color-primary-900); }
.sh-section__lead { margin: var(--space-4) 0 0; font-size: var(--text-lg); color: var(--color-neutral-600); }

/* ---------- Document légal (CGU, confidentialité) ---------- */
.sh-doc { max-width: 46rem; margin-inline: auto; color: var(--color-neutral-700); }
.sh-doc h1 { margin: 0; font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: var(--font-weight-extrabold);
  letter-spacing: -0.02em; color: var(--color-primary-900); }
/* .mkt-doc__date : classe portée par les partials légaux canoniques (pages/legal/*),
   réutilisés ici. site.css ne charge pas application.css, d'où l'alias. */
.sh-doc__date, .sh-doc .mkt-doc__date { margin: var(--space-2) 0 var(--space-8); font-size: var(--text-sm); color: var(--color-neutral-500); }
.sh-doc h2 { margin: var(--space-8) 0 var(--space-2); font-size: var(--text-xl); font-weight: var(--font-weight-bold);
  color: var(--color-primary-900); }
.sh-doc p { margin: 0 0 var(--space-4); font-size: var(--text-base); line-height: var(--leading-normal); }
.sh-doc ul { margin: 0 0 var(--space-4); padding-left: var(--space-6); display: grid; gap: var(--space-2); }
.sh-doc li { font-size: var(--text-base); line-height: var(--leading-normal); }
.sh-doc a { color: var(--color-primary-600); text-decoration: underline; }
.sh-doc a:hover { color: var(--color-primary-700); }
.sh-doc blockquote { margin: 0 0 var(--space-4); padding: var(--space-4) var(--space-5);
  border-left: 3px solid var(--color-primary-500); background: var(--color-primary-50);
  border-radius: var(--radius-md); color: var(--color-primary-900); }
.sh-doc strong { color: var(--color-primary-900); }

/* ---------- Étapes ---------- */
.sh-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.sh-step { background: var(--color-white); border: 1px solid var(--color-neutral-200); border-radius: var(--radius-lg); padding: var(--space-6); }
.sh-step__num { display: grid; place-items: center; width: 2.25rem; height: 2.25rem; border-radius: var(--radius-full);
  background: var(--color-primary-500); color: var(--color-white); font-weight: var(--font-weight-bold); }
.sh-step h3 { margin: var(--space-4) 0 var(--space-2); font-size: var(--text-lg); font-weight: var(--font-weight-bold); }
.sh-step p { margin: 0; color: var(--color-neutral-600); font-size: var(--text-sm); }

/* ---------- Grille de fonctionnalités ---------- */
.sh-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.sh-card { background: var(--color-white); border: 1px solid var(--color-neutral-200); border-radius: var(--radius-lg);
  padding: var(--space-6); transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease; }
.sh-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--color-primary-200); }
.sh-card__icon { display: grid; place-items: center; width: 2.75rem; height: 2.75rem; border-radius: var(--radius-md);
  background: var(--color-primary-50); color: var(--color-primary-600); }
.sh-card h3 { margin: var(--space-4) 0 var(--space-2); font-size: var(--text-base); font-weight: var(--font-weight-bold); }
.sh-card p { margin: 0; color: var(--color-neutral-600); font-size: var(--text-sm); }
.sh-card__soon { display: inline-block; margin-top: var(--space-3); font-size: var(--text-2xs); font-weight: var(--font-weight-bold);
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-primary-700); background: var(--color-primary-100);
  padding: var(--space-1) var(--space-2); border-radius: var(--radius-full); }

/* ---------- Confiance ---------- */
.sh-trust { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-12); align-items: center; }
/* Marge haute : le lead de la section « Confidentialité » a margin-bottom 0,
   donc sans ça la liste colle au paragraphe (seul usage de .sh-checklist). */
.sh-checklist { list-style: none; margin: var(--space-5) 0 0; padding: 0; display: grid; gap: var(--space-3); }
.sh-checklist li { position: relative; padding-left: var(--space-8); font-weight: var(--font-weight-medium); color: var(--color-primary-900); }
.sh-checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; display: grid; place-items: center;
  width: 1.5rem; height: 1.5rem; border-radius: var(--radius-full); background: var(--color-secondary-100);
  color: var(--color-secondary-700); font-size: var(--text-xs); font-weight: var(--font-weight-bold); }
.sh-permit { background: var(--color-primary-900); border-radius: var(--radius-xl); padding: var(--space-6);
  display: grid; gap: var(--space-3); box-shadow: var(--shadow-lg); }
.sh-permit__row { display: flex; align-items: center; gap: var(--space-3); color: var(--color-white);
  font-weight: var(--font-weight-medium); font-size: var(--text-sm); }
.sh-permit__row span { display: grid; place-items: center; width: 1.5rem; height: 1.5rem; flex: none;
  border-radius: var(--radius-full); background: var(--color-secondary-500); color: var(--color-white); font-size: var(--text-xs); }
.sh-permit__row--off { color: var(--color-primary-300); }
.sh-permit__row--off span { background: rgb(255 255 255 / 0.12); color: var(--color-primary-200); }

/* ---------- Tarifs / accès anticipé ---------- */
.sh-plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); max-width: 52rem; margin-inline: auto; }
.sh-plan { position: relative; background: var(--color-white); border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-lg); padding: var(--space-8); display: flex; flex-direction: column; }
.sh-plan--featured { border-color: var(--color-primary-300); box-shadow: var(--shadow-md); }
.sh-plan__badge { position: absolute; top: var(--space-4); right: var(--space-4); font-size: var(--text-2xs);
  font-weight: var(--font-weight-bold); text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-primary-700);
  background: var(--color-primary-100); padding: var(--space-1) var(--space-2); border-radius: var(--radius-full); }
.sh-plan__name { margin: 0; font-size: var(--text-lg); font-weight: var(--font-weight-bold); }
.sh-plan__price { margin: var(--space-2) 0 0; color: var(--color-neutral-500); }
.sh-plan__price span { font-size: var(--text-4xl); font-weight: var(--font-weight-extrabold); color: var(--color-primary-900); }
.sh-plan__pitch { margin: var(--space-3) 0 var(--space-5); color: var(--color-neutral-600); font-size: var(--text-sm); }
.sh-plan__list { list-style: none; margin: 0 0 var(--space-6); padding: 0; display: grid; gap: var(--space-2); flex: 1; }
.sh-plan__list li { position: relative; padding-left: var(--space-6); font-size: var(--text-sm); color: var(--color-primary-900); }
.sh-plan__list li::before { content: "✓"; position: absolute; left: 0; color: var(--color-secondary-600); font-weight: var(--font-weight-bold); }

/* ---------- CTA finale ---------- */
.sh-cta { background: linear-gradient(135deg, var(--color-primary-700), var(--color-primary-500)); padding-block: var(--space-14); }
.sh-cta__inner { text-align: center; }
.sh-cta h2 { margin: 0; color: var(--color-white); font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--font-weight-extrabold); letter-spacing: -0.02em; }
.sh-cta p { margin: var(--space-4) auto 0; color: var(--color-primary-100); max-width: 32rem; }
.sh-cta__actions { display: flex; justify-content: center; flex-wrap: wrap; align-items: center; gap: var(--space-3); margin-top: var(--space-8); }

/* ---------- Pied de page ---------- */
.sh-footer { background: var(--color-primary-900); color: var(--color-primary-200); padding-block: var(--space-14) var(--space-6); }
.sh-footer__inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: var(--space-12);
  padding-bottom: var(--space-8); border-bottom: 1px solid rgb(255 255 255 / 0.1); }
.sh-footer__brand { max-width: 22rem; }
.sh-footer__brand p { margin: var(--space-3) 0 0; font-size: var(--text-sm); color: var(--color-primary-300); }
.sh-footer__brand .sh-footer__addr { margin-top: var(--space-2); font-size: var(--text-xs); color: var(--color-primary-400); }
.sh-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.sh-footer__title { margin: 0 0 var(--space-4); font-size: var(--text-xs); font-weight: var(--font-weight-bold);
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-primary-400); }
.sh-footer__links { display: flex; flex-direction: column; gap: var(--space-3); }
.sh-footer__links a { color: var(--color-primary-200); text-decoration: none; font-size: var(--text-sm); transition: color .15s ease; }
.sh-footer__links a:hover { color: var(--color-white); }
.sh-footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-3);
  padding-top: var(--space-6); font-size: var(--text-xs); color: var(--color-primary-300); }
@media (max-width: 48rem) {
  .sh-footer__inner { grid-template-columns: 1fr; gap: var(--space-8); }
  .sh-footer__cols { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
}

/* ---------- Problème (fil d'e-mails) ---------- */
.sh-problem { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-12); align-items: center; }
.sh-thread { background: var(--color-white); border: 1px solid var(--color-neutral-200); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); padding: var(--space-5); display: grid; gap: var(--space-3); }
.sh-thread__caption { font-size: var(--text-xs); font-weight: var(--font-weight-bold); color: var(--color-neutral-500);
  padding-bottom: var(--space-3); border-bottom: 1px solid var(--color-neutral-200); }
.sh-bubble { display: flex; align-items: flex-end; gap: var(--space-2); max-width: 85%; }
.sh-bubble--out { align-self: flex-start; }
.sh-bubble--in { align-self: flex-end; flex-direction: row-reverse; margin-left: auto; }
.sh-bubble__av { display: grid; place-items: center; width: 1.75rem; height: 1.75rem; flex: none;
  border-radius: var(--radius-full); font-size: var(--text-2xs); font-weight: var(--font-weight-bold); color: var(--color-white); }
.sh-bubble__av--cb { background: var(--color-primary-500); }
.sh-bubble__av--dw { background: var(--color-neutral-500); }
.sh-bubble__msg { font-size: var(--text-sm); padding: var(--space-2) var(--space-3); border-radius: var(--radius-lg); }
.sh-bubble--out .sh-bubble__msg { background: var(--color-neutral-100); color: var(--color-primary-900); border-bottom-left-radius: var(--radius); }
.sh-bubble--in .sh-bubble__msg { background: var(--color-primary-500); color: var(--color-white); border-bottom-right-radius: var(--radius); }
.sh-stat { margin-top: var(--space-6); display: flex; align-items: baseline; gap: var(--space-3); }
.sh-stat__num { font-size: clamp(2.25rem, 4vw, 3rem); font-weight: var(--font-weight-extrabold); letter-spacing: -0.02em;
  color: var(--color-primary-500); line-height: 1; }
.sh-stat__label { font-size: var(--text-sm); color: var(--color-neutral-600); max-width: 22rem; }

/* Problème : deux conversations séparées (recruteur ↔ manager, ↔ candidat) */
.sh-convos { display: grid; gap: var(--space-4); }
.sh-convo {
  background: var(--color-white); border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-xl); box-shadow: var(--shadow); padding: var(--space-4);
  display: grid; gap: var(--space-2);
}
.sh-convo__head {
  display: flex; align-items: center; gap: var(--space-2);
  padding-bottom: var(--space-3); margin-bottom: var(--space-1);
  border-bottom: 1px solid var(--color-neutral-100);
}
.sh-convo__role {
  font-size: var(--text-2xs); font-weight: var(--font-weight-bold);
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: var(--space-0_5) var(--space-2); border-radius: var(--radius-full);
}
.sh-convo__role--you  { background: var(--color-primary-100); color: var(--color-primary-700); }
.sh-convo__role--mgr  { background: var(--color-neutral-200); color: var(--color-neutral-700); }
.sh-convo__role--cand { background: var(--color-secondary-100); color: var(--color-secondary-700); }
.sh-convo__arrow { color: var(--color-neutral-400); font-size: var(--text-sm); }

/* ---------- Preuve produit ---------- */
.sh-proof { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-8); max-width: 60rem; margin-inline: auto; }
.sh-proof__col { display: flex; flex-direction: column; }
.sh-proof__frame { background: var(--color-white); border: 1px solid var(--color-neutral-200); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md); padding: var(--space-4); display: grid; gap: var(--space-2); }
.sh-proof__cap { margin: var(--space-4) 0 0; font-size: var(--text-sm); color: var(--color-neutral-600); text-align: center; }
.sh-lrow { display: flex; align-items: center; gap: var(--space-3); padding: var(--space-2);
  border: 1px solid var(--color-neutral-200); border-radius: var(--radius-lg); }
.sh-lrow__av { display: grid; place-items: center; width: 2rem; height: 2rem; flex: none; border-radius: var(--radius-full);
  background: var(--color-primary-100); color: var(--color-primary-600); font-size: var(--text-2xs); font-weight: var(--font-weight-bold); }
.sh-lrow__main { flex: 1; min-width: 0; }
.sh-lrow__name { font-size: var(--text-sm); font-weight: var(--font-weight-semibold); color: var(--color-primary-900); }
.sh-lrow__sub { font-size: var(--text-xs); color: var(--color-neutral-500); }
.sh-chip { flex: none; font-size: var(--text-2xs); font-weight: var(--font-weight-bold); padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-full); }
.sh-chip--ok { background: var(--color-secondary-100); color: var(--color-secondary-700); }
.sh-chip--wait { background: var(--color-primary-100); color: var(--color-primary-700); }
.sh-chip--declined { background: var(--color-danger-100); color: var(--color-danger-700); }
.sh-proof__days { display: flex; gap: var(--space-2); }
.sh-proof__day { flex: 1; text-align: center; font-size: var(--text-xs); font-weight: var(--font-weight-semibold);
  padding: var(--space-2) 0; border-radius: var(--radius); border: 1px solid var(--color-neutral-200); color: var(--color-neutral-600); }
.sh-proof__day--on { background: var(--color-primary-500); color: var(--color-white); border-color: var(--color-primary-500); }
.sh-proof__times { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-2); }
.sh-proof__time { text-align: center; font-size: var(--text-xs); font-weight: var(--font-weight-semibold); padding: var(--space-2) 0;
  border-radius: var(--radius); border: 1px solid var(--color-neutral-200); color: var(--color-primary-800); background: var(--color-neutral-50); }
.sh-proof__time--on { background: var(--color-secondary-500); color: var(--color-white); border-color: var(--color-secondary-500); }
.sh-powered { display: flex; align-items: center; justify-content: center; gap: var(--space-2); margin-top: var(--space-2);
  font-size: var(--text-2xs); font-weight: var(--font-weight-semibold); color: var(--color-neutral-400); }
.sh-powered__mark { display: flex; flex-direction: column; gap: 1px; width: 0.7rem; height: 0.7rem; flex: none; }
.sh-powered__mark span { display: block; height: 46%; }
.sh-powered__mark span:first-child { background: var(--color-neutral-400); border-radius: var(--radius-full) 0 0 var(--radius-full); }
.sh-powered__mark span:last-child  { background: var(--color-neutral-300); border-radius: 0 var(--radius-full) var(--radius-full) 0; }

/* ---------- Mot du co-fondateur (carte citation) ---------- */
/* Carte encadrée : sinon la photo + citation flottent dans le même blanc que
   le hero juste au-dessus, sans séparation visible. */
.sh-founder { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-8); align-items: center;
  max-width: 60rem; margin-inline: auto;
  background: var(--color-neutral-50); border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-xl); padding: var(--space-8); }
.sh-founder__photo { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md); background: var(--color-neutral-100); }
.sh-founder__quote { margin: var(--space-4) 0 var(--space-5); font-size: var(--text-xl); line-height: 1.45;
  font-weight: var(--font-weight-medium); color: var(--color-primary-900); }
.sh-founder__person { display: flex; flex-direction: column; }
.sh-founder__name { font-weight: var(--font-weight-bold); color: var(--color-primary-900); }
.sh-founder__role { font-size: var(--text-sm); color: var(--color-neutral-500); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .sh-problem { grid-template-columns: 1fr; }
  .sh-convos { order: -1; }
  .sh-proof { grid-template-columns: 1fr; }
  .sh-founder { grid-template-columns: 1fr; gap: var(--space-6); padding: var(--space-5); }
  .sh-founder__media { order: -1; }
  .sh-hero__inner { grid-template-columns: 1fr; }
  .sh-hero__visual { order: -1; }
  .sh-steps { grid-template-columns: 1fr; }
  .sh-grid { grid-template-columns: repeat(2, 1fr); }
  .sh-trust { grid-template-columns: 1fr; }
  .sh-plans { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .sh-topnav { display: none; }
  .sh-grid { grid-template-columns: 1fr; }
  .sh-topbar__signin { display: none; }
}

/* --- Centre d'aide (/help), refonte 2026-07-25 — tokens uniquement. ------ */
/* Bandeau de tête : la recherche EST le travail de la page. */
.sh-help-hero { background: linear-gradient(180deg, var(--color-primary-50), var(--color-white));
  border-bottom: 1px solid var(--color-neutral-100); text-align: center;
  padding: var(--space-12) 0 var(--space-10); }
.sh-help-hero .sh-section__lead { margin: 0 auto var(--space-6); }
.sh-help-search { max-width: 560px; margin: 0 auto; position: relative;
  display: flex; align-items: center; }
.sh-help-search input { width: 100%; height: 50px; padding: 0 118px 0 42px;
  border: 1px solid var(--color-neutral-200); border-radius: var(--radius-lg);
  background: var(--color-white); font: inherit; font-size: var(--text-base);
  color: var(--color-neutral-900); box-shadow: var(--shadow-sm); }
.sh-help-search input:focus { outline: 0; border-color: var(--color-primary-300); }
.sh-help-search__icon { position: absolute; left: 15px; color: var(--color-neutral-400); }
.sh-help-search__btn { position: absolute; right: 6px; height: 38px; }
.sh-help-result { margin: var(--space-3) 0 0; font-size: var(--text-sm);
  color: var(--color-neutral-500); }
.sh-help-result__clear { font-weight: var(--font-weight-bold); margin-left: var(--space-2); }

/* Petits intertitres majuscule ("Commencez ici", "Catégories"…). */
.sh-help-kicker { font-size: var(--text-xs); font-weight: var(--font-weight-bold);
  letter-spacing: .06em; text-transform: uppercase; color: var(--color-neutral-400);
  margin: 0 0 var(--space-3); }

/* Commencez ici : les trois questions d'un premier lancement. */
.sh-help-starters { margin-bottom: var(--space-10); }
.sh-help-starters__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.sh-starter { display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-4); border: 1px solid var(--color-primary-100);
  border-radius: var(--radius-lg); background: var(--color-primary-50);
  text-decoration: none; color: inherit; transition: all .18s ease; }
.sh-starter:hover { border-color: var(--color-primary-300); box-shadow: var(--shadow-md); color: inherit; }
.sh-starter__num { width: 26px; height: 26px; flex: none; border-radius: 999px;
  background: var(--color-white); border: 1px solid var(--color-primary-200);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs); font-weight: var(--font-weight-bold); color: var(--color-primary-500); }
.sh-starter__title { font-size: var(--text-sm); font-weight: var(--font-weight-bold); line-height: 1.3; }

/* Deux colonnes : rail de catégories collant | contenu. */
.sh-help-layout { display: grid; grid-template-columns: 210px minmax(0, 1fr);
  gap: var(--space-10); align-items: start; }
.sh-help-rail { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 2px; }
.sh-help-rail__item { display: flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2) var(--space-3); border-radius: var(--radius-md);
  font-size: var(--text-sm); font-weight: var(--font-weight-bold);
  color: var(--color-neutral-600); text-decoration: none; transition: all .15s ease; }
.sh-help-rail__item span:first-child { flex: 1; }
.sh-help-rail__item:hover { background: var(--color-neutral-50); color: var(--color-neutral-600); }
.sh-help-rail__item--on, .sh-help-rail__item--on:hover {
  background: var(--color-primary-50); color: var(--color-primary-600); }
.sh-help-rail__count { font-size: var(--text-xs); font-weight: var(--font-weight-bold);
  padding: 1px 7px; border-radius: 999px; background: var(--color-neutral-100);
  color: var(--color-neutral-400); }
.sh-help-rail__item--on .sh-help-rail__count { background: var(--color-primary-100);
  color: var(--color-primary-600); }

/* Groupes de catégorie : icône carrée + titre, puis cartes en 2 colonnes. */
.sh-help-main { display: flex; flex-direction: column; gap: var(--space-10); min-width: 0; }
.sh-help-cathead { display: flex; align-items: center; gap: var(--space-3);
  margin-bottom: var(--space-4); }
.sh-help-cathead h2 { margin: 0; font-size: var(--text-lg); font-weight: var(--font-weight-bold); }
.sh-help-caticon { width: 30px; height: 30px; flex: none; border-radius: var(--radius-md);
  background: var(--color-primary-100); color: var(--color-primary-600);
  display: flex; align-items: center; justify-content: center; }
.sh-help-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
.sh-help-card { display: flex; align-items: flex-start; gap: var(--space-3);
  padding: var(--space-4); background: var(--color-white);
  border: 1px solid var(--color-neutral-200); border-radius: var(--radius-lg);
  text-decoration: none; color: inherit; transition: all .18s ease; }
.sh-help-card:hover { border-color: var(--color-primary-200); box-shadow: var(--shadow-md);
  transform: translateY(-2px); color: inherit; }
.sh-help-card svg { flex: none; margin-top: 3px; color: var(--color-neutral-300); }
.sh-help-card__text { flex: 1; min-width: 0; }
.sh-help-card__title { display: block; font-size: var(--text-sm);
  font-weight: var(--font-weight-bold); line-height: 1.3; margin-bottom: 4px; }
.sh-help-card__summary { display: block; font-size: var(--text-sm); line-height: 1.45;
  color: var(--color-neutral-500); }

/* État vide : des issues, pas une ligne grise. */
.sh-help-emptybox { text-align: center; padding: var(--space-10) var(--space-6);
  border: 1px dashed var(--color-neutral-300); border-radius: var(--radius-lg); }
.sh-help-emptybox__title { margin: 0 0 var(--space-2); font-size: var(--text-base);
  font-weight: var(--font-weight-bold); }
.sh-help-emptybox__body { margin: 0 0 var(--space-4); font-size: var(--text-sm);
  color: var(--color-neutral-500); }
.sh-help-emptybox__actions { display: flex; align-items: center; justify-content: center;
  gap: var(--space-3); }

/* Bandeau contact : jamais d'impasse. */
.sh-help-contact { margin-top: var(--space-12); display: flex; align-items: center;
  gap: var(--space-5); padding: var(--space-6) var(--space-8);
  background: var(--color-neutral-50); border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-lg); flex-wrap: wrap; }
.sh-help-contact__text { flex: 1; min-width: 260px; }
.sh-help-contact__title { margin: 0 0 4px; font-size: var(--text-base);
  font-weight: var(--font-weight-bold); }
.sh-help-contact__body { margin: 0; font-size: var(--text-sm); color: var(--color-neutral-600); }

/* --- Article ------------------------------------------------------------- */
.sh-help-crumb { display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm); color: var(--color-neutral-400); margin-bottom: var(--space-6); }
.sh-help-crumb a { color: var(--color-neutral-500); font-weight: 600; }
.sh-help-crumb a:hover { color: var(--color-primary-500); }
.sh-help-crumb strong { color: var(--color-primary-900); }
.sh-help-artlayout { display: grid; grid-template-columns: minmax(0, 1fr) 220px;
  gap: var(--space-12); align-items: start; }
.sh-help-article h1 { margin-bottom: var(--space-2); }
.sh-help-meta { display: flex; align-items: center; gap: var(--space-3);
  font-size: var(--text-sm); color: var(--color-neutral-500); margin: 0 0 var(--space-8); }
.sh-help-meta__dot { width: 3px; height: 3px; border-radius: 999px;
  background: var(--color-neutral-300); }
.sh-help-draftpill { display: inline-flex; align-items: center; gap: 7px;
  margin: 0 0 var(--space-3); padding: 6px 12px; border-radius: 999px;
  background: var(--color-danger-50); border: 1px solid var(--color-danger-100);
  font-size: var(--text-xs); font-weight: var(--font-weight-bold);
  color: var(--color-danger-600); }
.sh-help-draftpill span { width: 6px; height: 6px; border-radius: 999px;
  background: var(--color-danger-500); }
.sh-help-untranslated { color: var(--color-neutral-500); font-style: italic; }

/* Captures d'écran dans le corps d'article. */
.sh-doc img { max-width: 100%; height: auto; border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); margin: var(--space-2) 0 var(--space-4); }

/* Sommaire collant, construit par help_toc_controller. */
.sh-help-toc { position: sticky; top: 88px; }
.sh-help-toc--empty { display: none; }
.sh-help-toc__list { display: flex; flex-direction: column; gap: 2px;
  border-left: 2px solid var(--color-neutral-200); padding-left: var(--space-3); }
.sh-help-toc__list a { font-size: var(--text-sm); line-height: 1.4; padding: 5px 0;
  color: var(--color-neutral-500); text-decoration: none; }
.sh-help-toc__list a:hover { color: var(--color-primary-500); }
.sh-help-toc__list a.is-current { color: var(--color-primary-600);
  font-weight: var(--font-weight-bold); }
.sh-help-toc__ask { margin-top: var(--space-6); padding-top: var(--space-5);
  border-top: 1px solid var(--color-neutral-100); font-size: var(--text-sm);
  color: var(--color-neutral-500); line-height: 1.5; }
.sh-help-toc__ask a { display: block; margin-top: 7px; font-weight: var(--font-weight-bold); }

/* Avis lecteur — la carte change d'état en Turbo Stream. */
.sh-help-feedback { margin-top: var(--space-10); padding: var(--space-5) var(--space-6);
  background: var(--color-neutral-50); border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-lg); }
.sh-help-feedback__row { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }
.sh-help-feedback__q { flex: 1; min-width: 200px; margin: 0 0 var(--space-2);
  font-size: var(--text-base); font-weight: var(--font-weight-bold); }
.sh-help-feedback__row .sh-help-feedback__q { margin: 0; }
.sh-help-feedback__btns { display: flex; gap: var(--space-2); }
.sh-help-feedback__yes:hover { border-color: var(--color-success-500); color: var(--color-success-700); }
.sh-help-feedback__no:hover { border-color: var(--color-primary-300); color: var(--color-primary-500); }
.sh-help-feedback textarea { width: 100%; padding: var(--space-2) var(--space-3);
  border: 1px solid var(--color-neutral-200); border-radius: var(--radius-md);
  font: inherit; font-size: var(--text-sm); line-height: 1.45; resize: vertical; }
.sh-help-feedback textarea:focus { outline: 0; border-color: var(--color-primary-300); }
.sh-help-feedback__send { display: flex; align-items: center; gap: var(--space-3);
  margin-top: var(--space-2); font-size: var(--text-sm); color: var(--color-neutral-500); }
.sh-help-feedback__thanks { display: flex; align-items: center; gap: var(--space-2);
  margin: 0; font-size: var(--text-sm); font-weight: var(--font-weight-bold);
  color: var(--color-success-700); }

/* À lire ensuite + retour. */
.sh-help-related { margin-top: var(--space-8); }
.sh-help-related__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
.sh-help-related .sh-help-card__title { margin-bottom: 0; }
.sh-help-back { margin-top: var(--space-8); }

@media (max-width: 900px) {
  .sh-help-layout, .sh-help-artlayout { grid-template-columns: 1fr; }
  .sh-help-rail, .sh-help-toc { position: static; }
  .sh-help-toc { display: none; }
  .sh-help-starters__grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .sh-help-grid, .sh-help-related__grid { grid-template-columns: 1fr; }
}

/* ── Comparatif (/compare) ──────────────────────────────────────────────
   Table factuelle vs concurrents. Scroll horizontal sur mobile (jamais de
   débordement de page) ; colonne SyncHire mise en avant. */
.sh-compare { overflow-x: auto; margin-top: var(--space-8); -webkit-overflow-scrolling: touch; }
.sh-compare__table { width: 100%; min-width: 48rem; border-collapse: collapse; font-size: var(--text-sm); }
.sh-compare__table th,
.sh-compare__table td { padding: var(--space-3) var(--space-4); text-align: center;
  vertical-align: middle; border-bottom: 1px solid var(--color-neutral-200); }
.sh-compare__brand { font-weight: var(--font-weight-bold); color: var(--color-neutral-900); }
.sh-compare__feature { text-align: left; min-width: 15rem;
  font-weight: var(--font-weight-medium); color: var(--color-neutral-700); }
.sh-compare__col--us { background: var(--color-primary-50); }
.sh-compare__table thead .sh-compare__col--us { color: var(--color-primary-700);
  border-top-left-radius: var(--radius-md); border-top-right-radius: var(--radius-md); }
.sh-compare__yes { color: var(--color-primary-600); }
.sh-compare__no  { color: var(--color-neutral-400); }
.sh-compare__na  { color: var(--color-neutral-400); }
.sh-compare__note { margin-top: var(--space-4); font-size: var(--text-xs);
  color: var(--color-neutral-500); }
.sh-compare__summary { margin-top: var(--space-8); max-width: 46rem; }
.sh-compare__summary-title { margin: 0 0 var(--space-2); font-size: var(--text-lg);
  font-weight: var(--font-weight-bold); color: var(--color-neutral-900); }
.sh-compare__summary p { margin: 0; color: var(--color-neutral-600); }
.sh-compare__cta { margin-top: var(--space-8); }
.sh-compare__faq { margin-top: var(--space-8); max-width: 46rem; }
.sh-faq { border-bottom: 1px solid var(--color-neutral-200); padding: var(--space-3) 0; }
.sh-faq summary { cursor: pointer; font-weight: var(--font-weight-medium); color: var(--color-neutral-900); }
.sh-faq p { margin: var(--space-2) 0 0; color: var(--color-neutral-600); }
.sh-compare__choose { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); margin-top: var(--space-8); }
.sh-compare__choose-col { background: var(--color-neutral-50); border: 1px solid var(--color-neutral-200); border-radius: var(--radius-lg); padding: var(--space-5); }
.sh-compare__related { margin-top: var(--space-8); }
.sh-compare__related-list { margin: var(--space-2) 0 0; padding-left: var(--space-5); }
.sh-compare__related-list li { margin: var(--space-2) 0; }
@media (max-width: 620px) { .sh-compare__choose { grid-template-columns: 1fr; } }

/* Utilitaire lecteur d'écran (libellés Oui/Non derrière les icônes ✓/✗). */
.sh-visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
