/* ==========================================================================
   WebFrance — système de design « Liseré » (2026)
   CSS écrit à la main, sans framework. Global : polices, jetons, base,
   composants, en-tête, menus, tiroir mobile, pied de page.
   ========================================================================== */

/* ---------- Polices (auto-hébergées, sous-ensemble latin) ---------- */
@font-face {
  font-family: "Bricolage";
  src: url("../fonts/bricolage-96.woff2") format("woff2");
  font-weight: 600 800; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/instrument-sans.woff2") format("woff2");
  font-weight: 400 700; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/instrument-serif-italic.woff2") format("woff2");
  font-weight: 400; font-style: italic; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Jetons ---------- */
:root {
  --nuit-950: #02021f;
  --nuit-900: #04063a;
  --nuit-800: #0a1257;
  --nuit-700: #121d78;
  --bleu: #1733c4;
  --bleu-600: #1229a3;
  --bleu-400: #5470ff;
  --bleu-300: #8ea0ff;
  --bleu-200: #c9d1ff;
  --bleu-100: #e9edff;
  --bleu-50: #f4f6ff;
  --rouge: #e1243b;
  --rouge-600: #c21a2f;
  --rouge-100: #ffe9ec;
  --encre: #0b1033;
  --texte: #2c3358;
  --gris: #596184;
  --gris-300: #a4aac6;
  --ligne: #e3e7f3;
  --papier: #f6f7fc;
  --blanc: #fff;

  --f-display: "Bricolage", "Bricolage Grotesque", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --f-text: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --f-serif: "Instrument Serif", Georgia, "Times New Roman", serif;

  --r-xs: 8px;
  --r-sm: 11px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 30px;

  --sh-1: 0 1px 2px rgba(11, 16, 51, .06), 0 3px 10px -2px rgba(11, 16, 51, .06);
  --sh-2: 0 18px 40px -18px rgba(11, 16, 51, .22), 0 2px 6px rgba(11, 16, 51, .05);
  --sh-3: 0 40px 90px -36px rgba(4, 6, 58, .5), 0 4px 14px rgba(4, 6, 58, .08);
  --ring: 0 0 0 3px rgba(84, 112, 255, .45);

  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --wrap: 1280px;
  --gut: clamp(16px, 4vw, 40px);
  --top-h: 38px;
  --bar-h: 74px;
  --sec: clamp(56px, 7vw, 104px);

  --lisere: linear-gradient(90deg, var(--bleu) 0 33.34%, #fff 33.34% 66.67%, var(--rouge) 66.67% 100%);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--bar-h) + 16px); }
body {
  margin: 0;
  font-family: var(--f-text);
  font-size: 17px;
  line-height: 1.6;
  color: var(--texte);
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--f-display); color: var(--encre); font-weight: 800; letter-spacing: -.016em; line-height: 1.1; text-wrap: balance; }
h3, h4 { font-weight: 750; letter-spacing: -.008em; }
p { text-wrap: pretty; }
strong, b { font-weight: 650; color: var(--encre); }
[hidden] { display: none !important; }
.wf-i { width: 20px; height: 20px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
::selection { background: var(--bleu); color: #fff; }
:focus-visible { outline: 2px solid var(--bleu-400); outline-offset: 3px; border-radius: 6px; }
.wf-sr { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.wf-skip { position: fixed; top: 10px; left: 10px; z-index: 200; padding: 10px 16px; border-radius: var(--r-sm); background: var(--encre); color: #fff; font-weight: 600; transform: translateY(-300%); opacity: 0; transition: transform .2s var(--ease), opacity .2s; }
.wf-skip:focus { transform: none; opacity: 1; }

/* ---------- Mise en page ---------- */
.wf-wrap { width: 100%; max-width: calc(var(--wrap) + 2 * var(--gut)); margin-inline: auto; padding-inline: var(--gut); }
.wf-sec { padding-block: var(--sec); position: relative; }
.wf-sec--papier { background: var(--papier); }
.wf-sec--nuit { background: var(--nuit-900); color: #c9cff0; }
.wf-sec--nuit h2, .wf-sec--nuit h3 { color: #fff; }

/* En-têtes de section */
.wf-head { display: grid; gap: 14px; max-width: 760px; margin-bottom: clamp(32px, 4vw, 52px); }
.wf-head--center { margin-inline: auto; text-align: center; justify-items: center; }
.wf-head--split { max-width: none; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); grid-template-rows: auto auto; align-items: end; column-gap: clamp(24px, 5vw, 80px); }
.wf-head--split > .wf-kicker { grid-column: 1; grid-row: 1; }
.wf-head--split > h2 { grid-column: 1; grid-row: 2; }
.wf-head--split > .wf-lead, .wf-head--split > .wf-head__aside { grid-column: 2; grid-row: 1 / 3; align-self: end; padding-bottom: 4px; }
.wf-h2 { font-size: clamp(1.9rem, 1.15rem + 2.2vw, 3rem); letter-spacing: -.02em; }
.wf-lead { font-size: clamp(1.02rem, .95rem + .3vw, 1.15rem); color: var(--gris); max-width: 62ch; }
.wf-sec--nuit .wf-lead { color: #aab3df; }

/* Sur-titre avec liseré */
.wf-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-text); font-size: .78rem; font-weight: 650; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bleu);
}
.wf-kicker::before {
  content: ""; width: 26px; height: 3px; border-radius: 3px; flex: none;
  background: linear-gradient(90deg, var(--bleu) 0 42%, transparent 42% 58%, var(--rouge) 58%);
}
.wf-sec--nuit .wf-kicker, .wf-kicker--light { color: var(--bleu-300); }
.wf-sec--nuit .wf-kicker::before, .wf-kicker--light::before { background: var(--lisere); }

/* Accent éditorial : italique serif */
.wf-em { font-family: var(--f-serif); font-style: italic; font-weight: 400; letter-spacing: -.012em; font-size: 1.1em; line-height: .9; color: var(--bleu); padding-right: .04em; }
.wf-sec--nuit .wf-em, .wf-em--light { color: var(--bleu-300); }
.wf-dot { color: var(--rouge); }

/* ---------- Boutons ---------- */
.wf-btn {
  --b-bg: var(--encre); --b-fg: #fff; --b-bd: transparent; --b-sh: none;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 22px; border-radius: 13px;
  background: var(--b-bg); color: var(--b-fg); border: 1.5px solid var(--b-bd); box-shadow: var(--b-sh);
  font-family: var(--f-text); font-size: 1rem; font-weight: 650; letter-spacing: -.005em; line-height: 1.1; white-space: nowrap;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .25s var(--ease), transform .2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.wf-btn svg { width: 18px; height: 18px; flex: none; transition: transform .25s var(--ease); }
.wf-btn:hover svg.wf-i-arrow { transform: translateX(3px); }
.wf-btn:active { transform: translateY(1px); }
.wf-btn--rouge { --b-bg: var(--rouge); --b-sh: 0 10px 24px -10px rgba(225, 36, 59, .7), inset 0 1px 0 rgba(255, 255, 255, .18); }
.wf-btn--rouge:hover { --b-bg: var(--rouge-600); --b-sh: 0 14px 30px -12px rgba(225, 36, 59, .8), inset 0 1px 0 rgba(255, 255, 255, .18); }
.wf-btn--bleu { --b-bg: var(--bleu); --b-sh: 0 10px 24px -12px rgba(23, 51, 196, .7); }
.wf-btn--bleu:hover { --b-bg: var(--bleu-600); }
.wf-btn--ghost { --b-bg: transparent; --b-fg: var(--encre); --b-bd: #cfd5ea; }
.wf-btn--ghost:hover { --b-bd: var(--encre); --b-bg: rgba(11, 16, 51, .03); }
.wf-btn--verre { --b-bg: rgba(255, 255, 255, .08); --b-fg: #fff; --b-bd: rgba(255, 255, 255, .28); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.wf-btn--verre:hover { --b-bg: rgba(255, 255, 255, .16); --b-bd: rgba(255, 255, 255, .5); }
.wf-btn--blanc { --b-bg: #fff; --b-fg: var(--encre); --b-sh: 0 10px 26px -14px rgba(0, 0, 0, .5); }
.wf-btn--blanc:hover { --b-bg: var(--bleu-50); }
.wf-btn--lg { min-height: 56px; padding: 0 26px; font-size: 1.04rem; border-radius: 14px; }
.wf-btn--sm { min-height: 42px; padding: 0 16px; font-size: .94rem; border-radius: 11px; }
.wf-btn--block { width: 100%; }

.wf-link { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; font-weight: 650; color: var(--bleu); }
.wf-link svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.wf-link:hover svg { transform: translateX(3px); }
.wf-link:hover { color: var(--bleu-600); }
.wf-sec--nuit .wf-link { color: #fff; }

/* Pastilles */
.wf-chip { display: inline-flex; align-items: center; gap: 7px; padding: 5px 11px; border-radius: 999px; background: var(--bleu-50); color: var(--bleu); font-size: .82rem; font-weight: 650; line-height: 1.2; white-space: nowrap; }
.wf-chip svg { width: 14px; height: 14px; }
.wf-chip--rouge { background: var(--rouge-100); color: var(--rouge-600); }
.wf-chip--ok { background: #e8f7ef; color: #11743f; }

/* Icônes en tuile (toujours à gauche du titre) */
.wf-ico { width: 44px; height: 44px; flex: none; display: grid; place-items: center; border-radius: 13px; background: var(--bleu-50); color: var(--bleu); box-shadow: inset 0 0 0 1px rgba(23, 51, 196, .08); }
.wf-ico svg { width: 22px; height: 22px; }
.wf-ico--rouge { background: var(--rouge-100); color: var(--rouge); box-shadow: inset 0 0 0 1px rgba(225, 36, 59, .1); }
.wf-ico--nuit { background: rgba(255, 255, 255, .08); color: #fff; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14); }
.wf-ico--sm { width: 36px; height: 36px; border-radius: 11px; }
.wf-ico--sm svg { width: 18px; height: 18px; }

/* Liseré tricolore */
.wf-lisere { height: 4px; background: var(--lisere); }
.wf-flag { display: inline-flex; width: 18px; height: 12px; border-radius: 2px; overflow: hidden; flex: none; box-shadow: 0 0 0 1px rgba(255, 255, 255, .25); background: linear-gradient(90deg, #2346e0 0 33.34%, #fff 33.34% 66.67%, var(--rouge) 66.67%); }

/* Apparition au défilement */
.wf-ready .wf-rv { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); transition-delay: var(--d, 0s); }
.wf-ready .wf-rv.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   EN-TÊTE
   ========================================================================== */
.wf-hdr { position: sticky; top: calc(var(--top-h) * -1); z-index: 60; }
.wf-top { height: var(--top-h); background: var(--nuit-950); color: #b7bee6; font-size: .84rem; position: relative; z-index: 2; }
.wf-top__in { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wf-top__lead { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
.wf-top__lead strong { color: #fff; font-weight: 600; }
.wf-top__list { display: flex; align-items: center; gap: 22px; margin: 0; padding: 0; list-style: none; }
.wf-top__list li { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.wf-top__list svg { width: 15px; height: 15px; color: var(--bleu-300); }
.wf-top__list a { display: inline-flex; align-items: center; gap: 7px; transition: color .2s; }
.wf-top__list a:hover { color: #fff; }
.wf-top__stars { color: #ffc93d !important; }
.wf-top__sep { width: 1px; height: 14px; background: rgba(255, 255, 255, .16); }

.wf-bar { position: relative; z-index: 3; height: var(--bar-h); background: rgba(255, 255, 255, .94); -webkit-backdrop-filter: saturate(1.6) blur(14px); backdrop-filter: saturate(1.6) blur(14px); border-bottom: 1px solid rgba(11, 16, 51, .07); transition: box-shadow .3s var(--ease), background-color .3s var(--ease); }
.wf-hdr.is-stuck .wf-bar { box-shadow: 0 10px 30px -18px rgba(11, 16, 51, .35); background: rgba(255, 255, 255, .97); }
.wf-bar__in { height: 100%; display: flex; align-items: center; gap: 20px; }
.wf-bar__prog { position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%; transform-origin: 0 50%; transform: scaleX(var(--prog, 0)); background: linear-gradient(90deg, var(--bleu), var(--bleu-400) 45%, #c9d1ff 55%, var(--rouge)); pointer-events: none; }

/* Logo (pastille tricolore + mot « WebFrance ») */
.wf-logo { --logo-web: #0c2555; --logo-fr: #e8303a; display: inline-flex; align-items: center; gap: 11px; flex: none; color: var(--encre); border-radius: 10px; }
.wf-logo__mark { width: 42px; height: 42px; flex: none; filter: drop-shadow(0 3px 8px rgba(10, 42, 147, .18)); }
.wf-logo__txt { display: grid; gap: 5px; }
.wf-logo__word { display: block; width: 156px; height: 20.3px; }
.wf-logo__tag { display: block; font-family: var(--f-text); font-size: .6rem; font-weight: 650; letter-spacing: .19em; text-transform: uppercase; color: var(--gris); line-height: 1; white-space: nowrap; }

/* Navigation principale */
.wf-nav { flex: 1; display: flex; justify-content: center; }
.wf-nav__list { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.wf-nav__item { position: static; }
.wf-nav__link {
  position: relative; display: inline-flex; align-items: center; gap: 6px; height: 44px; padding: 0 13px; border-radius: 11px;
  font-size: .97rem; font-weight: 600; color: var(--encre); white-space: nowrap; transition: background-color .2s var(--ease), color .2s var(--ease);
}
.wf-nav__link svg { width: 15px; height: 15px; color: var(--gris); transition: transform .25s var(--ease), color .2s; }
.wf-nav__link:hover, .wf-nav__item.is-open > .wf-nav__link { background: var(--bleu-50); color: var(--bleu); }
.wf-nav__item.is-open > .wf-nav__link svg { transform: rotate(180deg); color: var(--bleu); }
.wf-nav__link.is-current::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 5px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--bleu) 0 45%, transparent 45% 55%, var(--rouge) 55%); }

.wf-bar__act { display: flex; align-items: center; gap: 10px; flex: none; }
.wf-bar__client { display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 12px; border-radius: 11px; font-size: .95rem; font-weight: 600; color: var(--encre); transition: background-color .2s; }
.wf-bar__client svg { width: 19px; height: 19px; color: var(--bleu); }
.wf-bar__client:hover { background: var(--bleu-50); }
.wf-bar__cta { min-height: 46px; padding: 0 18px; }

/* Bouton menu (mobile) */
.wf-burger { display: none; position: relative; width: 46px; height: 46px; border-radius: 12px; background: var(--bleu-50); color: var(--encre); }
.wf-burger span, .wf-burger span::before, .wf-burger span::after { position: absolute; left: 50%; width: 20px; height: 2px; margin-left: -10px; border-radius: 2px; background: currentColor; transition: transform .3s var(--ease), opacity .2s; }
.wf-burger span { top: 50%; margin-top: -1px; }
.wf-burger span::before, .wf-burger span::after { content: ""; left: 0; margin-left: 0; }
.wf-burger span::before { transform: translateY(-6px); }
.wf-burger span::after { transform: translateY(6px); width: 13px; }

/* Méga-menus */
.wf-mega {
  position: absolute; left: 0; right: 0; top: 100%; z-index: 5;
  padding: 10px 0 0; pointer-events: none;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .22s var(--ease), visibility 0s linear .22s;
}
.wf-nav__item.is-open > .wf-mega { opacity: 1; visibility: visible; transform: none; pointer-events: auto; transition: opacity .2s var(--ease), transform .26s var(--ease-out), visibility 0s; }
html:not(.wf-ready) .wf-nav__item:focus-within > .wf-mega, html:not(.wf-ready) .wf-nav__item:hover > .wf-mega { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.wf-mega__panel {
  position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 0;
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-3), 0 0 0 1px rgba(11, 16, 51, .06); overflow: hidden;
}
.wf-mega__panel::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--lisere); z-index: 2; }
.wf-mega__main { padding: 28px 30px 26px; display: grid; grid-template-columns: repeat(var(--cols, 2), minmax(0, 1fr)); column-gap: 26px; row-gap: 6px; align-content: start; }
.wf-mega__title { grid-column: 1 / -1; margin: 0 0 6px 12px; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gris); }
.wf-mega__col { display: grid; gap: 2px; align-content: start; }
.wf-mega__col > .wf-mega__title { margin-bottom: 8px; }
.wf-mega__foot { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 14px; padding: 14px 12px 0; border-top: 1px solid var(--ligne); font-size: .92rem; color: var(--gris); }

.wf-mlink { display: flex; align-items: center; gap: 14px; padding: 11px 12px; border-radius: 14px; transition: background-color .18s var(--ease); }
.wf-mlink:hover, .wf-mlink:focus-visible { background: var(--papier); }
.wf-mlink .wf-ico { width: 42px; height: 42px; border-radius: 12px; transition: background-color .2s, color .2s; }
.wf-mlink:hover .wf-ico { background: var(--bleu); color: #fff; }
.wf-mlink__tx { display: grid; gap: 1px; min-width: 0; flex: 1; }
.wf-mlink__tx strong { font-size: .98rem; font-weight: 650; color: var(--encre); line-height: 1.3; }
.wf-mlink__tx small { font-size: .86rem; color: var(--gris); line-height: 1.35; }
.wf-mlink__tag { flex: none; font-style: normal; font-size: .8rem; font-weight: 700; color: var(--bleu); background: var(--bleu-50); padding: 4px 9px; border-radius: 999px; white-space: nowrap; }
.wf-mlink__tag--rouge { color: var(--rouge-600); background: var(--rouge-100); }

/* Lignes de tarif dans le méga-menu */
.wf-mprice { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 14px; padding: 12px; border-radius: 14px; transition: background-color .18s; }
.wf-mprice:hover { background: var(--papier); }
.wf-mprice > span:nth-child(2) { line-height: 1.3; }
.wf-mprice__n { font-family: var(--f-display); font-weight: 800; font-size: 1.05rem; color: var(--encre); letter-spacing: -.02em; }
.wf-mprice__d { font-size: .88rem; color: var(--gris); }
.wf-mprice__p { font-family: var(--f-display); font-weight: 800; font-size: 1.12rem; color: var(--bleu); white-space: nowrap; letter-spacing: -.02em; }
.wf-mprice__pill { margin-left: 8px; font-family: var(--f-text); font-size: .7rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #fff; background: var(--rouge); padding: 3px 7px; border-radius: 999px; vertical-align: 2px; }
.wf-mopts { display: flex; flex-wrap: wrap; gap: 8px; padding: 4px 12px 0; }
.wf-mopts span { font-size: .84rem; padding: 6px 10px; border-radius: 10px; background: var(--papier); color: var(--texte); white-space: nowrap; }
.wf-mopts b { color: var(--bleu); font-weight: 700; }

/* Encart mis en avant (colonne droite du méga-menu) */
.wf-mfeat { position: relative; display: flex; flex-direction: column; justify-content: flex-end; gap: 10px; padding: 26px; color: #d7dcf7; background: var(--nuit-900); overflow: hidden; isolation: isolate; }
.wf-mfeat__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 78% 30%; opacity: .9; }
.wf-mfeat::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(4, 6, 58, .15) 0%, rgba(4, 6, 58, .72) 48%, rgba(4, 6, 58, .96) 100%); }
.wf-mfeat__k { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--bleu-300); }
.wf-mfeat__t { font-family: var(--f-display); font-size: 1.5rem; font-weight: 800; line-height: 1.1; color: #fff; letter-spacing: -.03em; }
.wf-mfeat__p { font-size: .93rem; line-height: 1.5; }
.wf-mfeat__a { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.wf-mfeat--clair { background: var(--papier); color: var(--texte); justify-content: flex-start; }
.wf-mfeat--clair::before { display: none; }
.wf-mfeat--clair .wf-mfeat__t { color: var(--encre); }
.wf-mfeat--clair .wf-mfeat__k { color: var(--bleu); }

/* Villes dans le méga-menu */
.wf-mcities { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4px 10px; }
.wf-mcities a { display: flex; align-items: center; gap: 9px; padding: 9px 12px; border-radius: 11px; font-size: .95rem; font-weight: 550; color: var(--encre); transition: background-color .18s, color .18s; }
.wf-mcities a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--bleu-200); flex: none; transition: background-color .18s; }
.wf-mcities a:hover { background: var(--papier); color: var(--bleu); }
.wf-mcities a:hover::before { background: var(--bleu); }
.wf-mcities a.is-hq::before { background: var(--rouge); box-shadow: 0 0 0 3px var(--rouge-100); }
.wf-mcities a.is-all { grid-column: 1 / -1; font-weight: 650; color: var(--bleu); }
.wf-mcities a.is-all::before { display: none; }
.wf-mcities a.is-all svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.wf-mcities a.is-all:hover svg { transform: translateX(3px); }

/* Voile sous les menus */
.wf-scrim { position: fixed; inset: 0; z-index: 55; background: rgba(4, 6, 58, .32); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), visibility 0s linear .25s; }
.wf-scrim.is-on { opacity: 1; visibility: visible; transition: opacity .25s var(--ease), visibility 0s; }

/* ---------- Recherche de ville (combobox) ---------- */
.wf-city { position: relative; }
.wf-city__field { position: relative; display: flex; align-items: center; }
.wf-city__field > svg { position: absolute; left: 16px; width: 20px; height: 20px; color: var(--bleu); pointer-events: none; }
.wf-city__input {
  width: 100%; height: 54px; padding: 0 16px 0 48px; border-radius: 14px; border: 1.5px solid var(--ligne); background: #fff;
  font-size: 1rem; color: var(--encre); transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; appearance: none;
}
.wf-city__input::placeholder { color: #8b92b2; }
.wf-city__input:focus { outline: none; border-color: var(--bleu); box-shadow: var(--ring); }
.wf-city__list { position: absolute; left: 0; right: 0; top: calc(100% + 8px); z-index: 20; max-height: 320px; overflow: auto; overscroll-behavior: contain; margin: 0; padding: 6px; list-style: none; background: #fff; border-radius: 14px; box-shadow: var(--sh-3), 0 0 0 1px rgba(11, 16, 51, .07); }
.wf-city__opt { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 12px; border-radius: 10px; cursor: pointer; color: var(--encre); font-weight: 550; }
.wf-city__opt small { color: var(--gris); font-weight: 500; font-size: .85rem; white-space: nowrap; }
.wf-city__opt mark { background: none; color: var(--bleu); font-weight: 700; }
.wf-city__opt[aria-selected="true"], .wf-city__opt:hover { background: var(--bleu-50); }
.wf-city__empty { padding: 12px; color: var(--gris); font-size: .93rem; }
.wf-city__hint { margin-top: 10px; font-size: .85rem; color: var(--gris); }

/* ==========================================================================
   TIROIR MOBILE
   ========================================================================== */
.wf-drawer { position: fixed; inset: 0; z-index: 90; pointer-events: none; }
.wf-drawer__veil { position: absolute; inset: 0; background: rgba(2, 2, 31, .5); opacity: 0; transition: opacity .3s var(--ease); }
.wf-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(440px, 100%);
  display: flex; flex-direction: column; background: #fff; box-shadow: -30px 0 80px -30px rgba(2, 2, 31, .5);
  transform: translateX(100%); transition: transform .38s var(--ease-out); visibility: hidden;
}
.wf-drawer.is-open { pointer-events: auto; }
.wf-drawer.is-open .wf-drawer__veil { opacity: 1; }
.wf-drawer.is-open .wf-drawer__panel { transform: none; visibility: visible; }
.wf-drawer__head { flex: none; display: flex; align-items: center; justify-content: space-between; gap: 12px; height: 68px; padding: 0 16px 0 20px; border-bottom: 1px solid var(--ligne); position: relative; }
.wf-drawer__head::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: var(--lisere); }
.wf-drawer__close { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--papier); color: var(--encre); }
.wf-drawer__close svg { width: 22px; height: 22px; }
.wf-drawer__body { flex: 1; overflow-y: auto; overscroll-behavior: contain; padding: 14px 16px 24px; -webkit-overflow-scrolling: touch; }
.wf-drawer__foot { flex: none; display: grid; gap: 10px; padding: 14px 16px calc(14px + env(safe-area-inset-bottom)); border-top: 1px solid var(--ligne); background: #fff; }
.wf-drawer__foot .wf-btn { width: 100%; }
.wf-drawer__foot p { font-size: .86rem; color: var(--gris); text-align: center; }

.wf-acc { border-bottom: 1px solid var(--ligne); }
.wf-acc__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 58px; padding: 0 6px; font-family: var(--f-display); font-size: 1.14rem; font-weight: 750; letter-spacing: -.02em; color: var(--encre); text-align: left; }
.wf-acc__btn svg { width: 20px; height: 20px; color: var(--gris); transition: transform .3s var(--ease); flex: none; }
.wf-acc__btn[aria-expanded="true"] svg { transform: rotate(180deg); color: var(--bleu); }
.wf-acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s var(--ease); }
.wf-acc__panel > div { overflow: hidden; min-height: 0; }
.wf-acc__btn[aria-expanded="true"] + .wf-acc__panel { grid-template-rows: 1fr; }
.wf-acc__inner { display: grid; gap: 2px; padding: 0 0 14px; }
.wf-acc__inner .wf-mlink { padding: 10px 8px; }
.wf-acc__inner .wf-mlink .wf-ico { width: 38px; height: 38px; }
.wf-acc__link { display: flex; align-items: center; justify-content: space-between; min-height: 58px; padding: 0 6px; border-bottom: 1px solid var(--ligne); font-family: var(--f-display); font-size: 1.14rem; font-weight: 750; letter-spacing: -.02em; color: var(--encre); }
.wf-acc__link svg { width: 20px; height: 20px; color: var(--gris); }
.wf-drawer .wf-city { margin: 4px 0 8px; }
.wf-drawer .wf-mcities { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wf-drawer__meta { display: grid; gap: 12px; margin-top: 18px; padding: 16px; border-radius: var(--r); background: var(--papier); font-size: .93rem; }
.wf-drawer__meta a, .wf-drawer__meta p { display: flex; align-items: center; gap: 10px; color: var(--texte); }
.wf-drawer__meta svg { width: 18px; height: 18px; color: var(--bleu); flex: none; }
html.wf-lock, html.wf-lock body { overflow: hidden; }

/* ==========================================================================
   PIED DE PAGE
   ========================================================================== */
.wf-foot { position: relative; background: var(--nuit-950); color: #9ea6d3; font-size: .95rem; overflow: hidden; isolation: isolate; }
.wf-foot::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--lisere); }
.wf-foot a { transition: color .18s var(--ease); }
.wf-foot a:hover { color: #fff; }

.wf-foot__cta { position: relative; padding: clamp(48px, 6vw, 72px) 0; border-bottom: 1px solid rgba(255, 255, 255, .08); background: radial-gradient(120% 140% at 85% 0%, rgba(23, 51, 196, .45), transparent 60%); }
.wf-foot__cta-in { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.wf-foot__cta h2 { color: #fff; font-size: clamp(1.7rem, 1.1rem + 1.8vw, 2.6rem); max-width: 18ch; }
.wf-foot__cta p { margin-top: 8px; color: #aab3df; }
.wf-foot__cta-a { display: flex; gap: 12px; flex-wrap: wrap; }

.wf-foot__main { display: grid; grid-template-columns: minmax(0, 1.35fr) repeat(4, minmax(0, 1fr)); gap: clamp(24px, 3.4vw, 52px); padding: clamp(52px, 6vw, 76px) 0 clamp(36px, 4vw, 48px); }
.wf-foot__brand .wf-logo { --logo-web: #fff; --logo-fr: #ff4a57; }
.wf-foot__brand .wf-logo__tag { color: #7d86b8; }
.wf-foot__pitch { margin-top: 18px; max-width: 36ch; line-height: 1.6; color: #aab1db; }
.wf-foot__contact { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.wf-foot__contact li, .wf-foot__contact a { display: flex; align-items: flex-start; gap: 11px; color: #c8cdee; line-height: 1.45; }
.wf-foot__contact svg { width: 18px; height: 18px; margin-top: 2px; color: var(--bleu-300); flex: none; }
.wf-foot__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.wf-foot__badges > span { display: inline-flex; align-items: center; gap: 7px; padding: 6px 10px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, .12); background: rgba(255, 255, 255, .03); font-size: .8rem; font-weight: 600; color: #d4d8f3; }
.wf-foot__badges svg { width: 14px; height: 14px; color: var(--bleu-300); }
.wf-foot__col h3, .wf-foot__cities h3 { margin: 0 0 16px; font-family: var(--f-text); font-size: .76rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: #fff; }
.wf-foot__col ul { display: grid; gap: 4px; margin: 0; padding: 0; list-style: none; }
.wf-foot__col a { display: inline-flex; flex-wrap: wrap; align-items: center; column-gap: 8px; min-height: 34px; color: #a9b0da; }
.wf-foot__col a small { font-size: .78rem; color: #6f79ad; }

.wf-foot__cities { padding: 30px 0 34px; border-top: 1px solid rgba(255, 255, 255, .08); }
.wf-foot__cities-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.wf-foot__cities-head h3 { margin: 0; }
.wf-foot__cities-head a { font-size: .9rem; font-weight: 600; color: var(--bleu-300); }
.wf-foot__regions { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 18px 28px; }
.wf-foot__region p { margin-bottom: 6px; font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #6c76ab; }
.wf-foot__region div { display: flex; flex-wrap: wrap; gap: 2px 12px; line-height: 1.7; }
.wf-foot__region a { color: #a9b0da; font-size: .9rem; }
.wf-foot__region a.is-hq { color: #fff; font-weight: 600; }

.wf-foot__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px 28px; flex-wrap: wrap; padding: 22px 0 28px; border-top: 1px solid rgba(255, 255, 255, .08); font-size: .86rem; color: #7f88ba; }
.wf-foot__legal { display: flex; flex-wrap: wrap; gap: 6px 20px; margin: 0; padding: 0; list-style: none; }
.wf-foot__legal a { display: inline-flex; min-height: 32px; align-items: center; color: #9aa2d0; }
.wf-foot__made { display: inline-flex; align-items: center; gap: 9px; }
.wf-foot__top { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, .14); color: #fff; transition: background-color .2s, border-color .2s, transform .2s; }
.wf-foot__top:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .3); transform: translateY(-2px); }
.wf-foot__top svg { width: 18px; height: 18px; }
.wf-foot__giant { position: absolute; left: 50%; bottom: -0.2em; z-index: -1; transform: translateX(-50%); font-family: var(--f-display); font-weight: 800; font-size: clamp(5rem, 17vw, 17rem); letter-spacing: -.06em; line-height: 1; white-space: nowrap; color: transparent; -webkit-text-stroke: 1px rgba(142, 160, 255, .12); pointer-events: none; user-select: none; }

/* ==========================================================================
   RESPONSIVE (global)
   ========================================================================== */
@media (max-width: 1339px) {
  .wf-nav__link { padding: 0 10px; font-size: .95rem; }
  .wf-bar__client span { display: none; }
  .wf-bar__client { width: 44px; padding: 0; justify-content: center; }
  .wf-mega__panel { grid-template-columns: minmax(0, 1fr) 300px; }
  .wf-top__hide-lg { display: none !important; }
}
@media (max-width: 1099px) {
  :root { --bar-h: 68px; }
  .wf-nav, .wf-bar__client { display: none; }
  .wf-bar__in { justify-content: space-between; }
  .wf-burger { display: inline-block; }
  .wf-foot__main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wf-foot__brand { grid-column: 1 / -1; }
}
@media (max-width: 899px) {
  :root { --top-h: 0px; }
  .wf-top { display: none; }
  .wf-head--split { grid-template-columns: minmax(0, 1fr); grid-template-rows: none; }
  .wf-head--split > .wf-kicker, .wf-head--split > h2, .wf-head--split > .wf-lead, .wf-head--split > .wf-head__aside { grid-column: 1; grid-row: auto; }
}
@media (max-width: 599px) {
  body { font-size: 16px; }
  :root { --bar-h: 64px; }
  .wf-logo__mark { width: 36px; height: 36px; }
  .wf-logo__word { width: 134px; height: 17.5px; }
  .wf-logo__tag { display: none; }
  .wf-bar__cta { min-height: 42px; padding: 0 14px; font-size: .92rem; }
  .wf-bar__cta svg { display: none; }
  .wf-foot__main { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 30px 20px; }
  .wf-foot__regions { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 18px; }
  .wf-foot__bottom { flex-direction: column; align-items: flex-start; }
  .wf-btn--lg { min-height: 54px; }
  .wf-btn { white-space: normal; text-align: center; line-height: 1.25; padding-block: 10px; }
}
@media (max-width: 379px) {
  .wf-bar__in { gap: 10px; }
  .wf-logo__word { width: 116px; height: 15.1px; }
  .wf-logo { gap: 8px; }
  .wf-logo__mark { width: 32px; height: 32px; }
  .wf-bar__cta { padding: 0 11px; font-size: .88rem; }
  .wf-foot__regions { grid-template-columns: minmax(0, 1fr); }
}
@media (hover: none) {
  .wf-mlink:hover .wf-ico { background: var(--bleu-50); color: var(--bleu); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .wf-ready .wf-rv { opacity: 1; transform: none; }
}
