/* =========================================================
   ORDiDOC Design System — Colors & Type
   v1.1 · avril 2026
   --------------------------------------------------------
   Two-layer system:
     BRAND CORE  — site, documents, B2B, collectivités, UI
                   (blue + green, clean, reassuring)
     RETAIL PROMO — posters, price tags, in-store promo
                   (orange/yellow/gold accents, 3-meter readable)
   Retail tokens are namespaced --retail-* — never mix layers.
   ========================================================= */

/* ---------- Brand fonts (self-hosted, user-uploaded) ---------- */
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-VariableFont_opsz_wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Italic-VariableFont_opsz_wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('fonts/Archivo-VariableFont_wdth_wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-stretch: 62.5% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('fonts/Archivo-Italic-VariableFont_wdth_wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-stretch: 62.5% 125%;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Anton';
  src: url('fonts/Anton-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* JetBrains Mono stays on CDN (no local file provided) */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* ---------------- BRAND CORE — colors ---------------- */
  /* Blue */
  --blue-500: #1F4E8C;   /* structure, nav, corporate backgrounds */
  --blue-700: #163A69;   /* strong titles, premium frames */
  /* Green */
  --green-500: #7AC043;  /* CTA, validation, primary actions */
  --green-700: #5E9E2F;  /* hover green */
  /* Neutrals */
  --neutral-0:   #FFFFFF;
  --neutral-50:  #F5F7FA;  /* page background */
  --neutral-100: #EEF2F6;  /* subtle surface */
  --neutral-300: #D6DCE5;  /* borders, dividers */
  --neutral-600: #4B5563;  /* secondary text */
  --neutral-800: #1F2937;  /* primary text */

  /* ---------------- RETAIL PROMO — accents only ---------------- */
  --retail-orange-500: #F28C28;
  --retail-orange-700: #D96A00;
  --retail-yellow-400: #F7C948;
  --retail-gold-500:   #D4A72C;

  /* ---------------- Tints (derived, non-palette) ---------------- */
  /* Teintes locales dérivées — utilisées uniquement dans les surfaces internes,
     pas dans la palette de marque. Ne pas reprendre en poster / documents. */
  --blue-050:  #E8EEF6;   /* tint surface bleu très clair (trust-banner, tag-pill) */
  --blue-400:  #2B6FC2;   /* transition pilier-part header gradient */
  --green-050: #EEF7DD;   /* tint surface vert très clair (trust-banner) */
  --amber-050: #FEF6E0;   /* tint tag-pill ambre */
  --amber-600: #B8791F;   /* texte tag-pill ambre */

  /* ---------------- Feedback ---------------- */
  --feedback-success: #2E9F4D;
  --feedback-info:    #2B6CB0;
  --feedback-error:   #D64545;

  /* ---------------- SEMANTIC — Brand Core ---------------- */
  --surface-page:    var(--neutral-50);
  --surface-card:    var(--neutral-0);
  --surface-subtle:  var(--neutral-100);
  --surface-inverse: var(--blue-700);

  --text-primary:   var(--neutral-800);
  --text-secondary: var(--neutral-600);
  --text-inverse:   var(--neutral-0);
  --text-brand:     var(--blue-500);
  --text-link:      var(--blue-500);
  --text-link-hover:var(--blue-700);

  --action-primary-bg:       var(--green-500);
  --action-primary-bg-hover: var(--green-700);
  --action-primary-fg:       var(--neutral-0);
  --action-secondary-bg:     var(--neutral-0);
  --action-secondary-fg:     var(--blue-500);
  --action-secondary-border: var(--blue-500);

  --border-subtle: var(--neutral-300);

  /* ---------------- SEMANTIC — Retail (do not use in Core) ---------------- */
  --retail-price-fill:    var(--retail-yellow-400);
  --retail-price-outline: var(--blue-700);
  --retail-badge-promo:   var(--retail-orange-500);
  --retail-badge-warranty:var(--retail-gold-500);

  /* ---------------- Type families ---------------- */
  --font-body:    'Inter', Arial, sans-serif;
  --font-heading: 'Archivo', 'Inter', Arial, sans-serif;
  --font-retail:  'Anton', 'Archivo', Impact, sans-serif;     /* display strict — retail only */
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Type scale — px */
  --fs-body-sm:   14px;
  --fs-body:      16px;
  --fs-body-lg:   18px;
  --fs-h3:        24px;
  --fs-h2:        36px;
  --fs-h1:        48px;
  --fs-hero:      64px;
  --fs-price:     96px;
  --fs-price-xxl: 160px;

  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;

  --lh-tight: 1.05;
  --lh-h1:    1.1;
  --lh-h2:    1.2;
  --lh-h3:    1.3;
  --lh-body:  1.5;
  --lh-body-lg: 1.55;

  /* ---------------- Spacing (4 / 8 / 12 / 16 / 24 / 32 / 48 / 64) ---------------- */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-12: 48px;
  --sp-16: 64px;

  /* ---------------- Radii ---------------- */
  --radius-sm:  8px;    /* tags, badges */
  --radius-md:  12px;   /* inputs, small buttons */
  --radius-lg:  20px;   /* service cards */
  --radius-pill: 999px; /* primary CTAs */

  /* ---------------- Strokes ---------------- */
  --stroke-default: 1px;
  --stroke-strong:  2px;
  --stroke-poster:  4px;

  /* ---------------- Shadows ---------------- */
  --shadow-card:         0 8px 24px rgba(31, 41, 55, 0.08);
  --shadow-card-hover:   0 12px 32px rgba(31, 41, 55, 0.12);
  --shadow-button:       0 4px 12px rgba(31, 78, 140, 0.18);
  --shadow-poster-price: 0 4px 0 rgba(22, 58, 105, 1);
}

/* ---------- Base reset / body ---------- */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--text-primary);
  background: var(--surface-page);
}

/* ---------- Semantic type helpers ---------- */
.hero, h1.hero {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0;
}

h1, .h1 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin: 0 0 var(--sp-4);
}

h2, .h2 {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0 0 var(--sp-4);
}

h3, .h3, .card-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  color: var(--text-primary);
  margin: 0 0 var(--sp-3);
}

p, .body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-primary);
  margin: 0 0 var(--sp-4);
}

.body-lg {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body-lg);
}

.body-sm, small {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
  line-height: 1.45;
  color: var(--text-secondary);
}

code, .mono {
  font-family: var(--font-mono);
  font-size: 0.9em;
}

a { color: var(--text-link); text-decoration: none; }
a:hover { color: var(--text-link-hover); text-decoration: underline; }

/* ---------- Retail display helper (STRICT: posters / prices only) ---------- */
.retail-display {
  font-family: var(--font-retail);
  font-weight: var(--fw-regular);
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

.retail-price-xxl {
  font-family: var(--font-retail);
  font-size: var(--fs-price-xxl);
  line-height: 0.9;
  color: var(--retail-price-fill);
  -webkit-text-stroke: 3px var(--retail-price-outline);
  text-shadow: var(--shadow-poster-price);
}
/* Shared styles for the Brand Core web UI kit */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--surface-page); color: var(--text-primary); font-family: var(--font-body); }
img { max-width: 100%; display: block; }

/* Top nav */
.topstrip { background: var(--blue-700); color: #fff; font-size: 12px; padding: 6px 0; }
.topstrip .wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topstrip a { color: #fff; opacity: 0.9; text-decoration: none; }
.topstrip a:hover { opacity: 1; }

nav.main { background: #fff; border-bottom: 1px solid var(--neutral-300); position: sticky; top: 0; z-index: 10; }
nav.main .wrap { max-width: 1200px; margin: 0 auto; padding: 14px 32px; display: flex; align-items: center; gap: 32px; }
nav.main .logo img { height: 46px; }
nav.main ul { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
nav.main a { color: var(--text-primary); font-weight: 500; font-size: 15px; padding: 6px 2px; }
nav.main a:hover { color: var(--blue-500); text-decoration: none; }
nav.main .spacer { flex: 1; }
nav.main .cta { background: var(--green-500); color: #fff; font-weight: 600; padding: 10px 18px; border-radius: 999px; font-size: 14px; box-shadow: var(--shadow-button); }
nav.main .cta:hover { background: var(--green-700); text-decoration: none; color: #fff; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #1F4E8C 0%, #163A69 70%);
  color: #fff; position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(122,192,67,0.25), transparent 60%),
              radial-gradient(circle at 15% 85%, rgba(31,78,140,0.5), transparent 55%);
  pointer-events: none;
}
.hero .wrap { max-width: 1200px; margin: 0 auto; padding: 80px 32px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; position: relative; }
.hero h1 { font-family: var(--font-heading); font-weight: 700; font-size: 56px; line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 20px; color: #fff; }
.hero h1 em { font-style: normal; color: var(--green-500); }
.hero p { font-size: 19px; line-height: 1.55; opacity: 0.92; margin: 0 0 28px; max-width: 520px; color: #fff; }
.hero .proof span { color: #fff; }
.hero .row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .proof { display: flex; gap: 18px; margin-top: 32px; font-size: 13px; opacity: 0.85; flex-wrap: wrap; }
.hero .proof span { display: inline-flex; align-items: center; gap: 6px; }
.hero .proof svg { color: var(--green-500); }
.hero .visual { position: relative; min-height: 380px; }
.hero .visual .mascot { position: absolute; right: -10px; bottom: -40px; width: 100%; max-width: 440px; }
.hero .visual .medal {
  position: absolute; top: 0; right: 0; width: 140px; height: 140px; border-radius: 50%;
  background: rgba(255,255,255,0.06); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18); display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; color: #fff; text-align: center; padding: 10px; font-size: 14px; line-height: 1.2;
}
.hero .visual .medal strong { font-size: 34px; color: var(--green-500); display: block; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 600; font-size: 15px; padding: 14px 26px; border-radius: 999px; border: 0; cursor: pointer; text-decoration: none; }
.btn.primary { background: var(--green-500); color: #fff; box-shadow: 0 6px 18px rgba(94,158,47,0.35); }
.btn.primary:hover { background: var(--green-700); color: #fff; text-decoration: none; }
.btn.ghost-light { background: rgba(255,255,255,0.1); color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn.ghost-light:hover { background: rgba(255,255,255,0.18); text-decoration: none; color: #fff; }
.btn.secondary { background: #fff; color: var(--blue-500); border: 2px solid var(--blue-500); }
.btn.secondary:hover { background: #EEF2F6; text-decoration: none; }

/* Sections */
section { padding: 80px 0; }
section .wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
section .eyebrow { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--blue-500); text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 10px; }
section h2 { font-family: var(--font-heading); font-weight: 600; font-size: 38px; line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 14px; color: var(--text-primary); }
section .lede { font-size: 18px; line-height: 1.55; color: var(--text-secondary); max-width: 640px; margin: 0 0 40px; }

/* Services grid */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: #fff; border-radius: 20px; padding: 28px; box-shadow: var(--shadow-card); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-hover); }
.service-card .icon { width: 52px; height: 52px; border-radius: 14px; background: var(--neutral-100); color: var(--blue-500); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-card.green .icon { background: #E9F5DA; color: var(--green-700); }
.service-card h3 { font-family: var(--font-heading); font-weight: 600; font-size: 22px; margin: 0 0 10px; color: var(--text-primary); }
.service-card p { font-size: 15px; line-height: 1.55; color: var(--text-secondary); margin: 0 0 18px; }
.service-card ul { list-style: none; padding: 0; margin: 0 0 20px; }
.service-card li { font-size: 13.5px; color: var(--text-primary); padding: 6px 0; display: flex; gap: 8px; align-items: center; }
.service-card li::before { content: "✓"; color: var(--green-500); font-weight: 700; }
.service-card .more { color: var(--blue-500); font-weight: 600; font-size: 14px; text-decoration: none; }
.service-card .more:hover { text-decoration: underline; }

/* Proofs */
.proofs { background: #fff; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 20px; }
.stat { text-align: left; }
.stat .n { font-family: var(--font-heading); font-weight: 700; font-size: 48px; line-height: 1; color: var(--blue-500); letter-spacing: -0.02em; }
.stat .l { font-size: 14px; color: var(--text-secondary); margin-top: 6px; }

/* Testimonials */
.testi { background: var(--neutral-50); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { background: #fff; border-radius: 20px; padding: 28px; box-shadow: var(--shadow-card); position: relative; }
.quote .stars { color: var(--retail-gold-500); margin-bottom: 12px; }
.quote p { font-size: 15px; line-height: 1.6; color: var(--text-primary); margin: 0 0 20px; }
.quote footer { display: flex; gap: 12px; align-items: center; }
.quote .avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,#1F4E8C,#163A69); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; }
.quote .who { font-size: 13px; }
.quote .who b { display: block; color: var(--text-primary); }
.quote .who span { color: var(--text-secondary); font-size: 12px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border-radius: 14px; border: 1px solid var(--neutral-300); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-family: var(--font-heading); font-weight: 600; font-size: 17px; color: var(--text-primary); display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--blue-500); font-size: 24px; font-weight: 300; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .content { padding: 0 24px 20px; color: var(--text-secondary); line-height: 1.6; font-size: 15px; }

/* Contact */
.contact-strip { background: var(--blue-500); color: #fff; border-radius: 24px; padding: 44px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center; overflow: hidden; position: relative; }
.contact-strip h2 { color: #fff !important; margin-bottom: 8px; }
.contact-strip p { color: rgba(255,255,255,0.9) !important; font-size: 16px; margin: 0 0 20px; line-height: 1.5; }
.contact-strip .details span { color: #fff; }
.contact-strip .details { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.contact-strip .details span { display: flex; align-items: center; gap: 10px; }
.contact-strip .details svg { color: var(--green-500); flex: 0 0 auto; }

/* Footer */
footer.site { background: var(--blue-700); color: rgba(255,255,255,0.8); padding: 56px 0 28px; font-size: 14px; }
footer.site .wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
footer.site .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.12); }
footer.site h4 { font-family: var(--font-heading); font-weight: 600; font-size: 15px; color: #fff; margin: 0 0 14px; text-transform: uppercase; letter-spacing: 0.06em; }
footer.site ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
footer.site a { color: rgba(255,255,255,0.8); text-decoration: none; }
footer.site a:hover { color: #fff; }
footer.site .logo img { height: 48px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.9; }
footer.site .bottom { padding-top: 20px; display: flex; justify-content: space-between; font-size: 12px; opacity: 0.7; }

/* ═════════════════════════════════════════════════════════════════════════
   MODERN UPGRADE — v2 (scroll-reveal, micro-interactions, typo fluide)
   Ajouts au-dessus du brand-core existant, non destructifs.
   ═════════════════════════════════════════════════════════════════════════ */

/* Typo fluide — H1/H2/H3 scalent entre mobile et desktop sans breakpoint */
h1 { font-size: clamp(2rem, 1.2rem + 3.5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 1rem + 2.2vw, 2.6rem); line-height: 1.15; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.15rem, 0.9rem + 1vw, 1.45rem); }

/* Scroll-reveal — sections invisibles puis fade-up quand visibles */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.16,1,0.3,1), transform 700ms cubic-bezier(0.16,1,0.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 90ms; }
.reveal.delay-2 { transition-delay: 180ms; }
.reveal.delay-3 { transition-delay: 270ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Hero upgrade : blobs animés + grain subtile */
.hero { isolation: isolate; }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(122,192,67,0.18), transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(43,111,194,0.25), transparent 70%);
  animation: hero-drift 18s ease-in-out infinite alternate;
  pointer-events: none; z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }
@keyframes hero-drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(-2%, 2%, 0) scale(1.08); }
}

/* Service-card : lift + colored glow au hover */
.service-card {
  transition: transform 320ms cubic-bezier(0.16,1,0.3,1),
              box-shadow 320ms cubic-bezier(0.16,1,0.3,1),
              border-color 200ms;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(31,78,140,0.05));
  opacity: 0; transition: opacity 300ms;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(31,78,140,0.14), 0 4px 12px rgba(31,78,140,0.08);
  border-color: var(--blue-500);
}
.service-card:hover::before { opacity: 1; }
.service-card.green:hover {
  box-shadow: 0 18px 40px rgba(122,192,67,0.18), 0 4px 12px rgba(122,192,67,0.1);
  border-color: var(--green-500);
}
.service-card .icon {
  transition: transform 300ms cubic-bezier(0.34,1.56,0.64,1), background 300ms;
}
.service-card:hover .icon { transform: scale(1.1) rotate(-4deg); }

/* Buttons : gradient shimmer au hover + shadow animée */
.btn.primary {
  background: linear-gradient(135deg, var(--green-500) 0%, var(--green-700) 100%);
  background-size: 200% 100%;
  transition: background-position 350ms, transform 200ms, box-shadow 200ms;
}
.btn.primary:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(122,192,67,0.45);
}
.btn.primary:active { transform: translateY(0); }

/* Nav : léger effet frosted au scroll */
nav.main { backdrop-filter: saturate(140%); transition: box-shadow 300ms, background 300ms; }
nav.main.scrolled { box-shadow: 0 2px 18px rgba(22,58,105,0.08); background: rgba(255,255,255,0.92); }

/* Sections : séparateur diagonal subtil */
.section-angle {
  position: relative;
  --angle: 2.5vw;
  padding-top: calc(64px + var(--angle));
  padding-bottom: calc(64px + var(--angle));
  clip-path: polygon(0 var(--angle), 100% 0, 100% calc(100% - var(--angle)), 0 100%);
}

/* Pilier-hero : variante colorée selon le public cible */
.hero.pilier-pro { background: linear-gradient(135deg, #163A69 0%, #0F2542 100%); }
.hero.pilier-coll { background: linear-gradient(135deg, #1F2937 0%, #0F172A 100%); }
.hero.pilier-sap {
  background: linear-gradient(135deg, #5E9E2F 0%, #3F7020 100%);
}
.hero.pilier-sap h1 em { color: #F7C948; }
.hero.pilier-part {
  background: linear-gradient(135deg, #1F4E8C 0%, #2B6FC2 60%, #3BA5FF 100%);
}

/* Trust banner : nombre animé */
.trust-banner {
  background: linear-gradient(90deg, var(--blue-050) 0%, var(--green-050) 100%);
  border: 1px solid rgba(31,78,140,0.12);
  border-radius: 16px;
  padding: 24px 28px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px; margin: 32px 0;
}
.trust-banner .cell { text-align: center; }
.trust-banner .n {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem);
  color: var(--blue-500); line-height: 1;
  letter-spacing: -0.02em;
}
.trust-banner .l {
  font-size: 13px; color: var(--text-secondary);
  margin-top: 8px; letter-spacing: 0.03em; text-transform: uppercase; font-weight: 600;
}

/* Credit-calc (pour SAP) : glow doux */
.credit-calc {
  background: linear-gradient(135deg, #E9F5DA, #F5FBE7);
  border: 2px dashed var(--green-500);
  border-radius: 20px; padding: 28px;
  position: relative; overflow: hidden;
}
.credit-calc::before {
  content: "💰"; position: absolute; top: -20px; right: -20px;
  font-size: 120px; opacity: 0.1; transform: rotate(-15deg);
}

/* Inline FAQ : détails modernes */
details.faq-item {
  border: 1px solid var(--neutral-300);
  border-radius: 12px; padding: 0;
  margin-bottom: 10px;
  transition: border-color 220ms, box-shadow 220ms;
}
details.faq-item:hover { border-color: var(--blue-500); }
details.faq-item[open] {
  border-color: var(--blue-500);
  box-shadow: 0 4px 16px rgba(31,78,140,0.08);
}
details.faq-item > summary {
  padding: 16px 20px; cursor: pointer; font-weight: 600;
  color: var(--text-primary); list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
details.faq-item > summary::after {
  content: "+"; font-size: 24px; color: var(--blue-500);
  font-weight: 300; transition: transform 250ms;
}
details.faq-item[open] > summary::after { transform: rotate(45deg); }
details.faq-item .content {
  padding: 0 20px 20px; color: var(--text-secondary); line-height: 1.6;
}

/* CTA flottant mobile — reste visible au scroll */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--neutral-300);
  padding: 10px 16px; display: none;
  box-shadow: 0 -4px 12px rgba(22,58,105,0.08); z-index: 50;
}
.mobile-cta a { flex: 1; }
@media (max-width: 760px) {
  .mobile-cta { display: flex; gap: 8px; }
  body { padding-bottom: 72px; }
}

/* Breadcrumb */
.breadcrumb {
  padding: 14px 0; font-size: 13px; color: var(--text-secondary);
}
.breadcrumb a { color: var(--text-secondary); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue-500); }
.breadcrumb .sep { margin: 0 6px; opacity: 0.5; }

/* Pilier card (on homepage) : grand, photo-style */
.pilier-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 32px;
}
.pilier-card {
  display: block; text-decoration: none; color: inherit;
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--neutral-300);
  transition: transform 320ms cubic-bezier(0.16,1,0.3,1), box-shadow 320ms, border-color 200ms;
  position: relative;
}
.pilier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(22,58,105,0.12);
  border-color: var(--blue-500);
}
.pilier-card .pilier-head {
  padding: 24px; color: #fff; position: relative; overflow: hidden;
}
.pilier-card .pilier-head.part { background: linear-gradient(135deg, var(--blue-500), var(--blue-400)); }
.pilier-card .pilier-head.pro { background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); }
.pilier-card .pilier-head.coll { background: linear-gradient(135deg, #1F2937, #374151); }
.pilier-card .pilier-head h3 {
  color: #fff; font-size: 22px; margin: 12px 0 8px; font-weight: 700;
}
.pilier-card .pilier-head p { color: rgba(255,255,255,0.85); font-size: 14px; margin: 0; line-height: 1.5; }
.pilier-card .pilier-head svg { width: 36px; height: 36px; opacity: 0.9; }
.pilier-card .pilier-body {
  padding: 18px 24px 22px;
}
.pilier-card .pilier-body ul { margin: 0; padding-left: 18px; color: var(--text-secondary); font-size: 13.5px; line-height: 1.7; }
.pilier-card .pilier-body .arrow {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; color: var(--blue-500); font-weight: 600; font-size: 14px;
  transition: gap 250ms;
}
.pilier-card:hover .pilier-body .arrow { gap: 12px; }

/* Tag pills (crédit d'impôt, agréé, etc.) */
.tag-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: #E9F5DA; color: #3F7020;
  padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.tag-pill.blue { background: var(--blue-050); color: var(--blue-700); }
.tag-pill.amber { background: var(--amber-050); color: var(--amber-600); }

/* ═════════════════════════════════════════════════════════════════════════
   ACCESSIBILITÉ — focus-visible, skip-link, tap-targets, nav mobile
   ═════════════════════════════════════════════════════════════════════════ */

/* Skip-link : caché sauf au focus clavier */
.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  z-index: 1000;
  background: var(--blue-700);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 12px 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: top 180ms cubic-bezier(0.16,1,0.3,1);
}
.skip-link:focus {
  top: 0;
  color: #fff;
  text-decoration: none;
  outline: 3px solid var(--green-500);
  outline-offset: 2px;
}

/* Focus global : outline net, visible en clavier uniquement */
:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible,
.cta:focus-visible,
nav.main a:focus-visible,
footer.site a:focus-visible,
.mobile-cta a:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 3px;
}
.topstrip a:focus-visible,
.hero .btn:focus-visible {
  outline-color: #fff;
}

/* aria-current state visible sur la nav */
nav.main a[aria-current="page"] {
  color: var(--blue-700);
  position: relative;
}
nav.main a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
}

/* Tap-targets mobiles : au moins 44x44 sur les petites surfaces */
@media (max-width: 760px) {
  nav.main a,
  footer.site a,
  .topstrip a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .faq-item > summary {
    min-height: 48px;
  }
}

/* Nav mobile : stack lisible (collapse horizontal sur <=760px) */
@media (max-width: 760px) {
  nav.main .wrap {
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 16px;
  }
  nav.main ul {
    order: 3;
    width: 100%;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  nav.main ul::-webkit-scrollbar { height: 0; }
  nav.main li { flex: 0 0 auto; }
  nav.main .spacer { display: none; }
  nav.main .cta {
    margin-left: auto;
    font-size: 13px;
    padding: 8px 14px;
  }
  .topstrip { font-size: 11px; padding: 4px 0; }
  .topstrip .wrap { padding: 0 16px; gap: 8px; flex-wrap: wrap; }
}

/* prefers-reduced-motion : désactiver animations décoratives */
@media (prefers-reduced-motion: reduce) {
  .hero::after { animation: none; }
  .service-card,
  .pilier-card,
  .btn.primary,
  nav.main,
  details.faq-item {
    transition: none;
  }
  .service-card:hover,
  .pilier-card:hover,
  .btn.primary:hover {
    transform: none;
  }
}

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

/* ═════════════════════════════════════════════════════════════════════════
   DESIGN SYSTEM 2026 — HOME IMPLEMENTATION (Variant B Éditorial Local)
   Scoped via body.ds-home — ne pollue pas les autres pages
   Tokens : uniquement palette brand core (blue + green + neutrals)
   Aucun Fraunces, aucun terracotta, aucun orange hors retail.
   ═════════════════════════════════════════════════════════════════════════ */

/* Top strip enrichi (désactive l'ancien .topstrip nav sur home) */
body.ds-home .topstrip {
  background: var(--neutral-0);
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(22, 58, 105, 0.1);
  font-size: 12px;
  padding: 8px 0;
}
body.ds-home .topstrip .wrap {
  max-width: 1240px;
  padding: 0 32px;
  gap: 16px;
  flex-wrap: wrap;
}
body.ds-home .topstrip .ds-topstrip-group {
  display: inline-flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
body.ds-home .topstrip a { color: var(--text-secondary); opacity: 1; }
body.ds-home .topstrip a:hover { color: var(--blue-500); text-decoration: underline; }
body.ds-home .topstrip .ds-star { color: var(--retail-yellow-400); }

/* Nav principale — layout élargi + téléphone visible + CTA */
body.ds-home nav.main {
  background: var(--neutral-0);
}
body.ds-home nav.main .wrap {
  max-width: 1240px;
  padding: 18px 32px;
}
body.ds-home nav.main ul { gap: 28px; }
body.ds-home nav.main a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
}
body.ds-home nav.main .ds-phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* =========================================================
   HERO B — photo magasin full-bleed + overlay + mascotte badge
   ========================================================= */
.ds-hero {
  background: var(--neutral-0);
  padding: 40px 0 60px;
}
.ds-hero .wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.ds-hero-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 32px;
  aspect-ratio: auto;
}
.ds-hero-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}
.ds-hero-photo .ds-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(15, 26, 46, 0.82) 0%,
    rgba(15, 26, 46, 0.55) 50%,
    rgba(15, 26, 46, 0.10) 100%);
}
.ds-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 60px;
  z-index: 2;
}
.ds-hero-content > div {
  max-width: 620px;
  color: #fff;
}
.ds-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.ds-hero-badge .ds-dot {
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 999px;
  box-shadow: 0 0 10px var(--green-500);
}
.ds-hero h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: #fff;
}
.ds-hero h1 em {
  font-style: italic;
  color: var(--green-500);
}
.ds-hero-lead {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.1875rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
  max-width: 500px;
}
.ds-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ds-btn-primary {
  background: var(--green-500);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 28px;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 22px rgba(122, 192, 67, 0.4);
  transition: background var(--dur, 200ms), transform 150ms, box-shadow var(--dur, 200ms);
}
.ds-btn-primary:hover {
  background: var(--green-700);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(94, 158, 47, 0.5);
}
.ds-btn-glass {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 200ms;
}
.ds-btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
}
.ds-mascot-badge {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 3;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 10px 18px 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  max-width: 280px;
}
.ds-mascot-badge img {
  height: 42px;
  width: auto;
  flex: 0 0 auto;
}
.ds-mascot-badge-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.15;
}

/* Quick cards sous la photo */
.ds-quick-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ds-quick-card {
  background: var(--neutral-0);
  border: 1px solid rgba(22, 58, 105, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 200ms, box-shadow 200ms;
}
.ds-quick-card:hover {
  border-color: var(--blue-500);
  box-shadow: var(--shadow-card);
}
.ds-quick-card .ds-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(31, 78, 140, 0.08);
  color: var(--blue-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: background 200ms ease-out, color 200ms ease-out, transform 200ms ease-out;
}
.ds-quick-card:hover .ds-icon {
  background: rgba(31, 78, 140, 0.14);
  transform: scale(1.05);
}
.ds-quick-card .ds-icon svg {
  display: block;
}
.ds-quick-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--text-primary);
  margin: 0 0 4px;
}
.ds-quick-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* =========================================================
   SERVICES GRID — 4 cards (2x2)
   ========================================================= */
.ds-services {
  padding: 96px 32px;
  background: var(--neutral-50);
}
.ds-services .wrap {
  max-width: 1240px;
  margin: 0 auto;
}
.ds-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.ds-eyebrow {
  display: inline-block;
  color: var(--green-500);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.ds-eyebrow.blue { color: var(--blue-500); }
.ds-section-header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}
.ds-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ds-service-card {
  position: relative;
  background: var(--neutral-0);
  border: 1px solid rgba(22, 58, 105, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 200ms, box-shadow 200ms, border-color 200ms;
  text-decoration: none;
  color: inherit;
  display: block;
}
.ds-service-card:hover {
  border-color: var(--blue-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  text-decoration: none;
  color: inherit;
}
.ds-service-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.ds-service-tag.green { background: var(--green-500); }
.ds-service-tag.blue { background: var(--blue-500); }
.ds-service-card .ds-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(31, 78, 140, 0.08);
  color: var(--blue-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 280ms cubic-bezier(0.16, 1, 0.3, 1),
              color 280ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ds-service-card:hover .ds-icon {
  background: var(--blue-500);
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}
.ds-service-card.green:hover .ds-icon {
  background: var(--green-500);
}
.ds-service-card .ds-icon svg {
  display: block;
}
.ds-service-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  margin: 0 0 4px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.ds-service-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-500);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ds-service-card.blue .ds-service-sub { color: var(--blue-500); }
.ds-service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 18px;
}
.ds-service-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ds-service-more .ds-arrow { color: var(--green-500); }
.ds-service-card.blue .ds-service-more .ds-arrow { color: var(--blue-500); }

/* =========================================================
   VISION — 3 piliers numérotés + mascotte à droite
   ========================================================= */
.ds-vision {
  padding: 96px 32px;
  background: var(--neutral-0);
}
.ds-vision .wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.ds-vision h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.ds-vision .ds-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 28px;
  max-width: 520px;
}
.ds-vision-pillars {
  display: grid;
  gap: 20px;
}
.ds-pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ds-pillar-num {
  min-width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--green-500);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  flex: 0 0 auto;
}
.ds-pillar-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  margin: 0 0 3px;
}
.ds-pillar-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}
.ds-vision-mascot {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.ds-vision-mascot::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 192, 67, 0.18), transparent 70%);
  pointer-events: none;
}
.ds-vision-mascot img {
  max-width: 440px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

/* =========================================================
   FAQ — accordéon sobre
   ========================================================= */
.ds-faq {
  padding: 96px 32px;
  background: var(--neutral-50);
}
.ds-faq .wrap {
  max-width: 900px;
  margin: 0 auto;
}
.ds-faq-list {
  display: grid;
  gap: 14px;
  margin-top: 48px;
}
.ds-faq-item {
  background: var(--neutral-0);
  border: 1px solid rgba(22, 58, 105, 0.08);
  border-radius: 14px;
  padding: 20px 24px;
  transition: border-color 200ms, box-shadow 200ms;
}
.ds-faq-item[open] {
  border-color: var(--blue-500);
  box-shadow: 0 4px 12px rgba(22, 58, 105, 0.08);
}
.ds-faq-item > summary {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.ds-faq-item > summary::-webkit-details-marker { display: none; }
.ds-faq-item > summary::after {
  content: "+";
  color: var(--green-500);
  font-size: 24px;
  font-weight: 300;
  transition: transform 200ms;
  flex: 0 0 auto;
}
.ds-faq-item[open] > summary::after {
  transform: rotate(45deg);
}
.ds-faq-item .ds-faq-answer {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* =========================================================
   FOOTER CTA — bloc bleu foncé centré
   ========================================================= */
.ds-footer-cta {
  padding: 80px 32px;
  background: var(--blue-700);
  color: #fff;
  text-align: center;
}
.ds-footer-cta .wrap {
  max-width: 780px;
  margin: 0 auto;
}
.ds-footer-cta h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 3rem);
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  color: #fff;
}
.ds-footer-cta p {
  font-size: 18px;
  line-height: 1.6;
  color: #C5D3E8;
  margin: 0 0 32px;
}
.ds-footer-cta .ds-btn-outline-light {
  background: transparent;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 28px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 200ms, background 200ms;
}
.ds-footer-cta .ds-btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
}
.ds-footer-cta .ds-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   Footer site (refonte 4 colonnes, compatible design)
   Ne modifie que footer.site — pages pilier continuent de s'y brancher
   ========================================================= */
footer.site {
  background: #0F1A2E;
  color: #C5D3E8;
  padding: 48px 0 32px;
  font-size: 13px;
}
footer.site .wrap {
  max-width: 1240px;
  padding: 0 32px;
}
footer.site .cols {
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
footer.site h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 14px;
}
footer.site a {
  color: #C5D3E8;
}
footer.site a:hover {
  color: #fff;
}
footer.site .bottom {
  color: #5C6E8A;
  border-top-color: rgba(255, 255, 255, 0.08);
}

/* =========================================================
   Responsive home
   ========================================================= */
@media (max-width: 900px) {
  .ds-hero-photo img { height: 460px; }
  .ds-hero-content { padding: 0 32px; }
  .ds-service-grid { grid-template-columns: 1fr; }
  .ds-vision .wrap { grid-template-columns: 1fr; gap: 40px; }
  .ds-vision-mascot { order: -1; }
  .ds-quick-cards { grid-template-columns: 1fr; }
  .ds-mascot-badge { right: 16px; bottom: 16px; }
  footer.site .cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .ds-hero { padding: 20px 0 40px; }
  .ds-hero .wrap { padding: 0 16px; }
  .ds-hero-photo { border-radius: 18px; }
  .ds-hero-photo img { height: 420px; }
  .ds-hero-content { padding: 0 20px; align-items: flex-end; padding-bottom: 24px; }
  .ds-hero h1 { font-size: 36px; line-height: 1; margin-bottom: 12px; }
  .ds-hero-lead { font-size: 14px; margin-bottom: 18px; }
  .ds-btn-primary, .ds-btn-glass { font-size: 14px; padding: 14px 20px; }
  .ds-mascot-badge { display: none; }
  .ds-services, .ds-vision, .ds-faq { padding: 56px 20px; }
  .ds-services .wrap, .ds-vision .wrap, .ds-faq .wrap { padding: 0; }
  .ds-footer-cta { padding: 56px 20px; }
  footer.site .cols { grid-template-columns: 1fr; }
}

/* ═════════════════════════════════════════════════════════════════════════
   POLISH — micro-interactions, focus, press, typo, spring easings
   ═════════════════════════════════════════════════════════════════════════ */

/* Spring-like easing tokens pour les animations home */
body.ds-home {
  --ds-spring:       cubic-bezier(0.16, 1, 0.3, 1);     /* ease-out-expo doux */
  --ds-spring-back:  cubic-bezier(0.34, 1.56, 0.64, 1); /* léger overshoot */
  --ds-ease-out:     cubic-bezier(0.2, 0, 0.2, 1);
  --ds-ease-in:      cubic-bezier(0.4, 0, 1, 1);
  --ds-dur-fast:     180ms;
  --ds-dur-base:     260ms;
  --ds-dur-slow:     400ms;
}

/* Reveal amélioré — transition plus douce, plus courte, spring */
body.ds-home .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms var(--ds-spring),
    transform 620ms var(--ds-spring);
}
body.ds-home .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
body.ds-home .reveal.delay-1 { transition-delay: 80ms; }
body.ds-home .reveal.delay-2 { transition-delay: 160ms; }
body.ds-home .reveal.delay-3 { transition-delay: 240ms; }

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

/* Press/active feedback — subtle scale sur tous les CTAs */
body.ds-home .ds-btn-primary:active,
body.ds-home .ds-btn-glass:active,
body.ds-home .ds-btn-outline-light:active,
body.ds-home nav.main .cta:active,
body.ds-home .ds-service-card:active,
body.ds-home .ds-quick-card:active {
  transform: scale(0.985);
  transition-duration: 80ms;
}
@media (prefers-reduced-motion: reduce) {
  body.ds-home *:active { transform: none !important; }
}

/* Focus states raffinés — contraste fort, offset généreux, couleur contextuelle */
body.ds-home a:focus-visible,
body.ds-home button:focus-visible,
body.ds-home details:focus-visible > summary,
body.ds-home summary:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: 6px;
  transition: outline-offset 140ms var(--ds-ease-out);
}
body.ds-home .ds-btn-primary:focus-visible,
body.ds-home .ds-pillar-num:focus-visible {
  outline-color: var(--green-700);
}
body.ds-home .ds-hero-content a:focus-visible,
body.ds-home .ds-hero-content button:focus-visible,
body.ds-home .ds-footer-cta a:focus-visible,
body.ds-home .ds-footer-cta button:focus-visible {
  outline-color: #FFD84D; /* jaune marqueur high-contrast sur fond sombre */
  outline-offset: 4px;
}

/* Nav aria-current underline plus marqué pour scope ds-home */
body.ds-home nav.main a[aria-current="page"]::after {
  height: 3px;
  bottom: -6px;
}

/* Typographie : line-height body confortable, tracking headings */
body.ds-home .ds-hero-lead,
body.ds-home .ds-quick-card p,
body.ds-home .ds-service-card p,
body.ds-home .ds-vision .ds-lead,
body.ds-home .ds-pillar-content p,
body.ds-home .ds-faq-item .ds-faq-answer,
body.ds-home .ds-footer-cta p {
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.ds-home h1,
body.ds-home h2,
body.ds-home h3 {
  font-feature-settings: "kern", "liga", "calt";
  text-wrap: balance; /* headings équilibrés (Safari 17.4+ / Chrome 114+) */
}

/* Chiffres tabulaires pour notations, stats, compteurs */
body.ds-home .ds-tabular,
body.ds-home .ds-num,
body.ds-home .ds-pillar-num,
body.ds-home .topstrip {
  font-variant-numeric: tabular-nums;
}

/* Lead length control — éviter ligne trop longue sur desktop large */
body.ds-home .ds-hero-lead { max-width: 52ch; }
body.ds-home .ds-vision .ds-lead { max-width: 58ch; }
body.ds-home .ds-footer-cta p { max-width: 60ch; margin-left: auto; margin-right: auto; }

/* Hover service cards — glow coloré cohérent avec la card */
body.ds-home .ds-service-card {
  transition:
    transform 320ms var(--ds-spring),
    box-shadow 320ms var(--ds-spring),
    border-color 200ms ease-out;
}
body.ds-home .ds-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(31, 78, 140, 0.14);
}
body.ds-home .ds-service-card.green:hover {
  box-shadow: 0 18px 40px rgba(122, 192, 67, 0.22);
  border-color: var(--green-500);
}

/* Quick card hover polish */
body.ds-home .ds-quick-card {
  transition:
    transform 260ms var(--ds-spring),
    box-shadow 260ms var(--ds-spring),
    border-color 200ms ease-out;
}
body.ds-home .ds-quick-card:hover {
  transform: translateY(-2px);
}

/* Hero badge dot — animation pulse respectueuse de reduced-motion */
.ds-hero-badge .ds-dot {
  animation: ds-pulse 2.4s ease-in-out infinite;
}
@keyframes ds-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .ds-hero-badge .ds-dot { animation: none; }
}

/* FAQ details smooth — polish ouverture */
body.ds-home .ds-faq-item {
  transition: border-color 220ms var(--ds-ease-out), box-shadow 220ms var(--ds-ease-out);
}
body.ds-home .ds-faq-item > summary {
  padding-right: 8px;
}
body.ds-home .ds-faq-item > summary::after {
  transition: transform 280ms var(--ds-spring), color 180ms ease-out;
}
body.ds-home .ds-faq-item:hover > summary::after {
  color: var(--green-700);
}

/* Mobile polish hero — hauteur réduite + typo équilibrée */
@media (max-width: 560px) {
  .ds-hero-photo img { height: 460px; }
  .ds-hero h1 {
    font-size: clamp(2rem, 1rem + 7vw, 2.8rem);
    letter-spacing: -0.02em;
    line-height: 1.03;
  }
  .ds-hero-badge {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 16px;
  }
  .ds-hero-lead {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 18px;
  }
  .ds-hero-content {
    padding-bottom: 28px;
  }
  .ds-btn-primary, .ds-btn-glass {
    font-size: 14px;
    padding: 13px 20px;
  }
  /* Mascot badge off sur mobile small pour respiration */
  .ds-mascot-badge { display: none; }
}

/* Mobile polish sections — spacing réduit */
@media (max-width: 760px) {
  body.ds-home .ds-services,
  body.ds-home .ds-vision,
  body.ds-home .ds-faq { padding: 64px 24px; }
  body.ds-home .ds-footer-cta { padding: 64px 24px; }
  body.ds-home .ds-service-card { padding: 22px; }
  body.ds-home .ds-section-header { margin-bottom: 36px; }
}

/* Desktop : balance typographique sur les blocs centrés (si pas de support text-wrap) */
@supports not (text-wrap: balance) {
  body.ds-home .ds-section-header h2,
  body.ds-home .ds-footer-cta h2 {
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Vision mascotte halo plus doux + breathing subtle */
body.ds-home .ds-vision-mascot::before {
  animation: ds-halo 8s ease-in-out infinite;
}
@keyframes ds-halo {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%      { transform: scale(1.08); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  body.ds-home .ds-vision-mascot::before { animation: none; }
}

/* Contraste amélioré — paragraph lead sur footer CTA (était #C5D3E8 borderline) */
body.ds-home .ds-footer-cta p { color: #DCE6F3; }

/* Topstrip polish — séparateur subtil entre groupes */
body.ds-home .topstrip .ds-topstrip-group {
  font-variant-numeric: tabular-nums;
}

/* Nav polish — transition douce logo hover */
body.ds-home nav.main .logo img {
  transition: opacity 200ms ease-out;
}
body.ds-home nav.main .logo:hover img { opacity: 0.85; }

/* Mascotte badge — polish shadow plus contextuelle + mini bounce hover */
.ds-mascot-badge {
  transition: transform 280ms var(--ds-spring-back);
}
.ds-mascot-badge:hover { transform: translateY(-2px); }

/* ═════════════════════════════════════════════════════════════════════════
   PATTERNS PAGES PILIER — réutilisables sur particuliers/pros/coll/sap/contact
   Scope : body.ds-home (utilisé sur toutes les pages design system)
   ═════════════════════════════════════════════════════════════════════════ */

/* Hero slim — sans photo full-bleed, variante pour pages pilier */
.ds-hero-slim {
  padding: 80px 0 72px;
  background: var(--neutral-0);
  position: relative;
  overflow: hidden;
}
.ds-hero-slim.dark {
  background: var(--blue-700);
  color: #fff;
}
.ds-hero-slim.dark h1,
.ds-hero-slim.dark h2 { color: #fff; }
.ds-hero-slim .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  position: relative;
}
.ds-hero-slim.full .wrap {
  grid-template-columns: 1fr;
  text-align: left;
  max-width: 880px;
}
.ds-hero-slim .ds-breadcrumb {
  grid-column: 1 / -1;
  margin-bottom: 24px;
}
.ds-hero-slim h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.25rem, 1.4rem + 3vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin: 0 0 20px;
}
.ds-hero-slim .ds-hero-sub {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.1875rem);
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 56ch;
  margin: 0 0 28px;
}
.ds-hero-slim.dark .ds-hero-sub { color: rgba(255,255,255,0.88); }
.ds-hero-slim .ds-hero-aside {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.ds-hero-slim .ds-hero-aside img {
  max-width: 320px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ds-hero-slim .ds-hero-aside::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 78, 140, 0.10), transparent 70%);
}

/* Breadcrumb */
body.ds-home .ds-breadcrumb {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
body.ds-home .ds-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}
body.ds-home .ds-breadcrumb a:hover {
  color: var(--blue-500);
  text-decoration: underline;
}
body.ds-home .ds-breadcrumb .ds-bc-sep {
  opacity: 0.4;
}
body.ds-home .ds-breadcrumb [aria-current="page"] {
  color: var(--text-primary);
  font-weight: 500;
}

/* Bandeau rassurance horizontal */
.ds-reassurance {
  background: var(--blue-050);
  padding: 20px 0;
  border-top: 1px solid rgba(31, 78, 140, 0.08);
  border-bottom: 1px solid rgba(31, 78, 140, 0.08);
}
.ds-reassurance .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
}
.ds-reassurance-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-700);
  letter-spacing: 0.01em;
}
.ds-reassurance-item svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--green-700);
}

/* Steps numérotées (01/02/03/04) */
.ds-steps {
  padding: 96px 32px;
  background: var(--neutral-0);
}
.ds-steps .wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.ds-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.ds-steps-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-050) 20%, var(--blue-050) 80%, transparent);
  z-index: 0;
}
.ds-step {
  position: relative;
  background: var(--neutral-0);
  padding: 0 12px;
  z-index: 1;
}
.ds-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--neutral-0);
  border: 2px solid var(--blue-500);
  color: var(--blue-500);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  transition: background var(--ds-dur, 260ms) var(--ds-spring, cubic-bezier(0.16, 1, 0.3, 1)),
              color var(--ds-dur, 260ms) var(--ds-spring, cubic-bezier(0.16, 1, 0.3, 1)),
              transform var(--ds-dur, 260ms) var(--ds-spring-back, cubic-bezier(0.34, 1.56, 0.64, 1));
}
.ds-step:hover .ds-step-num {
  background: var(--blue-500);
  color: #fff;
  transform: scale(1.08);
}
.ds-step h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 0 8px;
  color: var(--text-primary);
}
.ds-step p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Tiers comparatif (3 formules) */
.ds-tiers {
  padding: 96px 32px;
  background: var(--neutral-50);
}
.ds-tiers .wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.ds-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.ds-tier {
  background: var(--neutral-0);
  border: 1px solid rgba(22, 58, 105, 0.1);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 320ms var(--ds-spring), box-shadow 320ms var(--ds-spring), border-color 220ms;
}
.ds-tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(31, 78, 140, 0.1);
}
.ds-tier.featured {
  border-color: var(--blue-500);
  border-width: 2px;
  padding: 32px 28px 36px;
  box-shadow: 0 12px 32px rgba(31, 78, 140, 0.14);
}
.ds-tier.featured::before {
  content: "Recommandé";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-500);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ds-tier h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--text-primary);
  margin: 0;
}
.ds-tier-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: -12px 0 0;
}
.ds-tier-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}
.ds-tier ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.ds-tier ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-primary);
}
.ds-tier ul li::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237AC043' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5 9-11'/></svg>") no-repeat center / contain;
}
.ds-tier .ds-btn-primary,
.ds-tier .ds-btn-secondary {
  margin-top: auto;
  justify-content: center;
  font-size: 15px;
  padding: 13px 22px;
}
.ds-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neutral-0);
  color: var(--blue-500);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border: 2px solid var(--blue-500);
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms, color 200ms, box-shadow 200ms;
}
.ds-btn-secondary:hover {
  background: var(--blue-500);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(31, 78, 140, 0.25);
}

/* KPI bloc chiffres-clés */
.ds-kpi {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px 40px;
  padding: 32px 0;
  border-top: 1px solid var(--neutral-300);
  border-bottom: 1px solid var(--neutral-300);
}
.ds-kpi-item {
  text-align: center;
}
.ds-kpi-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 1.4rem + 2vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--blue-500);
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.ds-kpi-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ds-hero-slim.dark .ds-kpi {
  border-color: rgba(255, 255, 255, 0.15);
}
.ds-hero-slim.dark .ds-kpi-num { color: #fff; }
.ds-hero-slim.dark .ds-kpi-label { color: rgba(255, 255, 255, 0.7); }

/* Carte statique boutique */
.ds-static-map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(22, 58, 105, 0.08);
  aspect-ratio: 16 / 9;
  background: var(--neutral-100);
}
.ds-static-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ds-static-map .ds-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 44px;
  height: 44px;
  background: var(--blue-500);
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 6px 16px rgba(31, 78, 140, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.ds-static-map .ds-map-pin::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: var(--blue-500);
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  z-index: -1;
}
.ds-static-map .ds-map-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 20px;
  background: linear-gradient(180deg, transparent, rgba(22, 58, 105, 0.88));
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.ds-static-map .ds-map-addr {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}
.ds-static-map .ds-map-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--blue-500);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms, box-shadow 180ms;
}
.ds-static-map .ds-map-cta:hover {
  transform: translateY(-1px);
  color: var(--blue-700);
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* Timeline verticale (variante milestones pour longues listes) */
.ds-timeline {
  display: grid;
  gap: 0;
  position: relative;
  padding-left: 40px;
}
.ds-timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--blue-050);
}
.ds-timeline-item {
  position: relative;
  padding: 0 0 32px;
}
.ds-timeline-item:last-child { padding-bottom: 0; }
.ds-timeline-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--blue-500);
  border-radius: 50%;
  border: 3px solid var(--neutral-0);
  box-shadow: 0 0 0 2px var(--blue-500);
}
.ds-timeline-item h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text-primary);
  margin: 0 0 6px;
}
.ds-timeline-item p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Label badge pilule */
.ds-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.ds-label.green { background: rgba(122, 192, 67, 0.16); color: var(--green-700); }
.ds-label.blue { background: rgba(31, 78, 140, 0.12); color: var(--blue-700); }
.ds-label.neutral { background: var(--neutral-100); color: var(--neutral-600); }
.ds-label.amber { background: rgba(247, 201, 72, 0.18); color: #8A6410; }

/* Info block éditorial (paragraphe long, boutique à Ganges, etc.) */
.ds-info-block {
  padding: 96px 32px;
  background: var(--neutral-0);
}
.ds-info-block .wrap {
  max-width: 880px;
  margin: 0 auto;
}
.ds-info-block h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.625rem, 1.2rem + 1.6vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--text-primary);
}
.ds-info-block p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 68ch;
  margin: 0 0 16px;
}
.ds-info-block p.ds-lead {
  font-size: 1.1875rem;
  color: var(--text-primary);
  margin-bottom: 28px;
  max-width: 64ch;
}

/* Grid services générique 2-col / 3-col */
.ds-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.ds-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

/* Section dark container (pour /pros/, /coll/) */
.ds-section-dark {
  padding: 96px 32px;
  background: var(--blue-700);
  color: #fff;
}
.ds-section-dark .wrap { max-width: 1200px; margin: 0 auto; }
.ds-section-dark h2 { color: #fff; }
.ds-section-dark p { color: rgba(255, 255, 255, 0.85); }
.ds-section-dark .ds-eyebrow { color: var(--green-500); }

/* Section muted (pour alternance visuelle) */
.ds-section-muted {
  padding: 96px 32px;
  background: var(--neutral-50);
}
.ds-section-muted .wrap { max-width: 1200px; margin: 0 auto; }

/* Responsive patterns pilier */
@media (max-width: 900px) {
  .ds-hero-slim .wrap { grid-template-columns: 1fr; gap: 28px; text-align: left; }
  .ds-hero-slim.full .wrap { text-align: left; }
  .ds-hero-slim .ds-hero-aside { order: -1; }
  .ds-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .ds-steps-grid::before { display: none; }
  .ds-tiers-grid { grid-template-columns: 1fr; }
  .ds-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ds-hero-slim { padding: 56px 0 48px; }
  .ds-hero-slim .wrap { padding: 0 20px; }
  .ds-steps, .ds-tiers, .ds-info-block, .ds-section-dark, .ds-section-muted { padding: 64px 20px; }
  .ds-steps-grid { grid-template-columns: 1fr; margin-top: 32px; }
  .ds-reassurance .wrap { padding: 0 20px; gap: 14px 24px; }
  .ds-reassurance-item { font-size: 13px; }
  .ds-grid-2, .ds-grid-3 { grid-template-columns: 1fr; margin-top: 28px; }
}
