/* Hallmark · couche craft additive · tone: hospitality éditorial · anchor hue: teal + sand
 * Chargée APRÈS index-CfNTuHhs.css. Réutilise les tokens :root existants
 * (--sand, --teal, --teal-deep, --night, --cream, --ease...). Aucune redéfinition de couleur.
 * Pré-emit critique : P5 H4 E5 S5 R5 V4
 * Rôle : révélations au défilement (JS-gated), micro-interactions, bande signature « site vitrine ».
 */

/* =========================================================
   1. Révélations au défilement — dégradation propre sans JS
   Sans la classe .js-reveal (posée par craft.js), rien n'est masqué :
   le contenu reste 100 % visible si le JS ne se charge pas.
   ========================================================= */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.72s var(--ease),
    transform 0.72s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Accès clavier : lien d'évitement visible uniquement lorsqu'il reçoit le focus. */
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 14px;
  color: var(--night);
  background: var(--sand);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 750;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus {
  transform: translateY(0);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.privacy {
  color: #a6b9b4;
  text-align: left;
  font-size: 0.75rem;
  line-height: 1.55;
}
.privacy a {
  color: var(--sand);
  text-underline-offset: 3px;
}
.automation-only[hidden] {
  display: none;
}

/* =========================================================
   2. Micro-interactions — détails « faits main »
   ========================================================= */

/* La flèche des boutons et des text-links avance au survol */
.button svg {
  transition: transform 0.22s var(--ease);
}
.button:hover svg {
  transform: translateX(4px);
}
.text-link svg,
.text-link span {
  transition: transform 0.22s var(--ease);
}
.text-link:hover svg,
.text-link:hover span {
  transform: translateX(4px);
}

/* Souligné qui se déploie sous les liens de navigation */
.desktop-nav a {
  position: relative;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1.5px;
  background: var(--sand);
  transition: right 0.3s var(--ease);
}
.desktop-nav a:hover::after {
  right: 0;
}

/* L'icône des cartes « besoins » s'anime quand on survole la carte */
.need-card .line-icon {
  transition:
    transform 0.34s var(--ease),
    background 0.3s ease,
    border-color 0.3s ease;
}
.need-card:hover .line-icon {
  transform: translateY(-4px) rotate(-5deg);
}

/* Les puces de la barre hospitalité pulsent doucement au survol de la bande */
.hospitality-strip .strip-grid i {
  transition: transform 0.3s var(--ease);
}
.hospitality-strip:hover .strip-grid i {
  transform: scale(1.5);
}

/* Les étapes du parcours glissent légèrement au survol */
.journey-steps li {
  transition: transform 0.28s var(--ease);
}
.journey-steps li:hover {
  transform: translateX(6px);
}

/* Le chevron « + » de la FAQ prend l'accent sable à l'ouverture */
.faq-list details[open] summary:after {
  border-color: var(--sand);
  color: var(--sand);
}

/* En-tête flottant : ombre + fond un peu plus dense une fois qu'on a défilé */
.nav-wrap {
  transition:
    box-shadow 0.3s var(--ease),
    background 0.3s ease,
    transform 0.3s var(--ease);
}
.is-scrolled .nav-wrap {
  background: #0c1c20f2;
  box-shadow: 0 18px 60px #040f1055;
}

/* =========================================================
   3. Bande signature « Site vitrine » (cross-sell)
   Fond teal-deep : rupture chromatique volontaire dans le rythme des sections.
   ========================================================= */
.vitrine-band {
  background: var(--teal-deep);
  color: var(--white);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
/* Halo diffus + grille discrète, écho du hero mais teinte propre */
.vitrine-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(#ffffff08 1px, transparent 1px),
    linear-gradient(90deg, #ffffff08 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(
    120% 90% at 85% 20%,
    #000,
    transparent 70%
  );
  mask-image: radial-gradient(120% 90% at 85% 20%, #000, transparent 70%);
}
.vitrine-band::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 560px;
  height: 560px;
  top: -220px;
  right: -160px;
  background: #d9ae7c22;
  filter: blur(80px);
  border-radius: 50%;
}
.vitrine-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
}
.vitrine-copy h2 {
  max-width: 16ch;
}
.vitrine-band .eyebrow.light {
  color: var(--sand);
}
.vitrine-lead {
  color: #c3ddd8;
  max-width: 46ch;
  margin-bottom: 28px;
  font-size: clamp(1.06rem, 1.4vw, 1.24rem);
  line-height: 1.58;
}
.vitrine-points {
  list-style: none;
  display: grid;
  gap: 13px;
  margin: 0 0 32px;
  padding: 0;
}
.vitrine-points li {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 11px;
  color: #d6e6e2;
  font-size: 0.92rem;
}
.vitrine-points svg {
  width: 17px;
  margin-top: 4px;
  fill: none;
  stroke: var(--sand);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.vitrine-points strong {
  color: var(--white);
  font-weight: 700;
}
.vitrine-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.vitrine-actions .text-link.light-link {
  color: var(--white);
}
.vitrine-actions .text-link.light-link:hover {
  color: var(--sand);
}

/* --- Panneau « page qui s'assemble » (représentation abstraite, pas de faux navigateur) --- */
.vitrine-visual {
  position: relative;
  min-width: 0;
}
.vitrine-mock {
  position: relative;
  background: var(--paper);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 34px 90px #04181880;
  display: grid;
  gap: 12px;
  transform: rotate(-1.4deg);
  transition: transform 0.5s var(--ease);
}
.vitrine-visual:hover .vitrine-mock {
  transform: rotate(0deg) translateY(-4px);
}
.vitrine-mock .wire {
  border-radius: 9px;
}
.wire-bar {
  height: 26px;
  background: linear-gradient(90deg, var(--teal-deep) 34%, transparent 34%);
  background-color: var(--cream-deep);
  position: relative;
}
.wire-hero {
  height: 104px;
  background: linear-gradient(135deg, var(--teal-light), var(--cream-deep));
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 0 16px;
}
.wire-line {
  height: 9px;
  border-radius: 6px;
  background: #0f4f4c33;
}
.wire-line.w-70 {
  width: 70%;
}
.wire-line.w-45 {
  width: 45%;
}
.wire-pill {
  height: 22px;
  width: 104px;
  border-radius: 999px;
  background: var(--sand);
  box-shadow: 0 6px 16px #d9ae7c66;
}
.wire-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.wire-card {
  height: 74px;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 11px;
  display: grid;
  gap: 7px;
  align-content: start;
}
.wire-card i {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-light);
}
.wire-card span {
  display: block;
  height: 6px;
  border-radius: 4px;
  background: #0f4f4c26;
}
.wire-card span.short {
  width: 60%;
}
.wire-foot {
  height: 18px;
  background: var(--cream-deep);
  border-radius: 8px;
  width: 100%;
}
.vitrine-caption {
  margin: 18px 4px 0;
  color: #a9c6c0;
  font-size: 0.76rem;
  font-style: italic;
  font-family: var(--display);
}

/* Bloc de preuve transparent : un scénario concret sans faux résultat client. */
.workflow-proof {
  margin-top: 48px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #ffffff08;
  padding: clamp(24px, 4vw, 38px);
}
.workflow-proof-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}
.workflow-proof-heading .mini-label {
  color: var(--sand);
  margin-bottom: 8px;
}
.workflow-proof-heading h3 {
  margin: 0;
  max-width: 24ch;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  font-weight: 500;
}
.proof-badge {
  flex: 0 0 auto;
  color: var(--teal-light);
  border: 1px solid #b8ded744;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.workflow-log {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.workflow-log li {
  min-width: 0;
  padding: 23px 20px;
  border-right: 1px solid var(--line-dark);
}
.workflow-log li:first-child {
  padding-left: 0;
}
.workflow-log li:last-child {
  padding-right: 0;
  border-right: 0;
}
.workflow-log span {
  display: block;
  margin-bottom: 9px;
  color: var(--sand);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.workflow-log strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.25;
}
.workflow-log p,
.proof-disclaimer {
  color: #9fb1ad;
  font-size: 0.78rem;
  line-height: 1.55;
}
.workflow-log p {
  margin: 0;
}
.proof-disclaimer {
  margin: 20px 0 0;
  max-width: 76ch;
}

/* =========================================================
   3b. Page « Offre site vitrine » (site-vitrine.html)
   Réutilise le système de l'accueil ; seulement 2 variantes propres.
   ========================================================= */

/* Hero typographique (sans image), distinct du hero à deux colonnes de l'accueil */
.hero-solo {
  min-height: auto;
  padding: clamp(140px, 16vw, 170px) 0 clamp(72px, 9vw, 104px);
}
.hero-solo .wrap {
  max-width: 948px;
}
.hero-solo h1 {
  max-width: 20ch;
  font-size: clamp(2.85rem, 5.6vw, 5.2rem);
}
.hero-solo .hero-lead {
  max-width: 60ch;
}
.hero-proof-line {
  color: #9fb1ad;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.04rem;
  margin-top: 28px;
}
.hero-proof-line strong {
  color: var(--sand);
  font-style: normal;
  font-weight: 600;
}

/* CTA final : réutilise le fond « contact » mais centré, sans formulaire */
.cta-final {
  text-align: center;
}
.cta-final .wrap {
  max-width: 780px;
  margin-inline: auto;
}
.cta-final h2 {
  max-width: 18ch;
  margin-inline: auto;
}
.cta-final > .wrap > p {
  color: #aabbb7;
  margin: 0 auto 32px;
  max-width: 54ch;
}
.cta-final .hero-actions {
  justify-content: center;
}

/* =========================================================
   3c. Pages légales et page 404
   ========================================================= */
.legal-hero {
  color: var(--white);
  background: var(--night);
  padding: 150px 0 70px;
}
.legal-wrap {
  max-width: 900px;
}
.legal-hero h1 {
  max-width: 14ch;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 5.6rem);
}
.legal-hero > .wrap > p:last-child {
  color: #aabbb7;
  margin: 0;
}
.legal-section {
  background: var(--paper);
}
.legal-content {
  display: grid;
  gap: 52px;
}
.legal-content section {
  scroll-margin-top: 110px;
}
.legal-content h2 {
  max-width: none;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}
.legal-content p,
.legal-content li,
.legal-content td,
.legal-content th,
.legal-data {
  color: var(--ink-soft);
}
.legal-content p {
  margin-bottom: 14px;
}
.legal-content p:last-child {
  margin-bottom: 0;
}
.legal-content a {
  color: var(--teal-deep);
  font-weight: 700;
  text-underline-offset: 3px;
}
.legal-content ul {
  display: grid;
  gap: 9px;
  margin: 16px 0;
  padding-left: 22px;
  list-style: disc;
}
.legal-data {
  display: grid;
  margin: 20px 0 24px;
  border-top: 1px solid var(--line);
}
.legal-data div {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.legal-data dt {
  color: var(--ink);
  font-weight: 750;
}
.legal-data dd {
  margin: 0;
}
.legal-table-wrap {
  margin: 20px 0 22px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.legal-content table {
  width: 100%;
  min-width: 610px;
  border-collapse: collapse;
  background: var(--white);
}
.legal-content th,
.legal-content td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.legal-content th {
  color: var(--ink);
  background: var(--cream-deep);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.legal-content tbody tr:last-child td {
  border-bottom: 0;
}
.error-page {
  min-height: 100vh;
  color: var(--white);
  background: var(--night);
}
.error-layout {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px 20px;
}
.error-card {
  width: min(660px, 100%);
  text-align: center;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: var(--night-soft);
  padding: clamp(34px, 7vw, 68px);
  box-shadow: var(--shadow);
}
.error-card .brand {
  display: inline-block;
  margin-bottom: 54px;
}
.error-code {
  color: var(--sand);
  margin-bottom: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.error-card h1 {
  max-width: none;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 8vw, 4.8rem);
}
.error-card > p:not(.error-code) {
  max-width: 50ch;
  margin: 0 auto 30px;
  color: #aabbb7;
}

/* =========================================================
   4. Responsive
   ========================================================= */

/* La 4e entrée de nav (« Site vitrine ») remplace « À propos »
   comme premier lien masqué sur écran moyen — surcharge la règle nth-child(4)
   d'origine (même spécificité, chargée après = elle gagne). */
@media (width<=1040px) {
  .desktop-nav a:nth-child(4) {
    display: inline-flex;
  }
  .desktop-nav a:nth-child(5) {
    display: none;
  }
}

@media (width<=840px) {
  .vitrine-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .vitrine-visual {
    width: min(460px, 100%);
  }
  .journey-steps li:hover {
    transform: none;
  }
  .workflow-log {
    grid-template-columns: 1fr 1fr;
  }
  .workflow-log li,
  .workflow-log li:first-child,
  .workflow-log li:last-child {
    padding: 20px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }
  .workflow-log li:nth-child(2n) {
    border-right: 0;
  }
  .workflow-log li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (width<=560px) {
  .vitrine-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .vitrine-actions .button {
    width: 100%;
  }
  .vitrine-actions .text-link {
    justify-content: center;
  }
  .vitrine-mock {
    transform: none;
  }
  .wire-cards {
    gap: 8px;
  }
  .workflow-proof-heading {
    flex-direction: column;
  }
  .workflow-log {
    grid-template-columns: 1fr;
  }
  .workflow-log li,
  .workflow-log li:first-child,
  .workflow-log li:last-child,
  .workflow-log li:nth-child(2n),
  .workflow-log li:nth-last-child(-n + 2) {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .workflow-log li:last-child {
    border-bottom: 0;
  }
  .legal-hero {
    padding: 124px 0 56px;
  }
  .legal-data div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

/* ==========================================================================
   Ajouts CRO — août 2026
   Téléphone d'en-tête · périmètre IA · calculateur · preuves · garanties
   Réutilise les tokens existants (--night, --cream, --teal-deep, --radius…).
   ========================================================================== */

/* --- Libellé secondaire réutilisable --- */
.mini-label {
  color: var(--teal-deep);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 750;
}

/* --- En-tête : téléphone visible --- */
.nav-actions {
  align-items: center;
  gap: 18px;
  display: flex;
}
.header-phone {
  color: #d6dedb;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s;
  display: inline-flex;
}
.header-phone:hover {
  color: var(--white);
}
.header-phone svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 15px;
}
.mobile-phone {
  font-weight: 750;
}

/* --- Périmètre de l'IA (section « Vos besoins ») --- */
.ia-scope {
  color: var(--white);
  background: var(--night);
  border-radius: var(--radius);
  margin-top: 16px;
  padding: clamp(28px, 4vw, 46px);
}
.ia-scope .mini-label {
  color: var(--teal-light);
}
.ia-scope-intro {
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 30px;
  padding-bottom: 26px;
}
.ia-scope-intro h3 {
  max-width: 20ch;
  font-family: var(--display);
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 500;
}
.ia-scope-intro p:last-child {
  color: #b8cbc7;
  max-width: 68ch;
  font-size: 0.94rem;
}
.ia-scope-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 54px);
  display: grid;
}
.ia-col-title {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 750;
}
.ia-col ul {
  list-style: none;
}
.ia-col li {
  color: #b8cbc7;
  border-top: 1px solid var(--line-dark);
  padding: 11px 0;
  font-size: 0.89rem;
}

/* --- Calculateur d'heures --- */
.calc-section {
  color: var(--white);
  background: var(--night);
}
.calc-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  display: grid;
}
.calc-copy .eyebrow {
  color: var(--teal-light);
}
.calc-copy h2 {
  max-width: 16ch;
  font-family: var(--display);
  margin-bottom: 20px;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 500;
  line-height: 1.12;
}
.calc-copy > p {
  color: #b8cbc7;
  max-width: 46ch;
  font-size: 0.97rem;
}
.calc-disclaimer {
  color: #8fa5a1;
  border-left: 2px solid var(--teal);
  margin-top: 22px;
  padding-left: 16px;
  font-size: 0.84rem;
}
.calc-card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(24px, 3vw, 34px);
}
.calc-field {
  margin-bottom: 18px;
}
.calc-field label {
  color: var(--ink);
  margin-bottom: 7px;
  font-size: 0.85rem;
  font-weight: 700;
  display: block;
}
.calc-field input {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 700;
  transition:
    border-color 0.18s,
    box-shadow 0.18s;
}
.calc-field input:focus {
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 0 0 3px #176b6524;
}
.calc-hint {
  color: var(--ink-soft);
  margin-top: 6px;
  font-size: 0.76rem;
  display: block;
}
.calc-result {
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-sm);
  margin: 24px 0 20px;
  padding: 20px;
  text-align: center;
}
.calc-main {
  color: var(--ink);
  font-size: 0.92rem;
}
.calc-main strong {
  color: var(--teal-deep);
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 2.7rem);
  font-weight: 500;
  display: block;
  line-height: 1.1;
}
.calc-sub {
  color: var(--ink-soft);
  margin-top: 8px;
  font-size: 0.83rem;
}
.calc-result.is-empty .calc-sub,
.calc-result.is-empty .calc-main strong {
  opacity: 0.35;
}

/* --- Preuves techniques --- */
.proof-section {
  background: var(--cream-deep);
}
.proof-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  display: grid;
}
.proof-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex-direction: column;
  padding: 28px;
  display: flex;
  transition:
    transform 0.24s var(--ease),
    box-shadow 0.24s var(--ease);
}
.proof-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.proof-card .line-icon {
  margin-bottom: 26px;
}
.proof-card h3 {
  max-width: 18ch;
  font-family: var(--display);
  margin-bottom: 12px;
  font-size: 1.35rem;
  font-weight: 500;
}
.proof-card p {
  color: var(--ink-soft);
  margin-bottom: 22px;
  font-size: 0.89rem;
}

/* --- Garanties --- */
.guarantees {
  color: var(--white);
  background: var(--night);
  border-radius: var(--radius);
  margin-top: 16px;
  padding: clamp(28px, 4vw, 48px);
}
.guarantees .mini-label {
  color: var(--teal-light);
}
.guarantees-head {
  margin-bottom: 28px;
}
.guarantees-head h3 {
  max-width: 24ch;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 500;
}
.guarantee-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px clamp(24px, 4vw, 54px);
  list-style: none;
  display: grid;
}
.guarantee-list li {
  color: #b8cbc7;
  border-top: 1px solid var(--line-dark);
  padding: 16px 0;
  font-size: 0.9rem;
}
.guarantee-list strong {
  color: var(--white);
  font-weight: 750;
}
.guarantee-list a {
  color: var(--teal-light);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid #b8ded760;
}
.guarantee-list a:hover {
  color: var(--white);
}

/* --- Bloc « Vos données » (sur fond sombre) --- */
.data-note {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  margin: 28px 0;
  padding: 22px;
}
.data-note .mini-label {
  color: var(--teal-light);
}
.data-note ul {
  list-style: none;
}
.data-note li {
  color: #b8cbc7;
  padding: 6px 0 6px 20px;
  font-size: 0.85rem;
  position: relative;
}
.data-note li:before {
  color: var(--teal-light);
  content: "—";
  position: absolute;
  left: 0;
}
.data-note a {
  color: var(--teal-light);
  text-decoration: underline;
}

/* --- Renvoi discret vers l'offre site vitrine --- */
.vitrine-aside {
  background: var(--night-soft);
  border-top: 1px solid var(--line-dark);
  padding: 26px 0;
}
.vitrine-aside .wrap {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 16px;
  display: flex;
}
.vitrine-aside p {
  color: #8fa5a1;
  font-size: 0.9rem;
}
.vitrine-aside .text-link {
  color: var(--teal-light);
  font-size: 0.9rem;
}

/* --- Adaptations écran --- */
@media (width<=1040px) {
  .calc-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }
  .calc-copy h2,
  .calc-copy > p {
    max-width: none;
  }
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width<=840px) {
  .nav-actions {
    display: none;
  }
  .proof-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .guarantee-list,
  .ia-scope-split {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (width<=560px) {
  .calc-result {
    padding: 16px;
  }
  .data-note {
    padding: 18px;
  }
}

/* --- Lien de rebond depuis une carte « besoin » vers la page dédiée --- */
.card-link {
  margin-top: 14px;
  font-size: 0.8rem;
}
.need-card .card-tag {
  margin-top: auto;
}