/* ─────────────────────────────────────────────────────────────
   Nouvel Œil — « l'atelier numérique ».
   Charte : bleu ardoise (industrie/confiance) + orange atelier
   (action/chaleur) sur blanc cassé. Typo : Space Grotesk (titres,
   technique) + Inter (texte, lisibilité). Motif signature : trames
   techniques fines (métaphore des logiciels qui se connectent).
   ───────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Space Grotesk'; font-style: normal; font-weight: 400 700;
  font-display: swap; src: url('/assets/fonts/space-grotesk.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 300 700;
  font-display: swap; src: url('/assets/fonts/inter.woff2') format('woff2');
}
:root {
  --bg: #F7F6F3;          /* blanc cassé — respirant */
  --bg-pure: #FFFFFF;
  --text: #1C2A3A;        /* bleu ardoise profond */
  --ink: #12202E;         /* fonds sombres */
  --muted: #5B6B7A;       /* gris acier */
  --accent: #F07417;      /* orange de marque Nouvel Œil */
  --accent-dark: #D2600C;
  --accent-soft: #FCEDE1;
  --ok: #2E9E6B;          /* vert validation — résultats */
  --border: #E3E0DA;
  --surface: #FFFFFF;
  --surface-2: #EFEDE7;
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1400px;         /* wrap large */
  --maxw-text: 760px;     /* mesure de lecture pour le texte long */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --shadow: 0 20px 50px -28px rgba(28,42,58,.5);
  --grid-line: rgba(28,42,58,.06);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.65; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.02em; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }

/* ─── Boutons ─────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 24px; border-radius: 10px;
  font-weight: 600; font-size: .98rem; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s, color .18s; line-height: 1.2; }
.btn--primary { background: var(--accent); color: #fff !important; box-shadow: 0 10px 24px -12px rgba(240,116,23,.8); }
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--text); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--text) !important; }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline-light { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { border-color: #fff; }

/* ─── Kicker / eyebrow ────────────────────────────────────── */
.kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--accent);
  font-family: var(--font-display); font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 16px; }
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--accent); }

/* ─── Rythme de sections ──────────────────────────────────── */
.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.12; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-weight: 700; font-size: 1.15rem; }
.logo span { color: var(--accent); }
.nav { display: flex; gap: 26px; align-items: center; }
.nav a { color: var(--muted); font-size: .95rem; }
.nav a:hover { color: var(--text); }
.nav-cta { background: var(--accent); color: #fff !important; padding: 8px 16px; border-radius: 999px; }

/* Burger (masqué en desktop) + croix animée */
.nav-backdrop { display: none; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 6px; width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer; padding: 10px; z-index: 60; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform .3s cubic-bezier(.4,.01,.2,1), opacity .2s; transform-origin: center; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Menu déroulant (optionnel) ─────────────────────────────────
   Markup : <div class="has-dropdown"><a class="nav-link" href="…">Parent</a>
              <div class="dropdown"><a href="…">Enfant</a>…</div></div>
   Desktop : ouverture au survol (pont invisible anti-zone-morte). Mobile :
   déplié/replié au tap via app.js (.has-dropdown.open). */
.has-dropdown { position: relative; }
.has-dropdown::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 26px; }
.has-dropdown > .nav-link::after { content: ""; display: inline-block; width: 9px; height: 9px; margin-left: 7px;
  vertical-align: middle; background: currentColor; transition: transform .2s;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat; }
.has-dropdown:hover > .nav-link::after, .has-dropdown:focus-within > .nav-link::after { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 12px); left: 0; min-width: 220px; background: var(--bg);
  border: 1px solid var(--border); border-top: 3px solid var(--accent); border-radius: var(--radius);
  box-shadow: 0 18px 40px -22px rgba(0,0,0,.35); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: opacity .18s, transform .18s, visibility .18s; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 11px 14px; border-radius: 8px; font-size: .93rem; color: var(--muted); transition: background .15s, color .15s; }
.dropdown a:hover { background: var(--surface); color: var(--accent); }

.hero { padding: 90px 0 60px; }
.hero-kicker { display: inline-block; color: var(--accent); font-size: .8rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.hero-title { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.1; letter-spacing: -.03em; margin-bottom: 18px; }
.hero-sub { color: var(--muted); font-size: 1.1rem; max-width: 620px; }

.news { padding: 30px 0 80px; }
.news-head { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; }
.news-head h2 { font-size: 1.6rem; letter-spacing: -.02em; }
.news-all { margin-left: auto; font-size: .9rem; font-weight: 600; color: var(--accent); }
.news-all:hover { text-decoration: underline; }
.badge { font-size: .78rem; font-weight: 600; padding: 4px 12px; border-radius: 999px; border: 1px solid var(--border); }
.badge--live { color: #16a34a; border-color: #bbf7d0; background: #f0fdf4; }
.badge--demo { color: #b45309; border-color: #fde68a; background: #fffbeb; }

.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.card--link:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.card-img { width: 100%; height: 180px; object-fit: cover; background: #eef1f5; }
.card-img--placeholder { display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 2rem; }
.card-body { padding: 20px; display: flex; flex-direction: column; gap: 9px; }
.card-date { font-size: .78rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.card-title { font-size: 1.15rem; }
.card-extrait { color: var(--muted); font-size: .95rem; }
.card-more { margin-top: 4px; font-size: .88rem; font-weight: 600; color: var(--accent); }

.news-state { margin-top: 20px; padding: 16px 18px; border-radius: var(--radius); background: var(--surface); color: var(--muted); }
.news-state--error { border: 1px solid #fde68a; background: #fffbeb; color: #b45309; }

/* padding-block uniquement : ne remet PAS à zéro le padding horizontal du .container
   (sinon le contenu colle aux bords sur mobile). Règle valable pour tout wrapper
   de contenu combiné à .container (.article-page, .legal, .prose-page…). */
.article-page { padding-block: 40px 90px; max-width: 760px; margin-inline: auto; }
.back-link { display: inline-block; color: var(--muted); font-size: .9rem; margin-bottom: 26px; }
.back-link:hover { color: var(--text); }
.article-cover { width: 100%; max-height: 380px; object-fit: cover; border-radius: var(--radius); margin-bottom: 24px; }
.article-date { display: block; color: var(--accent); font-weight: 600; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .04em; margin-bottom: 10px; }
.article-title { font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.15; letter-spacing: -.03em; margin-bottom: 28px; }
.article-error { color: #b45309; }

.article-body { font-size: 1.08rem; line-height: 1.75; }
.article-body h2 { font-size: 1.6rem; margin: 32px 0 12px; letter-spacing: -.02em; }
.article-body h3 { font-size: 1.3rem; margin: 24px 0 10px; }
.article-body p { margin: 0 0 18px; }
.article-body a { color: var(--accent); text-decoration: underline; }
.article-body ul, .article-body ol { margin: 0 0 18px 22px; }
.article-body li { margin-bottom: 6px; }
.article-body blockquote { border-left: 3px solid var(--accent); padding: 6px 18px; margin: 0 0 18px; color: var(--muted); font-style: italic; }
.article-body pre { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 16px; overflow-x: auto; margin: 0 0 18px; }
.article-body figure { margin: 0 0 22px; }
.article-body figure img { width: 100%; border-radius: var(--radius); }

.site-footer { border-top: 1px solid var(--border); padding: 28px 0; }
.site-footer p { color: var(--muted); font-size: .9rem; }

/* ─── Composants images (statique) ───────────────────────────────
   Hooks structurels pour un site illustré de vraies photos.
   Voir references/images.md. Restyler librement, garder les noms. */

/* Hero à deux colonnes : texte + visuel produit/lifestyle */
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 40px; }
.hero-copy { max-width: 600px; }
.hero-figure { position: relative; }
.hero-figure img { width: 100%; border-radius: var(--radius); }
.hero-figure.float img { border-radius: 0; filter: drop-shadow(0 24px 44px rgba(0,0,0,.18)); }
@media (max-width: 880px) { .hero-inner { grid-template-columns: 1fr; } .hero-figure { max-width: 460px; margin: 0 auto; } }

/* Carte « marché/catégorie » : photo de fond + dégradé sombre + texte */
.markets { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.market { position: relative; overflow: hidden; border-radius: var(--radius); padding: 32px;
  min-height: 340px; color: #fff; display: flex; flex-direction: column; justify-content: flex-end;
  background: #111; transition: transform .25s, box-shadow .25s; }
.market:hover { transform: translateY(-5px); box-shadow: 0 22px 50px -20px rgba(0,0,0,.5); }
.market-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .5s; }
.market:hover .market-bg { transform: scale(1.05); }
.market::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.55) 50%, rgba(0,0,0,.9) 100%); }
.market > * { position: relative; z-index: 2; }
.market h3 { font-size: 1.5rem; margin: 8px 0; }
.market p { color: rgba(255,255,255,.85); }
@media (max-width: 760px) { .markets { grid-template-columns: 1fr; } }

/* Carte produit : rendu détouré (contain) ou photo (cover) + texte */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.product { border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.product:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.product-media { aspect-ratio: 4/3; background: var(--surface); display: grid; place-items: center; overflow: hidden; padding: 16px; }
.product-media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.product-media.cover img { object-fit: cover; mix-blend-mode: normal; padding: 0; }
.product-body { padding: 20px; }
.product-body .tag { font-size: .72rem; color: var(--accent); letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.product-body h3 { margin: 8px 0; font-size: 1.15rem; }
.product-body p { color: var(--muted); font-size: .95rem; }

/* Split image / texte réutilisable */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.split--rev .split-media { order: -1; }
.split-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } .split--rev .split-media { order: 0; } }

/* ─── Accessibilité (RGAA/WCAG) ─────────────────────────────── */
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 100; background: #fff; color: var(--text);
  padding: .6rem 1rem; border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,.2); }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }

/* ─── Bandeau cookies (si traceurs tiers) ───────────────────── */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px clamp(16px, 4vw, 32px); background: #fff; border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px rgba(0,0,0,.08); }
.cookie-text { font-size: .9rem; color: var(--muted); max-width: 70ch; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }

/* ─── FAQ (accordéon natif accessible) ─── */
.faq { max-width: 820px; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 4px; font-weight: 600; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent); font-size: 1.4rem; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-a { padding: 0 4px 18px; color: var(--muted); max-width: 70ch; }

/* ─── Zoom images de contenu (lightbox) ─── */
.is-zoomable { cursor: zoom-in; }
.is-zoomable:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.lightbox { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: clamp(1rem,4vw,3rem); background: rgba(0,0,0,.9); opacity: 0; transition: opacity .25s; pointer-events: none; }
/* [hidden] doit gagner sur `display:grid` (sinon la boîte invisible bloque tous les clics) */
.lightbox[hidden] { display: none; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 6px; cursor: zoom-out; }
.lightbox-close { position: absolute; top: 1rem; right: 1rem; width: 44px; height: 44px; border-radius: 50%; border: 0; background: #fff; color: var(--text); font-size: 1.2rem; cursor: pointer; }
@media (prefers-reduced-motion: reduce) { .lightbox { transition: none; } }

/* ─── Bouton retour en haut ─── */
.to-top { position: fixed; right: 20px; bottom: 20px; z-index: 80; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border); background: var(--text); color: #fff; display: grid; place-items: center; cursor: pointer; opacity: 0; transform: translateY(10px); transition: opacity .25s, transform .25s; }
.to-top.show { opacity: 1; transform: translateY(0); }
.to-top:hover { background: var(--accent); }
.to-top svg { width: 20px; height: 20px; }
@media (prefers-reduced-motion: reduce) { .to-top { transition: opacity .01s; } }

/* ── Menu mobile (panneau latéral + voile + cascade) ─────────── */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  /* backdrop-filter crée un bloc conteneur pour les enfants position:fixed →
     il confinerait le panneau au header. On le retire en mobile. */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-backdrop { display: block; position: fixed; inset: 0; z-index: 30; background: rgba(0,0,0,.5);
    opacity: 0; visibility: hidden; transition: opacity .3s; }
  .nav-backdrop.open { opacity: 1; visibility: visible; }
  .nav { position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw); z-index: 50;
    flex-direction: column; align-items: stretch; gap: 2px; overflow-y: auto;
    background: var(--bg); padding: 88px 24px 32px;
    transform: translateX(100%); transition: transform .38s cubic-bezier(.5,.02,.2,1);
    box-shadow: -18px 0 50px -20px rgba(0,0,0,.4); }
  .nav.open { transform: translateX(0); }
  .nav > * { opacity: 0; transform: translateX(16px); transition: opacity .3s, transform .3s; }
  .nav.open > * { opacity: 1; transform: none; }
  .nav.open > *:nth-child(1) { transition-delay: .10s; }
  .nav.open > *:nth-child(2) { transition-delay: .15s; }
  .nav.open > *:nth-child(3) { transition-delay: .20s; }
  .nav.open > *:nth-child(4) { transition-delay: .25s; }
  .nav.open > *:nth-child(5) { transition-delay: .30s; }
  .nav-link { padding: 13px 4px; font-size: 1.02rem; border-bottom: 1px solid var(--border); }
  .nav-cta { margin-top: 16px; text-align: center; }

  /* Dropdown en mobile : accordéon replié par défaut, déplié au tap.
     Le lien parent doit être un BLOC pleine largeur (même rendu que les autres). */
  .has-dropdown::after { display: none; }                 /* pas de pont en mobile */
  .has-dropdown { border-bottom: 1px solid var(--border); }
  .has-dropdown > .nav-link { display: block; width: 100%; border-bottom: 0; background: none; }
  .has-dropdown > .nav-link::after { background: var(--accent); }
  .has-dropdown.open > .nav-link::after { transform: rotate(180deg); }
  .dropdown { position: static; visibility: visible; transform: none; box-shadow: none; border: 0;
    border-left: 2px solid var(--border); margin: 0 0 0 8px; padding: 0 0 0 14px; min-width: 0;
    max-height: 0; opacity: 0; overflow: hidden; transition: max-height .32s ease, opacity .22s, margin .2s; }
  .has-dropdown.open .dropdown { max-height: 340px; opacity: 1; margin-bottom: 8px; }
  .dropdown a { padding: 10px 6px; font-size: .95rem; }
}
@media (prefers-reduced-motion: reduce) {
  .nav, .nav > *, .nav-toggle span, .nav-backdrop { transition: none !important; }
}
@media (max-width: 640px) { .hero { padding: 60px 0 40px; } }

/* ═══════════════════════════════════════════════════════════════
   NOUVEL ŒIL — composants de la refonte
   ═══════════════════════════════════════════════════════════════ */

/* ─── Logo ────────────────────────────────────────────────── */
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display);
  font-weight: 600; font-size: 1.18rem; letter-spacing: -.01em; color: var(--text); }
.logo-mark { width: 22px; height: 22px; border-radius: 6px; position: relative; flex: none;
  background: var(--text); box-shadow: inset 0 0 0 2px var(--text); }
.logo-mark::before { content: ""; position: absolute; inset: 6px; border-radius: 50%;
  background: var(--accent); }
.logo-text b { font-weight: 600; color: var(--accent); }
.logo--footer { color: #fff; }
.logo--footer .logo-mark { background: #fff; }
.logo--footer .logo-mark::before { background: var(--accent); }

/* ─── Header (ajuste le squelette) ────────────────────────── */
.site-header { background: rgba(247,246,243,.82); border-bottom: 1px solid var(--border); }
.header-inner { height: 72px; }
.nav-link { color: var(--muted); font-size: .96rem; font-weight: 500; }
.nav-link:hover { color: var(--text); }
.nav-cta { padding: 10px 18px; }

/* ─── Motif technique (fond de section sombre) ────────────── */
.grid-bg { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.grid-bg::before { content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px; -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 40%, transparent 100%);
          mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 40%, transparent 100%); }
.grid-bg > * { position: relative; z-index: 1; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero { padding: 78px 0 64px; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .7;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 15% 10%, #000 0%, transparent 70%);
          mask-image: radial-gradient(ellipse 70% 90% at 15% 10%, #000 0%, transparent 70%); }
.hero .container { position: relative; z-index: 1; }
.hero-inner { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 54px; }
.hero-copy { max-width: 620px; }
.hero-title { font-size: clamp(2.1rem, 4.6vw, 4.3rem); line-height: 1.06; letter-spacing: -.03em; margin-bottom: 20px; }
.hero-title .u { color: var(--accent); }
.hero-sub { color: var(--muted); font-size: 1.14rem; max-width: 560px; margin-bottom: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 22px; color: var(--muted); font-size: .88rem; font-weight: 500; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ok); }

/* Puces de douleurs cliquables sous le hero */
.pain-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.pain-pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px;
  background: var(--bg-pure); border: 1px solid var(--border); font-size: .9rem; font-weight: 500;
  color: var(--text); transition: border-color .18s, transform .18s; }
.pain-pill:hover { border-color: var(--accent); transform: translateY(-2px); }
.pain-pill::before { content: "?"; display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: .72rem; font-weight: 700; font-family: var(--font-display); }

/* Visuel hero : fenêtre « connexion » stylisée */
.hero-figure { position: relative; }
.hero-figure img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); display: block; }
.hero-panel { position: relative; background: var(--bg-pure); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow); }
.hero-panel-top { display: flex; gap: 7px; margin-bottom: 18px; }
.hero-panel-top i { width: 11px; height: 11px; border-radius: 50%; background: var(--surface-2); }
.hero-flow { display: grid; gap: 12px; }
.flow-row { display: flex; align-items: center; gap: 12px; padding: 13px 15px; border-radius: 12px;
  background: var(--bg); border: 1px solid var(--border); font-size: .92rem; font-weight: 500; }
.flow-row .ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex: none;
  background: var(--text); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: .8rem; }
.flow-row.is-accent .ico { background: var(--accent); }
.flow-row .arrow { margin-left: auto; color: var(--ok); font-weight: 700; }
.flow-connect { height: 16px; width: 2px; background: repeating-linear-gradient(var(--accent) 0 4px, transparent 4px 8px);
  margin: -6px 0 -6px 32px; }

/* ─── Bloc problématiques (grille de douleurs) ────────────── */
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.pain-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; transition: transform .2s, box-shadow .2s; }
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pain-card .n { font-family: var(--font-display); font-size: .8rem; font-weight: 600; color: var(--accent);
  letter-spacing: .08em; }
.pain-card h3 { font-size: 1.18rem; margin: 12px 0 8px; }
.pain-card p { color: var(--muted); font-size: .95rem; }

/* ─── Bloc résultats (chiffres) ───────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { padding: 30px 26px; border-radius: var(--radius); background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1); }
.stat .big { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 700;
  line-height: 1; color: #fff; letter-spacing: -.03em; }
.stat .big .unit { color: var(--accent); }
.stat p { color: rgba(255,255,255,.72); font-size: .95rem; margin-top: 12px; }
.grid-bg .kicker { color: #fff; }
.grid-bg .kicker::before { background: var(--accent); }
.grid-bg .section-head h2 { color: #fff; }
.grid-bg .section-head p { color: rgba(255,255,255,.72); }

/* ─── Bloc solutions : 3 piliers ──────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar { position: relative; display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; overflow: hidden;
  transition: transform .22s, box-shadow .22s, border-color .22s; }
.pillar::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.pillar:hover::before { transform: scaleX(1); }
.pillar-num { font-family: var(--font-display); font-size: .82rem; font-weight: 600; color: var(--accent); letter-spacing: .08em; }
.pillar h3 { font-size: 1.42rem; margin: 14px 0 10px; }
.pillar .lead { color: var(--muted); margin-bottom: 18px; }
.pillar ul { list-style: none; display: grid; gap: 9px; margin-bottom: 22px; }
.pillar ul li { position: relative; padding-left: 24px; color: var(--text); font-size: .95rem; }
.pillar ul li::before { content: ""; position: absolute; left: 0; top: .5em; width: 12px; height: 2px; background: var(--accent); }
.pillar .pillar-cta { margin-top: auto; font-weight: 600; color: var(--accent); }
.pillar:hover .pillar-cta { text-decoration: underline; }

/* ─── Bloc cas clients ────────────────────────────────────── */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: transform .22s, box-shadow .22s; }
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.case-media { aspect-ratio: 16/10; overflow: hidden; background: var(--surface-2); }
.case-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.case-card:hover .case-media img { transform: scale(1.05); }
.case-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.case-sector { align-self: flex-start; font-family: var(--font-display); font-size: .72rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--accent); padding: 5px 11px; border-radius: 999px;
  background: rgba(240,116,23,.1); }
.case-body h3 { font-size: 1.18rem; }
.case-body p { color: var(--muted); font-size: .95rem; }
.case-result { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border);
  display: flex; align-items: baseline; gap: 8px; }
.case-result b { font-family: var(--font-display); font-size: 1.35rem; color: var(--text); }
.case-result span { font-size: .82rem; color: var(--muted); }

/* ─── Bloc méthode (timeline 4 étapes) ────────────────────── */
.method { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.method-step { position: relative; padding: 0 26px; }
.method-step:not(:last-child)::after { content: ""; position: absolute; top: 22px; left: 50%; right: -50%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 6px, transparent 6px 12px); }
.method-num { position: relative; z-index: 1; counter-increment: step; width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; background: var(--text); color: #fff; font-family: var(--font-display);
  font-weight: 700; margin-bottom: 18px; }
.method-num::before { content: counter(step, decimal-leading-zero); }
.method-step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.method-step p { color: var(--muted); font-size: .94rem; }

/* ─── Bande de réassurance / logos ────────────────────────── */
.trust-band { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 34px; }
.trust-item { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-weight: 500; font-size: .95rem; }
.trust-item b { font-family: var(--font-display); color: var(--text); font-size: 1.5rem; }
.logo-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 40px; margin-top: 34px; }
.logo-chip { font-family: var(--font-display); font-weight: 600; color: var(--muted); opacity: .8; font-size: 1.05rem;
  padding: 8px 6px; border-bottom: 2px solid transparent; }

/* ─── Témoignage ──────────────────────────────────────────── */
.quote { max-width: 820px; margin-inline: auto; text-align: center; }
.quote blockquote { font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 1.85rem); line-height: 1.35;
  letter-spacing: -.01em; color: var(--text); }
.quote blockquote::before { content: "«"; color: var(--accent); margin-right: 6px; }
.quote blockquote::after { content: "»"; color: var(--accent); margin-left: 6px; }
.quote .cite { display: block; margin-top: 18px; color: var(--muted); font-size: .95rem; }

/* ─── Bande CTA finale ────────────────────────────────────── */
.cta-band { text-align: center; padding: 78px 0; }
.cta-band h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); line-height: 1.14; color: #fff; max-width: 780px; margin: 0 auto 16px; }
.cta-band p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 620px; margin: 0 auto 28px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ─── Page hero (pages intérieures) ───────────────────────── */
.page-hero { padding: 66px 0 20px; position: relative; }
.page-hero-inner { max-width: 760px; }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); line-height: 1.08; margin-bottom: 16px; }
.page-hero > .container > .page-hero-inner > p, .page-hero p.lead { color: var(--muted); font-size: 1.12rem; }
.breadcrumb { font-size: .84rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 7px; opacity: .5; }

/* ─── Prose (pages de contenu / services) ─────────────────── */
.prose { max-width: var(--maxw-text); }
.prose h2 { font-size: 1.7rem; margin: 40px 0 14px; }
.prose h3 { font-size: 1.28rem; margin: 28px 0 10px; }
.prose p { margin: 0 0 18px; font-size: 1.07rem; line-height: 1.75; color: var(--text); }
.prose ul, .prose ol { margin: 0 0 20px 4px; list-style: none; display: grid; gap: 11px; }
.prose ul li { position: relative; padding-left: 28px; color: var(--text); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: 14px; height: 2px; background: var(--accent); }
.prose ol { counter-reset: p; }
.prose ol li { position: relative; padding-left: 34px; counter-increment: p; }
.prose ol li::before { content: counter(p); position: absolute; left: 0; top: 0; width: 22px; height: 22px;
  border-radius: 6px; background: var(--text); color: #fff; font-size: .78rem; font-weight: 600;
  font-family: var(--font-display); display: grid; place-items: center; }
.prose strong { font-weight: 600; }

/* Encadré argument (pages services) */
.callout { background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--accent);
  border-radius: var(--radius); padding: 22px 26px; margin: 24px 0; }
.callout p { margin: 0; color: var(--text); }

/* Grille « ce qu'on fait » (features) */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.feature { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px; }
.feature .ico { width: 42px; height: 42px; border-radius: 11px; background: rgba(240,116,23,.1); color: var(--accent);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; margin-bottom: 14px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .95rem; }

/* Liste de bénéfices avec coche verte */
.checks { list-style: none; display: grid; gap: 12px; }
.checks li { position: relative; padding-left: 32px; }
.checks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 21px; height: 21px; border-radius: 6px;
  background: rgba(46,158,107,.12); color: var(--ok); font-weight: 700; font-size: .8rem; display: grid; place-items: center; }

/* Grille de liens vers pages filles (pilier) */
.child-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.child-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 24px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.child-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.child-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.child-card p { color: var(--muted); font-size: .94rem; flex: 1; }
.child-card .more { margin-top: 14px; font-weight: 600; color: var(--accent); font-size: .9rem; }

/* CTA inline (fin de section de page) */
.inline-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 36px; }
.inline-cta h2 { font-size: 1.5rem; margin-bottom: 6px; }
.inline-cta p { color: var(--muted); }

/* Alternance de fonds */
.bg-alt { background: var(--surface-2); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

/* ─── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: #fff; border-top: 0; padding: 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding: 62px 24px 42px; }
.footer-brand { max-width: 340px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-baseline { color: rgba(255,255,255,.68); font-size: .95rem; margin-bottom: 22px; }
.footer-title { font-family: var(--font-display); font-size: .82rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-link { color: rgba(255,255,255,.8); font-size: .95rem; transition: color .15s; }
.footer-link:hover { color: var(--accent); }
.footer-contact p { color: rgba(255,255,255,.8); font-size: .95rem; line-height: 1.7; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  padding: 22px 24px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { color: rgba(255,255,255,.55); font-size: .86rem; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: rgba(255,255,255,.7); }
.footer-legal a:hover { color: var(--accent); }

/* ─── Reveal au scroll ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-figure { max-width: 520px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .cases { grid-template-columns: 1fr; }
  .method { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .method-step:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 620px) {
  .section { padding: 54px 0; }
  .stats { grid-template-columns: 1fr; }
  .method { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .inline-cta { flex-direction: column; align-items: flex-start; }
  .method-step { padding: 0; }
}

/* Override ciblé : garder « Nouvel » en ardoise, seul « Œil » en accent */
.logo .logo-text { color: var(--text); }
.logo--footer .logo-text { color: #fff; }

/* ─── Formulaire de contact ───────────────────────────────── */
.contact-form { display: grid; gap: 18px; max-width: 640px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-weight: 600; font-size: .92rem; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font: inherit; background: var(--surface); color: var(--text); transition: border-color .15s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); outline: none; }
.field textarea { resize: vertical; }
.form-note { font-size: .85rem; color: var(--muted); }
.form-note a { color: var(--accent); text-decoration: underline; }
.form-banner { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-weight: 500; }
.form-banner--ok { background: rgba(46,158,107,.12); color: #1c7a4f; border: 1px solid rgba(46,158,107,.3); }
.form-banner--err { background: rgba(240,116,23,.1); color: var(--accent-dark); border: 1px solid rgba(240,116,23,.3); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-aside .callout h2 { font-family: var(--font-display); }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }

/* ─── Cartes réalisations (tag secteur + résultat) ────────── */
.card { background: var(--surface); border: 1px solid var(--border); }
.card--link:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-img { height: 190px; }
.card-tag { display: inline-block; align-self: flex-start; font-family: var(--font-display); font-size: .72rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--accent); padding: 5px 11px; border-radius: 999px;
  background: rgba(240,116,23,.1); }
.card-result { font-family: var(--font-display); font-weight: 700; color: var(--ok); font-size: 1.05rem; }
.card-more { color: var(--accent); }
.article-result { font-family: var(--font-display); font-size: 1.5rem; color: var(--ok); margin-bottom: 20px; }
.article-result b { font-weight: 700; }
.article-lead { font-size: 1.18rem; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }

/* ═══ Portfolio Réalisations (WorkGrid) ═══════════════════════ */
.work-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.work-chip { padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--border); background: var(--surface);
  font-family: var(--font-display); font-size: .88rem; font-weight: 500; color: var(--muted); transition: all .18s; }
.work-chip:hover { border-color: var(--text); color: var(--text); }
.work-chip.is-active { background: var(--text); border-color: var(--text); color: #fff; }

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 264px; gap: 20px; }
.work-card { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--ink);
  display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate;
  box-shadow: 0 1px 0 rgba(28,42,58,.04); transition: transform .28s, box-shadow .28s; }
.work-card--featured { grid-column: span 2; grid-row: span 2; }
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.work-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  transition: transform .6s cubic-bezier(.2,.6,.2,1); }
.work-card:hover .work-img { transform: scale(1.06); }
.work-img--placeholder { background:
    radial-gradient(120% 120% at 80% 0%, #24384c 0%, var(--ink) 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 2px, transparent 2px 22px); }
.work-shade { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(18,32,46,.05) 0%, rgba(18,32,46,.15) 42%, rgba(18,32,46,.86) 100%); }
.work-top { position: absolute; top: 16px; left: 16px; right: 16px; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.work-sector { font-family: var(--font-display); font-size: .7rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--ink); padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(4px); }
.work-result { font-family: var(--font-display); font-size: .72rem; font-weight: 600; color: var(--text);
  padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.92); }
.work-meta { position: relative; z-index: 2; padding: 22px; color: #fff; }
.work-meta h3 { font-size: 1.22rem; line-height: 1.2; margin-bottom: 6px; color: #fff; }
.work-card--featured .work-meta { padding: 30px; }
.work-card--featured .work-meta h3 { font-size: 1.9rem; }
.work-meta p { color: rgba(255,255,255,.82); font-size: .93rem; max-width: 46ch;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.work-card--featured .work-meta p { -webkit-line-clamp: 3; font-size: 1rem; }
.work-more { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; font-family: var(--font-display);
  font-weight: 600; font-size: .9rem; color: #fff; }
.work-more b { color: #fff; transition: transform .2s; }
.work-card:hover .work-more b { transform: translateX(5px); }

@media (max-width: 900px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .work-card--featured { grid-column: span 2; grid-row: span 1; }
  .work-card--featured .work-meta h3 { font-size: 1.4rem; }
}
@media (max-width: 560px) {
  .work-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .work-card--featured { grid-column: span 1; }
}

/* ─── Liste-problèmes (pages services) ────────────────────── */
.problem-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
.problem-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border); font-size: 1.02rem; font-weight: 500; color: var(--text); }
.problem-x { flex: none; width: 26px; height: 26px; border-radius: 8px; position: relative; margin-top: 1px;
  background: rgba(240,116,23,.1); }
.problem-x::before, .problem-x::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px;
  background: var(--accent); border-radius: 2px; }
.problem-x::before { transform: translate(-50%,-50%) rotate(45deg); }
.problem-x::after { transform: translate(-50%,-50%) rotate(-45deg); }
@media (max-width: 700px) { .problem-list { grid-template-columns: 1fr; } }

/* ═══ Réalisations : cartes-poster brandées (remplace les captures) ═══ */
.work-card { background: var(--ink); }
.work-card.sk-ink    { background: linear-gradient(150deg, #1b3047 0%, #0f1c29 100%); }
.work-card.sk-accent { background: linear-gradient(150deg, #f0774f 0%, #d6491f 100%); }
.work-card.sk-teal   { background: linear-gradient(150deg, #1f6b73 0%, #123f45 100%); }
.work-card.sk-slate  { background: linear-gradient(150deg, #2a3f52 0%, #17222e 100%); }
.work-card.sk-steel  { background: linear-gradient(150deg, #3a5063 0%, #223442 100%); }
/* Motif technique (trame) propre à chaque carte */
.work-motif { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(120% 90% at 90% 5%, #000 0%, transparent 70%);
          mask-image: radial-gradient(120% 90% at 90% 5%, #000 0%, transparent 70%); }
/* Monogramme géant en filigrane */
.work-mono { position: absolute; z-index: 0; right: -6px; bottom: -30px; font-family: var(--font-display);
  font-weight: 700; font-size: 8rem; line-height: 1; color: rgba(255,255,255,.09); letter-spacing: -.04em; pointer-events: none; }
.work-card--featured .work-mono { font-size: 15rem; bottom: -50px; right: 10px; }
.work-card:hover .work-mono { color: rgba(255,255,255,.14); }
.work-result { background: rgba(255,255,255,.18); color: #fff; border: 1.5px solid rgba(255,255,255,.55);
  backdrop-filter: blur(4px); }
.work-meta p { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ═══ Équipe (À propos) ═══════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-card { position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px; overflow: hidden; transition: transform .22s, box-shadow .22s; }
.team-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--accent), #f0a07f); }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-avatar { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: #fff; margin-bottom: 18px;
  background: linear-gradient(150deg, #24384c 0%, #12202e 100%); }
.team-card--accent .team-avatar { background: linear-gradient(150deg, #f0774f 0%, #d6491f 100%); }
.team-tag { display: inline-block; font-family: var(--font-display); font-size: .72rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase; color: var(--accent); padding: 5px 11px; border-radius: 999px;
  background: rgba(240,116,23,.1); margin-bottom: 12px; }
.team-card h3 { font-size: 1.18rem; margin-bottom: 4px; }
.team-role { color: var(--text); font-weight: 600; font-size: .9rem; margin-bottom: 10px; }
.team-desc { color: var(--muted); font-size: .92rem; line-height: 1.6; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; } }

/* ═══ Encart agence (accueil) ═════════════════════════════════ */
.agency { display: grid; grid-template-columns: 1.35fr .65fr; gap: 44px; align-items: center; }
.agency-copy h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); line-height: 1.14; margin-bottom: 16px; }
.agency-copy p { color: var(--muted); font-size: 1.05rem; margin-bottom: 16px; }
.agency-copy strong { color: var(--text); }
.agency-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--border); position: relative; }
.agency-facts::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 30px 30px; }
.fact { position: relative; z-index: 1; background: linear-gradient(150deg, #1b3047 0%, #0f1c29 100%);
  padding: 26px 22px; text-align: center; }
.fact b { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #fff; line-height: 1; }
.fact:nth-child(1) b, .fact:nth-child(4) b { color: var(--accent); }
.fact span { display: block; margin-top: 8px; color: rgba(255,255,255,.68); font-size: .82rem; }
@media (max-width: 860px) { .agency { grid-template-columns: 1fr; gap: 32px; } }

/* ═══ Plus de couleur ═════════════════════════════════════════ */
.bg-tint { background:
    radial-gradient(80% 120% at 100% 0%, rgba(240,116,23,.06) 0%, transparent 55%),
    var(--bg); }
.pain-card { border-top: 3px solid transparent; }
.pain-card:hover { border-top-color: var(--accent); }
.pain-card .n { display: inline-block; padding: 3px 9px; border-radius: 6px; background: rgba(240,116,23,.1); }

/* FAQ soignée */
.faq-section .faq { max-width: 860px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 6px 26px; border-top: 1px solid var(--border); }
.faq-section .faq-item summary { font-family: var(--font-display); }
.faq-section .faq-item summary:hover { color: var(--accent); }

/* ═══ Hero des pages services (texte + visuel) ════════════════ */
.page-hero--split { padding-bottom: 34px; }
.svc-hero { display: block; }
.svc-hero--img { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.svc-hero-figure { position: relative; }
.svc-hero-figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); display: block; }
.svc-hero-figure::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(18,32,46,.28) 100%); }
.svc-hero-badge { position: absolute; z-index: 1; left: 16px; bottom: 16px; font-family: var(--font-display);
  font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #fff;
  padding: 7px 14px; border-radius: 999px; background: var(--accent); box-shadow: 0 8px 20px -8px rgba(240,116,23,.8); }
@media (max-width: 880px) { .svc-hero--img { grid-template-columns: 1fr; gap: 30px; } .svc-hero-figure { max-width: 560px; } }

/* ═══ Hero d'accueil : léger flottement du panneau ════════════ */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-figure .hero-panel { animation: floaty 7s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .hero-figure .hero-panel { animation: none; } }

/* ═══ Marquee de logos clients (vivant) ═══════════════════════ */
.marquee { position: relative; overflow: hidden; margin-top: 34px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 52px; width: max-content;
  animation: marquee-scroll 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee .logo-chip { white-space: nowrap; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
}

/* ═══════════════════════════════════════════════════════════════
   CRÉATIF — logo réel, motif « œil », bandes, stickers, punch
   ═══════════════════════════════════════════════════════════════ */

/* ── Logo (mot-symbole NOUVEL[œil]EIL) ── */
.logo { display: inline-flex; align-items: center; gap: 2px; }
.logo .logo-word { font-family: var(--font-display); font-weight: 700; font-size: 1.32rem;
  letter-spacing: -.03em; text-transform: uppercase; color: var(--text); line-height: 1; }
.logo .logo-word--accent { color: var(--accent); }
.logo-mark { width: .96em; height: .96em; color: var(--accent); flex: none; display: block;
  font-size: 1.32rem; margin: 0 1px; }
.logo-mark::before { content: none; }
.logo--footer .logo-word { color: #fff; }
.logo--footer .logo-word--accent { color: var(--accent); }
.logo--footer .logo-mark { color: var(--accent); }

/* ── Work-card : scrim de lisibilité (fonds couleur libre) ── */
.work-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,18,26,.02) 0%, rgba(10,18,26,.12) 45%, rgba(10,18,26,.68) 100%); }
.work-card .work-top, .work-card .work-meta { z-index: 2; }

/* ── Bande marquee « douleurs » (orange, éditoriale) ── */
.painband { background: var(--accent); color: #fff; overflow: hidden; padding: 16px 0;
  border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.painband-track { display: flex; align-items: center; width: max-content; animation: marquee-scroll 32s linear infinite; }
.painband:hover .painband-track { animation-play-state: paused; }
.painband .pb { font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.05rem, 2.3vw, 1.7rem); letter-spacing: .005em; padding: 0 26px; white-space: nowrap; }
.painband .pb-dot { width: 16px; height: 16px; flex: none; color: var(--ink); }
@media (prefers-reduced-motion: reduce) { .painband-track { animation: none; } }

/* ── Motif « œil » décoratif (grand anneau en filigrane) ── */
.eye-deco { position: absolute; border-radius: 50%; border: 2px solid currentColor; opacity: .1; pointer-events: none; z-index: 0; }
.hero { position: relative; }
.hero .eye-deco { color: var(--accent); }
.cta-band { position: relative; z-index: 1; }

/* ── Sticker « audit offert » (tampon tournant) ── */
.sticker { position: absolute; z-index: 3; display: grid; place-items: center; text-align: center;
  width: 104px; height: 104px; border-radius: 50%; background: var(--accent); color: #fff;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; line-height: 1.1;
  transform: rotate(-9deg); box-shadow: 0 14px 30px -12px rgba(240,116,23,.9); border: 2px solid #fff; }
.sticker span { font-size: .62rem; letter-spacing: .04em; padding: 0 8px; }
.sticker b { display: block; font-size: 1.15rem; letter-spacing: -.01em; }
@media (max-width: 980px) { .sticker { display: none; } }

/* ── Surligneur « marqueur » sous les mots clés ── */
.hl { position: relative; white-space: nowrap; }
.hl::after { content: ""; position: absolute; left: -2px; right: -2px; bottom: .06em; height: .34em; z-index: -1;
  background: var(--accent); opacity: .28; border-radius: 3px; transform: rotate(-.6deg); }

/* ── Titres de section : plus expressifs ── */
.section-head h2 { letter-spacing: -.03em; }
.kicker { gap: 10px; }
.kicker::after { content: ""; width: 8px; height: 8px; border-radius: 50%; border: 2px solid var(--accent); }

/* ── Cartes : coins + relief plus vivants ── */
.pillar, .work-card, .case-card, .child-card, .feature, .team-card { border-radius: 20px; }
.pillar:hover, .child-card:hover { border-color: var(--accent); }

/* ── Section orange douce (rupture chromatique) ── */
.bg-soft { background:
    radial-gradient(90% 130% at 0% 0%, var(--accent-soft) 0%, transparent 46%),
    var(--bg); }

/* ═══ Icônes à dégradé + boutons dégradés ═════════════════════ */
.btn--primary { background: linear-gradient(135deg, #F6892E 0%, #E1640A 100%); }
.btn--primary:hover { background: linear-gradient(135deg, #EF7A1C 0%, #C95908 100%); }
.icobox { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; flex: none;
  background: linear-gradient(150deg, #F6892E, #E1640A); color: #fff; margin-bottom: 16px;
  box-shadow: 0 12px 24px -12px rgba(240,116,23,.85); }
.icobox svg { width: 27px; height: 27px; }
.icobox--ink { background: linear-gradient(150deg, #24384c, #12202e); box-shadow: 0 12px 24px -14px rgba(18,32,46,.8); }
.pillar .icobox { transform: rotate(-3deg); transition: transform .25s; }
.pillar:hover .icobox { transform: rotate(0) scale(1.05); }

/* ═══ FAQ redesign (2 colonnes + cartes accordéon) ════════════ */
.faq2 { position: relative; overflow: hidden; }
.faq2-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: start; }
.faq2-aside { position: sticky; top: 96px; }
.faq2-aside h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.12; margin-bottom: 14px; }
.faq2-aside p { color: var(--muted); margin-bottom: 22px; max-width: 40ch; }
.faq2-list { display: grid; gap: 14px; }
.faq2-item { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s; }
.faq2-item[open] { box-shadow: var(--shadow); border-color: transparent; }
.faq2-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 16px;
  padding: 19px 22px; font-family: var(--font-display); }
.faq2-item summary::-webkit-details-marker { display: none; }
.faq2-n { font-family: var(--font-display); font-size: .82rem; font-weight: 700; color: var(--accent); }
.faq2-q { flex: 1; font-size: 1.05rem; font-weight: 600; color: var(--text); }
.faq2-ic { position: relative; width: 28px; height: 28px; border-radius: 9px; background: var(--accent-soft); flex: none; }
.faq2-ic::before, .faq2-ic::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px;
  background: var(--accent); border-radius: 2px; transform: translate(-50%,-50%); transition: transform .28s; }
.faq2-ic::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq2-item[open] .faq2-ic::after { transform: translate(-50%,-50%) rotate(0); }
.faq2-a { padding: 0 22px 20px 58px; color: var(--muted); line-height: 1.65; }
.faq2-a p { margin: 0; max-width: 60ch; }
@media (max-width: 860px) {
  .faq2-grid { grid-template-columns: 1fr; gap: 28px; }
  .faq2-aside { position: static; }
  .faq2-a { padding-left: 22px; }
}

/* ═══ Avis clients (collection Strapi) ════════════════════════ */
.avis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.avis-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 20px;
  padding: 30px 26px 26px; display: flex; flex-direction: column; gap: 14px; overflow: hidden;
  transition: transform .22s, box-shadow .22s; }
.avis-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent), #F6A56A); }
.avis-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.avis-quote { position: absolute; top: 12px; right: 22px; font-family: var(--font-display); font-weight: 700;
  font-size: 3.4rem; line-height: 1; color: var(--accent-soft); }
.avis-stars { color: var(--accent); letter-spacing: 3px; font-size: .95rem; }
.avis-text { color: var(--text); font-size: 1rem; line-height: 1.62; flex: 1; }
.avis-foot { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.avis-ava { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; flex: none;
  font-family: var(--font-display); font-weight: 700; color: #fff; background: linear-gradient(150deg, #24384c, #12202e); }
.avis-who b { display: block; font-family: var(--font-display); font-size: .98rem; }
.avis-who span { color: var(--muted); font-size: .84rem; }
@media (max-width: 900px) { .avis-grid { grid-template-columns: 1fr; } }

/* ── Logo image (fichier réel EPS rasterisé) ── */
.logo { display: inline-flex; align-items: center; }
.logo-img { display: block; height: 40px; width: auto; }
.logo--footer .logo-img { height: 46px; }
@media (max-width: 640px) { .logo-img { height: 34px; } }

/* ═══ Méthode : étapes détaillées ═════════════════════════════ */
.msteps { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mstep { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 20px;
  padding: 30px 28px; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.mstep::before { content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: linear-gradient(var(--accent), #F6A56A); }
.mstep:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mstep-top { display: flex; align-items: center; justify-content: space-between; }
.mstep-top .icobox { margin-bottom: 0; }
.mstep-num { font-family: var(--font-display); font-weight: 700; font-size: 2.8rem; line-height: 1;
  color: var(--accent-soft); }
.mstep h3 { font-size: 1.32rem; margin: 16px 0 8px; }
.mstep p { color: var(--muted); }
.mstep-deliver { margin-top: 18px; padding-top: 15px; border-top: 1px solid var(--border);
  display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; color: var(--text); }
.mstep-deliver b { color: var(--accent); font-family: var(--font-display); font-weight: 600; }
.mstep-deliver .chk { flex: none; width: 22px; height: 22px; border-radius: 7px; background: rgba(46,158,107,.14);
  position: relative; margin-top: 1px; }
.mstep-deliver .chk::after { content: "✓"; position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--ok); font-size: .78rem; font-weight: 700; }
@media (max-width: 760px) { .msteps { grid-template-columns: 1fr; } }

/* ═══ Engagements (stats clair) ═══════════════════════════════ */
.stats-light { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.statl { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 30px 26px; text-align: center; }
.statl b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; line-height: 1;
  background: linear-gradient(135deg, #F6892E, #D2600C); -webkit-background-clip: text; background-clip: text; color: transparent; }
.statl span { display: block; margin-top: 12px; color: var(--muted); font-size: .96rem; }
@media (max-width: 760px) { .stats-light { grid-template-columns: 1fr; } }

/* ═══ Avatars équipe (initiales + badge de rôle) ══════════════ */
.team-avatar { position: relative; width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center;
  margin-bottom: 18px; box-shadow: 0 12px 26px -14px rgba(18,32,46,.6); }
.team-initials { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: #fff; }
.team-badge { position: absolute; right: -4px; bottom: -4px; width: 30px; height: 30px; border-radius: 50%;
  background: #fff; display: grid; place-items: center; box-shadow: 0 4px 10px -3px rgba(18,32,46,.4); }
.team-badge svg { width: 16px; height: 16px; color: var(--accent); }

/* ═══════════════════════════════════════════════════════════════
   REDESIGN ACCUEIL v2 — sections plus travaillées
   ═══════════════════════════════════════════════════════════════ */

/* ── Carte flottante « note » sur le hero (remplace le sticker) ── */
.hero-badge-card { position: absolute; z-index: 3; right: -16px; top: -18px;
  display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 12px 16px; box-shadow: 0 20px 40px -18px rgba(28,42,58,.45); }
.hbc-stars { color: var(--accent); font-size: .9rem; letter-spacing: 1px; line-height: 1; }
.hbc-text b { display: block; font-family: var(--font-display); font-size: 1.1rem; line-height: 1.1; }
.hbc-text span { font-size: .78rem; color: var(--muted); }
@media (max-width: 980px) { .hero-badge-card { right: 12px; top: 12px; } }

/* ── Problèmes (section sombre, cartes à icône) ── */
.pains2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pains2 > :nth-child(4) { grid-column: span 1; }
.pain2 { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); border-radius: 18px;
  padding: 26px 24px; transition: transform .2s, background .2s, border-color .2s; }
.pain2:hover { transform: translateY(-4px); background: rgba(255,255,255,.07); border-color: rgba(240,116,23,.5); }
.pain2 .icobox { width: 46px; height: 46px; border-radius: 13px; margin-bottom: 16px; }
.pain2 .icobox svg { width: 23px; height: 23px; }
.pain2 h3 { color: #fff; font-size: 1.18rem; margin-bottom: 8px; }
.pain2 p { color: rgba(255,255,255,.66); font-size: .95rem; }
@media (max-width: 820px) { .pains2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pains2 { grid-template-columns: 1fr; } }

/* ── Résultats (cartes claires, chiffres dégradés) ── */
.results { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.rstat { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 30px 26px;
  transition: transform .2s, box-shadow .2s; }
.rstat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.rstat .icobox { width: 48px; height: 48px; border-radius: 13px; margin-bottom: 18px; }
.rstat .icobox svg { width: 24px; height: 24px; }
.rstat-num { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem,3.4vw,2.7rem);
  line-height: 1; background: linear-gradient(135deg, #F6892E, #D2600C); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rstat p { color: var(--muted); font-size: .95rem; margin-top: 12px; }
@media (max-width: 900px) { .results { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .results { grid-template-columns: 1fr; } }

/* ── Encart agence : visuel + badges flottants ── */
.agency-visual { position: relative; }
.agency-visual img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); display: block; }
.agency-badge { position: absolute; background: #fff; border-radius: 16px; padding: 14px 18px; box-shadow: 0 18px 38px -18px rgba(28,42,58,.5); text-align: center; }
.agency-badge b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; line-height: 1;
  background: linear-gradient(135deg,#F6892E,#D2600C); -webkit-background-clip: text; background-clip: text; color: transparent; }
.agency-badge span { font-size: .74rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.agency-badge--tl { top: 18px; left: -20px; }
.agency-badge--br { bottom: 18px; right: -20px; }
@media (max-width: 860px) { .agency-badge--tl { left: 8px; } .agency-badge--br { right: 8px; } }

/* ── Bande logos (épurée, pills) ── */
.logos-label { text-align: center; font-family: var(--font-display); font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.logos-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.logos-row .logo-chip { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--text);
  padding: 11px 20px; border: 1px solid var(--border); border-radius: 999px; background: var(--surface);
  opacity: 1; transition: border-color .18s, transform .18s, color .18s; }
.logos-row .logo-chip:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ═══ Méthode accueil (cartes à icône, sans timeline) ═════════ */
.mflow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mflow-step { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 20px;
  padding: 28px 24px; overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s; }
.mflow-step:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.mflow-num { position: absolute; top: 18px; right: 22px; font-family: var(--font-display); font-weight: 700;
  font-size: 2.1rem; line-height: 1; color: var(--accent-soft); }
.mflow-step .icobox { margin-bottom: 18px; }
.mflow-step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.mflow-step p { color: var(--muted); font-size: .95rem; }
@media (max-width: 860px) { .mflow { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .mflow { grid-template-columns: 1fr; } }

/* ═══ Logos clients (texte épuré, séparateurs œil) ═══════════ */
.logos2 { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px 4px; }
.logos2 .lg { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--muted);
  padding: 4px 22px; letter-spacing: -.01em; transition: color .18s; white-space: nowrap; }
.logos2 .lg:hover { color: var(--text); }
.logos2-sep { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); opacity: .55; flex: none; }
