/* =========================================================
   SINAY — Agence digitale
   Direction : profond & élégant
   Bleu nuit · émeraude · bordeaux · or, fonds qui changent au scroll
   Typo : Fraunces (display) + Inter (sans)
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* couleurs de marque — palette VIF & CONTRASTÉ */
  --navy:        #141821;
  --navy-deep:   #0E1117;
  --navy-card:   #1C2230;
  --emerald:     #0E5FD8;
  --emerald-dk:  #112A52;
  --bordeaux:    #F5631E;
  --bordeaux-dk: #3A1E10;
  --gold:        #F2A100;
  --gold-soft:   #FFBB33;
  --cream:       #F4F2EC;
  --cream-2:     #E9E6DD;
  --cream-3:     #DAD5C7;
  --ink:         #141821;
  --ink-soft:    #20242C;

  /* texte */
  --on-dark:       #F4F2EC;
  --on-dark-dim:   #AEB4C0;
  --on-light:      #20242C;
  --on-light-dim:  #5A606C;

  --line-dark:  rgba(244, 242, 236, 0.16);
  --line-light: rgba(20, 24, 33, 0.14);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:    "Inter", system-ui, -apple-system, sans-serif;

  --container: 1300px;
  --gutter: clamp(1.25rem, 5vw, 5.5rem);
  --radius: 14px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 80px;
  --topbar-h: 42px;
}
/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  background: var(--navy);
  color: var(--on-light);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold); color: var(--navy); }

/* ---------- Fond animé (la couleur glisse d'une section à l'autre) ---------- */
.stage { position: fixed; inset: 0; z-index: 0; background: var(--navy); will-change: background-color; }
main, .footer { position: relative; z-index: 1; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); width: 100%; }
.section { position: relative; padding-block: clamp(3.5rem, 8vw, 7.5rem); overflow: hidden; }

/* Thèmes de section (le texte s'adapte au fond) */
.sec--dark  { color: var(--on-dark); }
.sec--light { color: var(--on-light); }
.sec--dark .eyebrow  { color: var(--gold); }
.sec--light .eyebrow { color: var(--bordeaux); }
.sec--dark .section-title, .sec--dark h1, .sec--dark h2, .sec--dark h3 { color: var(--on-dark); }
.sec--light .section-title, .sec--light h1, .sec--light h2, .sec--light h3 { color: var(--navy); }
.sec--dark p  { color: var(--on-dark-dim); }
.sec--light p { color: var(--on-light-dim); }
.sec--dark .italic-accent  { color: var(--gold); }
.sec--light .italic-accent { color: var(--bordeaux); }

/* ---------- Curseur ---------- */
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); will-change: transform; mix-blend-mode: difference; }
.cursor { width: 42px; height: 42px; border: 1px solid #fff; transition: width .35s var(--ease), height .35s var(--ease), background .35s var(--ease), opacity .3s; opacity: 0; }
.cursor-dot { width: 5px; height: 5px; background: #fff; opacity: 0; }
.cursor.is-active { width: 78px; height: 78px; background: rgba(255,255,255,0.12); }
.cursor.is-label::after { content: attr(data-label); font-family: var(--font-sans); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); white-space: nowrap; }
.cursor, .cursor-dot { display: none; }
body.cursor-ready .cursor, body.cursor-ready .cursor-dot { display: block; }
body.cursor-ready, body.cursor-ready a, body.cursor-ready button { cursor: none; }

/* ---------- Rideau de transition ---------- */
.curtain { position: fixed; inset: 0; background: var(--navy-deep); z-index: 9997; transform: translateY(100%); pointer-events: none; display: grid; place-items: center; }
.curtain.anim { transition: transform .8s cubic-bezier(.7, 0, .2, 1); }
.curtain__logo { width: clamp(64px, 10vw, 110px); opacity: 0; }
.curtain.is-covering .curtain__logo { opacity: .95; transition: opacity .4s .15s; }

/* ---------- Loader ---------- */
.loader { display: none; }
.js .loader { position: fixed; inset: 0; z-index: 9998; background: var(--navy); display: grid; place-items: center; }
.loader__art { display: flex; flex-direction: column; align-items: center; }
.loader__logo { width: clamp(80px, 14vw, 132px); filter: brightness(0) invert(1); opacity: .96; }
.loader__bar { width: 120px; height: 2px; background: var(--line-dark); margin-top: 1.8rem; overflow: hidden; }
.loader__bar span { display: block; height: 100%; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; }

/* ---------- Typo ---------- */
.italic { font-style: italic; font-family: var(--font-display); }
.eyebrow { font-family: var(--font-sans); font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--bordeaux); display: inline-flex; align-items: center; gap: .8rem; }
.eyebrow__sep { width: 26px; height: 1px; background: currentColor; display: inline-block; opacity: .7; }

.section-head { max-width: 760px; margin-bottom: clamp(2.2rem, 5vw, 4rem); }
.section-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 1.3rem + 3.2vw, 3.9rem); line-height: 1.05; letter-spacing: -0.018em; color: var(--navy); margin-top: 1.1rem; }
.lead { font-size: clamp(1.04rem, 1rem + 0.35vw, 1.2rem); line-height: 1.6; max-width: 64ch; }

/* SplitText : masques de lignes */
.split-line-mask { overflow: hidden; display: block; padding: 0.12em 0.08em 0.22em; margin: -0.12em -0.08em -0.22em; }
.js .splitlines { opacity: 0; }

/* ---------- Boutons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .6em; font-family: var(--font-sans); font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 1.05em 2.1em; border-radius: 100px; transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .35s var(--ease); white-space: nowrap; }
.btn--primary { background: var(--gold); color: var(--navy); }
.btn--primary:hover { background: var(--gold-soft); }
.btn--ghost { border: 1px solid currentColor; color: inherit; }
.btn--ghost:hover { background: currentColor; }
.sec--dark .btn--ghost:hover, .hero .btn--ghost:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.sec--light .btn--ghost:hover { color: var(--cream); }
.btn--lg { padding: 1.2em 2.6em; font-size: .82rem; }
.btn--nav { background: var(--gold); color: var(--navy); padding: .8em 1.5em; font-size: .7rem; }
.btn--nav:hover { background: var(--gold-soft); }
.btn-arrow { font-size: 1.1em; }

/* =========================================================
   NAV (header — conservé)
   ========================================================= */
.topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 101; height: var(--topbar-h); background: var(--navy-deep); color: var(--cream); display: flex; align-items: center; justify-content: center; padding: 0 var(--gutter); transition: transform .45s var(--ease); }
.topbar__msg { display: inline-flex; align-items: center; gap: .7rem; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark-dim); margin: 0; }
.topbar__msg b { color: var(--gold); font-weight: 600; }
.topbar .dotmark { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.topbar__close { position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%); color: var(--on-dark-dim); font-size: 1.2rem; line-height: 1; transition: color .3s; }
.topbar__close:hover { color: var(--cream); }
body.topbar-off .topbar { transform: translateY(-100%); }

.nav { position: fixed; top: var(--topbar-h); left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem var(--gutter); transition: top .45s var(--ease), padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease); }
.nav.is-scrolled { top: 0; padding: .8rem var(--gutter); background: rgba(244, 242, 236, 0.94); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); box-shadow: 0 1px 0 var(--line-light); }
body.topbar-off .nav { top: 0; }
@media (max-width: 560px) {
  .topbar__msg { font-size: .56rem; letter-spacing: .06em; white-space: nowrap; }
  .topbar__close { font-size: 1rem; }
}
.nav__brand { display: inline-flex; align-items: center; gap: .7rem; }
.nav__brand .logo-mark { width: 26px; }
.nav__brand-txt { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; letter-spacing: .34em; text-indent: .34em; color: var(--navy); }
.nav__links { display: flex; gap: 2.1rem; }
.nav__links a { font-size: .76rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); position: relative; padding: .2rem 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.nav__links a:hover::after, .nav__links a.is-current::after { transform: scaleX(1); transform-origin: left; }
.nav__links a.is-current { color: var(--navy); }

/* --- Menu Services déroulant --- */
.nav__drop { position: relative; display: inline-flex; align-items: center; }
.nav__drop > a { display: inline-flex; align-items: center; gap: .42rem; }
.nav__caret { width: 9px; height: 6px; transition: transform .4s var(--ease); opacity: .8; }
.nav__drop:hover .nav__caret, .nav__drop:focus-within .nav__caret { transform: rotate(180deg); }
.nav__mega { position: absolute; top: 100%; left: -1.4rem; margin-top: 16px; transform: translateY(8px); min-width: 380px; background: var(--cream); border: 1px solid var(--line-light); border-radius: 18px; padding: .9rem .7rem .7rem; box-shadow: 0 28px 70px rgba(20, 24, 33, .22); opacity: 0; visibility: hidden; transition: opacity .38s var(--ease), transform .38s var(--ease), visibility .38s var(--ease); z-index: 130; }
.nav__mega::before { content: ""; position: absolute; top: -18px; left: 0; right: 0; height: 18px; }
.nav__drop:hover .nav__mega, .nav__drop:focus-within .nav__mega { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__mega-label { display: block; font-family: var(--font-sans); font-size: .64rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--bordeaux); padding: .2rem .9rem .7rem; }
.megaitem { display: flex; align-items: center; gap: .85rem; padding: .7rem .9rem; border-radius: 12px; text-transform: none; letter-spacing: 0; transition: background .3s var(--ease); }
.megaitem::after { display: none !important; }
.megaitem:hover { background: var(--cream-2); }
.megaitem.is-here { background: var(--cream-2); }
.megaitem__img { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.megaitem__txt { display: flex; flex-direction: column; gap: .15rem; flex: 1; }
.megaitem__name { font-family: var(--font-display); font-size: 1.02rem; font-weight: 500; letter-spacing: -0.01em; color: var(--navy); line-height: 1.1; text-transform: none; }
.megaitem__meta { font-family: var(--font-sans); font-size: .72rem; font-weight: 400; letter-spacing: .02em; color: var(--ink-soft); text-transform: none; }
.megaitem__arrow { width: 16px; height: 16px; color: var(--bordeaux); opacity: 0; transform: translateX(-6px); transition: opacity .3s var(--ease), transform .3s var(--ease); flex-shrink: 0; }
.megaitem:hover .megaitem__arrow { opacity: 1; transform: translateX(0); }

.nav__burger { display: none; width: 34px; height: 34px; flex-direction: column; gap: 7px; justify-content: center; align-items: flex-end; z-index: 101; }
.nav__burger span { display: block; width: 26px; height: 1.5px; background: var(--navy); transition: transform .35s var(--ease), opacity .35s var(--ease), width .35s var(--ease); }
.nav__burger span:last-child { width: 18px; }
.nav.menu-open .nav__burger span:first-child { transform: translateY(4.2px) rotate(45deg); }
.nav.menu-open .nav__burger span:last-child { transform: translateY(-4.2px) rotate(-45deg); width: 26px; }

/* Menu mobile */
.menu-mobile { position: fixed; inset: 0; z-index: 99; background: var(--navy); color: var(--cream); display: flex; flex-direction: column; justify-content: center; padding: var(--gutter); gap: .2rem; opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s; }
.menu-mobile.is-open { opacity: 1; visibility: visible; }
.menu-mobile__brush { position: absolute; right: -8%; top: 50%; transform: translateY(-50%); width: 64vw; max-width: 440px; filter: brightness(0) invert(1); opacity: .05; pointer-events: none; }
.menu-mobile a { font-family: var(--font-display); font-size: clamp(2.2rem, 11vw, 3.6rem); color: var(--cream); font-weight: 400; padding: .3rem 0; display: flex; align-items: baseline; gap: 1rem; opacity: 0; transform: translateY(24px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.menu-mobile a span { font-family: var(--font-sans); font-size: .7rem; letter-spacing: .2em; color: var(--gold); }
.menu-mobile.is-open a { opacity: 1; transform: translateY(0); }
.menu-mobile.is-open a:nth-child(2){transition-delay:.10s}
.menu-mobile.is-open a:nth-child(3){transition-delay:.16s}
.menu-mobile.is-open a:nth-child(4){transition-delay:.22s}
.menu-mobile.is-open a:nth-child(5){transition-delay:.28s}
.menu-mobile.is-open a:nth-child(6){transition-delay:.34s}

/* Accordéon Services dans le menu mobile */
.menu-mobile__acc { font-family: var(--font-display); font-size: clamp(2.2rem, 11vw, 3.6rem); color: var(--cream); font-weight: 400; padding: .3rem 0; display: inline-flex; align-items: center; gap: .7rem; background: none; border: 0; cursor: pointer; line-height: 1; opacity: 0; transform: translateY(24px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.menu-mobile.is-open .menu-mobile__acc { opacity: 1; transform: translateY(0); transition-delay: .16s; }
.mm-caret { width: .42em; height: .42em; flex: 0 0 auto; transition: transform .35s var(--ease); }
.menu-mobile__acc[aria-expanded="true"] .mm-caret { transform: rotate(180deg); }
.mm-sub { display: grid; overflow: hidden; max-height: 0; padding-left: 1.1rem; margin: .2rem 0 .4rem; border-left: 2px solid rgba(242,161,0,.45); transition: max-height .45s var(--ease); }
.mm-sub.is-open { max-height: 60vh; }
.menu-mobile .mm-sub a { font-family: var(--font-sans); font-size: 1.1rem; font-weight: 500; color: var(--on-dark-dim); padding: .55rem 0; display: block; opacity: 1; transform: none; }
.menu-mobile .mm-sub a.is-here { color: var(--gold); }
.menu-mobile .mm-sub a:hover { color: var(--cream); }

/* nav claire au-dessus du hero sombre */
body[data-page="accueil"] .nav:not(.is-scrolled) .nav__brand-txt,
body[data-page="accueil"] .nav:not(.is-scrolled) .nav__links a { color: var(--cream); }
body[data-page="accueil"] .nav:not(.is-scrolled) .nav__links a.is-current { color: #fff; }
body[data-page="accueil"] .nav:not(.is-scrolled) .logo-mark { filter: brightness(0) invert(1); }
body[data-page="accueil"] .nav:not(.is-scrolled) .nav__burger span { background: var(--cream); }

/* =========================================================
   HERO (vidéo)
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: calc(var(--nav-h) + var(--topbar-h) + 1rem) 0 3.5rem; overflow: hidden; color: var(--cream); }
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--navy); transform: translateZ(0); }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.3s var(--ease); will-change: opacity; }
.hero__video.is-on { opacity: 1; }
.hero__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,16,22,.3) 0%, rgba(10,16,22,.36) 48%, rgba(10,16,22,.78) 100%); }
.hero__eyebrow, .hero__title, .hero__rotator, .hero__sub { text-shadow: 0 2px 30px rgba(6,12,18,.5); }
.hero .container { position: relative; z-index: 2; }
.hero__inner { max-width: 940px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; padding-top: clamp(0.5rem, 2vh, 1.5rem); }
.hero__mark { width: clamp(46px, 5.5vw, 62px); margin-bottom: 1rem; filter: brightness(0) invert(1); }
.hero__eyebrow { color: var(--gold); margin-bottom: 1rem; justify-content: center; }
.hero__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.4rem, 1.4rem + 4vw, 5rem); line-height: 1.0; letter-spacing: -0.025em; color: var(--cream); }
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.04em; }
.hero__title .word { display: inline-block; }
.hero__title .italic { color: var(--gold); }
.hero__rotator { font-family: var(--font-display); font-style: italic; font-size: clamp(1.1rem, 1rem + .7vw, 1.55rem); color: var(--on-dark-dim); margin-top: 0.8rem; }
.rotator { display: inline-block; color: var(--gold); }
.rotator > span { display: inline-block; }
.rotator > span:not(:last-child)::after { content: ", "; white-space: pre; }
.js .rotator > span { display: none; }
.js .rotator > span::after { content: none; }
.js .rotator > span.is-active { display: inline-block; }
.hero__sub { max-width: 560px; margin: 1.1rem auto 0; font-size: clamp(1.02rem, 1rem + 0.3vw, 1.18rem); color: var(--on-dark-dim); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1.1rem; align-items: center; justify-content: center; margin-top: 1.7rem; }
.hero .btn--ghost { border-color: rgba(243,238,230,.45); color: var(--cream); }
.hero .btn--ghost:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.hero__scroll { position: absolute; bottom: 2.2rem; left: var(--gutter); display: flex; align-items: center; gap: 1rem; font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--on-dark-dim); z-index: 2; }
.hero__scroll-line { width: 56px; height: 1px; background: var(--on-dark-dim); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; inset: 0; background: var(--gold); transform: translateX(-100%); animation: scrollLine 2.4s var(--ease) infinite; }
@keyframes scrollLine { 0%{transform:translateX(-100%)} 50%{transform:translateX(0)} 100%{transform:translateX(100%)} }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee { background: var(--navy-deep); color: var(--cream); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); overflow: hidden; padding: 1.1rem 0; }
.marquee__track { display: flex; align-items: center; gap: 1.6rem; width: max-content; font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 1rem + 1.8vw, 2.2rem); color: var(--cream); animation: marquee 34s linear infinite; }
.marquee__track .dot { color: var(--gold); font-style: normal; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   INTRO éditoriale
   ========================================================= */
.intro { padding-block: clamp(6rem, 14vw, 13rem); }
.intro .eyebrow { margin-bottom: clamp(1.6rem, 4vw, 2.6rem); }
.intro__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 1.2rem + 4.4vw, 5.2rem); line-height: 1.08; letter-spacing: -0.02em; color: var(--navy); max-width: 20ch; }
.intro__foot { display: flex; align-items: center; gap: clamp(1.2rem, 4vw, 2.8rem); margin-top: clamp(2.2rem, 5vw, 3.6rem); flex-wrap: wrap; }
.intro__by { font-size: .74rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--on-light-dim); }

/* Lien souligné réutilisable */
.ulink { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; position: relative; display: inline-flex; gap: .5rem; align-items: center; color: inherit; }
.ulink span { transition: transform .4s var(--ease); }
.ulink::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.ulink:hover::after { transform: scaleX(1); transform-origin: left; }
.ulink:hover span { transform: translateX(4px); }
.sec--light .ulink { color: var(--bordeaux); }
.sec--dark .ulink { color: var(--gold); }

/* =========================================================
   SHOWCASE — aperçus de sites qui défilent
   ========================================================= */
.showcase__carousel { overflow: hidden; margin: 0 calc(-1 * var(--gutter)); -webkit-mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.showcase__track2 { display: flex; width: max-content; padding: 1rem 0; }
.showcase__track2.is-rolling { animation: showroll 55s linear infinite; }
.showcase__carousel:hover .showcase__track2 { animation-play-state: paused; }
@keyframes showroll { to { transform: translateX(-50%); } }
.showcase__note { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.showcase__note p { font-family: var(--font-display); font-size: clamp(1.2rem, 1rem + 1vw, 1.8rem); color: var(--cream); max-width: 26ch; }

.mk { flex: 0 0 auto; width: 380px; margin-right: 1.6rem; background: #0c1418; border-radius: var(--radius); overflow: hidden; box-shadow: 0 40px 70px -34px rgba(0,0,0,.7); border: 1px solid var(--line-dark); }
.mk__bar { display: flex; align-items: center; gap: .4rem; padding: .55rem .7rem; background: #11202a; }
.mk__bar i { width: 8px; height: 8px; border-radius: 50%; background: #2c3f48; }
.mk__url { margin-left: .45rem; font-size: .56rem; color: var(--on-dark-dim); background: #0c1418; padding: .25em .85em; border-radius: 100px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mk__view { height: 440px; overflow: hidden; position: relative; background: #fff; }
.mk__page { position: relative; }

/* mini-pages : éléments communs */
.mkp__nav { display: flex; align-items: center; justify-content: space-between; padding: .65rem .85rem; }
.mkp__nav--glass { position: absolute; top: 0; left: 0; right: 0; z-index: 3; }
.mkp__nav--dark { background: #0c1418; }
.mkp__nav--light { background: #fff; border-bottom: 1px solid #ececec; }
.mkp__logo { font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: #fff; letter-spacing: .08em; }
.mkp__logo--ink { color: var(--ink); }
.mkp__links { display: flex; gap: .35rem; }
.mkp__links i { width: 15px; height: 3px; border-radius: 2px; background: rgba(255,255,255,.55); }
.mkp__cart { font-size: .58rem; letter-spacing: .04em; color: var(--ink); }
.mkp__hero, .mkp__cover { position: relative; overflow: hidden; display: flex; align-items: flex-end; }
.mkp__hero { height: 260px; }
.mkp__cover { height: 230px; }
.mkp__cover--tall { height: 248px; }
.mkp__hero img, .mkp__cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mkp__heroveil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,20,26,.05) 25%, rgba(8,20,26,.84)); }
.mkp__heroc, .mkp__coverc { position: relative; padding: 1rem 1.05rem; color: #fff; z-index: 2; }
.mkp__kick { font-size: .54rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); }
.mkp__kick--ink { color: var(--bordeaux); }
.mkp__h { font-family: var(--font-display); font-weight: 500; font-size: 1.45rem; line-height: 1.02; margin: .22rem 0 .55rem; color: #fff; }
.mkp__h--ink { color: var(--ink); }
.mkp__btn { display: inline-block; font-size: .54rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; background: var(--gold); color: var(--navy); padding: .5em 1.05em; border-radius: 100px; }
.mkp__btn--ink { background: var(--ink); color: #fff; }
.mkp__band { padding: 1rem 1.05rem; }
.mkp__band--cream { background: var(--cream); }
.mkp__band--dark2 { background: #0c1418; }
.mkp__ey { font-size: .54rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--bordeaux); }
.mkp__ey--gold { color: var(--gold); }
.mkp__lead { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); margin-top: .3rem; line-height: 1.15; }
.mkp__lead--light { color: var(--cream); }
.mkp__rows { padding: .3rem 1.05rem 1rem; background: var(--cream); }
.mkp__row { display: flex; justify-content: space-between; align-items: baseline; padding: .5rem 0; border-bottom: 1px solid #e2dccd; font-size: .72rem; color: #51493e; }
.mkp__row b { font-family: var(--font-display); color: var(--ink); }
.mkp__foot { padding: .85rem 1.05rem; font-size: .56rem; letter-spacing: .06em; text-transform: uppercase; }
.mkp__foot--dark { background: #0c1418; color: var(--on-dark-dim); }
.mkp__foot--light { background: var(--cream-2); color: var(--on-light-dim); }
/* boutique */
.mkp__split { display: grid; grid-template-columns: 1fr 1fr; }
.mkp__split img { width: 100%; height: 158px; object-fit: cover; }
.mkp__splitc { padding: 1rem; display: flex; flex-direction: column; justify-content: center; gap: .35rem; background: #fff; }
.mkp__shop { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; padding: 1rem; background: #faf8f3; }
.mkp__prod { background: #fff; border-radius: 8px; padding: .6rem; display: grid; gap: .28rem; }
.mkp__sw { width: 100%; height: 80px; object-fit: cover; border-radius: 6px; display: block; }
.mkp__prod b { font-size: .66rem; color: var(--ink); font-weight: 600; }
.mkp__prod i { font-size: .62rem; color: var(--on-light-dim); font-style: normal; }
/* studio */
.mkp__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; padding: 1rem; background: #0c1418; }
.mkp__gallery img { width: 100%; height: 80px; object-fit: cover; border-radius: 6px; display: block; }
/* btp */
.mkp__stats { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--navy); }
.mkp__stats div { padding: .9rem .4rem; text-align: center; border-left: 1px solid rgba(255,255,255,.08); }
.mkp__stats div:first-child { border-left: none; }
.mkp__stats b { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--gold); }
.mkp__stats span { font-size: .52rem; letter-spacing: .08em; text-transform: uppercase; color: var(--on-dark-dim); }
.mkp__list { background: #0c1418; padding: .5rem 1.05rem 1rem; }
.mkp__list span { display: block; padding: .55rem 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .72rem; color: var(--cream); }

/* Chaque mockup = une marque fictive à l'identité distincte */
/* Boutique — clair, sans-serif, accent sauge, minimal */
.mkp-shop .mkp__logo { font-family: var(--font-sans); font-weight: 700; letter-spacing: .14em; }
.mkp-shop .mkp__h { font-family: var(--font-sans); font-weight: 600; letter-spacing: -.01em; }
.mkp-shop .mkp__kick--ink { color: #5C7A6B; }
.mkp-shop .mkp__btn--ink { background: transparent; color: #14171A; border: 1px solid #14171A; }
.mkp-shop .mkp__prod b { font-family: var(--font-sans); }
.mkp-shop .mkp__foot--light { color: #5C7A6B; }

/* Menuisier — chaleureux, bois & terracotta */
.mkp-studio .mkp__kick { color: #E0A06A; }
.mkp-studio .mkp__band--dark2 { background: #241811; }
.mkp-studio .mkp__ey--gold { color: #C2682F; }
.mkp-studio .mkp__nav--dark, .mkp-studio .mkp__foot--dark, .mkp-studio .mkp__gallery { background: #1C130C; }
.mkp-studio .mkp__gallery span:nth-child(1) { background: #3A2415; }
.mkp-studio .mkp__gallery span:nth-child(2) { background: #6B4A2A; }
.mkp-studio .mkp__gallery span:nth-child(3) { background: #C2682F; }
.mkp-studio .mkp__gallery span:nth-child(4) { background: #8A5A33; }

/* BTP — industriel, bold majuscule, accent ambre, boutons carrés */
.mkp-btp .mkp__logo { font-family: var(--font-sans); font-weight: 800; letter-spacing: .04em; }
.mkp-btp .mkp__h { font-family: var(--font-sans); font-weight: 800; text-transform: uppercase; letter-spacing: -.01em; font-size: 1.3rem; }
.mkp-btp .mkp__kick { color: #E8852B; }
.mkp-btp .mkp__btn { background: #E8852B; color: #13171A; border-radius: 4px; font-weight: 700; }
.mkp-btp .mkp__nav--dark, .mkp-btp .mkp__foot--dark, .mkp-btp .mkp__list { background: #14181B; }
.mkp-btp .mkp__stats { background: #0F1316; }
.mkp-btp .mkp__stats b { color: #E8852B; }

/* === Univers distincts : police + structure par mockup === */
.mkp-resto  { --mkfont: var(--font-display); }
.mkp-shop   { --mkfont: var(--font-sans); }
.mkp-studio { --mkfont: "DM Serif Display", Georgia, serif; }
.mkp-btp    { --mkfont: "Oswald", system-ui, sans-serif; }
.mkp__h { font-family: var(--mkfont, var(--font-display)); }

/* Atelier Boisé — clair, éditorial, grille de photos */
.mkp-studio { background: #F2EBDF; }
.mkp__nav--cream { background: #F2EBDF; border-bottom: 1px solid #E3D8C5; }
.mkp-studio .mkp__logo { color: #2B1E12; font-family: "DM Serif Display", serif; font-weight: 400; letter-spacing: 0; font-size: .98rem; }
.mkp-studio .mkp__links i { background: #C9B79B; }
.mkp__intro { background: #F2EBDF; padding: 1.2rem 1.1rem 1.2rem; }
.mkp-studio .mkp__kick { color: #B5642F; }
.mkp-studio .mkp__intro .mkp__h { color: #2B1E12; font-size: 1.85rem; line-height: 1.02; margin: .4rem 0 .55rem; }
.mkp__metaline { display: block; font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: #8A6A4A; }
.mkp__grid4 { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; background: #F2EBDF; padding: .1rem 1.1rem 1.1rem; }
.mkp__grid4 img { width: 100%; height: 92px; object-fit: cover; border-radius: 4px; display: block; }
.mkp__grid4 img:first-child { grid-column: 1 / -1; height: 122px; }
.mkp__foot--cream { background: #E9DECB; color: #8A6A4A; }

/* Lefort — dark industriel typographique (Oswald) */
.mkp-btp { background: #16181C; }
.mkp__nav--ink { background: #16181C; border-bottom: 1px solid rgba(255,255,255,.06); }
.mkp-btp .mkp__logo { color: #fff; font-family: "Oswald", sans-serif; font-weight: 700; letter-spacing: .1em; }
.mkp-btp .mkp__links i { background: rgba(255,255,255,.5); }
.mkp__btphero { background: #16181C; padding: 1.5rem 1.1rem 1.6rem; }
.mkp-btp .mkp__kick { color: #E8852B; letter-spacing: .18em; }
.mkp-btp .mkp__btphero .mkp__h { color: #fff; font-family: "Oswald", sans-serif; font-weight: 700; text-transform: uppercase; font-size: 2.5rem; line-height: .88; letter-spacing: 0; margin: .45rem 0 0; }
.mkp__rule { display: block; width: 42px; height: 3px; background: #E8852B; margin: .9rem 0 1.05rem; }
.mkp-btp .mkp__btphero .mkp__btn { background: #E8852B; color: #16181C; border-radius: 3px; font-family: "Oswald", sans-serif; font-weight: 600; letter-spacing: .08em; }
.mkp-btp .mkp__stats { background: #1C1F25; }
.mkp-btp .mkp__stats b { color: #E8852B; font-family: "Oswald", sans-serif; font-weight: 700; }
.mkp-btp .mkp__list, .mkp-btp .mkp__foot--dark { background: #16181C; }

/* Resto — accent or raffiné (laiton), distinct de l'orange Lefort */
.mkp-resto .mkp__kick { color: #D8B86A; }
.mkp-resto .mkp__btn { background: #C9A24B; color: #1A1206; }
.mkp-resto .mkp__ey { color: #A07B2E; }
/* Lefort — hero photo premium + titre Oswald majuscule */
.mkp-btp .mkp__coverc .mkp__h { font-family: "Oswald", sans-serif; font-weight: 700; text-transform: uppercase; font-size: 1.55rem; line-height: .95; letter-spacing: 0; color: #fff; }
.mkp-btp .mkp__btn { font-family: "Oswald", sans-serif; background: #E8852B; color: #16181C; border-radius: 3px; font-weight: 600; }

/* =========================================================
   FOOTER LÉGAL + PAGES LÉGALES
   ========================================================= */
.footer__legal { display: flex; gap: 1.3rem; flex-wrap: wrap; }
.footer__legal a { font-size: .74rem; letter-spacing: .05em; color: var(--on-dark-dim); }
.footer__legal a:hover { color: var(--gold); }

.legal { background: var(--cream); color: var(--on-light); position: relative; z-index: 1; }
.legal__hero { background: var(--navy); color: var(--on-dark); padding: calc(var(--nav-h) + var(--topbar-h) + clamp(2.5rem, 7vw, 5rem)) 0 clamp(2rem, 5vw, 3.5rem); }
.legal__hero .crumb { color: var(--gold); }
.legal__hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.2rem, 1.4rem + 4vw, 4rem); line-height: 1.02; color: var(--cream); margin-top: .8rem; }
.legal__wrap { max-width: 760px; margin: 0 auto; padding: clamp(2.5rem, 6vw, 5rem) var(--gutter) clamp(4rem, 9vw, 7rem); }
.legal__wrap h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem); color: var(--navy); margin: 2.4rem 0 .8rem; }
.legal__wrap h2:first-of-type { margin-top: 0; }
.legal__wrap p, .legal__wrap li { color: var(--on-light-dim); margin-bottom: .9rem; line-height: 1.7; }
.legal__wrap ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }
.legal__wrap a { color: var(--bordeaux); text-decoration: underline; text-underline-offset: 3px; }
.legal__wrap strong { color: var(--navy); font-weight: 600; }
.legal__todo { background: #FFE9D4; border: 1px solid #F5631E; color: #7A2A08; padding: .1em .45em; border-radius: 4px; font-weight: 600; font-size: .92em; }
.legal__updated { font-size: .8rem; color: var(--on-light-dim); margin-top: 2.6rem; font-style: italic; }
body[data-page="legal"] .nav:not(.is-scrolled) .nav__brand-txt,
body[data-page="legal"] .nav:not(.is-scrolled) .nav__links a { color: var(--cream); }
body[data-page="legal"] .nav:not(.is-scrolled) .nav__links a.is-current { color: #fff; }
body[data-page="legal"] .nav:not(.is-scrolled) .logo-mark { filter: brightness(0) invert(1); }
body[data-page="legal"] .nav:not(.is-scrolled) .nav__burger span { background: var(--cream); }

@media (max-width: 560px) { .mk { width: 300px; } .mk__view { height: 400px; } }
@media (prefers-reduced-motion: reduce) { .showcase__track2 { animation: none !important; } }

/* =========================================================
   SERVICES (index typographique + visuel sticky)
   ========================================================= */
.svci__head { max-width: 900px; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.svci__lead { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.8rem, 1.2rem + 3vw, 3.6rem); line-height: 1.08; letter-spacing: -0.015em; color: var(--navy); margin-top: 1.1rem; max-width: 20ch; }
.svci__main { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.svci__list { border-top: 1px solid var(--line-light); }
.svci__row { border-bottom: 1px solid var(--line-light); }
.svci__row a { display: block; padding: clamp(1.3rem, 2.6vw, 2.2rem) 0; transition: padding-left .22s var(--ease); }
.svci__name { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(1.7rem, 1rem + 2.4vw, 3.2rem); line-height: 1.02; letter-spacing: -0.02em; color: var(--navy); transition: color .18s ease-out; }
.svci__meta { display: block; margin-top: .5rem; font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--on-light-dim); }
.svci__row.is-active a { padding-left: clamp(.6rem, 1.5vw, 1.4rem); }
.svci__row.is-active .svci__name { color: var(--bordeaux); }
.svci__panel { position: sticky; top: calc(var(--nav-h) + 3rem); aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: var(--cream-3); box-shadow: 0 40px 80px -42px rgba(20,23,26,.45); }
.svci__pimg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.05); transition: opacity .4s var(--ease), transform .8s var(--ease); }
.svci__pimg.is-on { opacity: 1; transform: scale(1); }
@media (max-width: 860px) {
  .svci__main { grid-template-columns: 1fr; gap: 1.5rem; }
  .svci__panel { display: none; }
}

/* =========================================================
   BÉNÉFICES
   ========================================================= */
.benefits__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.2vw, 1.8rem); }
.benefit { padding: clamp(1.6rem, 2.4vw, 2.2rem); border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255,255,255,0.025); transition: background .4s var(--ease), transform .4s var(--ease); }
.benefit:hover { background: rgba(255,255,255,0.05); transform: translateY(-4px); }
.benefit__icon { display: inline-flex; width: 42px; height: 42px; color: var(--gold); margin-bottom: 1.2rem; }
.benefit__icon svg { width: 100%; height: 100%; }
.benefit__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.2rem, 1rem + .6vw, 1.55rem); color: var(--cream); line-height: 1.1; margin-bottom: .6rem; }
.benefit__desc { color: var(--on-dark-dim); font-size: .96rem; }
@media (max-width: 880px) { .benefits__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .benefits__grid { grid-template-columns: 1fr; } }

/* =========================================================
   METHOD (approche sticky)
   ========================================================= */
.sticky { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.sticky__head { position: sticky; top: calc(var(--nav-h) + 2.5rem); }
.sticky__head .lead { color: var(--on-light-dim); margin-top: 1.2rem; max-width: 38ch; }
.steps { display: grid; }
.step { display: grid; grid-template-columns: 110px 1fr; gap: clamp(1.2rem, 4vw, 3rem); padding: clamp(1.8rem, 4vw, 2.8rem) 0; border-top: 1px solid var(--line-light); align-items: baseline; }
.step:last-child { border-bottom: 1px solid var(--line-light); }
.step__num { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: #c8bfae; line-height: 1; transition: color .45s var(--ease), transform .45s var(--ease); transform-origin: left center; }
.step.is-active .step__num { color: var(--gold); transform: scale(1.18); }
.step.is-active .step__body h3 { color: var(--bordeaux); }
.step__body h3 { transition: color .45s var(--ease); }
.step__body h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem); color: var(--navy); margin-bottom: .5rem; }
.step__body p { color: var(--on-light-dim); max-width: 56ch; }
@media (max-width: 820px) {
  .sticky { grid-template-columns: 1fr; gap: 1rem; }
  .sticky__head { position: static; margin-bottom: 1rem; }
  .step { grid-template-columns: 54px 1fr; }
}

/* =========================================================
   WORK (réalisation : mockup navigateur)
   ========================================================= */
.case { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.case__browser { border-radius: var(--radius); overflow: hidden; background: #0d0d0d; box-shadow: 0 50px 90px -34px rgba(0,0,0,.7); border: 1px solid var(--line-dark); }
.case__bar { display: flex; align-items: center; gap: .5rem; padding: .8rem 1rem; background: #161616; }
.case__dots { display: inline-flex; gap: .4rem; }
.case__dots i { width: 10px; height: 10px; border-radius: 50%; background: #3a3a3a; }
.case__url { margin-left: 1rem; font-size: .72rem; color: var(--on-dark-dim); background: #0d0d0d; padding: .35em 1em; border-radius: 100px; }
.case__shot { display: block; width: 100%; height: auto; }
.case__tag { font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.case__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 1.4rem + 2vw, 3.2rem); line-height: 1.04; color: var(--cream); margin: .6rem 0 1rem; }
.case__desc { color: var(--on-dark-dim); margin-bottom: 1.6rem; }
@media (max-width: 820px) { .case { grid-template-columns: 1fr; } }

/* =========================================================
   STATS (preuve chiffrée)
   ========================================================= */
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden; }
.stat { padding: clamp(2.2rem, 4.5vw, 3.6rem) 1rem; text-align: center; border-left: 1px solid var(--line-light); }
.stat:first-child { border-left: none; }
.stat__num { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.6rem, 1.5rem + 4vw, 5rem); line-height: 1; color: var(--navy); }
.stat__num .suffix { font-size: .5em; color: var(--gold); }
.stat__label { font-size: .7rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--on-light-dim); margin-top: .9rem; }
@media (max-width: 680px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--line-light); }
}

/* =========================================================
   CTA finale
   ========================================================= */
.cta { text-align: center; padding-block: clamp(6rem, 15vw, 13rem); }
.cta__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.6rem, 1.4rem + 6.5vw, 6.6rem); line-height: 1; color: var(--cream); }
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.6rem; }
.cta__meta { display: flex; gap: clamp(1.2rem, 4vw, 3rem); justify-content: center; flex-wrap: wrap; margin-top: 3rem; }
.cta__meta span { display: inline-flex; align-items: center; gap: .55rem; font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-dim); }
.cta__meta .dotmark { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { position: relative; background: var(--navy-deep); color: var(--cream); padding: clamp(3.5rem, 7vw, 6rem) 0 2.5rem; overflow: hidden; }
.footer .container { position: relative; z-index: 2; }
.footer__top { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; padding-bottom: clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--line-dark); }
.footer__brand { font-family: var(--font-display); font-size: clamp(3rem, 12vw, 8.5rem); letter-spacing: .24em; text-indent: .24em; color: var(--cream); line-height: .9; font-weight: 400; }
.footer__tagline { font-size: .74rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-top: 1rem; }
.footer__contact { text-align: right; display: grid; gap: .5rem; }
.footer__contact a { color: var(--cream); font-size: 1.05rem; }
.footer__contact a:hover { color: var(--gold); }
.footer__contact span { font-size: .7rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--on-dark-dim); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; padding-top: 2rem; }
.footer__nav { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer__nav a { font-size: .76rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--on-dark-dim); }
.footer__nav a:hover { color: var(--cream); }
.footer__copy { font-size: .72rem; color: var(--on-dark-dim); }

/* =========================================================
   SOUS-PAGES (hero interne, projets, contact, à propos)
   ========================================================= */
.page-hero { position: relative; padding: calc(var(--nav-h) + var(--topbar-h) + clamp(3rem, 9vw, 7rem)) 0 clamp(3rem, 7vw, 6rem); overflow: hidden; color: var(--on-dark); }
.page-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.6rem, 1.4rem + 7vw, 6.5rem); line-height: 0.98; letter-spacing: -0.02em; color: var(--cream); margin: 1.2rem 0 1.4rem; max-width: 16ch; }
.page-hero p { max-width: 56ch; color: var(--on-dark-dim); font-size: clamp(1.05rem, 1rem + 0.3vw, 1.2rem); }
.crumb { font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }

.projets__list { display: grid; gap: 1.5rem; }
.projet { display: grid; grid-template-columns: 1.1fr 1fr; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255,255,255,0.02); overflow: hidden; }
.projet__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--navy-deep); display: grid; place-items: center; }
.projet__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.projet:hover .projet__media img { transform: scale(1.05); }
.projet__placeholder { position: absolute; font-family: var(--font-display); font-size: clamp(2rem, 5vw, 4rem); letter-spacing: .3em; text-indent: .3em; color: var(--gold); opacity: .3; pointer-events: none; }
.projet__media:not(.projet__media--empty) .projet__placeholder { display: none; }
.projet__media--empty { background: var(--navy); }
.projet__info { padding: clamp(2rem, 4vw, 3.4rem); display: flex; flex-direction: column; gap: 1rem; justify-content: space-between; }
.projet__tag { font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.projet__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.8rem, 1.2rem + 2vw, 3rem); line-height: 1.04; color: var(--cream); margin-top: .4rem; }
.projet__desc { color: var(--on-dark-dim); }

.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); }
.contact__coords { display: grid; gap: 1.2rem; }
.contact__coords li { display: grid; grid-template-columns: 130px 1fr; align-items: baseline; gap: 1rem; border-top: 1px solid var(--line-light); padding-top: 1.1rem; }
.contact__label { font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--on-light-dim); }
.contact__coords a:hover { color: var(--bordeaux); }
.contact__form { display: grid; gap: 1.4rem; align-content: start; }
.field { display: grid; gap: .5rem; }
.field label { font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--on-light-dim); }
.field input, .field select, .field textarea { font-family: var(--font-sans); font-size: 1rem; color: var(--ink); background: transparent; border: none; border-bottom: 1px solid var(--line-light); padding: .7rem 0; resize: vertical; transition: border-color .4s var(--ease); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); }
.field select { appearance: none; cursor: pointer; }
.btn--full { width: 100%; }

.apropos__grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.apropos__media { position: relative; aspect-ratio: 3/4; background: var(--cream-3); border-radius: var(--radius); overflow: hidden; }
.apropos__media img { width: 100%; height: 100%; object-fit: cover; }
.apropos__lead { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--navy); margin: 1rem 0 1.6rem; }
.apropos__text p { margin-bottom: 1.2rem; color: var(--on-light-dim); max-width: 52ch; }
.apropos__values { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.8rem; }
.apropos__values li { font-size: .74rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); border: 1px solid var(--line-light); border-radius: 100px; padding: .55em 1.2em; }

/* =========================================================
   REVEAL
   ========================================================= */
.js [data-reveal] { opacity: 0; transform: translateY(28px); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 920px) {
  :root { --nav-h: 72px; }
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .projet { grid-template-columns: 1fr; }
  .apropos__grid { grid-template-columns: 1fr; }
  .apropos__media { max-width: 360px; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__contact { text-align: left; }
}
@media (max-width: 540px) {
  .hero__scroll { display: none; }
  .contact__coords li { grid-template-columns: 1fr; gap: .2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .js .splitlines { opacity: 1; }
  .js .step2 { position: static; opacity: 1; transform: none; }
  .js .steps2 { min-height: 0; display: grid; gap: 2rem; }
  .step__num { color: var(--gold); }
  .marquee__track { animation: none; }
  .hero__scroll-line::after { animation: none; }
  .cursor, .cursor-dot { display: none; }
}

/* =========================================================
   RECOMPOSITIONS — compositions singulières par section
   ========================================================= */

/* ---- Intro : Y géant en filigrane + asymétrie ---- */
.intro { position: relative; overflow: hidden; }
.intro__mark { position: absolute; top: 50%; right: -6%; transform: translateY(-50%); width: min(48vw, 600px); opacity: .05; pointer-events: none; z-index: 0; }
.intro__mark img { width: 100%; }
.intro .container { position: relative; z-index: 1; }
.intro__body { max-width: 78%; }
.intro__title { max-width: 18ch; }
@media (max-width: 760px) { .intro__body { max-width: 100%; } .intro__mark { right: -22%; opacity: .04; } }

/* ---- Bénéfices : liste éditoriale alternée ---- */
.benefits__list { display: flex; flex-direction: column; }
.bft { position: relative; max-width: 58%; padding: clamp(2.2rem, 4vw, 3.4rem) 0; border-top: 1px solid var(--line-dark); }
.benefits__list .bft:first-child { border-top: none; }
.bft--r { margin-left: auto; text-align: right; }
.bft > *:not(.bft__index) { position: relative; z-index: 1; }
.bft__index { position: absolute; top: .2em; font-family: var(--font-display); font-size: clamp(4rem, 10vw, 9rem); line-height: .8; color: rgba(201,162,75,.16); -webkit-text-stroke: 1px rgba(201,162,75,.4); -webkit-text-fill-color: transparent; z-index: 0; pointer-events: none; }
.bft--l .bft__index { left: -.08em; }
.bft--r .bft__index { right: -.08em; }
.bft .benefit__icon { display: flex; width: 46px; height: 46px; color: var(--gold); margin-bottom: 1.1rem; }
.bft--r .benefit__icon { margin-left: auto; }
.bft__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.6rem, 1.1rem + 1.8vw, 2.8rem); line-height: 1.06; color: var(--cream); margin-bottom: .8rem; }
.bft__desc { color: var(--on-dark-dim); max-width: 44ch; }
.bft--r .bft__desc { margin-left: auto; }
@media (max-width: 760px) {
  .bft { max-width: 100%; text-align: left; }
  .bft--r { text-align: left; }
  .bft--r .benefit__icon, .bft--r .bft__desc { margin-left: 0; }
  .bft__index { font-size: 5rem; }
}

/* ---- Approche : deck de cartes empilées (sticky) ---- */
.method { overflow: visible; }
.method__head { max-width: 760px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.stack { display: grid; gap: clamp(1.2rem, 3vh, 2.2rem); padding-bottom: clamp(1rem, 4vh, 3rem); }
.stack__card { --glow: rgba(255,255,255,0.25); position: sticky; min-height: clamp(340px, 60vh, 540px); border-radius: 22px; padding: clamp(2rem, 5vw, 4.5rem); overflow: hidden; display: flex; flex-direction: column; justify-content: center; border: 1px solid rgba(255,255,255,0.22); box-shadow: 0 36px 80px -40px rgba(0,0,0,0.6), 0 0 70px -8px var(--glow), inset 0 1px 0 rgba(255,255,255,0.38); will-change: transform; }
.stack__card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(135% 90% at 50% -18%, rgba(255,255,255,0.38), rgba(255,255,255,0) 55%); pointer-events: none; z-index: 1; }
.stack__card:nth-child(1) { top: calc(var(--nav-h) + 1.5rem); }
.stack__card:nth-child(2) { top: calc(var(--nav-h) + 2.4rem); }
.stack__card:nth-child(3) { top: calc(var(--nav-h) + 3.3rem); }
.stack__card:nth-child(4) { top: calc(var(--nav-h) + 4.2rem); }
.sc--navy { background: var(--navy-card); color: var(--cream); --glow: rgba(40,80,150,0.6); }
.sc--emerald { background: var(--emerald); color: var(--cream); --glow: rgba(14,95,216,0.6); }
.sc--bordeaux { background: var(--bordeaux); color: var(--cream); --glow: rgba(245,99,30,0.6); }
.sc--gold { background: var(--gold); color: var(--navy); border-color: rgba(20,23,26,0.14); --glow: rgba(242,161,0,0.7); }
.sc--gold::before { background: radial-gradient(135% 90% at 50% -18%, rgba(255,255,255,0.5), rgba(255,255,255,0) 55%); }
.stack__in { position: relative; z-index: 2; max-width: 46ch; }
.stack__k { display: block; font-size: .76rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1rem; }
.sc--gold .stack__k { color: var(--bordeaux); }
.stack__t { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.4rem, 1.5rem + 4vw, 5.5rem); line-height: .98; margin-bottom: 1.1rem; overflow-wrap: break-word; hyphens: auto; }
.stack__p { font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem); max-width: 42ch; }
.stack__card .stack__t { color: #FBF8F2; }
.stack__card .stack__p { color: #ECE6D8; }
.sc--gold .stack__t { color: var(--navy); }
.sc--gold .stack__p { color: #2E2710; }
.sc--gold .stack__k { color: var(--bordeaux); }
.stack__ghost { position: absolute; right: clamp(.5rem, 3vw, 3rem); bottom: -0.16em; font-family: var(--font-display); font-weight: 500; font-size: clamp(6rem, 17vw, 15rem); line-height: .8; color: currentColor; opacity: .08; pointer-events: none; z-index: 1; white-space: nowrap; }
.sc--bordeaux .stack__ghost { color: #7A2A08; opacity: .16; }
.sc--gold .stack__ghost { color: #6B4A00; opacity: .14; }
.sc--emerald .stack__ghost { color: #0A347C; opacity: .26; }
.sc--navy .stack__ghost { color: #0A0E16; opacity: .5; }
@media (max-width: 600px) {
  .stack__card { min-height: clamp(300px, 70vh, 460px); border-radius: 16px; }
  .stack__ghost { font-size: 28vw; }
  .stack__t { font-size: clamp(1.7rem, 1rem + 4.6vw, 2.6rem); }
}

/* ---- Réalisation : relief 3D discret ---- */
.work3 { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.work3__visual { perspective: 1100px; }
.work3__visual .case__browser { display: block; transform-style: preserve-3d; will-change: transform; }
.work3__meta .eyebrow { margin-bottom: 1rem; }
.work3__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.8rem, 1.2rem + 2vw, 3rem); color: var(--cream); line-height: 1.05; margin-bottom: .8rem; }
.work3 .case__tag { display: block; margin-bottom: 1rem; }
.work3 .case__desc { margin-bottom: 1.6rem; }
.work3__links { display: flex; flex-direction: column; gap: 1.3rem; align-items: flex-start; }
@media (max-width: 820px) { .work3 { grid-template-columns: 1fr; } }

/* ---- Agent IA : démo de chat animée ---- */
.ai__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.ai__intro .section-title { margin-bottom: 1.4rem; }
.ai__points { display: grid; gap: .85rem; margin: 1.6rem 0 2.2rem; }
.ai__points li { position: relative; padding-left: 1.7rem; color: var(--on-dark-dim); }
.ai__points li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.ai__win { background: var(--navy-deep); border: 1px solid var(--line-dark); border-radius: 16px; overflow: hidden; box-shadow: 0 40px 90px -44px rgba(0,0,0,.7); }
.ai__bar { display: flex; align-items: center; gap: .6rem; padding: .9rem 1.1rem; background: var(--navy-card); font-size: .76rem; letter-spacing: .04em; color: var(--cream); border-bottom: 1px solid var(--line-dark); }
.ai__dot { width: 9px; height: 9px; border-radius: 50%; background: #3AD29F; box-shadow: 0 0 0 3px rgba(58,210,159,.2); }
.ai__live { margin-left: auto; font-size: .62rem; text-transform: uppercase; letter-spacing: .14em; color: #7FD9B8; }
.ai__chat { padding: 1.4rem; display: flex; flex-direction: column; gap: .8rem; min-height: 300px; }
.ai__msg { max-width: 82%; padding: .8em 1.1em; border-radius: 16px; font-size: .95rem; line-height: 1.4; }
.ai__msg--user { align-self: flex-end; background: var(--cream); color: var(--navy); border-bottom-right-radius: 5px; }
.ai__msg--bot { align-self: flex-start; background: var(--gold); color: var(--navy); border-bottom-left-radius: 5px; }
@media (max-width: 820px) { .ai__grid { grid-template-columns: 1fr; } }

/* ---- Stats : bande centrée et encadrée ---- */
.stats .container { text-align: center; }
.stats__eyebrow { justify-content: center; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.stats__row { display: grid; grid-template-columns: repeat(4, 1fr); align-items: start; }
.stats__row .stat { padding: .4rem clamp(1rem, 2vw, 2rem); border: none; border-left: 1px solid var(--line-light); text-align: center; }
.stats__row .stat:first-child { border-left: none; }
.stats__row .stat__num { font-size: clamp(3rem, 2rem + 4vw, 5.5rem); }
.stats__row .stat__label { margin: .6rem auto 0; max-width: 18ch; }
@media (max-width: 680px) {
  .stats__row { grid-template-columns: 1fr 1fr; gap: 2.6rem 0; }
  .stats__row .stat:nth-child(3) { border-left: none; }
}

/* ---- CTA : Y géant en filigrane ---- */
.cta { position: relative; }
.cta__mark { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: min(66vw, 780px); opacity: .13; pointer-events: none; z-index: 0; }
.cta__mark img { width: 100%; filter: brightness(0) invert(1); }
.cta .container { position: relative; z-index: 1; }
.btn__phone { width: 1.05em; height: 1.05em; flex: 0 0 auto; }

/* ---- Données : bento + anneaux ---- */
.data__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(.8rem, 1.6vw, 1.4rem); }
.dcard { border: 1px solid var(--line-dark); border-radius: var(--radius); padding: clamp(1.6rem, 2.6vw, 2.4rem); background: rgba(255,255,255,.025); display: flex; flex-direction: column; gap: 1rem; transition: background .4s var(--ease); }
.dcard:hover { background: rgba(255,255,255,.05); }
.dcard__src { margin-top: auto; font-size: .62rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-dim); opacity: .75; }
.dcard__txt { color: var(--on-dark-dim); font-size: .98rem; }
.dcard--feature { grid-column: span 5; justify-content: center; }
.dcard__k { font-size: .66rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.dcard__big { font-family: var(--font-display); font-weight: 400; font-size: clamp(4rem, 4vw + 3rem, 8rem); line-height: .9; color: var(--cream); }
.dcard__big .dcard__u { font-size: .32em; color: var(--gold); margin-left: .12em; }
.dcard--graph { grid-column: span 7; }
.dcard__head { display: flex; flex-direction: column; gap: .45rem; }
.graph__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.2rem, 1rem + .8vw, 1.7rem); line-height: 1.12; color: var(--cream); }
.graph { position: relative; margin-top: .2rem; }
.graph__svg { width: 100%; height: clamp(120px, 15vw, 180px); display: block; overflow: visible; }
.graph__area { fill: url(#gfill); opacity: 0; }
.graph__line { fill: none; stroke: var(--gold); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.graph__x { display: flex; justify-content: space-between; margin-top: .6rem; font-size: .6rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--on-dark-dim); }
.dcard--sm { grid-column: span 4; }
.dcard--cta { grid-column: span 12; background: var(--gold); color: var(--navy); flex-direction: row; align-items: center; justify-content: space-between; gap: 1.4rem; flex-wrap: wrap; }
.dcard__cta { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.3rem, 1rem + 1.2vw, 2.1rem); line-height: 1.1; color: var(--navy); max-width: 24ch; }
.btn--ink { background: var(--navy); color: var(--cream); }
.btn--ink:hover { background: var(--navy-deep); }
.ring { position: relative; width: clamp(94px, 11vw, 132px); aspect-ratio: 1; flex: 0 0 auto; }
.ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring__bg { fill: none; stroke: rgba(255,255,255,.12); stroke-width: 8; }
.ring__val { fill: none; stroke: var(--gold); stroke-width: 8; stroke-linecap: round; stroke-dasharray: 327; stroke-dashoffset: 327; }
.ring__num { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-display); font-size: clamp(1.6rem, 2.4vw, 2.2rem); color: var(--cream); }
.ring__v { display: inline; white-space: nowrap; }
.ring__u { font-size: .55em; margin: 0; }
@media (max-width: 900px) {
  .data__grid { grid-template-columns: repeat(2, 1fr); }
  .dcard--feature, .dcard--graph, .dcard--cta { grid-column: span 2; }
  .dcard--sm { grid-column: span 1; }
}
@media (max-width: 560px) {
  .data__grid { grid-template-columns: 1fr; }
  .dcard--feature, .dcard--graph, .dcard--wide, .dcard--sm, .dcard--cta { grid-column: span 1; }
}

/* ---------- Bandeau cookies ---------- */
.cookiebar { position: fixed; left: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 9990; display: flex; align-items: center; gap: clamp(1rem, 3vw, 2rem); flex-wrap: wrap; justify-content: space-between; max-width: 1040px; margin: 0 auto; padding: 1.1rem 1.4rem; background: var(--navy-card); border: 1px solid var(--line-dark); border-radius: 16px; box-shadow: 0 24px 60px rgba(0,0,0,.4); opacity: 0; transform: translateY(20px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.cookiebar.is-in { opacity: 1; transform: translateY(0); }
.cookiebar__txt { font-family: var(--font-sans); font-size: .9rem; line-height: 1.55; color: var(--cream); margin: 0; flex: 1 1 320px; }
.cookiebar__txt a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.cookiebar__btns { display: flex; gap: .7rem; flex-shrink: 0; }
.cookiebar__btn { font-family: var(--font-sans); font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: .8em 1.6em; border-radius: 100px; cursor: pointer; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }
.cookiebar__btn--accept { background: var(--gold); color: var(--navy); border: 1px solid var(--gold); }
.cookiebar__btn--accept:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.cookiebar__btn--ghost { background: transparent; color: var(--cream); border: 1px solid var(--line-dark); }
.cookiebar__btn--ghost:hover { border-color: var(--cream); }
@media (max-width: 560px) {
  .cookiebar { flex-direction: column; align-items: stretch; }
  .cookiebar__btns { justify-content: stretch; }
  .cookiebar__btn { flex: 1; }
}

/* ============ PAGE SERVICE (Création de site web) ============ */
/* Nav lisible sur hero sombre des pages service */
body[data-page="service"] .nav:not(.is-scrolled) .nav__brand-txt,
body[data-page="service"] .nav:not(.is-scrolled) .nav__links a { color: var(--cream); }
body[data-page="service"] .nav:not(.is-scrolled) .nav__links a.is-current { color: #fff; }
body[data-page="service"] .nav:not(.is-scrolled) .logo-mark { filter: brightness(0) invert(1); }
body[data-page="service"] .nav:not(.is-scrolled) .nav__burger span { background: var(--cream); }

/* Hero service — 2 colonnes alignées à gauche, tient dans un écran (pas de scroll) */
.page-hero.svhero { min-height: 100svh; display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + var(--topbar-h) + .5rem); padding-bottom: 1.5rem; }
.svhero { color: var(--on-dark); text-align: left; background:
    radial-gradient(70% 60% at 80% 10%, rgba(242,161,0,.12), transparent 60%),
    radial-gradient(80% 70% at 10% 0%, rgba(14,95,216,.16), transparent 62%); }
/* Fond : scène photo de l'univers du faux-site (boutique), sombre = même palette = harmonie */
.svhero__bg { position: absolute; inset: 0; z-index: 0; background: url("../img/shp-boutique.webp") center / cover no-repeat; filter: brightness(.5) saturate(1.08); opacity: .9; }
.svhero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18,22,30,.92) 0%, rgba(18,22,30,.6) 42%, rgba(18,22,30,.2) 100%),
    linear-gradient(180deg, rgba(18,22,30,.3) 0%, rgba(18,22,30,.45) 78%, var(--navy) 100%); }
.svhero__inner { position: relative; z-index: 2; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: center; }
.svhero__copy { max-width: 34ch; }

.svhero .crumb { font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(244,242,236,.4); display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.svhero .crumb a { color: inherit; transition: color .3s var(--ease); }
.svhero .crumb a:hover { color: var(--gold); }
.svhero .crumb [aria-current] { color: rgba(244,242,236,.68); }
.svhero .crumb__sep { opacity: .4; }

.svhero__eyebrow { color: var(--gold); margin: 1.1rem 0 0; }
.svhero .svhero__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.85rem, 1.1rem + 1.7vw, 2.7rem); line-height: 1.08; letter-spacing: -0.015em; color: var(--cream); margin: .7rem 0 0; max-width: 20ch; }
.svhero__title .italic { font-style: italic; color: var(--gold); }
.svhero .svhero__sub { max-width: 42ch; margin: 1rem 0 0; color: var(--on-dark-dim); font-size: clamp(.94rem, 0.92rem + 0.14vw, 1.04rem); line-height: 1.55; }
.svhero__cta { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.7rem; }
.svhero__trust { display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; margin: 1.4rem 0 0; list-style: none; padding: 0; }
.svhero__trust li { display: inline-flex; align-items: center; gap: .55rem; font-size: .7rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--on-dark-dim); }

.svhero__showcase { position: relative; width: 100%; max-width: 560px; margin-left: auto; }
.svhero__mk { width: 100%; margin: 0; }
.svhero__mk .mk__view { height: clamp(320px, 50svh, 500px); }
.svhero__scroll { animation: svScroll 18s ease-in-out infinite alternate; }
@keyframes svScroll { 0% { transform: translateY(0); } 100% { transform: translateY(-42%); } }
@media (prefers-reduced-motion: reduce) { .svhero__scroll { animation: none; } }
.svhero__pop { position: absolute; top: 11%; left: -11%; z-index: 5; background: #fff; color: var(--ink); border-radius: 12px; padding: .7rem .95rem; box-shadow: 0 26px 54px -18px rgba(0,0,0,.55); display: flex; flex-direction: column; gap: .2rem; animation: svFloat 4.5s ease-in-out infinite; }
.svhero__pop-k { font-size: .58rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #5C7A6B; display: flex; align-items: center; gap: .4rem; }
.svhero__pop-k::before { content: "✓"; display: grid; place-items: center; width: 14px; height: 14px; border-radius: 50%; background: #5C7A6B; color: #fff; font-size: .5rem; }
.svhero__pop-v { font-size: .82rem; font-weight: 600; }
@keyframes svFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.svhero__browser { position: relative; border-radius: 14px; overflow: hidden; background: #0c1016; border: 1px solid rgba(255,255,255,.09); box-shadow: 0 60px 130px -45px rgba(0,0,0,.9), 0 2px 0 0 rgba(255,255,255,.04) inset; }
.svhero__bar { display: flex; align-items: center; gap: .45rem; padding: .7rem .9rem; background: #11161e; border-bottom: 1px solid rgba(255,255,255,.06); }
.svhero__bar i { width: 10px; height: 10px; border-radius: 50%; background: #2c333f; }
.svhero__bar i:nth-child(1) { background: #f5635e; } .svhero__bar i:nth-child(2) { background: #f6be40; } .svhero__bar i:nth-child(3) { background: #3dc94a; }
.svhero__url { margin: 0 auto; font-size: .62rem; letter-spacing: .03em; color: var(--on-dark-dim); background: #0c1418; padding: .4em 1.3em; border-radius: 100px; }
.svhero__screen { width: 100%; height: clamp(220px, 42svh, 430px); background-size: 116%; background-position: center 0%; background-repeat: no-repeat; animation: svPan 22s ease-in-out infinite alternate; }
@keyframes svPan { from { background-position: center 0%; } to { background-position: center 100%; } }
@media (prefers-reduced-motion: reduce) { .svhero__screen { animation: none; } }
.svhero__tag { position: absolute; right: -.6rem; bottom: -.9rem; z-index: 4; background: var(--gold); color: var(--navy); font-family: var(--font-sans); font-weight: 600; font-size: .74rem; letter-spacing: .04em; padding: .8em 1.4em; border-radius: 100px; box-shadow: 0 24px 44px -16px rgba(0,0,0,.65); }
.svhero__showcase::after { content: ""; position: absolute; left: 50%; bottom: -10%; width: 80%; height: 60px; transform: translateX(-50%); background: radial-gradient(closest-side, rgba(242,161,0,.22), transparent); filter: blur(8px); z-index: -1; }

/* Image encadrée réutilisée par la bande SEO */
.svhero__media { position: relative; }
.svhero__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 22px; box-shadow: 0 48px 100px -36px rgba(0,0,0,.7); }

/* Bandeau preuve (mini-stats) */
.svstats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 3vw, 2.4rem); margin-top: clamp(2.5rem, 6vw, 4rem); }
.svstat__n { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.2rem, 1.4rem + 3vw, 3.6rem); line-height: 1; color: var(--navy); }
.sec--dark .svstat__n { color: var(--cream); }
.svstat__l { font-size: .82rem; color: var(--on-light-dim); margin-top: .5rem; max-width: 22ch; }
.sec--dark .svstat__l { color: var(--on-dark-dim); }

/* Grille "ce qui est inclus" */
.feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.6rem); }
.feat { background: var(--cream); border: 1px solid var(--line-light); border-radius: 18px; padding: clamp(1.6rem, 2.6vw, 2.3rem); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.feat:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -34px rgba(20,24,33,.4); }
.feat__ico { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; background: var(--navy); color: var(--gold); margin-bottom: 1.3rem; }
.feat__ico svg { width: 24px; height: 24px; }
.feat h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.35rem; color: var(--navy); margin-bottom: .5rem; }
.feat p { color: var(--ink-soft); font-size: .96rem; line-height: 1.62; }

/* Process / étapes — Le tracé qui serpente */
.journey-head { margin-bottom: clamp(3rem, 6vw, 5rem); }
.journey { position: relative; }

/* La ligne dessinée dynamiquement (SVG plein cadre, tracé calculé en JS) */
.journey__line { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; z-index: 0; }
.journey__path--ghost { stroke: var(--line-dark); stroke-width: 2; }
.journey__path--draw  { stroke: var(--gold); stroke-width: 2.5; stroke-linecap: round; }

/* Une étape = un point sur la ligne + une carte qui s'en écarte */
.jstep { position: relative; z-index: 1; display: grid; align-items: center; min-height: clamp(180px, 24vw, 240px); }
.jstep--l { grid-template-columns: minmax(0, 1fr) 46%; }
.jstep--r { grid-template-columns: 46% minmax(0, 1fr); }
.jstep--l .jstep__c { grid-column: 1; text-align: right; margin-right: clamp(2rem, 5vw, 4rem); align-items: flex-end; }
.jstep--r .jstep__c { grid-column: 2; text-align: left;  margin-left: clamp(2rem, 5vw, 4rem);  align-items: flex-start; }

.jstep__c { display: flex; flex-direction: column; max-width: 42ch; }
.jstep__c .jstep__k { font-family: var(--font-sans); font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .9rem; }
.jstep__c h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem, 2.6vw, 2.3rem); line-height: 1.08; color: var(--cream); margin-bottom: .7rem; }
.jstep__c p { color: var(--on-dark-dim); font-size: 1.02rem; line-height: 1.6; }

/* Le point d'ancrage : alterne de part et d'autre de l'axe central */
.jstep__dot { position: absolute; top: 50%; width: 16px; height: 16px; border-radius: 50%; background: var(--navy); border: 2.5px solid var(--gold); transform: translate(-50%, -50%) scale(.5); opacity: .35; transition: transform .5s var(--ease), opacity .5s var(--ease), background-color .5s var(--ease); z-index: 2; }
.jstep--l .jstep__dot { left: 61%; }
.jstep--r .jstep__dot { left: 39%; }
.jstep__dot.is-reached { transform: translate(-50%, -50%) scale(1); opacity: 1; background: var(--gold); box-shadow: 0 0 0 6px rgba(242, 161, 0, .16); }

/* Le chiffre géant en filigrane, calé derrière la carte */
.jstep__ghost { position: absolute; top: 50%; transform: translateY(-52%); font-family: var(--font-display); font-weight: 600; font-size: clamp(7rem, 16vw, 14rem); line-height: .7; color: transparent; -webkit-text-stroke: 1.5px rgba(244, 242, 236, .09); pointer-events: none; z-index: 0; user-select: none; }
.jstep--l .jstep__ghost { right: 50%; margin-right: clamp(1rem, 4vw, 3.5rem); }
.jstep--r .jstep__ghost { left: 50%;  margin-left: clamp(1rem, 4vw, 3.5rem); }

/* Reveal directionnel : les cartes gauche/droite entrent de leur côté */
.jstep[data-reveal] { opacity: 0; }
.jstep--l[data-reveal] { transform: translateX(-32px); }
.jstep--r[data-reveal] { transform: translateX(32px); }

@media (max-width: 720px) {
  .jstep, .jstep--l, .jstep--r { grid-template-columns: 1fr; min-height: 0; padding-left: 2.4rem; margin-bottom: 2.6rem; }
  .jstep--l .jstep__c, .jstep--r .jstep__c { grid-column: 1; text-align: left; align-items: flex-start; margin: 0; max-width: none; }
  .jstep--l .jstep__dot, .jstep--r .jstep__dot { left: .8rem; top: .4rem; transform: translate(-50%, 0) scale(.5); }
  .jstep--l .jstep__dot.is-reached, .jstep--r .jstep__dot.is-reached { transform: translate(-50%, 0) scale(1); }
  .jstep--l .jstep__ghost, .jstep--r .jstep__ghost { left: auto; right: 0; margin: 0; font-size: clamp(5rem, 26vw, 8rem); top: -1.2rem; transform: none; opacity: .8; }
}

/* SEO / GEO */
.seoband .container { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.seolist { list-style: none; display: grid; gap: 1.1rem; }
.seolist li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; color: var(--ink-soft); font-size: 1rem; line-height: 1.55; }
.sec--dark .seolist li { color: var(--on-dark-dim); }
.seolist svg { width: 22px; height: 22px; color: var(--gold); margin-top: .15rem; flex-shrink: 0; }
.seolist b { color: var(--navy); font-weight: 600; }
.sec--dark .seolist b { color: var(--cream); }

/* Types de sites (cartes image) */
.types { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.9rem, 2vw, 1.4rem); }
.typecard { position: relative; border-radius: 18px; overflow: hidden; min-height: 280px; display: flex; align-items: flex-end; padding: 1.5rem; }
.typecard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .7s var(--ease); }
.typecard:hover img { transform: scale(1.06); }
.typecard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,24,33,0) 28%, rgba(20,24,33,.85)); z-index: 1; }
.typecard__t { position: relative; z-index: 2; }
.typecard h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; color: #fff; margin-bottom: .25rem; }
.typecard p { color: rgba(255,255,255,.82); font-size: .86rem; line-height: 1.5; }

/* Formules */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.6rem); align-items: stretch; }
.plans--duo { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 860px; margin-inline: auto; }
.plan { background: var(--cream); border: 1px solid var(--line-light); border-radius: 20px; padding: clamp(1.8rem, 3vw, 2.5rem); display: flex; flex-direction: column; }
.plan--feature { background: var(--navy); border-color: var(--navy); color: var(--cream); }
.plan__name { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; color: var(--navy); margin-bottom: .35rem; }
.plan--feature .plan__name { color: var(--cream); }
.plan__for { font-size: .86rem; color: var(--ink-soft); margin-bottom: 1.5rem; min-height: 2.6em; }
.plan--feature .plan__for { color: var(--on-dark-dim); }
.plan__price { font-family: var(--font-display); font-size: 1.25rem; color: var(--bordeaux); margin-bottom: 1.6rem; }
.plan--feature .plan__price { color: var(--gold-soft); }
.plan__list { list-style: none; display: grid; gap: .75rem; margin-bottom: 2rem; }
.plan__list li { padding-left: 1.6rem; position: relative; font-size: .93rem; color: var(--ink-soft); line-height: 1.45; }
.plan--feature .plan__list li { color: #E4E0D5; }
.plan__list li::before { content: ""; position: absolute; left: 0; top: .35em; width: 11px; height: 7px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }
.plan .btn { margin-top: auto; }
.plan__badge { display: inline-block; align-self: flex-start; background: var(--gold); color: var(--navy); font-size: .66rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: .35em 1em; border-radius: 100px; margin-bottom: 1.2rem; }

/* FAQ */
.faq { max-width: 840px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line-light); }
.faq__item summary { cursor: pointer; list-style: none; padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1.4rem; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.1rem, 1.8vw, 1.5rem); color: var(--navy); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--bordeaux); font-size: 1.7rem; line-height: 1; flex-shrink: 0; transition: transform .3s var(--ease); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 0 1.6rem; color: var(--ink-soft); max-width: 74ch; line-height: 1.68; }

@media (max-width: 980px) {
  .feats { grid-template-columns: repeat(2, 1fr); }
  .types { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .svhero .container, .seoband .container { grid-template-columns: 1fr; }
  .svhero__media { order: -1; max-width: 420px; }
  .plans { grid-template-columns: 1fr; }
  .plan--feature { order: -1; }
}
@media (max-width: 600px) {
  .feats, .types { grid-template-columns: 1fr; }
  .svstats { grid-template-columns: 1fr 1fr; }
  /* Hero service : maquette calme et compacte sous le message (mobile) */
  .svhero__pop { display: none; }
  .svhero__scroll, .svhero__screen { animation: none; }
  .svhero__mk .mk__view { height: clamp(240px, 38svh, 320px); }
  .svhero__showcase { max-width: 360px; margin-inline: auto; }
  .svhero__tag { right: 0; }
}

/* =========================================================
   PAGE AGENTS IA
   ========================================================= */

/* --- Hero : console d'activité de l'agent --- */
.agconsole { background: #fff; font-family: var(--font-sans); padding-bottom: 1rem; }
.agconsole__head { position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: .8rem 1rem; background: #0E1117; color: var(--cream); }
.agconsole__id { display: inline-flex; align-items: center; gap: .5rem; font-size: .74rem; font-weight: 600; letter-spacing: .02em; }
.agconsole__live { width: 8px; height: 8px; border-radius: 50%; background: #2ec26b; box-shadow: 0 0 0 0 rgba(46,194,107,.6); animation: agPulse 2s infinite; }
@keyframes agPulse { 0% { box-shadow: 0 0 0 0 rgba(46,194,107,.55); } 70% { box-shadow: 0 0 0 7px rgba(46,194,107,0); } 100% { box-shadow: 0 0 0 0 rgba(46,194,107,0); } }
.agconsole__st { font-size: .6rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #2ec26b; }
.agrow { display: grid; grid-template-columns: auto auto 1fr; align-items: start; gap: .55rem; padding: .62rem 1rem; border-bottom: 1px solid #eef0f2; font-size: .72rem; line-height: 1.4; color: #37414d; }
.agrow__t { color: #9aa2ad; font-variant-numeric: tabular-nums; padding-top: .1rem; }
.agrow__d { width: 8px; height: 8px; border-radius: 50%; background: #cfd6dd; margin-top: .35rem; }
.agrow__d--new { background: #0E5FD8; } .agrow__d--hot { background: #F5631E; } .agrow__d--ok { background: #2ec26b; }
.agrow__x b { color: #141821; font-weight: 600; }
.agtag { display: inline-block; margin-left: .3rem; font-size: .58rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .1em .6em; border-radius: 100px; vertical-align: middle; }
.agtag--hot { background: #FCE3D6; color: #C0410F; } .agtag--ok { background: #D6F3E1; color: #1B7D45; }

/* --- Section « ce que ça vous coûte » : fuites en escalier --- */
.leaks { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3.5vw, 3rem); align-items: start; }
.leak { border-top: 2px solid var(--bordeaux); padding-top: 1.4rem; }
.leak--b { margin-top: clamp(0px, 4vw, 3.2rem); }
.leak--c { margin-top: clamp(0px, 8vw, 6.4rem); }
.leak__n { font-family: var(--font-display); font-weight: 500; font-size: clamp(3.2rem, 7vw, 5.4rem); line-height: .9; color: var(--bordeaux); display: flex; align-items: baseline; gap: .1em; margin-bottom: .9rem; }
.leak__n i { font-style: normal; font-size: .32em; font-weight: 600; color: var(--on-light-dim); font-family: var(--font-sans); letter-spacing: .02em; }
.leak__l { color: var(--ink-soft); font-size: 1rem; line-height: 1.6; max-width: 34ch; }

/* --- Section démo : conversation qui se joue --- */
.demo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.demo__aside .lead { margin-bottom: 1.8rem; }
.demo__pts { list-style: none; display: grid; gap: .85rem; }
.demo__pts li { display: flex; align-items: center; gap: .7rem; color: var(--cream); font-size: .98rem; }
.demo__pts li span { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: rgba(14,95,216,.18); border: 1px solid rgba(14,95,216,.5); position: relative; }
.demo__pts li span::after { content: ""; position: absolute; inset: 0; margin: auto; width: 7px; height: 4px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: translateY(-1px) rotate(-45deg); }
.demo__chat { background: #12161f; border: 1px solid var(--line-dark); border-radius: 22px; padding: 1.1rem; box-shadow: 0 48px 90px -40px rgba(0,0,0,.7); }
.agchat__top { display: flex; align-items: center; gap: .7rem; padding: .3rem .4rem 1rem; border-bottom: 1px solid var(--line-dark); margin-bottom: 1rem; }
.agchat__ava { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-size: .9rem; color: #fff; background: linear-gradient(135deg, #0E5FD8, #0A3F92); }
.agchat__who { display: flex; flex-direction: column; line-height: 1.3; }
.agchat__who b { color: var(--cream); font-size: .95rem; font-weight: 600; }
.agchat__who i { color: var(--on-dark-dim); font-size: .74rem; font-style: normal; }
.agchat__scroll { display: flex; flex-direction: column; gap: .7rem; }
.bub { max-width: 82%; padding: .7rem .95rem; font-size: .92rem; line-height: 1.5; border-radius: 16px; }
.bub--in { align-self: flex-start; background: #232b38; color: #E4E7EC; border-bottom-left-radius: 5px; }
.bub--out { align-self: flex-end; background: #0E5FD8; color: #fff; border-bottom-right-radius: 5px; }
.agact { align-self: stretch; margin-top: .3rem; display: flex; align-items: center; gap: .55rem; background: rgba(46,194,107,.12); border: 1px solid rgba(46,194,107,.4); color: #8fe6b1; border-radius: 12px; padding: .7rem .9rem; font-size: .82rem; font-weight: 500; }
.agact__c { flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; background: #2ec26b; color: #08110b; display: grid; place-items: center; font-size: .7rem; font-weight: 700; }
.agchat__foot { margin-top: 1rem; padding-top: .9rem; border-top: 1px solid var(--line-dark); color: var(--gold-soft); font-size: .84rem; font-weight: 500; }

/* --- Section équipe d'agents --- */
.crew { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2.4vw, 1.6rem); }
.crewcard { background: var(--cream); border: 1px solid var(--line-light); border-radius: 20px; padding: clamp(1.5rem, 2.6vw, 2.1rem); }
.crewcard__badge { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; color: #fff; background: var(--c, #0E5FD8); margin-bottom: 1.1rem; box-shadow: 0 10px 22px -10px var(--c, #0E5FD8); }
.crewcard__badge svg { width: 24px; height: 24px; }
.crewcard__role { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.3rem, 2.2vw, 1.7rem); color: var(--navy); margin-bottom: .5rem; }
.crewcard__d { color: var(--ink-soft); font-size: .96rem; line-height: 1.6; margin-bottom: 1.2rem; }
.crewcard__tasks { list-style: none; display: grid; gap: .55rem; }
.crewcard__tasks li { position: relative; padding-left: 1.5rem; font-size: .9rem; color: var(--on-light-dim); line-height: 1.45; }
.crewcard__tasks li::before { content: ""; position: absolute; left: 0; top: .35em; width: 10px; height: 6px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }

/* --- Section « comment je les construis » + schéma --- */
.build { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.guarantees { list-style: none; display: grid; gap: 1.1rem; margin-top: 2rem; }
.guarantees li { display: grid; grid-template-columns: auto 1fr; gap: .8rem; align-items: start; color: var(--on-dark-dim); font-size: 1rem; line-height: 1.55; }
.guarantees li b { color: var(--cream); font-weight: 600; }
.guarantees svg { width: 22px; height: 22px; color: var(--gold); margin-top: .15rem; }
.wire { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: clamp(.6rem, 2vw, 1.4rem); background: rgba(255,255,255,.02); border: 1px solid var(--line-dark); border-radius: 22px; padding: clamp(1.4rem, 3vw, 2.2rem); }
.wire__col { display: flex; flex-direction: column; gap: .55rem; }
.wire__col--out { align-items: flex-end; text-align: right; }
.wire__lab { font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-dim); margin-bottom: .3rem; }
.wire__chip { background: #1b2230; border: 1px solid var(--line-dark); color: #C9CFDA; font-size: .8rem; font-weight: 500; padding: .5em .9em; border-radius: 10px; }
.wire__chip--o { border-color: rgba(242,161,0,.4); color: var(--gold-soft); background: rgba(242,161,0,.08); }
.wire__core { display: grid; place-items: center; }
.wire__brain { width: clamp(80px, 12vw, 104px); aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; text-align: center; font-family: var(--font-display); font-size: .82rem; line-height: 1.1; color: var(--navy); font-weight: 600; background: radial-gradient(circle at 35% 30%, var(--gold-soft), var(--gold)); box-shadow: 0 0 0 8px rgba(242,161,0,.12), 0 20px 40px -14px rgba(242,161,0,.5); }

@media (max-width: 860px) {
  .demo, .build { grid-template-columns: 1fr; }
  .demo__chat { order: -1; }
}
@media (max-width: 680px) {
  .leaks { grid-template-columns: 1fr; }
  .leak--b, .leak--c { margin-top: 0; }
  .crew { grid-template-columns: 1fr; }
  .wire { grid-template-columns: 1fr; text-align: left; gap: 1.1rem; }
  .wire__col--out { align-items: flex-start; text-align: left; }
  .wire__core { justify-items: start; }
}

/* =========================================================
   PAGE IDENTITÉ DE MARQUE
   ========================================================= */

/* --- Hero : brand board --- */
.brandboard { position: relative; background: #F7F3EA; border-radius: 20px; padding: clamp(1.4rem, 3vw, 2rem); box-shadow: 0 44px 90px -40px rgba(0,0,0,.6); display: grid; gap: 1.1rem; }
.bb__logo { display: flex; align-items: center; gap: .9rem; padding-bottom: 1.1rem; border-bottom: 1px solid rgba(35,32,28,.12); }
.bb__mark { flex: 0 0 auto; width: 54px; height: 54px; border-radius: 50%; background: #23201C; color: #ECE4D6; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; letter-spacing: .02em; }
.bb__wm { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; line-height: .95; color: #23201C; text-transform: uppercase; letter-spacing: .02em; }
.bb__row { display: flex; gap: .5rem; }
.bb__pal { flex: 1; height: 34px; border-radius: 7px; background: var(--c); box-shadow: inset 0 0 0 1px rgba(0,0,0,.06); }
.bb__type { display: flex; align-items: center; gap: 1rem; }
.bb__aa { font-family: var(--font-display); font-size: 2.8rem; line-height: 1; color: #B4472B; }
.bb__meta { font-size: .78rem; color: #6a6459; line-height: 1.5; } .bb__meta b { color: #23201C; }
.bb__note { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: #8a8377; }

/* --- « L'équation de marque » (remplace la liste numérotée) --- */
.brandeq { display: flex; flex-wrap: wrap; align-items: stretch; justify-content: center; gap: clamp(.6rem, 1.4vw, 1rem); }
.eqchip { flex: 1 1 150px; max-width: 210px; background: var(--cream); border: 1px solid var(--line-light); border-radius: 16px; padding: clamp(1.1rem, 2vw, 1.5rem) clamp(.9rem, 1.6vw, 1.2rem); display: flex; flex-direction: column; align-items: center; text-align: center; gap: .55rem; }
.eqchip__tok { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; border-radius: 12px; overflow: hidden; }
.eqchip__tok img { width: 100%; height: 100%; object-fit: cover; }
.eqchip__tok--pal { gap: 3px; }
.eqchip__tok--pal i { width: 9px; height: 20px; border-radius: 3px; background: var(--c); }
.eqchip__tok--type { font-family: var(--font-display); font-weight: 500; font-size: 1.7rem; color: var(--navy); }
.eqchip__tok--tone { font-family: var(--font-display); font-weight: 600; font-size: 2.4rem; line-height: 1; color: var(--bordeaux); }
.eqchip__tok--supp { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; width: 40px; height: 40px; }
.eqchip__tok--supp b { background: var(--navy); border-radius: 4px; }
.eqchip__tok--supp b:nth-child(2) { background: var(--bordeaux); }
.eqchip__nm { font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; color: var(--navy); }
.eqchip__d { font-size: .82rem; color: var(--on-light-dim); line-height: 1.4; }
.eqop { display: flex; align-items: center; font-family: var(--font-display); font-weight: 400; font-size: clamp(1.4rem, 2.6vw, 2rem); color: var(--gold); }
.eqop--eq { color: var(--bordeaux); }
.eqres { flex: 1 1 200px; max-width: 240px; align-self: center; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.15; color: var(--navy); }
@media (max-width: 760px) {
  .brandeq { flex-direction: column; align-items: stretch; }
  .eqchip, .eqres { max-width: none; }
  .eqchip { flex-direction: row; text-align: left; justify-content: flex-start; gap: 1rem; }
  .eqchip__d { display: none; }
  .eqop { justify-content: center; }
  .eqres { justify-content: center; text-align: center; padding-top: .4rem; }
}

/* --- Spécimens vivants --- */
.spec-sec .section-title, .spec-sec .lead { color: var(--cream); }
.specimen { display: grid; grid-template-columns: 1.1fr 1fr; grid-template-areas: "logos pal" "logos type"; gap: clamp(.9rem, 2vw, 1.4rem); }
.specimen__logos { grid-area: logos; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr auto; gap: .9rem; }
.spl { border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem; padding: 1.6rem; text-align: center; }
.spl__mark { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.spl__wm { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; line-height: .95; font-size: 1.15rem; }
.spl--light { background: #ECE4D6; color: #23201C; } .spl--light .spl__mark { background: #23201C; color: #ECE4D6; }
.spl--dark { background: #23201C; color: #ECE4D6; } .spl--dark .spl__mark { background: #B4472B; color: #fff; }
.spl--mono { grid-column: span 2; background: transparent; border: 1px dashed var(--line-dark); color: var(--cream); font-family: var(--font-display); font-weight: 600; font-size: 1.8rem; letter-spacing: .1em; }
.specimen__pal { grid-area: pal; } .specimen__type { grid-area: type; }
.specimen__pal, .specimen__type { background: rgba(255,255,255,.03); border: 1px solid var(--line-dark); border-radius: 16px; padding: clamp(1.1rem, 2vw, 1.5rem); }
.spec-lab { display: block; font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark-dim); margin-bottom: 1rem; }
.swrow { display: flex; gap: .5rem; }
.sw { flex: 1; border-radius: 10px; background: var(--c); aspect-ratio: 3/4; display: flex; flex-direction: column; justify-content: flex-end; padding: .5rem; gap: .1rem; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); transition: transform .3s var(--ease); }
.sw:hover { transform: translateY(-5px); }
.sw i { font-style: normal; font-size: .62rem; font-weight: 600; color: #fff; opacity: .95; }
.sw em { font-style: normal; font-size: .55rem; color: rgba(255,255,255,.75); font-variant-numeric: tabular-nums; }
.sw--light i, .sw--light em { color: #4a453b; }
.typspec { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; }
.typspec__col { display: flex; flex-direction: column; }
.typspec__aa { font-size: 3.4rem; line-height: 1; color: var(--gold-soft); }
.typspec__nm { font-weight: 600; color: var(--cream); margin-top: .3rem; }
.typspec__use { font-size: .76rem; color: var(--on-dark-dim); }
.typspec__pan { grid-column: span 2; font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: #E4DED0; border-top: 1px solid var(--line-dark); padding-top: .9rem; }
.spec-cap { text-align: center; margin-top: 1.5rem; font-size: .82rem; color: var(--on-dark-dim); } .spec-cap b { color: var(--gold-soft); }

/* --- Avant / après --- */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.4vw, 1.8rem); }
.ba__card { border-radius: 20px; padding: clamp(1.4rem, 2.6vw, 2rem); border: 1px solid var(--line-light); position: relative; }
.ba--before { background: #EEE9DE; }
.ba--after { background: #fff; box-shadow: 0 34px 70px -34px rgba(0,0,0,.35); }
.ba__tag { display: inline-block; font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .3em .9em; border-radius: 100px; margin-bottom: 1.2rem; }
.ba__tag--ko { background: #E4D9CA; color: #9a7d55; } .ba__tag--ok { background: var(--navy); color: var(--gold-soft); }
.ba__stage { min-height: 150px; border-radius: 14px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .3rem; text-align: center; margin-bottom: 1.3rem; padding: 1.4rem; }
.ba--before .ba__stage { background: repeating-linear-gradient(45deg, #e7e0d3, #e7e0d3 10px, #e2dace 10px, #e2dace 20px); }
.ba__badlogo { font-family: Arial, sans-serif; font-weight: 700; font-size: 1.9rem; color: #2f6db0; text-transform: lowercase; letter-spacing: -.02em; }
.ba__badsub { font-family: "Comic Sans MS", "Times New Roman", serif; font-size: .82rem; color: #c0392b; }
.ba__stage--brand { background: #23201C; }
.ba__stage--brand .ba__mark { width: 50px; height: 50px; border-radius: 50%; background: #B4472B; color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; margin-bottom: .2rem; }
.ba__wm { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; line-height: .95; font-size: 1.5rem; color: #ECE4D6; }
.ba__slog { font-family: var(--font-display); font-style: italic; font-size: .82rem; color: #C58B4E; margin-top: .3rem; }
.ba__notes { list-style: none; display: grid; gap: .6rem; }
.ba__notes li { position: relative; padding-left: 1.6rem; font-size: .9rem; color: var(--ink-soft); line-height: 1.45; }
.ba--before .ba__notes li::before { content: "✕"; position: absolute; left: 0; top: 0; color: #b98a5a; font-weight: 700; }
.ba--after .ba__notes li::before { content: ""; position: absolute; left: 0; top: .35em; width: 10px; height: 6px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }

/* --- Kit livré --- */
.kit { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.8rem, 1.8vw, 1.2rem); }
.kititem { background: var(--cream); border: 1px solid var(--line-light); border-radius: 16px; padding: 1.3rem; display: flex; flex-direction: column; gap: .3rem; }
.kititem b { color: var(--navy); font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; }
.kititem i { font-style: normal; color: var(--on-light-dim); font-size: .84rem; line-height: 1.5; }
.kit__c { width: 26px; height: 26px; border-radius: 8px; background: var(--gold); display: grid; place-items: center; margin-bottom: .6rem; position: relative; }
.kit__c::after { content: ""; width: 9px; height: 5px; border-left: 2px solid var(--navy); border-bottom: 2px solid var(--navy); transform: translateY(-1px) rotate(-45deg); }

@media (max-width: 980px) {
  .kit { grid-template-columns: repeat(2, 1fr); }
  .idbento { grid-template-columns: repeat(2, 1fr); }
  .idtile--big { grid-row: span 1; grid-column: span 2; }
}
@media (max-width: 860px) {
  .specimen { grid-template-columns: 1fr; grid-template-areas: "logos" "pal" "type"; }
  .ba { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .kit, .idbento { grid-template-columns: 1fr; }
  .idtile--big { grid-column: span 1; }
  .typspec { grid-template-columns: 1fr 1fr; }
}

/* --- Démo « Aube Coffee » : vrai logo (asset) & univers premium --- */
/* Board hero premium (chaud) */
.brandboard--aube { background: #FBF6EC; border: 1px solid rgba(42,33,27,.1); box-shadow: 0 46px 96px -42px rgba(60,40,20,.5); }
.bb__head { display: flex; align-items: center; gap: 1rem; padding-bottom: 1.1rem; border-bottom: 1px solid rgba(42,33,27,.12); }
.bb__logomark { flex: 0 0 auto; width: clamp(56px, 11vw, 72px); height: clamp(56px, 11vw, 72px); border-radius: 12px; overflow: hidden; }
.bb__logomark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bb__wordmark { font-family: var(--font-display); font-weight: 500; line-height: 1; font-size: clamp(2rem, 4.6vw, 2.9rem); color: #2A211B; }
.bb__wordmark em { display: block; font-style: normal; font-family: var(--font-sans); font-weight: 600; font-size: .28em; letter-spacing: .38em; text-transform: uppercase; color: #B4472B; margin-top: .55em; }
.brandboard--aube .bb__note { color: #8a7d6e; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.brandboard--aube .bb__pal { box-shadow: inset 0 0 0 1px rgba(42,33,27,.1); }
.brandboard--aube .bb__meta { color: #8a7d6e; } .brandboard--aube .bb__meta b { color: #2A211B; }

/* Spécimens : logo décliné + packaging (assets réels) */
.specimen__logos { grid-template-rows: auto auto; }
.spl--img, .spl--bag { padding: 0; overflow: hidden; border-radius: 16px; }
.spl--img { aspect-ratio: 3/2; }
.spl--bag { grid-column: span 2; aspect-ratio: 16/9; }
.spl--img img, .spl--bag img { width: 100%; height: 100%; object-fit: cover; display: block; }
.spl--bag img { object-position: center 42%; }
.spec-sec .typspec__aa { color: var(--gold-soft); }

/* Avant / après */
.ba__stage--brand { background: #2A211B; gap: .55rem; }
.ba__lock { display: inline-flex; align-items: center; gap: .6rem; }
.ba__lm { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 9px; overflow: hidden; }
.ba__lm img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-sec .ba__wm { font-family: var(--font-display); font-weight: 500; font-size: 1.6rem; line-height: 1; color: #F1EAD9; }
.ba-sec .ba__wm em { font-style: normal; font-family: var(--font-sans); font-weight: 600; font-size: .42em; letter-spacing: .3em; text-transform: uppercase; color: #C98A4B; margin-left: .1em; }
.ba__stage--brand .ba__slog { font-family: var(--font-sans); font-style: normal; letter-spacing: .06em; font-size: .72rem; color: #C98A4B; margin-top: .4rem; }

/* =========================================================
   PAGE CONTACT (DA vive)
   ========================================================= */
.contact-hero .italic { font-style: italic; color: var(--gold); }
.contact-hero p { margin-top: 1rem; max-width: 52ch; }
.contact__grid { align-items: start; }
.contact__side { display: grid; gap: 2.2rem; align-content: start; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.field__opt { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--on-light-dim); }
.field input::placeholder, .field textarea::placeholder { color: var(--on-light-dim); opacity: .5; }
.contact__next { border-top: 1px solid var(--line-light); padding-top: 1.6rem; }
.contact__nexth { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--on-light-dim); margin-bottom: 1.2rem; }
.contact__next ol { list-style: none; display: grid; gap: 1.1rem; }
.contact__next li { position: relative; padding-left: 1.6rem; color: var(--ink-soft); font-size: .95rem; line-height: 1.5; }
.contact__next li::before { content: ""; position: absolute; left: 0; top: .5em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.contact__next li b { color: var(--navy); font-weight: 600; }
.contact__legal { font-size: .78rem; color: var(--on-light-dim); line-height: 1.5; margin-top: -.2rem; }
.contact__legal a { text-decoration: underline; }

/* Formulaire en carte, champs encadrés bien visibles */
.contact__form { background: #fff; border: 1px solid var(--line-light); border-radius: 20px; padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: 0 30px 70px -42px rgba(0,0,0,.35); gap: 1.2rem; }
.contact__form .field label { color: var(--navy); }
.contact__form .field input,
.contact__form .field select,
.contact__form .field textarea { background: #F7F5EF; border: 1px solid var(--line-light); border-radius: 11px; padding: .72rem .9rem; color: var(--ink); }
.contact__form .field input:focus,
.contact__form .field select:focus,
.contact__form .field textarea:focus { border-color: var(--navy); background: #fff; box-shadow: 0 0 0 3px rgba(20,24,33,.06); }
.contact__form .btn--full { margin-top: .3rem; }

/* Honeypot anti-spam : invisible pour l'humain, rempli par les bots */
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Message de statut du formulaire */
.form__status { margin: -.2rem 0 0; font-size: .9rem; line-height: 1.5; padding: .7rem .9rem; border-radius: 11px; }
.form__status--ok { color: #0d5c33; background: rgba(20,150,80,.1); border: 1px solid rgba(20,150,80,.3); }
.form__status--err { color: #9a2118; background: rgba(200,50,30,.08); border: 1px solid rgba(200,50,30,.28); }

@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

/* =========================================================
   CHATBOT — Assistant SINAY (présent sur toutes les pages)
   ========================================================= */
.chatfab { position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 9985; width: 64px; height: 64px; border-radius: 50%; border: none; padding: 0; cursor: pointer; background: var(--navy); box-shadow: 0 16px 34px -12px rgba(0,0,0,.5); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.chatfab:hover { transform: translateY(-3px) scale(1.03); }
.chatfab img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; object-position: center 20%; display: block; }
.chatfab__pulse { position: absolute; inset: -3px; border-radius: 50%; border: 2px solid var(--gold); opacity: 0; animation: chatPulse 2.8s ease-out infinite; }
@keyframes chatPulse { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(1.4); opacity: 0; } }
.chatfab__badge { position: absolute; top: 0; right: 0; width: 15px; height: 15px; border-radius: 50%; background: var(--gold); border: 2px solid var(--navy); }
.chatfab.is-hidden { transform: scale(0); opacity: 0; pointer-events: none; }
@media (prefers-reduced-motion: reduce) { .chatfab__pulse { animation: none; } }

.chatpanel { position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 9986; width: min(392px, calc(100vw - 2rem)); height: min(620px, calc(100vh - 2rem)); background: #fff; border-radius: 20px; box-shadow: 0 40px 90px -30px rgba(0,0,0,.55); display: flex; flex-direction: column; overflow: hidden; opacity: 0; transform: translateY(18px) scale(.98); transform-origin: bottom right; pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.chatpanel.is-open { opacity: 1; transform: none; pointer-events: auto; }
.chatpanel__head { display: flex; align-items: center; gap: .7rem; padding: .85rem 1rem; background: var(--navy); color: var(--cream); }
.chatpanel__ava { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; object-position: center 20%; flex: 0 0 auto; }
.chatpanel__id { display: flex; flex-direction: column; line-height: 1.25; flex: 1; }
.chatpanel__id b { font-size: .95rem; font-weight: 600; }
.chatpanel__id span { font-size: .72rem; color: var(--on-dark-dim); display: flex; align-items: center; gap: .35rem; }
.chatpanel__id span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #2ec26b; }
.chatpanel__x { background: transparent; border: none; color: var(--on-dark-dim); font-size: 1.5rem; cursor: pointer; line-height: 1; padding: .1rem .4rem; border-radius: 8px; }
.chatpanel__x:hover { color: #fff; background: rgba(255,255,255,.1); }
.chatpanel__body { flex: 1; overflow-y: auto; padding: 1.1rem; display: flex; flex-direction: column; gap: .55rem; background: #F7F5EF; }
.cbub { max-width: 84%; padding: .65rem .9rem; font-size: .92rem; line-height: 1.5; border-radius: 15px; white-space: pre-wrap; word-wrap: break-word; }
.cbub--bot { align-self: flex-start; background: #fff; color: var(--ink); border-bottom-left-radius: 5px; box-shadow: 0 2px 10px -5px rgba(0,0,0,.18); }
.cbub--user { align-self: flex-end; background: var(--navy); color: var(--cream); border-bottom-right-radius: 5px; }
.cbub--note { align-self: center; max-width: 100%; text-align: center; background: rgba(46,194,107,.12); color: #1B7D45; font-size: .8rem; border-radius: 10px; }
.ctype { align-self: flex-start; display: flex; gap: 4px; padding: .75rem .9rem; background: #fff; border-radius: 15px; box-shadow: 0 2px 10px -5px rgba(0,0,0,.18); }
.ctype i { width: 7px; height: 7px; border-radius: 50%; background: #b7bcc4; animation: ctypeb 1.2s infinite; }
.ctype i:nth-child(2) { animation-delay: .18s; } .ctype i:nth-child(3) { animation-delay: .36s; }
@keyframes ctypeb { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-4px); opacity: 1; } }
.chatquick { display: flex; flex-wrap: wrap; gap: .5rem; padding: .1rem 1.1rem .5rem; background: #F7F5EF; }
.chatquick button { font-family: inherit; font-size: .82rem; color: var(--navy); background: #fff; border: 1px solid var(--line-light); border-radius: 100px; padding: .45em .9em; cursor: pointer; transition: background .2s, border-color .2s, color .2s; }
.chatquick button:hover { background: var(--navy); border-color: var(--navy); color: var(--cream); }
.chatpanel__foot { display: flex; align-items: flex-end; gap: .5rem; padding: .7rem .8rem; background: #fff; border-top: 1px solid var(--line-light); }
.chatinput { flex: 1; font-family: inherit; font-size: .92rem; line-height: 1.4; border: 1px solid var(--line-light); border-radius: 18px; padding: .55rem .9rem; resize: none; max-height: 96px; outline: none; color: var(--ink); }
.chatinput:focus { border-color: var(--navy); }
.chatsend { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; border: none; background: var(--gold); color: var(--navy); cursor: pointer; display: grid; place-items: center; transition: opacity .2s; }
.chatsend:disabled { opacity: .45; cursor: default; }
.chatsend svg { width: 19px; height: 19px; }
.chatpanel__disc { font-size: .66rem; color: var(--on-light-dim); text-align: center; padding: 0 1rem .55rem; background: #fff; }
@media (max-width: 480px) {
  .chatpanel { right: .5rem; bottom: .5rem; width: calc(100vw - 1rem); height: calc(100dvh - 1rem); }
  .chatfab { right: 1rem; bottom: 1rem; }
}

/* =========================================================
   PAGE AUDIT DE MARQUE
   ========================================================= */

/* --- Jauge de score circulaire (réutilisée) --- */
.gauge { position: relative; flex: 0 0 auto; width: 104px; height: 104px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--accent) calc(var(--v) * 1%), rgba(20,24,33,.1) 0); }
.gauge::before { content: ""; position: absolute; inset: 10px; border-radius: 50%; background: #fff; }
.gauge__v { position: relative; font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; color: var(--navy); line-height: 1; }
.gauge__v i { font-style: normal; font-size: .42em; color: var(--on-light-dim); font-family: var(--font-sans); font-weight: 500; }
.gauge--sm { width: 78px; height: 78px; }
.gauge--sm::before { inset: 8px; }
.gauge--sm .gauge__v { font-size: 1.25rem; }

/* --- Hero : carte de score d'audit --- */
.scorecard { background: #fff; border-radius: 20px; padding: clamp(1.4rem, 3vw, 2rem); box-shadow: 0 46px 96px -42px rgba(0,0,0,.75); display: grid; gap: 1.1rem; }
.scorecard__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.scorecard__lab { display: block; font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--emerald); margin-bottom: .3rem; }
.scorecard__cli { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; color: var(--navy); }
.scorecard__verdict { font-family: var(--font-display); font-style: italic; font-size: 1.02rem; color: var(--ink-soft); border-left: 3px solid var(--gold); padding-left: .8rem; }
.scorecard__bars { display: grid; gap: .7rem; }
.cbar { display: grid; grid-template-columns: 116px 1fr auto; align-items: center; gap: .7rem; }
.cbar__n { font-size: .82rem; color: var(--ink-soft); }
.cbar__track { height: 7px; border-radius: 5px; background: #EDEBE4; overflow: hidden; }
.cbar__track i { display: block; height: 100%; width: var(--w); background: var(--c); border-radius: 5px; }
.cbar__s { font-size: .78rem; font-weight: 600; color: var(--navy); font-variant-numeric: tabular-nums; }

/* --- Symptômes --- */
.symptoms { list-style: none; display: grid; gap: 0; max-width: 900px; }
.symptoms li { display: flex; align-items: center; gap: 1rem; padding: clamp(1rem, 2.4vw, 1.5rem) 0; border-top: 1px solid var(--line-light); font-family: var(--font-display); font-weight: 500; font-size: clamp(1.15rem, 2.4vw, 1.7rem); color: var(--navy); line-height: 1.25; }
.symptoms li:last-child { border-bottom: 1px solid var(--line-light); }
.symptoms__m { flex: 0 0 auto; width: 26px; height: 3px; border-radius: 2px; background: var(--bordeaux); }

/* --- Ce que j'analyse : lignes de rapport --- */
.arows { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(.8rem, 1.8vw, 1.2rem); }
.arow { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; background: var(--cream); border: 1px solid var(--line-light); border-left: 3px solid var(--c, var(--gold)); border-radius: 14px; padding: clamp(1.2rem, 2.2vw, 1.6rem); }
.arow__ico { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; color: #fff; background: var(--c, var(--gold)); }
.arow__ico svg { width: 21px; height: 21px; }
.arow__c h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; color: var(--navy); margin-bottom: .3rem; }
.arow__c p { font-size: .92rem; color: var(--ink-soft); line-height: 1.55; }

/* --- Livrable : rapport --- */
.report { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.report-sec .section-title, .report-sec .lead { color: var(--cream); }
.rdoc { background: #fff; border-radius: 16px; padding: clamp(1.6rem, 3vw, 2.2rem); box-shadow: 0 40px 80px -34px rgba(0,0,0,.7); display: grid; justify-items: start; gap: .5rem; transform: rotate(-2deg); }
.rdoc__k { font-size: .64rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--emerald); }
.rdoc__cli { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; color: var(--navy); }
.rdoc .gauge { margin: .6rem 0; }
.rdoc__note { font-size: .8rem; color: var(--on-light-dim); }
.rdoc__lines { display: grid; gap: .4rem; width: 100%; margin-top: .5rem; }
.rdoc__lines i { height: 7px; border-radius: 4px; background: #ECEAE3; }
.rdoc__lines i:nth-child(2) { width: 80%; } .rdoc__lines i:nth-child(3) { width: 60%; }
.report__list { list-style: none; display: grid; gap: 1.1rem; margin-top: 1.8rem; }
.report__list li { display: grid; grid-template-columns: auto 1fr; gap: .8rem; align-items: start; color: var(--on-dark-dim); font-size: 1rem; line-height: 1.55; }
.report__list li b { color: var(--cream); font-weight: 600; }
.report__list svg { width: 22px; height: 22px; color: var(--gold); margin-top: .15rem; }

/* --- Priorisation --- */
.priob { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.6rem); }
.prcol { background: var(--cream); border: 1px solid var(--line-light); border-radius: 18px; padding: clamp(1.4rem, 2.4vw, 1.9rem); border-top: 3px solid var(--pc); }
.prcol--now { --pc: #D64545; } .prcol--soon { --pc: #E0902B; } .prcol--deep { --pc: #3E9E5E; }
.prcol__h { display: flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; color: var(--navy); }
.prcol__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--pc); }
.prcol__sub { font-size: .82rem; color: var(--on-light-dim); margin: .3rem 0 1.2rem; }
.prcol ul { list-style: none; display: grid; gap: .7rem; }
.prcol li { position: relative; padding-left: 1.4rem; font-size: .93rem; color: var(--ink-soft); line-height: 1.45; }
.prcol li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--pc); }

/* --- Offre unique --- */
.soloffer { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 940px; margin-inline: auto; background: var(--navy); border-radius: 22px; overflow: hidden; }
.soloffer__main { padding: clamp(1.8rem, 3.4vw, 2.8rem); display: flex; flex-direction: column; align-items: flex-start; gap: .6rem; }
.soloffer .soloffer__name { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--cream); }
.soloffer__for { color: var(--on-dark-dim); font-size: .98rem; line-height: 1.5; }
.soloffer__price { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold-soft); margin: .3rem 0 1rem; }
.soloffer__main .btn { margin-top: auto; }
.soloffer__list { list-style: none; display: grid; gap: .85rem; align-content: center; padding: clamp(1.8rem, 3.4vw, 2.8rem); background: var(--navy-card); }
.soloffer__list li { position: relative; padding-left: 1.7rem; color: #E4E0D5; font-size: .95rem; line-height: 1.45; }
.soloffer__list li::before { content: ""; position: absolute; left: 0; top: .35em; width: 11px; height: 7px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }

@media (max-width: 860px) {
  .report { grid-template-columns: 1fr; }
  .report__doc { max-width: 340px; }
  .soloffer { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 680px) {
  .arows, .priob { grid-template-columns: 1fr; }
  .cbar { grid-template-columns: 100px 1fr auto; }
}

/* =========================================================
   PAGE RÉALISATIONS
   ========================================================= */
.case__media { position: relative; border-radius: 18px; overflow: hidden; box-shadow: 0 40px 80px -42px rgba(0,0,0,.45); aspect-ratio: 4/3; background: var(--cream-2); }
.case__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case__ph { position: absolute; inset: 0; display: none; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 2rem; color: var(--on-light-dim); }
.case__media--empty img { display: none; }
.case__media--empty .case__ph { display: flex; }
.sec--light .case__title { color: var(--navy); margin: .55rem 0 1rem; }
.case__lead { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.6; margin-bottom: 1.3rem; max-width: 48ch; }
.case__list { list-style: none; display: grid; gap: .7rem; margin-bottom: 1.8rem; }
.case__list li { position: relative; padding-left: 1.7rem; color: var(--ink-soft); font-size: .95rem; line-height: 1.5; }
.case__list li::before { content: ""; position: absolute; left: 0; top: .4em; width: 11px; height: 7px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }

/* Cartes-expertises cliquables */
.caps { grid-template-columns: repeat(4, 1fr); }
.feat--link { display: flex; flex-direction: column; color: inherit; }
.feat--link:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -30px rgba(0,0,0,.35); }
.feat--link p { flex: 1; }
.feat__go { padding-top: 1rem; font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: var(--bordeaux); }
@media (max-width: 900px) { .caps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .caps { grid-template-columns: 1fr; } }

/* =========================================================
   PAGE À PROPOS
   ========================================================= */
.founder { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.founder__photo { position: relative; border-radius: 22px; overflow: hidden; box-shadow: 0 44px 90px -42px rgba(0,0,0,.5); background: var(--cream-2); }
.founder__photo img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 1/1; }
.founder__badge { position: absolute; left: 1rem; bottom: 1rem; background: var(--navy); color: var(--cream); font-size: .72rem; font-weight: 600; letter-spacing: .06em; padding: .5em 1em; border-radius: 100px; }
.founder__values { list-style: none; display: grid; gap: 1rem; margin-top: 1.8rem; }
.founder__values li { position: relative; padding-left: 1.8rem; color: var(--ink-soft); line-height: 1.55; }
.founder__values li b { color: var(--navy); }
.founder__values li::before { content: ""; position: absolute; left: 0; top: .45em; width: 12px; height: 8px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }
@media (max-width: 820px) { .founder { grid-template-columns: 1fr; } .founder__photo { max-width: 380px; } }

/* feats sur fond sombre (à propos) */
.feats--dark .feat { background: var(--navy-card); border-color: var(--line-dark); }
.feats--dark .feat h3 { color: var(--cream); }
.feats--dark .feat p { color: var(--on-dark-dim); }

/* =========================================================
   PAGE SERVICES (hub) — rangées éditoriales alternées
   ========================================================= */
.srv { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.8rem, 5vw, 4.5rem); align-items: center; padding: clamp(2.4rem, 5vw, 4.2rem) 0; border-top: 1px solid var(--line-light); }
.srv:first-of-type { border-top: none; padding-top: 0; }
.srv--flip .srv__media { order: 2; }
.srv__media { position: relative; border-radius: 22px; overflow: hidden; box-shadow: 0 44px 90px -46px rgba(0,0,0,.5); background: var(--navy); }
.srv__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .9s var(--ease); }
.srv:hover .srv__media img { transform: scale(1.045); }
.srv__badge { position: absolute; top: 1rem; left: 1rem; background: rgba(20,24,33,.66); color: var(--cream); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); font-family: var(--font-sans); font-size: .66rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: .5em 1em; border-radius: 100px; }
.srv__kick { display: block; color: var(--bordeaux); font-family: var(--font-sans); font-weight: 600; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.srv__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.7rem, 1.05rem + 1.7vw, 2.5rem); line-height: 1.08; letter-spacing: -0.015em; color: var(--navy); margin: .55rem 0 0; }
.srv__title .italic { font-style: italic; color: var(--bordeaux); }
.srv__lead { margin: .95rem 0 0; color: var(--on-light-dim); font-size: 1.02rem; line-height: 1.6; max-width: 48ch; }
.srv__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.25rem 0 0; list-style: none; padding: 0; }
.srv__tags li { font-size: .7rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; color: var(--navy); border: 1px solid var(--line-light); border-radius: 100px; padding: .5em 1em; }
.srv__go { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.6rem; font-weight: 600; color: var(--navy); border-bottom: 1.5px solid currentColor; padding-bottom: 3px; transition: gap .3s var(--ease); }
.srv__go:hover { gap: .85rem; }
@media (max-width: 760px) {
  .srv { grid-template-columns: 1fr; gap: 1.3rem; padding: 2.2rem 0; }
  .srv--flip .srv__media { order: 0; }
}
