/* =============================================================
   Pages services — composants partagés (site vitrine, SEO, e-commerce, landing).
   Chargé après theme.css, uniquement sur le gabarit Service.
   Tokens : --ui-* (tokens.css) ; variables de thème : --d1-* (theme.css).
   ============================================================= */

/* ---------- Fonds de section ---------- */
:root {
  --sv-soft-bg: #eef3ff;
  --sv-soft-line: rgba(0, 81, 255, .14);
  --sv-dark-bg: var(--ui-bg-darker);
  --sv-dark-text: #c3cde2;
  --sv-dark-muted: #8f9bb7;
}
html[data-theme="dark"] {
  --sv-soft-bg: #001134;
  --sv-soft-line: rgba(255, 255, 255, .09);
  --sv-dark-bg: #000410;
}

.site-organic .service-section--soft { background: var(--sv-soft-bg); }
html[data-theme="dark"] .site-organic .service-section--soft { --d1-cell-bg: var(--ui-surface-dark-2); }

.site-organic .service-section--dark {
  background: var(--sv-dark-bg);
  color: var(--sv-dark-text);
  --d1-title: #ffffff;
  --d1-text: var(--sv-dark-text);
  --d1-text-muted: var(--sv-dark-muted);
  --d1-line: rgba(255, 255, 255, .1);
  --d1-cell-bg: rgba(0, 24, 63, .55);
  --d1-cell-border: rgba(255, 255, 255, .1);
  --d1-cell-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
  --d1-accent: #7bc3ff;
}

/* Hero : rangée confiance (trust-badge) centrée sous le lead */
.d1-hero .d1-hero__satisfaction { margin-top: 0; }

/* ---------- Politique de fond ----------
   Pages services : canvas uniforme, aucune alternance clair/sombre.
   Seule exception : la zone d'intervention (.d1-local, carte) qui garde son fond bleu clair.
   Les classes .service-section--soft / --dark restent disponibles mais ne sont plus posées par défaut. */
.site-organic .service-page .d1-offers { background: transparent; }

/* ---------- Alignement ----------
   Tout header de section « titre + description » est centré (cohérence avec offres / contact). */
.service-page .d1-heading { align-items: center; text-align: center; }
.service-page .d1-heading h2 { max-width: 24ch; }
.service-page .d1-heading > p { max-width: var(--ui-measure-lead); }

/* =========================================================
   0. Enjeux — bento box : titre et description en texte libre dans la grille
   4 colonnes, unité 64px, colonnes décalées, bas irrégulier :
     title title one   glass
     title title one   glass
     title title one   glass
     two   notif one   cta
     two   notif one   cta
     two   notif three cta
     two   .     three cta
     lead  .     three .
     lead  .     three .
   Deux recettes : dégradé sombre (case marque accueil) et bleu clair ; CTA en dégradé primaire.
========================================================= */
.d1-bento--stakes {
  --d1-light-blue: #d6e4ff;
  --stakes-dark: linear-gradient(155deg, var(--ui-black) 0%, var(--ui-dark-blue) 60%, var(--ui-primary) 145%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(64px, auto);
  grid-template-areas:
    "title title one   glass"
    "title title one   glass"
    "title title one   glass"
    "two   notif one   cta"
    "two   notif one   cta"
    "two   notif three cta"
    "two   .     three cta"
    "lead  .     three ."
    "lead  .     three .";
}
.d1-bento--stakes .d1-bento__cell { min-height: 0; border: 0; box-shadow: var(--d1-cell-shadow); justify-content: center; }
.d1-bento--stakes .d1-bento__cell h3 { max-width: 20ch; }
.d1-bento--stakes .d1-bento__cell p { max-width: 40ch; }

/* Texte libre : titre (2×3) et description (sous la première colonne), sans case */
.d1-bento--stakes .d1-bento__free { margin: 0; }
.d1-bento--stakes .d1-bento__free--title {
  grid-area: title;
  align-self: end;
  padding: 0 clamp(8px, 1vw, 16px) clamp(20px, 2.4vw, 36px) 0;
  max-width: 17ch;
  font-size: var(--ui-font-case-heading);
  line-height: 1.02;
  color: var(--d1-title);
  text-wrap: balance;
}
.d1-bento--stakes .d1-bento__free--lead {
  grid-area: lead;
  align-self: start;
  padding: var(--ui-space-2) 0 0;
  max-width: 34ch;
  font-size: 15px;
  line-height: 1.6;
  color: var(--d1-text-muted);
}

/* Glass (1×3) : dégradé sombre de la case marque + logo glass de la homepage */
.d1-bento--stakes .d1-bento__cell--glass {
  grid-area: glass;
  padding: clamp(18px, 1.6vw, 26px);
  align-items: center;
  justify-content: center;
  background: var(--stakes-dark);
}
.d1-bento--stakes .d1-bento__cell--glass img { width: min(100%, 170px); height: auto; mix-blend-mode: screen; }

/* Enjeux */
.d1-bento--stakes .d1-bento__cell--stake-1 { grid-area: one; background: var(--stakes-dark); }
.d1-bento--stakes .d1-bento__cell--stake-2 { grid-area: two; background: var(--d1-light-blue); }
.d1-bento--stakes .d1-bento__cell--stake-3 { grid-area: three; background: var(--stakes-dark); }
.d1-bento--stakes .d1-bento__cell--stake-1 h3,
.d1-bento--stakes .d1-bento__cell--stake-3 h3 { color: var(--d1-light-blue); }
.d1-bento--stakes .d1-bento__cell--stake-1 p,
.d1-bento--stakes .d1-bento__cell--stake-3 p { color: rgba(214, 228, 255, .78); }
.d1-bento--stakes .d1-bento__cell--stake-2 h3 { color: var(--ui-dark-blue); }
.d1-bento--stakes .d1-bento__cell--stake-2 p { color: var(--ui-primary); opacity: .78; }

/* Notification « nouvelle demande » (1×3, colonne 2) : illustre l'enjeu 3 */
.d1-bento--stakes .d1-bento__cell--notif { grid-area: notif; justify-content: center; background: var(--stakes-dark); }
.d1-notif {
  display: flex;
  flex-direction: column;
  gap: var(--ui-space-1);
  padding: var(--ui-space-4) var(--ui-space-5);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--ui-radius-md);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(var(--ui-blur-sm));
  -webkit-backdrop-filter: blur(var(--ui-blur-sm));
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}
.d1-notif__head { display: flex; align-items: center; gap: var(--ui-space-2); margin-bottom: var(--ui-space-1); font-size: 12px; color: rgba(214, 228, 255, .7); }
.d1-notif__app { font-family: var(--ui-font-heading); font-weight: 600; }
.d1-notif__time { margin-left: auto; }
.d1-notif__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ui-secondary); box-shadow: 0 0 0 4px rgba(55, 159, 255, .16); animation: d1-notif-pulse 2.4s ease-out infinite; }
.d1-notif__title { font-family: var(--ui-font-heading); font-size: 15px; font-weight: 600; line-height: 1.25; color: #fff; }
.d1-notif__text { font-size: 13.5px; line-height: 1.45; color: rgba(214, 228, 255, .78); }
@keyframes d1-notif-pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(55, 159, 255, .16); } 50% { box-shadow: 0 0 0 7px rgba(55, 159, 255, .06); } }
@media (prefers-reduced-motion: reduce) { .d1-notif__dot { animation: none; } }

/* CTA (1×4) : dégradé primaire */
.d1-bento--stakes .d1-bento__cell--cta {
  grid-area: cta;
  justify-content: space-between;
  gap: var(--ui-space-5);
  background: var(--ui-gradient-primary);
  box-shadow: 0 10px 30px rgba(0, 81, 255, .24);
}
.d1-bento--stakes .d1-bento__cell--cta h3 { margin: 0; max-width: 16ch; color: #fff; }
.d1-bento--stakes .d1-bento__cell--cta .btn { align-self: flex-start; }

html[data-theme="dark"] .d1-bento--stakes .d1-bento__cell--stake-2 { background: rgba(0, 81, 255, .12); }
html[data-theme="dark"] .d1-bento--stakes .d1-bento__cell--stake-2 h3 { color: #fff; }
html[data-theme="dark"] .d1-bento--stakes .d1-bento__cell--stake-2 p { color: var(--ui-secondary); opacity: .85; }

/* =========================================================
   Cas client (SEO) — pleine largeur : étude de cas à gauche, deux preuves empilées à droite
========================================================= */
.service-case-proof__layout {
  width: 100%;
  max-width: var(--ui-container-wide);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}
.service-case-proof__case .d1-case--single { max-width: none; }
.service-case-proof__evidence { display: grid; gap: var(--ui-space-4); }
.service-case-proof__evidence .d1-evidence__media img { height: 220px; }
@media (max-width: 1024px) {
  .service-case-proof__layout { grid-template-columns: 1fr; }
  .service-case-proof__evidence { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .service-case-proof__evidence { grid-template-columns: 1fr; }
}

/* =========================================================
   1. Pour qui — lignes profil / recherche simulée
========================================================= */
.service-audience__rows {
  width: 100%;
  max-width: var(--ui-container-wide);
  margin-inline: auto;
  border-top: 1px solid var(--d1-line);
}
.service-audience__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 96px);
  align-items: center;
  padding-block: clamp(28px, 3.2vw, 48px);
  border-bottom: 1px solid var(--d1-line);
}
.service-audience__who,
.service-audience__search { min-width: 0; }
.service-audience__who h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
  color: var(--d1-title);
}
.service-audience__who p { margin: 0; max-width: 46ch; font-size: 15.5px; line-height: 1.6; color: var(--d1-text-muted); }

.service-audience__search { width: min(100%, 520px); justify-self: end; }
.service-audience__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid var(--d1-line-strong);
  border-radius: 999px;
  background: var(--d1-cell-bg);
  box-shadow: var(--d1-cell-shadow);
}
.service-audience__bar svg { width: 18px; height: 18px; flex: 0 0 18px; fill: none; stroke: var(--d1-text-muted); stroke-width: 2; stroke-linecap: round; }
.service-audience__query { font-family: var(--ui-font-body-family); font-size: 16px; color: var(--d1-title); }
.service-audience__query::after {
  content: "";
  display: inline-block;
  width: 1px; height: 1em;
  margin-left: 2px;
  vertical-align: -2px;
  background: var(--d1-title);
  animation: sv-caret 1.1s steps(1) infinite;
}
@keyframes sv-caret { 50% { opacity: 0; } }

.service-audience__result {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0 0 10px;
  padding: 10px 16px 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--d1-cell-border);
  background: var(--d1-cell-bg);
}
.service-audience__favicon {
  width: 22px; height: 22px; flex: 0 0 22px;
  border-radius: 50%;
  background: var(--ui-gradient-primary);
}
.service-audience__result-text { flex: 1; min-width: 0; font-size: 14px; color: var(--d1-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.service-audience__result-pos {
  font-family: var(--ui-font-heading);
  font-size: 12px; font-weight: 700;
  line-height: 1;
  padding: 5px 8px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--ui-primary);
}

/* =========================================================
   2. Arguments — colonne sticky + grille icône dégradée / titre / texte
========================================================= */
.service-features__layout {
  width: 100%;
  max-width: var(--ui-container-wide);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 2fr);
  gap: clamp(32px, 6vw, 120px);
  align-items: start;
}
.service-features__sticky { position: sticky; top: calc(var(--ui-header-top) + var(--ui-header-height) + 32px); }
.service-features__sticky h2 {
  margin: 0 0 14px;
  max-width: 14ch;
  font-size: var(--ui-font-case-heading);
  line-height: 1.02;
  color: var(--d1-title);
  text-wrap: balance;
}
.service-features__sticky > p { margin: 0 0 24px; max-width: 34ch; font-size: 15.5px; line-height: 1.6; color: var(--d1-text-muted); }
.service-features__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--ui-space-3) var(--ui-space-5);
}
.service-features__actions .btn--text { --btn-text-color: var(--d1-title); --btn-text-color-hover: var(--d1-accent); }

.service-features__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 4vw, 64px);
  row-gap: clamp(28px, 3.4vw, 48px);
}
.service-feature__head {
  display: flex;
  align-items: center;
  gap: var(--ui-space-4);
  margin-bottom: var(--ui-space-3);
}
/* Icône : même géométrie que le marqueur actif du process (48px, coins 12px, dégradé, ombre bleue). */
.service-feature__icon {
  width: var(--ui-process-marker-size); height: var(--ui-process-marker-size); flex: 0 0 var(--ui-process-marker-size);
  display: grid; place-items: center;
  border-radius: var(--ui-radius-sm);
  background: var(--ui-gradient-primary);
  color: var(--ui-white);
  box-shadow: 0 8px 28px rgba(0, 81, 255, .2);
}
.service-feature__icon svg { width: var(--ui-icon-lg); height: var(--ui-icon-lg); fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-feature h3 { margin: 0; font-size: 17px; font-weight: 600; line-height: 1.2; color: var(--d1-title); }
.service-feature p { margin: 0; max-width: 40ch; font-size: 14.5px; line-height: 1.6; color: var(--d1-text-muted); }

/* =========================================================
   3. Créer ou refaire — onglets
========================================================= */
.service-choice__box {
  position: relative;
  width: 100%;
  max-width: var(--ui-container-wide);
  margin-inline: auto;
  padding: clamp(20px, 2.4vw, 34px);
  border: 1px solid var(--d1-cell-border);
  border-radius: 28px;
  background: var(--d1-cell-bg);
  box-shadow: var(--d1-cell-shadow);
}
.service-choice__tabs {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(100%, 520px);
  margin: 0 auto clamp(24px, 3vw, 40px);
  padding: 5px;
  border-radius: 999px;
  background: var(--sv-soft-bg);
  border: 1px solid var(--sv-soft-line);
}
.service-choice__tab {
  position: relative; z-index: 1;
  appearance: none;
  border: 0;
  background: transparent;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: var(--ui-font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--d1-text-muted);
  cursor: pointer;
  transition: color .3s ease;
}
.service-choice__tab[aria-selected="true"] { color: #ffffff; }
.service-choice__indicator {
  position: absolute; z-index: 0;
  top: 5px; bottom: 5px; left: 5px;
  width: calc(50% - 5px);
  border-radius: 999px;
  background: var(--ui-gradient-primary);
  box-shadow: var(--ui-shadow-primary);
  transition: transform .5s var(--ui-ease-out);
}
.service-choice__box[data-active="redo"] .service-choice__indicator { transform: translateX(100%); }

.service-choice__panel {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
.service-choice__panel[hidden] { display: none; }
.service-choice__visual.d1-choice-anim { margin: 0; }
.service-choice__body h3 { margin: 0 0 10px; font-size: clamp(24px, 2.4vw, 34px); line-height: 1.08; color: var(--d1-title); text-wrap: balance; }
.service-choice__body > p { margin: 0 0 18px; max-width: 52ch; font-size: 15.5px; line-height: 1.6; color: var(--d1-text-muted); }
.service-choice__list { margin: 0 0 24px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-choice__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.45; color: var(--d1-text); }
.service-choice__list svg {
  flex: 0 0 20px; width: 20px; height: 20px; margin-top: 1px;
  padding: 4px;
  border-radius: 50%;
  background: var(--sv-soft-bg);
  fill: none; stroke: var(--ui-primary); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
}
.service-choice__panel.is-entering { animation: sv-panel-in .5s var(--ui-ease-out) both; }
@keyframes sv-panel-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* =========================================================
   4. Zone d'intervention (réutilise .d1-local / .d1-map de la home)
========================================================= */
.service-zone__cities { margin: 6px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; max-width: 520px; }
.service-zone__city {
  padding: 7px 13px;
  border: 1px solid var(--d1-chip-border);
  border-radius: 999px;
  background: var(--d1-cell-bg);
  font-family: var(--ui-font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--d1-text);
}
.service-zone__city--primary { background: var(--ui-gradient-primary); border-color: transparent; color: #ffffff; font-weight: 600; }
.service-zone__links { display: flex; flex-wrap: wrap; gap: 10px; }

/* =========================================================
   5. Offres — portage fidèle de .lp-offers / .lp-offer-card (landing.css)
========================================================= */
.site-organic .d1-offers {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--ui-text-dark);
  background: transparent; /* plus d'aplat bleu clair : la carte mise en avant assure le contraste */
}
.d1-offers__inner { width: 100%; max-width: var(--ui-container-wide); margin-inline: auto; }
.d1-offers__header {
  width: 100%;
  max-width: var(--ui-measure-wide);
  margin: 0 auto var(--ui-section-header-gap);
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: var(--ui-space-5);
}
.d1-offers__title {
  margin: 0;
  max-width: var(--ui-measure-heading);
  font-family: var(--ui-font-heading);
  font-size: var(--ui-font-h2);
  font-weight: var(--ui-weight-bold);
  line-height: var(--ui-line-heading);
  letter-spacing: var(--ui-letter-heading);
  color: var(--d1-title);
  text-wrap: balance;
}
.d1-offers__lead { margin: 0; max-width: var(--ui-measure-copy); font-size: var(--ui-font-body-lg); color: var(--d1-text-muted); }

.d1-offers__grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.08fr) minmax(0, .94fr);
  gap: var(--ui-grid-gap);
  align-items: stretch;
}
.d1-offer-card {
  position: relative;
  display: flex; flex-direction: column;
  min-width: 0;
  padding: var(--ui-card-padding);
  overflow: visible;
  isolation: isolate;
  border: var(--ui-border-width) solid var(--d1-line);
  border-radius: var(--ui-radius-xl);
  color: var(--d1-text);
  background: linear-gradient(180deg, var(--d1-cell-bg) 0%, var(--sv-soft-bg) 160%);
  box-shadow: 0 10px 30px rgba(0, 16, 46, .06);
  transition: border-color var(--ui-transition-normal), box-shadow var(--ui-transition-normal), transform var(--ui-transition-normal);
}
.d1-offer-card::before {
  content: "";
  position: absolute; top: 0; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 81, 255, .32), transparent);
  pointer-events: none;
}
.d1-offer-card--premium { border-color: var(--d1-line-strong); }
.d1-offer-card--featured {
  z-index: 3;
  margin-block: calc(-1 * var(--ui-space-3));
  color: var(--ui-white);
  border-color: rgba(55, 159, 255, .32);
  background: radial-gradient(ellipse 145% 110% at 50% -8%, var(--ui-surface-dark) 5%, var(--ui-surface-dark-2) 28%, var(--ui-dark-blue) 60%, var(--ui-primary) 100%);
  box-shadow: 0 24px 70px rgba(0, 81, 255, .18), 0 8px 30px rgba(0, 16, 46, .12);
}
.d1-offer-card--featured::before { left: 8%; right: 8%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .68), transparent); }

.d1-offer-card__badge {
  position: absolute; top: 0; left: 50%; z-index: 5;
  transform: translate(-50%, -42%);
  min-height: var(--ui-control-xs);
  display: inline-flex; align-items: center;
  padding: var(--ui-space-2) var(--ui-space-4);
  border: var(--ui-border-width) solid rgba(0, 81, 255, .12);
  border-radius: var(--ui-radius-pill);
  font-family: var(--ui-font-heading);
  font-size: var(--ui-font-caption);
  font-weight: var(--ui-weight-semibold);
  white-space: nowrap;
  color: var(--ui-primary);
  background: var(--ui-white);
  box-shadow: 0 8px 22px rgba(0, 81, 255, .14);
}
.d1-offer-card__badge--premium {
  border-color: rgba(255, 255, 255, .14);
  color: var(--ui-white);
  background: var(--ui-surface-dark-2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.d1-offer-card__top { min-height: var(--ui-offer-heading-min-height); margin-bottom: var(--ui-space-6); }
.d1-offer-card__name {
  margin: 0 0 var(--ui-space-4);
  font-family: var(--ui-font-heading);
  font-size: var(--ui-font-h4);
  font-weight: var(--ui-weight-bold);
  line-height: var(--ui-line-subheading);
  letter-spacing: -.02em;
  color: var(--d1-title);
  text-wrap: balance;
}
.d1-offer-card__description { margin: 0; font-size: var(--ui-font-body-sm); color: var(--d1-text-muted); }

.d1-offer-card__price {
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: var(--ui-offer-price-min-height);
  margin-bottom: var(--ui-space-6);
  padding-bottom: var(--ui-space-6);
  border-bottom: var(--ui-border-width) solid var(--d1-line);
}
.d1-offer-card__price-label { margin-bottom: var(--ui-space-2); font-size: var(--ui-font-caption); color: var(--d1-text-muted); }
.d1-offer-card__price strong {
  font-family: var(--ui-font-heading);
  font-size: clamp(42px, min(3.8vw, 6.5svh), 58px);
  font-weight: var(--ui-weight-bold);
  line-height: .94;
  letter-spacing: var(--ui-letter-heading);
  color: var(--d1-title);
}
.d1-offer-card__price .d1-offer-card__price-custom { font-size: clamp(34px, min(3.2vw, 5.4svh), 48px); }

.d1-offer-card__features { margin: 0 0 var(--ui-space-7); padding: 0; list-style: none; display: flex; flex-direction: column; gap: var(--ui-space-3); }
.d1-offer-card__features li { display: flex; align-items: flex-start; gap: var(--ui-space-3); font-size: var(--ui-font-body-sm); line-height: 1.45; color: var(--d1-text); }
.d1-offer-card__check {
  width: var(--ui-icon-lg); height: var(--ui-icon-lg); flex: 0 0 var(--ui-icon-lg);
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--ui-primary);
  background: var(--ui-light-blue);
}
.d1-offer-card__check svg { width: var(--ui-icon-xs); height: var(--ui-icon-xs); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.d1-offer-card .btn.d1-offer-card__cta { width: 100%; margin-top: auto; }

.d1-offer-card--featured .d1-offer-card__name { color: var(--ui-white); }
.d1-offer-card--featured .d1-offer-card__description { color: rgba(255, 255, 255, .66); }
.d1-offer-card--featured .d1-offer-card__price { border-bottom-color: rgba(255, 255, 255, .14); }
.d1-offer-card--featured .d1-offer-card__price-label { color: rgba(255, 255, 255, .52); }
.d1-offer-card--featured .d1-offer-card__price strong { color: var(--ui-white); }
.d1-offer-card--featured .d1-offer-card__features li { color: rgba(255, 255, 255, .82); }
.d1-offer-card--featured .d1-offer-card__check { color: var(--ui-white); border: var(--ui-border-width) solid rgba(255, 255, 255, .13); background: rgba(255, 255, 255, .11); }
.d1-offer-card--featured .btn.btn--white { box-shadow: 0 12px 28px rgba(0, 0, 0, .14); }

.d1-offers__footer {
  max-width: var(--ui-measure-lead);
  margin: var(--ui-section-header-gap) auto 0;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: var(--ui-space-2);
}
.d1-offers__response { display: flex; align-items: center; gap: var(--ui-space-2); font-size: var(--ui-font-body-sm); font-weight: var(--ui-weight-medium); color: var(--d1-text); }
.d1-offers__response-dot { width: 8px; height: 8px; flex: 0 0 8px; border-radius: 50%; background: var(--ui-primary); box-shadow: 0 0 10px rgba(0, 81, 255, .3); }
.d1-offers__footer p { margin: 0; max-width: var(--ui-measure-copy); font-size: var(--ui-font-caption); color: var(--d1-text-muted); }

@media (hover: hover) and (pointer: fine) {
  .d1-offer-card:not(.d1-offer-card--featured):hover { transform: translateY(-5px); border-color: rgba(0, 81, 255, .2); box-shadow: 0 20px 48px rgba(0, 16, 46, .10); }
}

/* =========================================================
   6. Bandeau propriété (chip-section en sombre)
========================================================= */
.service-chip-section--dark .d1-band {
  border-color: rgba(255, 255, 255, .12);
  background: linear-gradient(135deg, rgba(0, 81, 255, .28), rgba(0, 24, 63, .4));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}
.service-chip-section--dark .d1-band h2 { color: #ffffff; }
.service-chip-section--dark .d1-band > div > p { color: var(--sv-dark-text); }
.service-chip-section--dark .d1-local__points li { color: #ffffff; font-family: var(--ui-font-heading); font-weight: 500; }

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 1024px) {
  .d1-bento--stakes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(64px, auto);
    grid-template-areas:
      "title title"
      "title title"
      "one   glass"
      "one   glass"
      "one   notif"
      "one   notif"
      "two   three"
      "two   three"
      "two   three"
      "lead  three"
      "cta   cta"
      "cta   cta";
  }
  .d1-bento--stakes .d1-bento__free--title { padding-bottom: var(--ui-space-4); }
  .d1-bento--stakes .d1-bento__cell--glass img { width: min(100%, 140px); }
  .service-features__layout { grid-template-columns: 1fr; gap: 40px; }
  .service-features__sticky { position: static; }
  .service-features__sticky h2 { max-width: 20ch; }
  .d1-offers__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .d1-offer-card--featured { order: -1; grid-column: 1 / -1; width: min(100%, 720px); margin: 0 auto var(--ui-space-2); }
  .d1-offer-card__top, .d1-offer-card__price { min-height: auto; }
}
@media (max-width: 640px) {
  .d1-bento--stakes { grid-template-columns: 1fr; grid-auto-rows: auto; grid-template-areas: "title" "lead" "glass" "one" "two" "three" "notif" "cta"; }
  .d1-bento--stakes .d1-bento__free--lead { padding-top: 0; padding-bottom: var(--ui-space-3); }
  .d1-bento--stakes .d1-bento__cell--glass { min-height: 220px; }
  .d1-bento--stakes .d1-bento__cell--glass img { width: min(60%, 200px); }
}
@media (max-width: 768px) {
  .service-audience__row { grid-template-columns: 1fr; gap: 18px; }
  .service-audience__search { width: 100%; justify-self: start; }
  .service-audience__result { margin-left: 0; }
  .service-features__grid { grid-template-columns: 1fr; row-gap: 26px; }
  .service-features__actions { gap: var(--ui-space-3) var(--ui-space-5); }
  .service-choice__panel { grid-template-columns: 1fr; }
  .service-choice__tabs { width: 100%; }
  .service-choice__tab { font-size: 14px; padding: 0 10px; }
  .d1-offers__grid { grid-template-columns: 1fr; gap: var(--ui-space-7); }
  .d1-offer-card, .d1-offer-card--featured { width: 100%; margin: 0; border-radius: var(--ui-radius-card); }
  .d1-offer-card--featured { order: -1; grid-column: auto; }
  .d1-offer-card__badge { transform: translate(-50%, -38%); max-width: calc(100% - var(--ui-space-6)); }
  .d1-offer-card__price strong { font-size: 46px; }
  .d1-offers__lead { font-size: var(--ui-font-body); }
}
@media (prefers-reduced-motion: reduce) {
  .service-choice__indicator, .d1-offer-card { transition: none; }
  .service-choice__panel.is-entering { animation: none; }
  .service-audience__query::after { animation: none; }
}
