/* ============================================================
   DevDream — home.css
   Design system de la page d'accueil (refonte 2026, esprit Gemeos /
   néo-brutaliste). ISOLÉ de css/styles.css (qui sert les sous-pages
   sur l'ancienne DA crème/serif). Chargé uniquement par index.html.
   ============================================================ */

:root{
  --bg:#F3F2EC;          /* fond principal */
  --bg-2:#EAE9E2;        /* fond derrière (body) */
  --tile:#EFEDE4;        /* fond tuiles image */
  --tile-2:#F6F4EC;      /* fond sous-items */
  --ink:#181B20;         /* encre */
  --purple:#7E84F2;
  --coral:#FF7A66;
  --teal:#3CC0A1;
  --yellow:#FCEFC0;
  --blue:#D7E6F1;
  --blue-2:#BCE0F5;
  --lav:#E9E1F6;
  --pink:#F7E2EE;
  --mint:#D9EDE3;
  --peach:#FCE3DD;
  --muted:#4a4f57;
  --muted-2:#5a5f67;
  --muted-3:#69707a;
  --f-display:'Bricolage Grotesque',sans-serif;
  --f-body:'Hanken Grotesk',sans-serif;
  --f-hand:'Caveat',cursive;
  --f-mono:'Space Mono',monospace;
}

/* ---------- reset / base ---------- */
*{ box-sizing:border-box; }
html,body{ margin:0; }
html{ -webkit-text-size-adjust:100%; }
body{
  background:var(--bg);
  color:var(--ink);
  font-family:var(--f-body);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{ margin:0; text-wrap:balance; }
p{ text-wrap:pretty; margin:0; }
img{ max-width:100%; }
a{ color:inherit; }
::selection{ background:var(--purple); color:#fff; }

/* accès clavier */
.skip-link{
  position:absolute; left:-999px; top:0; z-index:200;
  background:var(--ink); color:var(--bg);
  font-family:var(--f-body); font-weight:700; font-size:14px;
  padding:12px 18px; border-radius:0 0 12px 0; text-decoration:none;
}
.skip-link:focus{ left:0; }
:focus-visible{ outline:3px solid var(--purple); outline-offset:2px; border-radius:4px; }

/* ---------- keyframes ---------- */
@keyframes dd-marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
@keyframes dd-blink{ 0%,92%,100%{ transform:scaleY(1); } 96%{ transform:scaleY(0.1); } }

/* ---------- utilitaires ---------- */
.wrap{ max-width:1180px; margin:0 auto; padding-left:24px; padding-right:24px; }
.wrap-sm{ max-width:1100px; margin:0 auto; padding-left:24px; padding-right:24px; }
.kicker{ font-family:var(--f-mono); font-size:12px; letter-spacing:0.2em; }
.hand{ font-family:var(--f-hand); font-size:27px; color:var(--purple); transform:rotate(-2deg); display:inline-block; }
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ---------- boutons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--f-body); font-weight:700; text-decoration:none;
  border:2px solid transparent; border-radius:999px; cursor:pointer;
  line-height:1; min-height:44px;
  transition:transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
}
.btn .dot{ width:8px; height:8px; border-radius:50%; background:var(--teal); flex:none; }
.btn-dark{ background:var(--ink); color:var(--bg); }
.btn-outline{ background:transparent; color:var(--ink); border-color:var(--ink); }
.btn-white{ background:#fff; color:var(--ink); border-color:var(--ink); box-shadow:4px 4px 0 var(--ink); }
.btn-white:hover{ transform:translate(-2px,-2px); box-shadow:6px 6px 0 var(--ink); }
.btn-yellow{ background:var(--yellow); color:var(--ink); border-color:var(--ink); box-shadow:3px 3px 0 var(--ink); }
.btn-yellow:hover{ transform:translate(-2px,-2px); box-shadow:5px 5px 0 var(--ink); }
.btn-sm{ padding:11px 20px; font-size:13.5px; }
.btn-md{ padding:13px 26px; font-size:15px; }
.btn-hero{ padding:15px 28px; font-size:15px; box-shadow:4px 4px 0 var(--purple); }
.btn-hero:hover{ transform:translate(-2px,-2px); box-shadow:6px 6px 0 var(--purple); }
.btn-nav{ padding:11px 20px; font-size:13.5px; }
.btn-nav:hover{ transform:translateY(-2px) rotate(-1.5deg); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-head{ position:sticky; top:0; z-index:60; padding:16px 24px 0; }
.nav-bar{
  max-width:1120px; margin:0 auto; background:#fff;
  border:2px solid var(--ink); border-radius:22px;
  box-shadow:4px 4px 0 rgba(24,27,32,0.14);
  padding:11px 14px 11px 20px; display:flex; align-items:center; gap:24px;
}
.brand{ display:inline-flex; align-items:center; gap:9px; text-decoration:none; color:var(--ink); }
.brand img{ width:30px; height:30px; object-fit:contain; }
.brand-word{ font-family:var(--f-display); font-weight:800; font-size:21px; letter-spacing:-0.02em; text-transform:uppercase; }
.nav-links{ display:flex; align-items:center; gap:22px; margin-left:6px; }
.nav-link{ font-family:var(--f-body); font-weight:600; font-size:14px; color:var(--ink); text-decoration:none; cursor:pointer; display:inline-flex; align-items:center; gap:4px; background:none; border:none; padding:0; }
.nav-link .chev{ display:inline-block; transition:transform .25s; }
.nav-link[aria-expanded="true"] .chev{ transform:rotate(180deg); }
.nav-right{ margin-left:auto; display:flex; align-items:center; gap:14px; }
.nav-burger{
  display:none; border:2px solid var(--ink); background:#fff;
  width:44px; height:44px; border-radius:12px; cursor:pointer;
  align-items:center; justify-content:center; padding:0;
}
.nav-burger span{ display:block; width:18px; height:2px; background:var(--ink); box-shadow:0 -6px 0 var(--ink), 0 6px 0 var(--ink); }

/* méga-menu services — 3 colonnes : catégories · sous-services · aperçu carrousel */
.mega{ position:absolute; left:0; right:0; top:100%; padding:10px 24px 0; z-index:60; }
.mega-panel{
  max-width:1120px; margin:0 auto; background:#fff; border:2px solid var(--ink);
  border-radius:22px; box-shadow:6px 8px 0 rgba(24,27,32,0.16);
  padding:18px; display:grid; grid-template-columns:0.9fr 1fr 1.15fr; gap:16px;
}
.mega-cats{ display:flex; flex-direction:column; gap:8px; border-right:2px dashed #e2ded0; padding-right:16px; }
.mega-cat{ display:flex; align-items:center; gap:12px; padding:13px 15px; border-radius:14px; cursor:pointer; font-family:var(--f-display); font-weight:700; font-size:17px; color:var(--ink); border:2px solid transparent; background:transparent; transition:background .2s, border-color .2s; text-align:left; width:100%; }
.mega-cat-ico{ display:inline-flex; flex:none; }
.mega-cat-label{ flex:1; }
.mega-cat-arr{ color:var(--purple); font-weight:800; opacity:0; transform:translateX(-4px); transition:opacity .2s, transform .2s; }
.mega-cat.is-active{ background:var(--lav); border-color:var(--ink); box-shadow:3px 3px 0 rgba(24,27,32,0.14); }
.mega-cat.is-active .mega-cat-arr{ opacity:1; transform:translateX(0); }
.mega-subs{ display:flex; flex-direction:column; gap:6px; }
.mega-sub{ display:flex; justify-content:space-between; align-items:center; font-family:var(--f-body); font-weight:600; font-size:15.5px; padding:13px 16px; border-radius:12px; cursor:pointer; transition:background .18s, transform .18s; background:var(--tile-2); color:var(--ink); text-decoration:none; border:none; text-align:left; width:100%; }
.mega-sub .sarr{ color:var(--purple); font-weight:800; opacity:0; transition:opacity .18s; }
.mega-sub.is-active{ background:var(--lav); transform:translateX(3px); }
.mega-sub.is-active .sarr{ opacity:1; }
.mega-preview{ height:362px; overflow-y:auto; border:2px solid var(--ink); border-radius:16px; background:var(--bg-2); display:flex; flex-direction:column; gap:14px; padding:14px; scroll-behavior:smooth; scrollbar-width:none; -ms-overflow-style:none; }
.mega-preview::-webkit-scrollbar{ width:0; height:0; display:none; }
.mega-prev{ flex:none; height:218px; border-radius:12px; border:2px dashed #c9d2cf; background:#fff; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; color:#9aa3ad; }
.mega-prev span{ font-family:var(--f-mono); font-size:12px; letter-spacing:0.04em; color:#8a929c; text-align:center; padding:0 12px; }
@media (max-width:980px){ .mega-panel{ grid-template-columns:0.9fr 1fr; } .mega-preview{ display:none; } }
@media (max-width:700px){ .mega-panel{ grid-template-columns:1fr; } .mega-cats{ border-right:none; border-bottom:2px dashed #e2ded0; padding-right:0; padding-bottom:12px; } }

/* menu mobile plein écran */
.mobile-menu{
  position:fixed; inset:0; z-index:49; background:var(--bg);
  padding:calc(90px + env(safe-area-inset-top)) 28px calc(28px + env(safe-area-inset-bottom));
  display:flex; flex-direction:column; gap:4px;
}
.mobile-menu[hidden], .mega[hidden]{ display:none; }
.mobile-menu a{
  font-family:var(--f-display); font-weight:800; font-size:34px; text-transform:uppercase;
  padding:14px 0; border-bottom:2px dashed #cfcabb; color:var(--ink); text-decoration:none;
}
.mobile-menu .mm-cta{
  margin-top:18px; text-align:center; font-family:var(--f-body); font-weight:700; font-size:17px;
  background:var(--ink); color:var(--bg); padding:16px; border-radius:999px; border-bottom:none;
}
.no-scroll{ overflow:hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero{ position:relative; max-width:1100px; margin:0 auto; padding:64px 24px 48px; text-align:center; }
.doodle{ position:absolute; pointer-events:none; }
.sticker{
  position:absolute; transform:rotate(8deg); background:var(--yellow);
  border:2px solid var(--ink); border-radius:12px; padding:7px 12px;
  box-shadow:3px 3px 0 var(--ink); font-family:var(--f-hand); font-size:20px;
}
.badge{
  display:inline-flex; align-items:center; gap:8px; background:#fff;
  border:2px solid var(--ink); padding:7px 15px; border-radius:999px;
  box-shadow:3px 3px 0 var(--ink);
}
.badge .dot{ width:9px; height:9px; border-radius:50%; background:var(--teal); }
.badge span:last-child{ font-family:var(--f-mono); font-size:12px; letter-spacing:0.06em; }
.hero h1{
  font-family:var(--f-display); font-weight:800; font-size:clamp(36px,6.6vw,76px);
  line-height:0.96; letter-spacing:-0.025em; text-transform:uppercase;
  margin:24px auto 0; max-width:16ch;
}
.hl{ display:inline-block; border:2px solid var(--ink); border-radius:12px; padding:0 12px; font-size:0.82em; }
.hl-purple{ transform:rotate(-2deg); background:var(--purple); color:#fff; }
.hl-coral{ transform:rotate(1.5deg); background:var(--coral); color:var(--ink); }
.uline{ position:relative; white-space:nowrap; }
.uline svg{ position:absolute; left:-3%; bottom:-8px; width:106%; height:16px; }
.hero-sub{ font-family:var(--f-body); font-size:clamp(16px,2vw,19px); line-height:1.6; color:var(--muted); max-width:54ch; margin:24px auto 0; }
.hero-proof{ display:flex; align-items:center; justify-content:center; gap:14px; margin-top:24px; flex-wrap:wrap; }
.avatars{ display:flex; }
.avatar{ width:40px; height:40px; border-radius:50%; border:2px solid var(--ink); display:inline-flex; align-items:center; justify-content:center; font-family:var(--f-display); font-weight:800; font-size:15px; color:#fff; box-shadow:2px 2px 0 rgba(24,27,32,0.2); }
.avatar + .avatar{ margin-left:-12px; }
.hero-proof-txt{ text-align:left; }
.hero-proof-txt b{ font-family:var(--f-body); font-weight:700; font-size:13.5px; }
.hero-proof-txt span{ display:block; font-family:var(--f-mono); font-size:11px; color:var(--muted-3); }
.hero-ctas{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:26px; }

/* ============================================================
   SECTIONS GÉNÉRIQUES (bandes bordées)
   ============================================================ */
.band{ border-top:2px solid var(--ink); border-bottom:2px solid var(--ink); }
.sec-head{ text-align:center; max-width:42ch; margin:0 auto; }
.sec-head h2{ font-family:var(--f-display); font-weight:800; font-size:clamp(28px,4.5vw,46px); line-height:1; letter-spacing:-0.02em; text-transform:uppercase; margin:12px 0 0; }
.sec-head p{ font-family:var(--f-body); font-size:15px; color:var(--muted); margin:14px 0 0; }

/* ---------- réalisations ---------- */
.realis{ background:#fff; }
.realis .wrap{ padding-top:60px; padding-bottom:60px; max-width:1180px; }
.portfolio{ display:grid; grid-template-columns:repeat(2,1fr); gap:36px 32px; margin-top:46px; }
.work{ text-decoration:none; color:var(--ink); display:block; }
.work-shot{ background:var(--tile); border-radius:22px; padding:18px; overflow:hidden; }
.work-shot img{ width:100%; height:370px; object-fit:cover; border-radius:14px; display:block; transition:transform .4s cubic-bezier(.34,1.2,.64,1); }
.work:hover .work-shot img{ transform:scale(1.03); }
.work-meta{ display:flex; align-items:center; gap:11px; margin-top:18px; flex-wrap:wrap; }
.work-meta h3{ font-family:var(--f-display); font-weight:700; font-size:24px; }
.tag{ font-family:var(--f-mono); font-size:9.5px; letter-spacing:0.06em; background:var(--ink); color:var(--bg); padding:4px 10px; border-radius:999px; }
.work p{ font-family:var(--f-body); font-size:15.5px; line-height:1.55; color:var(--muted-2); margin:8px 0 0; max-width:44ch; }
.center{ text-align:center; }
.mt-34{ margin-top:34px; }

/* ---------- témoignage vedette ---------- */
.testi{ background:var(--bg); position:relative; overflow:hidden; }
.testi .inner{ max-width:1040px; margin:0 auto; padding:78px 24px 56px; text-align:center; }
.quote-frame{ position:relative; display:inline-block; padding:26px 22px; }
.quote-frame .sel{ position:absolute; inset:0; border:1.5px solid #4DA3FF; border-radius:2px; pointer-events:none; }
.quote-frame .handle{ position:absolute; width:11px; height:11px; background:#fff; border:2px solid #4DA3FF; border-radius:2px; }
.handle.tl{ top:-6px; left:-6px; } .handle.tr{ top:-6px; right:-6px; }
.handle.bl{ bottom:-6px; left:-6px; } .handle.br{ bottom:-6px; right:-6px; }
.quote-frame blockquote{
  font-family:var(--f-display); font-weight:800; font-size:clamp(24px,4vw,50px);
  line-height:1.12; letter-spacing:-0.01em; text-transform:uppercase; margin:0; max-width:18ch; color:var(--ink);
}
.quote-frame blockquote .hi{ background:var(--blue-2); -webkit-box-decoration-break:clone; box-decoration-break:clone; padding:0 6px; }
.testi-pill{ position:absolute; right:-8px; bottom:-30px; display:flex; align-items:center; gap:10px; color:#fff; border:2px solid var(--ink); border-radius:999px; padding:8px 18px 8px 8px; box-shadow:4px 4px 0 rgba(24,27,32,0.25); }
.testi-pill .ava{ flex:none; width:40px; height:40px; border-radius:50%; background:#fff; display:inline-flex; align-items:center; justify-content:center; font-family:var(--f-display); font-weight:800; font-size:17px; }
.testi-pill .who{ text-align:left; line-height:1.15; }
.testi-pill .who b{ font-family:var(--f-body); font-weight:700; font-size:14px; }
.testi-pill .who span{ display:block; font-family:var(--f-mono); font-size:10px; opacity:.9; }
.testi-tabs{ display:flex; justify-content:center; margin-top:54px; }
.testi-tabs .group{ display:inline-flex; gap:4px; background:#E6E3D8; border:2px solid var(--ink); border-radius:16px; padding:6px; flex-wrap:wrap; }
.testi-tab{ font-family:var(--f-display); font-weight:800; font-size:14px; letter-spacing:0.04em; text-transform:uppercase; padding:11px 22px; border-radius:11px; cursor:pointer; border:none; background:transparent; color:#8a8676; transition:all .2s; min-height:44px; }
.testi-tab.active{ background:#fff; color:var(--ink); box-shadow:2px 2px 0 var(--ink); }
.rating-band{ display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap; margin-top:40px; }
.rating-band .stars{ color:var(--coral); letter-spacing:2px; font-size:18px; }
.rating-band b{ font-family:var(--f-display); font-weight:800; font-size:22px; }
.rating-band span{ font-family:var(--f-body); font-size:14px; color:var(--muted-3); }

/* ---------- services (split éditorial) ---------- */
.svc{ max-width:1180px; margin:0 auto; padding:64px 24px 20px; }
.svc-split{ display:grid; grid-template-columns:0.84fr 1.16fr; gap:48px; align-items:start; }
.svc-left{ position:sticky; top:118px; }
.svc-left h2{ font-family:var(--f-display); font-weight:800; font-size:clamp(30px,3.6vw,52px); line-height:0.98; letter-spacing:-0.02em; text-transform:uppercase; margin:10px 0 0; }
.svc-left p{ font-family:var(--f-body); font-size:16px; line-height:1.6; color:var(--muted); margin:20px 0 0; max-width:34ch; }
.svc-left .row{ display:flex; align-items:center; gap:20px; margin-top:28px; flex-wrap:wrap; }
.svc-rating{ display:flex; align-items:center; gap:8px; }
.svc-rating .star{ color:var(--coral); font-size:22px; }
.svc-rating b{ font-family:var(--f-display); font-weight:800; font-size:20px; }
.svc-rating b small{ font-size:13px; color:var(--muted-3); font-weight:800; }
.svc-rating a{ font-family:var(--f-body); font-size:13px; color:var(--muted-3); }
.svc-cards{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.svc-card{ text-decoration:none; color:var(--ink); display:block; }
.svc-tile{ border-radius:22px; padding:16px; overflow:hidden; border:2px solid var(--ink); height:262px; display:flex; align-items:center; justify-content:center; transition:transform .25s cubic-bezier(.34,1.4,.64,1); }
.svc-card:hover .svc-tile{ transform:translateY(-4px); }
.svc-tile svg{ width:74px; height:74px; }
.svc-card .meta{ display:flex; align-items:center; gap:10px; margin-top:15px; }
.svc-card .meta h3{ font-family:var(--f-display); font-weight:700; font-size:22px; }
.svc-card p{ font-family:var(--f-body); font-size:14.5px; line-height:1.5; color:var(--muted-2); margin:7px 0 0; }

/* ---------- marquee ---------- */
.marquee{ margin-top:34px; border-top:2px solid var(--ink); border-bottom:2px solid var(--ink); background:var(--blue); padding:16px 0; overflow:hidden; }
.marquee-track{ display:flex; gap:14px; width:max-content; animation:dd-marquee 32s linear infinite; }
.marquee:hover .marquee-track{ animation-play-state:paused; }
.chip{ font-family:var(--f-mono); font-size:13px; font-weight:700; background:var(--bg); border:2px solid var(--ink); padding:8px 16px; border-radius:999px; white-space:nowrap; }

/* ---------- board / pilotage ---------- */
.board{ background:var(--yellow); border-bottom:2px solid var(--ink); }
.board .grid{ max-width:1180px; margin:0 auto; padding:64px 24px; display:grid; grid-template-columns:1fr 1.05fr; gap:46px; align-items:center; }
.board h2{ font-family:var(--f-display); font-weight:800; font-size:clamp(28px,4.5vw,44px); line-height:1; letter-spacing:-0.02em; text-transform:uppercase; margin:12px 0 0; }
.board .lead{ font-family:var(--f-body); font-size:16px; line-height:1.6; color:#5c5326; margin:18px 0 0; }
.board .stats{ display:flex; gap:22px; margin-top:24px; flex-wrap:wrap; }
.board .stats .n{ font-family:var(--f-display); font-weight:800; font-size:34px; color:var(--ink); }
.board .stats .l{ font-family:var(--f-body); font-size:13px; color:#5c5326; }
.board-card-wrap{ position:relative; }
.board-card{ background:#fff; border:2px solid var(--ink); border-radius:18px; padding:18px; box-shadow:7px 7px 0 var(--ink); transform:rotate(1.5deg); }
.board-card .top{ display:flex; align-items:center; justify-content:space-between; border-bottom:2px solid #ece9df; padding-bottom:10px; }
.board-card .top b{ font-family:var(--f-display); font-weight:700; font-size:14px; text-transform:uppercase; }
.board-card .badge-live{ font-family:var(--f-mono); font-size:10px; background:var(--teal); color:#fff; padding:3px 8px; border-radius:999px; }
.board-card ul{ list-style:none; padding:0; margin:12px 0 0; display:flex; flex-direction:column; gap:9px; }
.board-card li{ display:flex; align-items:center; gap:10px; border-radius:10px; padding:10px 12px; font-family:var(--f-body); font-size:13px; }
.board-card .box{ width:16px; height:16px; border:2px solid var(--ink); border-radius:4px; flex:none; }
.board-card li.done .box{ background:var(--ink); }
.board-card li.done span{ text-decoration:line-through; color:var(--muted-3); }

/* ---------- secteurs ---------- */
.sectors-sec{ max-width:1180px; margin:0 auto; padding:64px 24px 20px; }
.sectors{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:42px; }
.sector{ background:#fff; border:2px solid var(--ink); border-radius:20px; padding:26px; box-shadow:5px 5px 0 rgba(24,27,32,0.10); transition:transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s; }
.sector:hover{ transform:translateY(-5px); box-shadow:7px 9px 0 rgba(24,27,32,0.14); }
.sector .ico{ display:inline-flex; align-items:center; justify-content:center; width:52px; height:52px; border-radius:14px; border:2px solid var(--ink); }
.sector h3{ font-family:var(--f-display); font-weight:700; font-size:20px; margin:16px 0 0; }
.sector p{ font-family:var(--f-body); font-size:14px; line-height:1.5; color:var(--muted-2); margin:7px 0 0; }

/* ---------- formules ---------- */
.formules{ background:var(--blue); border-top:2px solid var(--ink); border-bottom:2px solid var(--ink); margin-top:54px; }
.formules .wrap{ padding-top:64px; padding-bottom:64px; }
.plans{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:40px; align-items:start; }
.plan{ background:var(--bg); border:2px solid var(--ink); border-radius:22px; padding:28px; }
.plan .pname{ font-family:var(--f-mono); font-size:12px; letter-spacing:0.1em; color:#2c8a6f; }
.plan .price{ display:flex; align-items:baseline; gap:6px; margin-top:8px; }
.plan .price b{ font-family:var(--f-display); font-weight:800; font-size:42px; }
.plan .price span{ font-family:var(--f-body); font-size:13px; color:var(--muted-3); }
.plan .ptag{ font-family:var(--f-body); font-size:13.5px; color:var(--muted); margin:6px 0 18px; }
.plan .pcta{ display:block; text-align:center; font-family:var(--f-body); font-weight:700; font-size:14px; border:2px solid var(--ink); border-radius:999px; padding:12px; text-decoration:none; color:var(--ink); min-height:44px; }
.plan ul{ list-style:none; padding:0; margin:18px 0 0; display:flex; flex-direction:column; gap:9px; }
.plan li{ font-family:var(--f-body); font-size:13.5px; display:flex; gap:9px; }
.plan li .ok{ color:var(--teal); font-weight:800; flex:none; }
.plan.featured{ background:var(--ink); color:var(--bg); position:relative; transform:scale(1.04); box-shadow:8px 8px 0 var(--purple); }
.plan.featured .pname{ color:var(--purple); }
.plan.featured .price span{ color:#9aa3ad; }
.plan.featured .ptag{ color:#cdd4dc; }
.plan.featured .pcta{ background:var(--bg); color:var(--ink); border-color:var(--bg); }
.plan .ribbon{ position:absolute; top:-15px; left:50%; transform:translateX(-50%) rotate(-2deg); font-family:var(--f-mono); font-size:11px; background:var(--coral); color:var(--ink); padding:6px 14px; border-radius:999px; border:2px solid var(--ink); white-space:nowrap; }
.price-note{ text-align:center; font-family:var(--f-body); font-size:13.5px; color:#2f5a7a; margin:28px auto 0; max-width:62ch; }

/* ---------- faq ---------- */
.faq{ max-width:820px; margin:0 auto; padding:66px 24px; }
.faq-head{ text-align:center; }
.faq-head h2{ font-family:var(--f-display); font-weight:800; font-size:clamp(28px,4.5vw,46px); line-height:1; letter-spacing:-0.02em; text-transform:uppercase; margin:6px 0 0; }
.faq-head .hand{ color:var(--coral); font-size:26px; }
.faq-list{ margin-top:34px; display:flex; flex-direction:column; gap:12px; }
.faq-item{ background:#fff; border:2px solid var(--ink); border-radius:16px; overflow:hidden; }
.faq-q{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; background:none; border:none; cursor:pointer; padding:18px 22px; text-align:left; min-height:44px; }
.faq-q span:first-child{ font-family:var(--f-display); font-weight:700; font-size:16px; color:var(--ink); }
.faq-sign{ font-family:var(--f-display); font-weight:800; font-size:24px; line-height:1; color:var(--purple); display:inline-block; transition:transform .3s cubic-bezier(.34,1.56,.64,1); flex:none; }
.faq-item.open .faq-sign{ transform:rotate(135deg); }
.faq-a{ overflow:hidden; max-height:0; opacity:0; transition:max-height .45s cubic-bezier(.4,0,.2,1), opacity .35s ease; }
.faq-item.open .faq-a{ max-height:340px; opacity:1; }
.faq-a p{ font-family:var(--f-body); font-size:14.5px; line-height:1.6; color:var(--muted); margin:0; padding:0 22px 20px; }

/* ---------- CTA final ---------- */
.cta{ max-width:1180px; margin:0 auto; padding:10px 24px 70px; }
.cta-box{ background:var(--ink); color:var(--bg); border-radius:28px; padding:64px 32px; text-align:center; position:relative; overflow:hidden; }
.face{ width:84px; height:84px; border-radius:50%; background:var(--yellow); border:3px solid var(--bg); display:flex; align-items:center; justify-content:center; gap:10px; position:relative; margin:0 auto 18px; }
.eye{ width:16px; height:20px; background:var(--ink); border-radius:50%; display:flex; align-items:center; justify-content:center; animation:dd-blink 5s infinite; }
.pupil{ width:7px; height:7px; background:var(--yellow); border-radius:50%; transition:transform .08s linear; }
.mouth{ position:absolute; bottom:16px; width:26px; height:13px; border-bottom:3px solid var(--ink); border-radius:0 0 26px 26px; }
.cta-box h2{ font-family:var(--f-display); font-weight:800; font-size:clamp(30px,5.5vw,60px); line-height:0.96; letter-spacing:-0.02em; text-transform:uppercase; max-width:16ch; margin:0 auto; }
.cta-box p{ font-family:var(--f-body); font-size:16px; color:#cdd4dc; max-width:46ch; margin:18px auto 0; }
.cta-btn{ display:inline-flex; margin-top:28px; font-family:var(--f-body); font-weight:700; font-size:16px; background:var(--coral); color:var(--ink); padding:16px 34px; border-radius:999px; text-decoration:none; border:2px solid var(--bg); box-shadow:5px 5px 0 var(--purple); transition:transform .2s cubic-bezier(.34,1.56,.64,1); min-height:44px; align-items:center; }
.cta-btn:hover{ transform:translate(-2px,-2px) rotate(-1.5deg); }
.cta-alt{ display:block; margin-top:16px; font-family:var(--f-mono); font-size:12px; color:#9aa3ad; }
.cta-alt a{ color:var(--bg); }

/* ---------- footer ---------- */
.site-foot{ background:var(--ink); color:var(--bg); border-top:2px solid var(--ink); position:relative; }
.foot-grid{ max-width:1180px; margin:0 auto; padding:54px 24px 30px; display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:28px; }
.foot-brand{ display:flex; align-items:center; gap:9px; }
.foot-brand .mark{ background:var(--bg); border-radius:8px; padding:4px; display:inline-flex; }
.foot-brand .mark img{ width:24px; height:24px; object-fit:contain; }
.foot-brand b{ font-family:var(--f-display); font-weight:800; font-size:20px; text-transform:uppercase; }
.foot-tag{ font-family:var(--f-body); font-size:13.5px; color:#9aa3ad; max-width:32ch; margin:14px 0 0; }
.foot-col .h{ font-family:var(--f-mono); font-size:11px; letter-spacing:0.1em; color:var(--purple); }
.foot-col .links{ display:flex; flex-direction:column; gap:8px; margin-top:12px; }
.foot-col .links a{ font-family:var(--f-body); font-size:13.5px; color:#cdd4dc; text-decoration:none; }
.foot-col .links a:hover{ color:#fff; text-decoration:underline; }
.foot-bottom{ max-width:1180px; margin:0 auto; padding:18px 24px calc(26px + env(safe-area-inset-bottom)); display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; border-top:1px solid #2c2f35; }
.foot-bottom span, .foot-bottom a{ font-family:var(--f-mono); font-size:11px; color:var(--muted-3); text-decoration:none; }
.foot-bottom a:hover{ color:#cdd4dc; }
.foot-legal{ display:flex; gap:14px; align-items:center; flex-wrap:wrap; }
.cookie-manage{ background:none; border:none; cursor:pointer; font-family:var(--f-mono); font-size:11px; color:var(--muted-3); padding:0; }
.cookie-manage:hover{ color:#cdd4dc; }

/* ============================================================
   CURSEUR PERSONNALISÉ
   ============================================================ */
html[data-ccursor], html[data-ccursor] *{ cursor:none !important; }
/* masqués par défaut : n'apparaissent que sur pointeur fin (desktop), jamais sur mobile/tactile */
[data-cursor], [data-cursor-ring]{ display:none; }
[data-cursor]{ position:fixed; left:0; top:0; z-index:99999; pointer-events:none; will-change:transform; }
[data-cursor-ring]{ position:fixed; left:0; top:0; z-index:99998; pointer-events:none; width:34px; height:34px; margin:-17px 0 0 -17px; border:2px solid var(--purple); border-radius:50%; will-change:transform,width,height,background; transition:width .2s ease, height .2s ease, margin .2s ease, background .2s ease, border-color .2s ease; }
html[data-ccursor] [data-cursor], html[data-ccursor] [data-cursor-ring]{ display:block; }

/* ============================================================
   WHATSAPP FLOTTANT
   ============================================================ */
.wa-float{
  position:fixed; z-index:55;
  right:calc(18px + env(safe-area-inset-right));
  bottom:calc(18px + env(safe-area-inset-bottom));
  width:56px; height:56px; border-radius:50%;
  background:#25D366; color:#fff; border:2px solid var(--ink);
  display:flex; align-items:center; justify-content:center;
  box-shadow:3px 3px 0 var(--ink); transition:transform .2s cubic-bezier(.34,1.56,.64,1);
}
.wa-float:hover{ transform:translateY(-3px); }
body.cc-open .wa-float{ opacity:0; pointer-events:none; }

/* ============================================================
   BANDEAU COOKIES
   ============================================================ */
.cookie-banner{
  position:fixed; z-index:80; left:50%; transform:translate(-50%,140%);
  bottom:calc(18px + env(safe-area-inset-bottom)); width:min(640px,calc(100% - 32px));
  background:#fff; border:2px solid var(--ink); border-radius:18px;
  box-shadow:5px 5px 0 var(--ink); padding:18px 20px;
  display:flex; align-items:center; gap:16px; flex-wrap:wrap;
  transition:transform .4s cubic-bezier(.34,1.4,.64,1);
}
.cookie-banner.show{ transform:translate(-50%,0); }
.cookie-banner p{ font-family:var(--f-body); font-size:13.5px; color:var(--muted); flex:1; min-width:200px; margin:0; }
.cookie-actions{ display:flex; gap:10px; }
.cookie-actions .btn{ min-height:40px; }

/* ============================================================
   RÉVÉLATION AU SCROLL (état caché posé par home.js, classe .js)
   ============================================================ */
.js [data-reveal]{ opacity:0; transform:translateY(28px); transition:opacity .7s cubic-bezier(.34,1.4,.64,1), transform .7s cubic-bezier(.34,1.4,.64,1); }
[data-reveal].in{ opacity:1 !important; transform:none !important; }
@media (prefers-reduced-motion: reduce){ .js [data-reveal]{ opacity:1 !important; transform:none !important; transition:none; } }

/* ============================================================
   SOUS-PAGES — gabarit partagé (même design system que la home)
   ============================================================ */
.subpage{ padding-top:8px; }
.page-head{ max-width:1180px; margin:0 auto; padding:40px 24px 0; }
.crumb{ font-family:var(--f-mono); font-size:12px; color:var(--muted-3); display:flex; gap:8px; align-items:center; flex-wrap:wrap; }
.crumb a{ color:var(--muted-3); text-decoration:none; }
.crumb a:hover{ color:var(--ink); }
.crumb i{ font-style:normal; opacity:.5; }
.crumb [aria-current]{ color:var(--ink); }

.page-hero{ max-width:1180px; margin:0 auto; padding:22px 24px 46px; display:grid; grid-template-columns:1.1fr 0.9fr; gap:48px; align-items:center; }
.page-hero .kick{ font-family:var(--f-mono); font-size:12px; letter-spacing:0.2em; color:#3E83B8; }
.page-hero h1{ font-family:var(--f-display); font-weight:800; font-size:clamp(34px,5.4vw,62px); line-height:0.98; letter-spacing:-0.025em; text-transform:uppercase; margin:14px 0 0; }
.page-hero .lede{ font-family:var(--f-body); font-size:18px; line-height:1.62; color:var(--muted); margin:20px 0 0; max-width:46ch; }
.page-hero .actions{ display:flex; gap:14px; margin-top:26px; flex-wrap:wrap; }

/* photo polaroïd (CDC : cadre blanc, washi tape, name-tag) */
.polaroid{ background:#fff; border:2px solid var(--ink); border-radius:8px; padding:14px 14px 0; box-shadow:8px 10px 0 rgba(24,27,32,0.13); transform:rotate(2.5deg); position:relative; max-width:360px; margin:0 auto; }
.polaroid img{ display:block; width:100%; border-radius:4px; }
.polaroid .tape{ position:absolute; top:-13px; left:50%; transform:translateX(-50%) rotate(-3deg); width:96px; height:26px; background:rgba(252,239,192,0.85); border:1px solid rgba(0,0,0,0.12); }
.polaroid .ptag{ display:flex; align-items:center; justify-content:center; gap:8px; padding:14px 4px 16px; }
.polaroid .ptag b{ font-family:var(--f-display); font-weight:700; font-size:15px; }
.polaroid .ptag span{ font-family:var(--f-mono); font-size:10px; color:var(--coral); }

.creds{ max-width:1180px; margin:0 auto; padding:0 24px; display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.cred{ background:#fff; border:2px solid var(--ink); border-radius:18px; padding:22px; box-shadow:4px 4px 0 rgba(24,27,32,0.12); }
.cred b{ font-family:var(--f-display); font-weight:800; font-size:clamp(28px,3vw,38px); display:block; line-height:1; }
.cred span{ font-family:var(--f-body); font-size:13px; line-height:1.4; color:var(--muted-2); display:block; margin-top:8px; }

.block{ max-width:760px; margin:0 auto; padding:46px 24px 0; }
.block h2{ font-family:var(--f-display); font-weight:800; font-size:clamp(26px,3.4vw,40px); line-height:1.04; letter-spacing:-0.02em; text-transform:uppercase; }
.block p{ font-family:var(--f-body); font-size:17px; line-height:1.7; color:var(--muted); margin:16px 0 0; }
.mark{ background:var(--blue-2); padding:0 5px; -webkit-box-decoration-break:clone; box-decoration-break:clone; }

.manifesto{ background:var(--ink); color:var(--bg); border-top:2px solid var(--ink); border-bottom:2px solid var(--ink); margin:56px 0; }
.manifesto .in{ max-width:920px; margin:0 auto; padding:64px 24px; text-align:center; }
.manifesto blockquote{ font-family:var(--f-display); font-weight:800; font-size:clamp(24px,3.6vw,42px); line-height:1.15; letter-spacing:-0.01em; text-transform:uppercase; margin:0; }
.manifesto .hi{ background:var(--coral); color:var(--ink); padding:0 8px; -webkit-box-decoration-break:clone; box-decoration-break:clone; }
.manifesto cite{ display:block; font-family:var(--f-mono); font-size:12px; color:#9aa3ad; margin-top:22px; font-style:normal; letter-spacing:0.08em; }

.timeline{ max-width:1180px; margin:0 auto; padding:24px 24px 0; display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.tl-step{ background:#fff; border:2px solid var(--ink); border-radius:20px; padding:24px; box-shadow:5px 5px 0 rgba(24,27,32,0.10); }
.tl-step .n{ width:40px; height:40px; border-radius:50%; border:2px solid var(--ink); display:flex; align-items:center; justify-content:center; font-family:var(--f-display); font-weight:800; font-size:18px; background:var(--lav); }
.tl-step .dur{ font-family:var(--f-mono); font-size:11px; color:var(--muted-3); display:block; margin-top:14px; }
.tl-step h3{ font-family:var(--f-display); font-weight:700; font-size:20px; margin:4px 0 0; }
.tl-step p{ font-family:var(--f-body); font-size:14px; line-height:1.55; color:var(--muted-2); margin:8px 0 0; }

.cards-3{ max-width:1180px; margin:0 auto; padding:24px 24px 0; display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.nb-card{ background:#fff; border:2px solid var(--ink); border-radius:20px; padding:26px; box-shadow:5px 5px 0 rgba(24,27,32,0.10); transition:transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s; }
.nb-card:hover{ transform:translateY(-5px); box-shadow:7px 9px 0 rgba(24,27,32,0.14); }
.nb-card h3{ font-family:var(--f-display); font-weight:700; font-size:20px; }
.nb-card p{ font-family:var(--f-body); font-size:14.5px; line-height:1.55; color:var(--muted-2); margin:8px 0 0; }

.review-card{ max-width:760px; margin:18px auto 0; background:#fff; border:2px solid var(--ink); border-radius:18px; padding:24px; box-shadow:4px 4px 0 rgba(24,27,32,0.12); }
.review-card blockquote{ font-family:var(--f-body); font-size:16px; line-height:1.62; color:#2c2820; margin:0; }
.review-card figcaption{ margin-top:14px; font-family:var(--f-body); font-size:13px; color:var(--muted-2); }
.review-card .stars{ color:var(--coral); letter-spacing:2px; }
.review-card figcaption b{ color:var(--ink); }

.sign{ margin-top:22px; max-width:210px; color:var(--ink); }
.sign svg{ width:100%; height:auto; }
.sign path{ fill:none; stroke:var(--ink); stroke-width:2.4; stroke-linecap:round; stroke-linejoin:round; }

.next-links{ max-width:1180px; margin:0 auto; padding:48px 24px 72px; }
.next-links h2{ font-family:var(--f-display); font-weight:800; font-size:clamp(22px,2.6vw,30px); text-transform:uppercase; letter-spacing:-0.01em; }
.next-links .pills{ display:flex; flex-wrap:wrap; gap:12px; margin-top:18px; }
.next-links .pills a{ border:2px solid var(--ink); border-radius:999px; padding:11px 20px; font-family:var(--f-body); font-weight:600; font-size:14px; text-decoration:none; color:var(--ink); background:#fff; transition:background .2s, transform .2s; }
.next-links .pills a:hover{ background:var(--lav); transform:translateY(-2px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:980px){
  .testi-pill{ position:static; margin:34px auto 0; display:inline-flex; }
}
@media (max-width:880px){
  .portfolio{ grid-template-columns:1fr 1fr; }
  .svc-split{ grid-template-columns:1fr; }
  .svc-left{ position:static; }
  .sectors{ grid-template-columns:1fr 1fr; }
  .board .grid{ grid-template-columns:1fr; }
  .plans{ grid-template-columns:1fr; }
  .plan.featured{ transform:none; }
  .foot-grid{ grid-template-columns:1fr 1fr; }
  .page-hero{ grid-template-columns:1fr; }
  .page-hero .polaroid{ margin-top:8px; }
  .creds{ grid-template-columns:1fr 1fr; }
  .timeline{ grid-template-columns:1fr 1fr; }
  .cards-3{ grid-template-columns:1fr; }
}
@media (max-width:620px){
  .nav-links, .nav-right .lang, .nav-right .btn-nav{ display:none; }
  .nav-burger{ display:flex; }
  .nav-bar{ gap:12px; padding:11px 12px; }
  .site-head{ padding-top:max(12px, env(safe-area-inset-top)); }
  .svc-cards{ grid-template-columns:1fr; }
  .sectors{ grid-template-columns:1fr; }
  .portfolio{ grid-template-columns:1fr; }
  .doodle, .sticker{ display:none; }
  .work-shot img{ height:300px; }
  .hero{ padding-top:40px; }
  .quote-frame blockquote{ font-size:clamp(24px,7vw,34px); }
  .cta-box{ padding:48px 22px; }
  .creds{ grid-template-columns:1fr 1fr; }
  .timeline{ grid-template-columns:1fr; }
  .page-hero{ padding-top:8px; }
}

@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation:none; }
  .eye{ animation:none; }
  *{ scroll-behavior:auto !important; }
}
