/*
Theme Name: Webstratege
Theme URI: https://webstratege.co
Author: Benjamin Czajka
Author URI: https://webstratege.co
Description: Theme custom de Webstratege.co - HTML/CSS/JS natif, zéro page builder.
Version: 0.1.0
License: GPL-2.0-or-later
Text Domain: webstratege
*/

/* =========================================================================
   0. Global animations base
   ========================================================================= */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0s !important; transition-duration: 0s !important; }
}

/* Reveal split-text H2 - words révélés au scroll */
.ws-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s cubic-bezier(0.16, 1, 0.3, 1), transform .55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
.ws-word.is-in { opacity: 1; transform: translateY(0); }

/* Hero kinetic typography */
.ws-kinetic .ws-word {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  filter: blur(4px);
}
.ws-kinetic .ws-word.is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Shimmer effect sur ws-pill-gold : retiré (buguait sur display:inline + multi-line).
   Le pill garde son style premium sans animation parasite. */

/* Back-to-top button */
.ws-back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 70;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(235, 187, 129, 0.30);
  background: rgba(0, 0, 0, 0.75);
  color: var(--ws-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background .2s ease, border-color .2s ease;
}
.ws-back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ws-back-top:hover {
  background: rgba(235, 187, 129, 0.18);
  border-color: var(--ws-gold);
}
.ws-back-top svg { width: 18px; height: 18px; }
@media (max-width: 600px) {
  .ws-back-top { bottom: 78px; right: 14px; width: 40px; height: 40px; }
}

/* Audio button visualizer (ondes pulses quand actif) */
.ws-audio-toggle.is-playing {
  border-color: var(--ws-gold);
  color: var(--ws-gold);
}
.ws-audio-toggle.is-playing::before,
.ws-audio-toggle.is-playing::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid var(--ws-gold);
  opacity: 0;
  pointer-events: none;
  animation: ws-audio-ring 2.4s ease-out infinite;
}
.ws-audio-toggle.is-playing::after { animation-delay: 1.2s; }
@keyframes ws-audio-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Progress bar verticale sur la stack PROCESSUS */
.ws-stack-progress {
  position: absolute;
  left: -28px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(235, 187, 129, 0.08);
  border-radius: 2px;
  pointer-events: none;
}
.ws-stack-progress__fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0%;
  background: linear-gradient(180deg, var(--ws-gold), rgba(235, 187, 129, 0.4));
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(235, 187, 129, 0.5);
  transition: height .12s linear;
}
@media (max-width: 1024px) {
  .ws-stack-progress { display: none; }
}

/* Photo tilt 3D - wrapper preserves halo decoration */
[data-tilt] {
  position: relative;
  transform-style: preserve-3d;
  transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================================
   0. Fade-in IntersectionObserver
   ========================================================================= */
/* Fade-in désactivé par défaut : les sections sont toujours visibles.
   Animation subtile seulement si JS active la classe ws-fade-ready */
.ws-fade-ready .ws-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.ws-fade-ready .ws-fade-in.ws-in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================================
   1. Reset + base
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-color: var(--ws-gold) #0d0d0d; /* Firefox */
  scrollbar-width: thin;
}
/* === Custom scrollbar global (Chrome/Safari/Edge) === */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track {
  background: #0a0a0a;
  border-left: 1px solid rgba(235,187,129,0.06);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--ws-gold-dark), var(--ws-gold));
  border-radius: 999px;
  border: 2px solid #0a0a0a;
  box-shadow: 0 0 8px rgba(235,187,129,0.25);
  transition: background 0.2s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--ws-gold), var(--ws-gold-2));
}
::-webkit-scrollbar-corner { background: #0a0a0a; }

/* Lenis smooth scroll : html doit pas avoir scroll-behavior, body html ne doivent pas être scrollable container */
html.lenis { height: auto; }
html.lenis, html.lenis body { overscroll-behavior: contain; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ws-text);
  background: var(--ws-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4, h5, h6, p, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }

/* =========================================================================
   2. Tokens
   ========================================================================= */
:root {
  --ws-bg:        #0a0a0a;
  --ws-bg-2:      #111111;
  --ws-bg-3:      #1a1a1a;
  --ws-border:    rgba(235, 187, 129, 0.18);
  --ws-text:      #f2f1ed;
  --ws-text-mute: rgba(242, 241, 237, 0.66);
  --ws-text-dim:  rgba(242, 241, 237, 0.42);
  --ws-gold:      #ebbb81;
  --ws-gold-2:    #f1c086;
  --ws-gold-dark: #c99a5e;
  --ws-radius:    14px;
  --ws-radius-lg: 22px;
  --ws-shadow:    0 24px 60px -20px rgba(0,0,0,0.6);
  --ws-container: 1240px;
  --ws-gap:       clamp(1rem, 2vw, 1.5rem);
  /* Easing premium global (Awwwards-grade) */
  --ws-ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --ws-ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ws-ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
}

/* === Underline reveal sur liens "normaux" (paragraphes/listes uniquement, pas les boutons) === */
.ws-main p a:not(.ws-btn):not(.ws-pill-gold),
.ws-main li a:not(.ws-btn):not(.ws-pill-gold) {
  position: relative;
  color: var(--ws-gold);
  background-image: linear-gradient(var(--ws-gold), var(--ws-gold));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.55s var(--ws-ease), color 0.3s ease;
  text-decoration: none;
  padding-bottom: 1px;
}
.ws-main p a:not(.ws-btn):not(.ws-pill-gold):hover,
.ws-main li a:not(.ws-btn):not(.ws-pill-gold):hover {
  background-size: 100% 1px;
}

/* === Image reveal au scroll (clip-path) ===
   Ajouter classe .ws-img-reveal sur les wrappers d'image. JS toggle .is-revealed. */
.ws-img-reveal {
  position: relative;
  overflow: hidden;
}
.ws-img-reveal > img,
.ws-img-reveal > picture,
.ws-img-reveal > video {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.2s var(--ws-ease);
  will-change: clip-path;
}
.ws-img-reveal.is-revealed > img,
.ws-img-reveal.is-revealed > picture,
.ws-img-reveal.is-revealed > video {
  clip-path: inset(0 0 0 0);
}
@media (prefers-reduced-motion: reduce) {
  .ws-img-reveal > img, .ws-img-reveal > picture, .ws-img-reveal > video {
    clip-path: none;
    transition: none;
  }
}

/* === Cursor blob mix-blend (la signature premium, non cheap) ===
   Un blob 32px qui suit le curseur en différé, mix-blend-mode difference
   inverse les couleurs du contenu sous lui. Visible uniquement sur desktop pointer fine.
   Le vrai curseur natif reste actif - pas de remplacement = pas cheap. */
.ws-cursor-blob {
  position: fixed;
  top: 0; left: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ws-gold);
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 0.4s var(--ws-ease), width 0.35s var(--ws-ease), height 0.35s var(--ws-ease);
  will-change: transform;
}
.ws-cursor-blob.is-active { opacity: 1; }
.ws-cursor-blob.is-hover {
  width: 60px;
  height: 60px;
}
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .ws-cursor-blob { display: none; }
}

/* === Sections : alternance + séparateurs visuels marqués === */
.ws-section {
  padding: clamp(48px, 5.5vw, 84px) 0;
  position: relative;
  border-top: 1px solid rgba(235, 187, 129, 0.08);
}
/* Alternance backgrounds : casser le tunnel noir - 2 sections "claires" + sections de couleur */
#POURQUI       { background-color: #0d0d0d !important; }
#qui-je-suis   { background: radial-gradient(ellipse at top right, rgba(235,187,129,0.04), transparent 60%), #060606 !important; }
#PROCESSUS     { background-color: #131313 !important; }
#COMPETENCES   { background-color: #0a0a0a !important; }
#use-cases     { background-color: #131313 !important; }
#approche      { background-color: #0a0a0a !important; }
#budapest      { background: radial-gradient(ellipse at center, rgba(235,187,129,0.04), transparent 60%), #131313 !important; }
#TEMOIGNAGES   { background-color: #060606 !important; }
#PARTENAIRES   { background-color: #131313 !important; padding-left: 4% !important; padding-right: 4% !important; }
#GARANTIE      { background: radial-gradient(ellipse at bottom, rgba(235,187,129,0.06), transparent 70%), #0d0d0d !important; }
#faq           { background-color: #131313 !important; padding-bottom: 90px !important; }
#contact       { background: radial-gradient(ellipse at top, rgba(235,187,129,0.08), transparent 70%), #060606 !important; padding-bottom: 140px !important; }

/* Séparateur gold décoratif marqué en haut de chaque section */
.ws-section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--ws-gold) 50%, transparent);
  opacity: 0.9;
  border-radius: 2px;
}

/* Eyebrow numéroté CENTRÉ et visible au-dessus des H2 */
.ws-section__head { position: relative; padding-top: 20px; }
.ws-section__head::before {
  content: attr(data-eyebrow);
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: var(--ws-gold);
  margin-bottom: 24px;
  text-transform: uppercase;
  opacity: 1;
  padding: 6px 16px;
  border: 1px solid rgba(235, 187, 129, 0.3);
  border-radius: 999px;
  background: rgba(235, 187, 129, 0.05);
}
.ws-section__head[data-eyebrow] { text-align: center; }
.ws-section__head:not([data-eyebrow])::before { display: none; }

/* =========================================================================
   3. Layout helpers
   ========================================================================= */
.ws-container {
  width: 100%;
  max-width: var(--ws-container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}
.ws-section {
  padding: clamp(48px, 5.5vw, 84px) 0;
  position: relative;
}
.ws-section--dim { background: var(--ws-bg-2); }
.ws-section__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.ws-section__head[style*="text-align:left"],
.ws-section__head[style*="text-align: left"] {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
/* Variante inline : pill posée juste au-dessus du titre dans une sticky aside ou un wrapper.
   Spécificité [data-eyebrow] obligatoire pour battre .ws-section__head[data-eyebrow]. */
.ws-section__head--inline[data-eyebrow] {
  text-align: left;
  max-width: none;
  margin: 0 0 14px 0;
  padding-top: 0;
}
.ws-section__head--inline::before {
  margin-bottom: 0;
}

/* =========================================================================
   4. Typography
   ========================================================================= */
.ws-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--ws-border);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ws-gold);
  background: rgba(235, 187, 129, 0.06);
  text-transform: none;
}
.ws-eyebrow svg { width: 14px; height: 14px; }

h1, .ws-h1 {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h2, .ws-h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
}
h3, .ws-h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
}
.ws-lead {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--ws-text-mute);
  line-height: 1.6;
}
/* Highlight gold text (juste color gold, pour le hero "croissance commerciale") */
.ws-highlight {
  color: var(--ws-gold);
  font-weight: inherit;
}

/* Pill gold inline - utilisé sur la plupart des H2 de la prod */
.ws-pill-gold {
  display: inline;
  background: var(--ws-gold);
  color: #07070b;
  font-weight: 700;
  font-style: italic;
  padding: 0.05em 0.4em;
  border-radius: 6px;
  line-height: inherit;
  /* Préserve les sauts de ligne propres sur les pills longues */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
/* Variante sans italic (utilisée sur "webmarketing" dans le hero) */
.ws-pill-gold--plain { font-style: normal; }

/* =========================================================================
   5. Buttons
   ========================================================================= */
.ws-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  text-transform: uppercase;
}
.ws-btn--primary {
  background: var(--ws-gold);
  color: #1a1208;
  box-shadow: 0 12px 30px -10px rgba(235,187,129,0.45);
}
.ws-btn--primary:hover {
  background: var(--ws-gold-2);
  transform: translateY(-2px);
}
.ws-btn--ghost {
  background: transparent;
  color: var(--ws-text);
  border: 1px solid var(--ws-border);
}
.ws-btn--ghost:hover {
  border-color: var(--ws-gold);
  color: var(--ws-gold);
}
.ws-btn svg { width: 16px; height: 16px; }

/* =========================================================================
   6. Scarcity bar (top alert)
   ========================================================================= */
.ws-scarcity {
  background: var(--ws-bg-3);
  color: var(--ws-text);
  font-size: 12px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--ws-border);
}
.ws-scarcity__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px 16px;
  flex-wrap: wrap;
  text-align: center;
}
.ws-scarcity__count {
  color: var(--ws-gold);
  font-weight: 700;
}
.ws-scarcity__cta {
  color: var(--ws-gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ws-scarcity__cta:hover { color: var(--ws-gold-2); }

/* =========================================================================
   7. Header / Nav
   ========================================================================= */
.ws-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(235, 187, 129, 0.08);
  transition: background .25s ease, border-color .25s ease, padding .25s ease;
}
.ws-header.is-scrolled {
  background: rgba(5, 5, 5, 0.95);
  border-bottom-color: rgba(235, 187, 129, 0.15);
}
.ws-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.ws-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ws-text);
}
.ws-logo img {
  width: 38px;
  height: 38px;
  display: block;
}
.ws-logo em {
  color: var(--ws-gold);
  font-style: normal;
}
.ws-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}
.ws-nav a {
  position: relative;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ws-text-mute);
  transition: color .2s ease;
  border-radius: 8px;
}
.ws-nav a:hover {
  color: var(--ws-text);
  background: rgba(255, 255, 255, 0.03);
}
.ws-nav a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--ws-gold);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.ws-nav a:hover::after { transform: scaleX(1); }
.ws-header__cta {
  padding: 11px 20px !important;
  font-size: 13px !important;
  letter-spacing: 0.06em !important;
}
/* === Section contact EN/HU (au-dessus du footer) === */
.ws-i18n-contact {
  max-width: 720px;
  margin: 0 auto;
}
.ws-i18n-contact__alert {
  margin: 0 0 24px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
.ws-i18n-contact__alert--ok {
  background: rgba(46, 160, 67, 0.12);
  border: 1px solid rgba(46, 160, 67, 0.4);
  color: #4ec272;
}
.ws-i18n-contact__alert--err {
  background: rgba(217, 48, 37, 0.12);
  border: 1px solid rgba(217, 48, 37, 0.4);
  color: #ff7b6e;
}
.ws-i18n-contact__form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.ws-i18n-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .ws-i18n-contact__row { grid-template-columns: 1fr; }
}
.ws-i18n-contact__field {
  display: block;
}
.ws-i18n-contact__field > span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ws-gold);
  margin-bottom: 8px;
}
.ws-i18n-contact__field input,
.ws-i18n-contact__field textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(235,187,129,0.15);
  border-radius: 12px;
  color: var(--ws-text);
  font: inherit;
  font-size: 15px;
  line-height: 1.5;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.ws-i18n-contact__field input:focus,
.ws-i18n-contact__field textarea:focus {
  outline: none;
  border-color: var(--ws-gold);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(235,187,129,0.12);
}
.ws-i18n-contact__field textarea { resize: vertical; min-height: 120px; }
.ws-i18n-contact__submit {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* === Header tools (sound + lang switcher + CTA) === */
.ws-header__tools {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ws-header__sound {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 999px;
  background: rgba(235, 187, 129, 0.06);
  border: 1px solid rgba(235, 187, 129, 0.18);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
  padding: 0;
}
.ws-header__sound:hover {
  background: rgba(235, 187, 129, 0.12);
  border-color: var(--ws-gold);
  color: var(--ws-gold);
  transform: scale(1.04);
}
.ws-header__sound.is-on {
  background: rgba(235, 187, 129, 0.15);
  border-color: var(--ws-gold);
  color: var(--ws-gold);
  box-shadow: 0 0 0 3px rgba(235,187,129,0.10);
}
.ws-header__sound svg { width: 18px; height: 18px; }

/* === Language switcher === */
.ws-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px 6px;
  border-radius: 999px;
  background: rgba(235, 187, 129, 0.06);
  border: 1px solid rgba(235, 187, 129, 0.18);
  position: relative;
}
.ws-lang-switch__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  border-radius: 999px;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.ws-lang-switch__link:hover {
  color: var(--ws-gold);
  background: rgba(235, 187, 129, 0.10);
}
.ws-lang-switch__link.is-active {
  color: #1a1208;
  background: linear-gradient(135deg, var(--ws-gold) 0%, #f1c086 100%);
  box-shadow: 0 2px 10px rgba(235,187,129,0.32), 0 0 0 1px rgba(235,187,129,0.4);
  cursor: default;
  pointer-events: none;
}
.ws-burger {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border: 1px solid rgba(235, 187, 129, 0.2);
  background: rgba(235, 187, 129, 0.05);
  border-radius: 10px;
  color: var(--ws-text);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.ws-burger:hover {
  background: rgba(235, 187, 129, 0.15);
  border-color: var(--ws-gold);
  color: var(--ws-gold);
}
.ws-burger[aria-expanded="true"] .ws-burger__open { display: none; }
.ws-burger[aria-expanded="true"] .ws-burger__close { display: block !important; }

@media (max-width: 1024px) {
  .ws-nav, .ws-header__cta { display: none; }
  .ws-burger { display: inline-flex; position: relative; z-index: 100001; }
  /* Sur mobile : les tools (sound+switcher) restent visibles à côté du burger */
  .ws-header__tools { gap: 6px; }
  .ws-header__sound { width: 36px; height: 36px; }
  .ws-lang-switch { padding: 3px 5px; }
  .ws-lang-switch__link { min-width: 24px; padding: 4px 7px; font-size: 10px; }
  /* Le backdrop-filter sur le header cree un stacking context isolant. On le retire mobile. */
  .ws-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(8, 8, 8, 0.95);
  }
  .ws-header.is-scrolled { background: rgba(5, 5, 5, 0.98); }

  /* L'ancien overlay sur .ws-nav--open n'est plus utilise (remplace par <dialog>) */
}

/* ============================================================
 * MENU MOBILE — pattern <dialog> natif (portail body, gere par le browser)
 * Le <dialog> est inject en JS en fin de body, donc echappe a tout stacking-context.
 * showModal() gere : focus trap, ESC dismiss, ::backdrop, inert sur le reste.
 * ============================================================ */
.ws-nav-dialog {
  /* Reset des defaults <dialog> */
  border: 0;
  padding: 0;
  margin: 0;
  max-width: none;
  max-height: none;
  width: 100vw;
  height: 100vh;
  height: 100dvh; /* dynamic viewport height : OK iOS Safari barre URL */
  inset: 0;
  background: linear-gradient(180deg, #080808 0%, #0f0f0f 100%);
  color: var(--ws-text);
  overflow-y: auto;
  overscroll-behavior: contain;
  font-family: 'Poppins', system-ui, sans-serif;
}
.ws-nav-dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ws-nav-dialog[open] {
  display: flex;
  flex-direction: column;
  animation: ws-nav-dialog-in .25s ease forwards;
}
@keyframes ws-nav-dialog-in {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Bouton close, en haut a droite, TOUJOURS visible dans le dialog */
.ws-nav-dialog__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(235, 187, 129, 0.12);
  border: 1px solid rgba(235, 187, 129, 0.4);
  color: var(--ws-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
  z-index: 1;
}
.ws-nav-dialog__close:hover,
.ws-nav-dialog__close:active {
  background: rgba(235, 187, 129, 0.22);
  border-color: var(--ws-gold);
  transform: scale(1.05);
}
.ws-nav-dialog__close svg { width: 22px; height: 22px; }

/* Header du dialog : logo a gauche + switcher de langue a droite */
.ws-nav-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 0;
  /* On reserve la place a droite pour le bouton close */
  padding-right: 88px;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}
.ws-nav-dialog__header .ws-logo {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ws-text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.ws-nav-dialog__header .ws-logo img {
  width: 36px;
  height: 36px;
  display: block;
}
.ws-nav-dialog__header .ws-logo em {
  color: var(--ws-gold);
  font-style: normal;
}
.ws-nav-dialog__header .ws-lang-switch {
  /* Reset au cas ou les vars du parent ne sont pas appliquees */
  display: inline-flex;
  padding: 3px 5px;
}

/* Container des liens */
.ws-nav-dialog__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 36px 24px 40px;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}
.ws-nav-dialog__inner a {
  display: block;
  padding: 18px 22px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ws-text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(235, 187, 129, 0.10);
  border-radius: 14px;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.ws-nav-dialog__inner a:hover,
.ws-nav-dialog__inner a:active,
.ws-nav-dialog__inner a:focus {
  background: rgba(235, 187, 129, 0.10);
  border-color: var(--ws-gold);
  color: var(--ws-gold);
  transform: translateX(4px);
}

/* Scroll lock via <html> (et pas <body>), ne casse pas position:sticky parents */
html.ws-nav-lock { overflow: hidden; }
html.ws-nav-lock body { overflow: hidden; }

/* Petit mobile (<480) : on simplifie le header */
@media (max-width: 480px) {
  .ws-header__sound { display: none; }
  .ws-header__inner { gap: 12px; height: 64px; }
  .ws-header__inner .ws-logo { font-size: 0.95rem; }
  .ws-header__inner .ws-logo img { width: 32px; height: 32px; }
  .ws-lang-switch { padding: 2px 4px; }
  .ws-lang-switch__link { min-width: 22px; padding: 3px 5px; font-size: 9.5px; }
  .ws-nav--open { padding-top: 84px; }
  .ws-nav--open a {
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--ws-text);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(235, 187, 129, 0.10);
  }
  .ws-nav--open a:hover, .ws-nav--open a:active {
    background: rgba(235, 187, 129, 0.10);
    border-color: var(--ws-gold);
    color: var(--ws-gold);
  }
  .ws-nav--open a::after { display: none; }
  .ws-nav--open::after {
    content: "";
    display: block;
    margin-top: 16px;
  }
  .ws-nav--open__cta {
    margin-top: 24px;
    display: flex !important;
    justify-content: center;
  }
}

/* =========================================================================
   8. Hero
   ========================================================================= */
.ws-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 7vw, 100px) 0 clamp(80px, 9vw, 140px);
  background: var(--ws-bg);
}
.ws-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.ws-hero__inner { position: relative; z-index: 1; }
.ws-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
}
.ws-hero__title { margin-top: 18px; }
.ws-hero__sub {
  margin-top: 22px;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--ws-text-mute);
  max-width: 560px;
}
.ws-hero__sub strong { color: var(--ws-text); font-weight: 600; }
.ws-hero__cta { margin-top: 32px; }

/* Hero - widget Trustindex (avis Google) */
.ws-hero__reviews {
  min-width: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws-hero__reviews .ti-widget {
  width: 100% !important;
  max-width: 420px !important;
}


/* =========================================================================
   9. Footer pro (4 cols + sociaux + adresse)
   ========================================================================= */
.ws-footer {
  background: linear-gradient(180deg, #050505 0%, #000 100%);
  border-top: 1px solid rgba(235,187,129,0.12);
  padding: 80px 0 28px;
  color: var(--ws-text-mute);
  font-size: 14px;
  position: relative;
}
.ws-footer::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 160px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--ws-gold), transparent);
  opacity: 0.55;
}
.ws-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 56px;
  margin-bottom: 50px;
}
.ws-footer__brand p {
  margin: 0 0 18px;
  line-height: 1.6;
  font-size: 14px;
  max-width: 360px;
}
.ws-footer__addr {
  font-style: normal;
  color: var(--ws-text-mute);
  font-size: 13px;
  line-height: 1.6;
  padding: 14px 18px;
  background: rgba(235,187,129,0.04);
  border: 1px solid rgba(235,187,129,0.10);
  border-radius: 12px;
  margin-bottom: 22px;
  max-width: 320px;
}
.ws-footer__addr strong {
  display: block;
  color: var(--ws-gold);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.ws-footer__social {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ws-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(235,187,129,0.15);
  color: var(--ws-text-mute);
  transition: all .2s ease;
}
.ws-footer__social a:hover {
  background: rgba(235,187,129,0.10);
  border-color: var(--ws-gold);
  color: var(--ws-gold);
  transform: translateY(-2px);
}
.ws-footer__social svg { width: 18px; height: 18px; }
.ws-footer h4 {
  color: var(--ws-text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 20px;
}
.ws-footer ul { list-style: none; padding: 0; margin: 0; }
.ws-footer ul li { margin-bottom: 10px; }
.ws-footer ul li a {
  font-size: 14px;
  color: var(--ws-text-mute);
  transition: color .2s ease, padding .2s ease;
}
.ws-footer ul li a:hover {
  color: var(--ws-gold);
  padding-left: 4px;
}
.ws-footer__bottom {
  border-top: 1px solid rgba(235,187,129,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--ws-text-dim);
}
.ws-footer__sov {
  color: var(--ws-gold);
  opacity: 0.7;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .ws-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ws-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .ws-footer { padding: 60px 0 24px; }
  .ws-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .ws-footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; text-align: left; }
}

/* =========================================================================
   9.4. Band STATS sous hero
   ========================================================================= */
.ws-stats {
  background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  border-top: 1px solid rgba(235,187,129,0.10);
  border-bottom: 1px solid rgba(235,187,129,0.10);
  padding: 36px 0;
  position: relative;
}
.ws-stats::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 140px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--ws-gold), transparent);
  opacity: 0.5;
}
.ws-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
  text-align: center;
}
.ws-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
.ws-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(235,187,129,0.20), transparent);
}
.ws-stat__icon {
  width: 36px; height: 36px;
  color: var(--ws-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ws-stat__icon svg { width: 24px; height: 24px; }
.ws-stat__num {
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 800;
  color: var(--ws-text);
  letter-spacing: -0.02em;
  line-height: 1;
}
.ws-stat__label {
  font-size: 12px;
  color: var(--ws-text-mute);
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .ws-stats { padding: 28px 0; }
  .ws-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .ws-stat:nth-child(2)::after { display: none; }
}

/* =========================================================================
   9.4b. Section QUI JE SUIS (Benjamin)
   ========================================================================= */
.ws-who__inner {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.ws-who__media {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.ws-who__halo {
  position: absolute;
  inset: -30px;
  background:
    radial-gradient(circle at 30% 30%, rgba(235, 187, 129, 0.35), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(235, 187, 129, 0.18), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(255, 220, 170, 0.10), transparent 70%);
  filter: blur(28px);
  border-radius: 50%;
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;
  animation: ws-who-halo 8s ease-in-out infinite;
}
@keyframes ws-who-halo {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
  50% { transform: scale(1.08) rotate(180deg); opacity: 0.95; }
}
.ws-who__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(235,187,129,0.3);
  box-shadow: 0 20px 60px -20px rgba(235,187,129,0.35);
  display: block;
}
.ws-who__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: var(--ws-gold);
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid rgba(235,187,129,0.3);
  border-radius: 999px;
  background: rgba(235,187,129,0.05);
  margin-bottom: 22px;
}
.ws-who__copy h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}
.ws-who__copy p {
  color: var(--ws-text-mute);
  line-height: 1.7;
  margin-bottom: 16px;
}
.ws-who__copy strong { color: var(--ws-text); font-weight: 600; }
.ws-who__cta { margin-top: 20px; }
@media (max-width: 800px) {
  .ws-who__inner { grid-template-columns: 1fr; text-align: center; }
  .ws-who__media { display: flex; justify-content: center; }
  .ws-who__media img { max-width: 220px; }
  .ws-who__eyebrow { margin-left: auto; margin-right: auto; }
}

/* =========================================================================
   9.5. Bandeau clients défilant (marquee)
   ========================================================================= */
.ws-clients {
  background: #000;
  border-top: 1px solid var(--ws-border);
  border-bottom: 1px solid var(--ws-border);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}
.ws-clients::before,
.ws-clients::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ws-clients::before { left: 0;  background: linear-gradient(90deg, #000, transparent); }
.ws-clients::after  { right: 0; background: linear-gradient(270deg, #000, transparent); }
.ws-clients__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ws-clients-scroll 50s linear infinite;
}
.ws-clients:hover .ws-clients__track { animation-play-state: paused; }
.ws-clients__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  /* margin-right au lieu de gap pour avoir un loop parfait (gap ne s'applique pas au dernier child) */
  margin-right: 60px;
}
.ws-clients__item img {
  width: auto;
  max-height: 60px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.4) opacity(0.65);
  transition: filter .25s ease, opacity .25s ease;
}
.ws-clients__item:hover img { filter: none; opacity: 1; }
/* Wordmark texte pour clients sans logo image */
.ws-clients__wordmark {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(242, 241, 237, 0.55);
  white-space: nowrap;
  padding: 0 6px;
  transition: color .25s ease, opacity .25s ease;
}
.ws-clients__item:hover .ws-clients__wordmark {
  color: var(--ws-gold);
}
@keyframes ws-clients-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 600px) {
  .ws-clients__item { margin-right: 40px; height: 56px; }
  .ws-clients__track { animation-duration: 36s; }
  .ws-clients__item img { max-height: 44px; max-width: 120px; }
  .ws-clients__wordmark { font-size: 15px; }
}

/* =========================================================================
   10. Section : Votre business mérite mieux (#POURQUI - 2 cols)
   ========================================================================= */
.ws-gold-dot { color: var(--ws-gold); }
.ws-pourqui {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  background: var(--ws-bg-3);
  border-radius: 16px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}
.ws-pourqui__copy {
  padding: clamp(36px, 4vw, 56px);
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.7;
  color: var(--ws-text-mute);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ws-pourqui__copy p { margin-bottom: 16px; }
.ws-pourqui__copy strong { color: var(--ws-text); font-weight: 600; }
.ws-pourqui__intro { margin-top: 24px !important; color: var(--ws-text); }
.ws-pourqui__media {
  background-image: url('/wp-content/uploads/2023/10/Benjamin-Czajka-Legier-scaled.webp');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-radius: 0;
  min-height: 580px;
}
.ws-pourqui__cta { text-align: center; margin-top: 40px; }
.ws-checklist {
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
}
.ws-checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--ws-text);
}
.ws-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--ws-gold);
  color: #1a1208;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.ws-check svg { width: 16px; height: 16px; }
@media (max-width: 900px) {
  .ws-pourqui { grid-template-columns: 1fr; }
  .ws-pourqui__media { min-height: 320px; order: -1; }
}

/* =========================================================================
   11. Section : PROCESSUS - intro 2 cols + 4 étapes verticales
   ========================================================================= */
.ws-processus__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.ws-processus__copy h2 { margin-bottom: 20px; line-height: 1.05; }
.ws-processus__copy .ws-lead { margin-bottom: 22px; }
.ws-processus__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws-processus__icon img {
  max-width: 240px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(235,187,129,0.25));
}
@media (max-width: 900px) {
  .ws-processus__intro { grid-template-columns: 1fr; }
  .ws-processus__icon img { max-width: 180px; }
}

/* === Section PROCESSUS - PIN SCROLL HORIZONTAL ===
   Desktop ≥ 1024px : la section se "pin" en haut, les 4 phases défilent horizontalement
   au rythme du scroll vertical. JS dans main.js calcule la translateX.
   Mobile : layout vertical classique en fallback.
=================================================================== */
.ws-section--pin {
  padding: 0 !important;
  border-top: none;
  background: var(--ws-bg);
}
.ws-section--pin::before { display: none; }

@media (min-width: 1024px) {
  .ws-pin-outer {
    height: calc(100vh + (var(--ws-pin-overflow, 0px))); /* JS injecte la longueur via CSS var */
    position: relative;
    background: #131313;
  }
  .ws-pin-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .ws-pin-container {
    width: 100%;
    max-width: 100%;
    padding: 0 clamp(24px, 4vw, 56px);
  }
  .ws-pin-inner {
    display: grid;
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    gap: clamp(32px, 4vw, 64px);
    align-items: stretch;
    height: 78vh;
  }
  .ws-pin-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 16px;
  }
  .ws-pin-intro h2 {
    font-size: clamp(2rem, 2.8vw, 2.8rem);
    line-height: 1.05;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
  }
  .ws-pin-intro .ws-lead {
    margin-bottom: 28px;
    font-size: clamp(0.95rem, 1.05vw, 1.05rem);
    color: var(--ws-text-mute);
    line-height: 1.65;
  }
  .ws-pin-intro__cta { margin-bottom: 28px; }
  .ws-pin-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ws-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.85;
    padding-top: 20px;
    border-top: 1px solid rgba(235, 187, 129, 0.10);
  }
  .ws-pin-hint svg {
    width: 18px;
    height: 18px;
    animation: ws-pin-hint-arrow 1.8s ease-in-out infinite;
  }
  @keyframes ws-pin-hint-arrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
  }

  .ws-pin-track-wrap {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Fade doux sur les bords pour que les cartes apparaissent/disparaissent
       en douceur au lieu d'être coupées net */
    -webkit-mask-image: linear-gradient(90deg,
      transparent 0,
      #000 64px,
      #000 calc(100% - 64px),
      transparent 100%);
            mask-image: linear-gradient(90deg,
      transparent 0,
      #000 64px,
      #000 calc(100% - 64px),
      transparent 100%);
  }
  .ws-pin-track {
    display: flex;
    gap: clamp(20px, 2vw, 32px);
    height: auto;
    align-items: center;
    will-change: transform;
    padding: 0 clamp(40px, 6vw, 100px) 0 clamp(8px, 1vw, 16px);
  }
  .ws-pin-card {
    flex: 0 0 clamp(420px, 36vw, 520px);
    height: auto;
    display: flex;
  }
  .ws-pin-card__inner {
    width: 100%;
    background: linear-gradient(135deg, rgba(22,22,22,0.98) 0%, rgba(10,10,10,0.98) 100%);
    border: 1px solid rgba(235,187,129,0.15);
    border-radius: 20px;
    padding: clamp(28px, 3vw, 44px) clamp(32px, 3.5vw, 52px);
    box-shadow:
      0 -1px 0 rgba(255,255,255,0.04) inset,
      0 24px 48px -12px rgba(0,0,0,0.7),
      0 0 0 1px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .ws-pin-card__inner::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ws-gold), transparent);
    opacity: 0.6;
  }
  .ws-pin-card__head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(235,187,129,0.08);
  }
  .ws-pin-card__icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(235,187,129,0.22), rgba(235,187,129,0.08));
    border: 1px solid rgba(235,187,129,0.25);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .ws-pin-card__icon img { width: 36px; height: 36px; }
  .ws-pin-card__phase {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--ws-gold);
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .ws-pin-card__title {
    font-size: clamp(1.2rem, 1.5vw, 1.55rem);
    font-weight: 700;
    color: var(--ws-text);
    line-height: 1.15;
    letter-spacing: -0.015em;
  }
  .ws-pin-card__num {
    font-size: clamp(2.6rem, 4vw, 4.2rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(235,187,129,0.55);
    line-height: 1;
    letter-spacing: -0.04em;
    pointer-events: none;
    text-shadow: 0 2px 16px rgba(235,187,129,0.18);
  }
  .ws-pin-card__desc {
    color: var(--ws-text-mute);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 22px;
  }
  .ws-pin-card__points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: auto;
  }
  .ws-pin-card__points li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ws-text);
    font-size: 0.95rem;
  }
  .ws-pin-card__bullet {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 6px;
    background: rgba(235,187,129,0.14);
    color: var(--ws-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(235,187,129,0.30);
  }
  .ws-pin-card__bullet svg { width: 12px; height: 12px; }

  /* Progress bar */
  .ws-pin-progress {
    margin-top: 24px;
    position: relative;
    height: 28px;
    display: flex;
    align-items: center;
  }
  .ws-pin-progress::before {
    content: "";
    position: absolute;
    left: 0; right: 0;
    height: 2px;
    background: rgba(255,255,255,0.06);
    border-radius: 999px;
  }
  .ws-pin-progress__fill {
    position: absolute;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--ws-gold-dark), var(--ws-gold));
    border-radius: 999px;
    transition: width 0.15s ease-out;
  }
  .ws-pin-progress__steps {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    z-index: 1;
  }
  .ws-pin-progress__step {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1.5px solid rgba(235,187,129,0.45);
    color: rgba(235,187,129,0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(0,0,0,0.6);
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  }
  .ws-pin-progress__step.is-active {
    background: var(--ws-gold);
    color: #111;
    border-color: var(--ws-gold);
    transform: scale(1.12);
    box-shadow: 0 0 0 4px rgba(235,187,129,0.18), 0 4px 16px rgba(235,187,129,0.4);
  }
}

/* Tablet / Mobile : fallback vertical, on désactive le pin scroll */
@media (max-width: 1023px) {
  .ws-section--pin {
    padding: clamp(48px, 5.5vw, 84px) 0 !important;
    border-top: 1px solid rgba(235, 187, 129, 0.08);
  }
  .ws-section--pin::before {
    display: block;
    content: "";
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    width: 140px; height: 3px;
    background: linear-gradient(90deg, transparent, var(--ws-gold) 50%, transparent);
    opacity: 0.9; border-radius: 2px;
  }
  .ws-pin-outer { height: auto !important; }
  .ws-pin-sticky { position: static !important; height: auto !important; overflow: visible !important; }
  .ws-pin-container { padding: 0 clamp(16px, 4vw, 32px); margin: 0 auto; max-width: var(--ws-container); }
  .ws-pin-inner {
    display: block;
    height: auto;
  }
  .ws-pin-intro { margin-bottom: 40px; }
  .ws-pin-hint { display: none; }
  .ws-pin-track-wrap { overflow: visible; }
  .ws-pin-track {
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: none !important;
    height: auto;
    padding-right: 0;
  }
  .ws-pin-card {
    flex: 1 1 auto;
    width: 100%;
    height: auto;
  }
  .ws-pin-card__inner {
    padding: 28px 22px 26px;
    border-radius: 20px;
    background: linear-gradient(165deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(235, 187, 129, 0.18);
    box-shadow: 0 12px 36px -16px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
  }
  .ws-pin-card__inner::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(235,187,129,0.45), transparent);
  }
  .ws-pin-card__head {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(235,187,129,0.08);
  }
  .ws-pin-card__icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(235,187,129,0.16), rgba(235,187,129,0.04));
    border: 1px solid rgba(235, 187, 129, 0.32);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .ws-pin-card__icon img { width: 32px; height: 32px; }
  .ws-pin-card__title { font-size: 1.1rem; font-weight: 600; line-height: 1.25; }
  /* Numero phase masque (demande Benjamin 17/05 - inutile + visuel charge) */
  .ws-pin-card__num { display: none; }
  .ws-pin-progress { display: none; }
  /* FIX 2026-05-17 : bullets/list n'étaient stylés que dans @media>=1024 → SVG plein écran sur mobile */
  .ws-pin-card__points { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 20px; padding: 0; list-style: none; }
  .ws-pin-card__points li { display: flex; align-items: center; gap: 12px; color: var(--ws-text); font-size: 0.95rem; }
  .ws-pin-card__bullet { flex-shrink: 0; width: 22px; height: 22px; border-radius: 6px; background: rgba(235,187,129,0.14); color: var(--ws-gold); display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(235,187,129,0.30); }
  .ws-pin-card__bullet svg { width: 12px; height: 12px; }
  .ws-pin-card__phase { display: block; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ws-gold); margin-bottom: 6px; }
  .ws-pin-card__desc { color: var(--ws-text-mute); font-size: 0.95rem; line-height: 1.6; margin: 12px 0 0; }
}

/* === Section PROCESSUS - LEGACY 2 cols (gardé pour compat) === */
.ws-processus-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: flex-start;
  margin-top: 40px;
}
.ws-processus-sticky {
  position: sticky;
  top: 100px;
  padding-right: 20px;
}
.ws-processus-sticky h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.ws-processus-sticky .ws-lead {
  margin-bottom: 28px;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: var(--ws-text-mute);
  line-height: 1.65;
}
.ws-processus-sticky__cta { margin-bottom: 32px; }
.ws-processus-sticky__outro {
  padding-top: 24px;
  border-top: 1px solid rgba(235,187,129,0.10);
  color: var(--ws-text-mute);
  font-size: 0.92rem;
  line-height: 1.55;
}
.ws-processus-sticky__outro a {
  color: var(--ws-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ws-stack {
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}
.ws-stack__card {
  position: sticky;
  top: calc(100px + var(--idx) * 28px);
  margin-bottom: 24px;
  perspective: 1000px;
}
.ws-stack__card-inner {
  background: linear-gradient(135deg, rgba(22,22,22,0.98) 0%, rgba(10,10,10,0.98) 100%);
  border: 1px solid rgba(235,187,129,0.15);
  border-radius: 20px;
  padding: 44px 52px;
  box-shadow:
    0 -1px 0 rgba(255,255,255,0.04) inset,
    0 24px 48px -12px rgba(0,0,0,0.7),
    0 0 0 1px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.ws-stack__card-inner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ws-gold), transparent);
  opacity: 0.6;
}
.ws-stack__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(235,187,129,0.08);
}
.ws-stack__icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(235,187,129,0.22), rgba(235,187,129,0.08));
  border: 1px solid rgba(235,187,129,0.25);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ws-stack__icon img { width: 42px; height: 42px; }
.ws-stack__phase {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--ws-gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ws-stack__title {
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  font-weight: 700;
  color: var(--ws-text);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.ws-stack__num {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  color: rgba(235,187,129,0.10);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}
.ws-stack__desc {
  color: var(--ws-text-mute);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 26px;
  max-width: 720px;
}
.ws-stack__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.ws-stack__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ws-text);
  font-size: 0.95rem;
}
.ws-stack__bullet {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(235,187,129,0.14);
  color: var(--ws-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(235,187,129,0.30);
}
.ws-stack__bullet svg { width: 12px; height: 12px; }

/* Tablet : passage à 1 col mais sidebar reste sticky en haut */
@media (max-width: 1024px) {
  .ws-processus-grid { grid-template-columns: 1fr; gap: 40px; }
  .ws-processus-sticky { position: static; padding-right: 0; }
}
/* Mobile : pas de sticky */
@media (max-width: 700px) {
  .ws-stack__card { position: static; margin-bottom: 16px; }
  .ws-stack__card-inner { padding: 28px 24px; border-radius: 16px; }
  .ws-stack__head { grid-template-columns: auto 1fr; gap: 16px; }
  .ws-stack__num { display: none; }
  .ws-stack__icon { width: 56px; height: 56px; }
  .ws-stack__icon img { width: 32px; height: 32px; }
  .ws-stack__title { font-size: 1.15rem; }
  .ws-stack__points { grid-template-columns: 1fr; }
}

/* Timeline storytelling */
.ws-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 60px;
}
.ws-timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--ws-gold) 0%, rgba(235,187,129,0.15) 100%);
  border-radius: 1px;
}
.ws-timeline__item {
  position: relative;
  margin-bottom: 32px;
}
.ws-timeline__item:last-child { margin-bottom: 0; }
.ws-timeline__marker {
  position: absolute;
  left: -60px;
  top: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ws-bg);
  border: 2px solid var(--ws-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--ws-bg), 0 8px 24px -6px rgba(235,187,129,0.4);
}
.ws-timeline__num {
  color: var(--ws-gold);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.ws-timeline__card {
  background: linear-gradient(135deg, rgba(20,20,20,0.95) 0%, rgba(8,8,8,0.95) 100%);
  border: 1px solid rgba(235,187,129,0.10);
  border-radius: 16px;
  padding: 32px 36px;
  transition: all .3s ease;
}
.ws-timeline__card:hover {
  border-color: rgba(235,187,129,0.35);
  transform: translateX(4px);
  box-shadow: 0 8px 32px -4px rgba(235,187,129,0.18);
}
.ws-timeline__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(235,187,129,0.10);
}
.ws-timeline__icon {
  width: 64px; height: 64px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(235,187,129,0.18), rgba(235,187,129,0.06));
  border-radius: 14px;
  border: 1px solid rgba(235,187,129,0.20);
  display: flex; align-items: center; justify-content: center;
}
.ws-timeline__icon img { width: 38px; height: 38px; }
.ws-timeline__phase {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ws-gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ws-timeline__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ws-text);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.ws-timeline__desc {
  color: var(--ws-text-mute);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 22px;
}
.ws-timeline__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.ws-timeline__points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ws-text);
  font-size: 0.9rem;
}
.ws-timeline__bullet {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(235,187,129,0.12);
  color: var(--ws-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(235,187,129,0.25);
}
.ws-timeline__bullet svg { width: 12px; height: 12px; }

@media (max-width: 700px) {
  .ws-timeline { padding-left: 40px; }
  .ws-timeline::before { left: 15px; }
  .ws-timeline__marker { left: -40px; width: 32px; height: 32px; }
  .ws-timeline__num { font-size: 0.75rem; }
  .ws-timeline__card { padding: 24px 22px; }
  .ws-timeline__head { gap: 14px; }
  .ws-timeline__icon { width: 52px; height: 52px; }
  .ws-timeline__title { font-size: 1.1rem; }
  .ws-timeline__points { grid-template-columns: 1fr; }
}

/* =========================================================================
   12. Section : COMPETENCES - code exact Benjamin (carousel + modal)
   ========================================================================= */
.ws-carousel-wrapper { position: relative; width: 100%; max-width: 1200px; margin: 0 auto; padding: 20px 0; overflow: hidden; }
.ws-carousel-track { display: flex; gap: 24px; padding-bottom: 20px; transition: transform 0.4s ease-in-out; }
.ws-card { flex: 0 0 calc((100% - 48px) / 3); background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 40px 32px; display: flex; flex-direction: column; align-items: flex-start; transition: transform 0.3s ease, border-color 0.3s ease; box-sizing: border-box; position: relative; cursor: pointer; }
.ws-card:hover { border-color: rgba(235, 187, 129, 0.4); transform: translateY(-5px); }
.ws-card-icon { width: 60px; height: auto; margin-bottom: 24px; }
.ws-card h3 { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: #ffffff; margin: 0 0 16px 0; text-transform: uppercase; }
.ws-card p { font-family: 'Poppins', sans-serif; font-size: 14px; color: rgba(255, 255, 255, 0.5); line-height: 1.6; margin: 0 0 20px 0; flex-grow: 1; }
.ws-card-btn { color: #ebbb81; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; margin-top: auto; display: inline-flex; align-items: center; gap: 6px; transition: color 0.3s ease, transform 0.3s ease; }
.ws-arr { width: 16px !important; height: 16px !important; }
.ws-card:hover .ws-card-btn { color: #fff; transform: translateX(4px); }

.ws-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 20px; }
.ws-arrow { display: flex !important; align-items: center !important; justify-content: center !important; width: 48px !important; height: 48px !important; border-radius: 50% !important; border: 1px solid rgba(255, 255, 255, 0.1) !important; color: #ebbb81 !important; cursor: pointer !important; transition: 0.3s !important; flex-shrink: 0; }
.ws-arrow:hover { background: rgba(235, 187, 129, 0.1) !important; border-color: #ebbb81 !important; }
.ws-arrow svg { width: 24px !important; height: 24px !important; }
.ws-dots { display: flex; gap: 8px; }
.ws-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.15); cursor: pointer; transition: 0.3s; }
.ws-dot.active { background: #ebbb81; width: 24px; border-radius: 4px; }

.ws-modal { position: fixed !important; inset: 0 !important; width: 100vw !important; height: 100vh !important; display: none; align-items: center; justify-content: center; z-index: 99999999 !important; }
.ws-modal.open { display: flex !important; }
.ws-modal-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.ws-modal-close { position: absolute !important; top: 15px !important; right: 15px !important; background: transparent !important; border: none !important; color: #fff !important; font-size: 24px !important; cursor: pointer !important; opacity: 0.5 !important; transition: 0.3s !important; padding: 0 !important; line-height: 1 !important; width: 40px !important; height: 40px !important; box-shadow: none !important; outline: none !important; }
.ws-modal-close:hover { opacity: 1 !important; color: #ebbb81 !important; background: transparent !important; }
.ws-modal-box { position: relative; background: #111111; border: 1px solid rgba(235, 187, 129, 0.3); border-radius: 16px; padding: 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.8); z-index: 2; display: flex; flex-direction: column; max-height: 90vh; width: 90%; max-width: 550px; }
.ws-modal-body { overflow-y: auto; color: #fff; padding-right: 5px; }
.ws-modal-body h3 { font-family: 'Poppins', sans-serif; color: #ebbb81; font-size: 24px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; }
.ws-modal-body h4 { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 600; margin: 20px 0 10px 0; }
.ws-modal-body p { font-family: 'Poppins', sans-serif; color: rgba(255, 255, 255, 0.7); font-size: 15px; line-height: 1.7; margin-bottom: 15px; }
.ws-modal-footer { margin-top: 25px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.ws-btn-primary { color: #ebbb81; font-weight: 700; text-decoration: none; font-size: 14px; font-family: 'Poppins', sans-serif; transition: 0.3s; }
.ws-btn-primary:hover { color: #fff; transform: translateX(5px); }

@media (max-width: 992px) { .ws-card { flex: 0 0 calc((100% - 24px) / 2); } }
@media (max-width: 768px) {
    .ws-card { flex: 0 0 100%; }
    .ws-modal-box { width: calc(100% - 40px) !important; margin: 0 20px !important; padding: 30px 20px !important; }
}


/* =========================================================================
   13. Section : Use cases - code exact Benjamin (showcase wrapper)
   ========================================================================= */
.ws-showcase-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto 0 auto;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
.ws-showcase-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.ws-showcase-sidebar {
    flex: 0 0 230px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}
.ws-tab-btn {
    background: transparent;
    border: none;
    border-left: 2px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    padding: 12px 20px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.ws-tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
    border-left-color: rgba(235, 187, 129, 0.5);
}
.ws-tab-btn.active {
    border-left-color: #ebbb81;
    color: #ebbb81;
    background: linear-gradient(90deg, rgba(235, 187, 129, 0.1) 0%, transparent 100%);
    font-weight: 600;
}
.ws-showcase-content {
    flex: 1;
    position: relative;
    min-height: 280px;
}
.ws-case-panel { display: none; }
.ws-case-panel.active {
    display: block;
    animation: wsFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes wsFadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.ws-case-layout {
    background: #111111;
    border: 1px solid rgba(235, 187, 129, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    transform: translateZ(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.ws-case-layout:hover {
    border-color: rgba(235, 187, 129, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}
.ws-case-data {
    flex: 0 0 45%;
    position: relative;
    background-size: cover !important;
    background-position: 30% center;
    background-repeat: no-repeat;
    background-color: #000;
    background-blend-mode: luminosity;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 40px;
    margin: 0;
    min-height: 360px;
}
.ws-case-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(17,17,17,1) 100%);
    z-index: 1;
}
.ws-case-box { position: relative; z-index: 2; }
.ws-case-tag {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.08);
}
.ws-case-metric {
    font-size: 48px;
    font-weight: 800;
    color: #ebbb81;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}
.ws-case-metric span {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-top: 5px;
    letter-spacing: 0;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}
.ws-case-info {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ws-case-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
}
.ws-case-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}
.ws-case-skills {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 30px;
}
.ws-skill-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0;
}
.ws-skill-pill svg { width: 16px; height: 16px; color: #ebbb81; }
.ws-case-panel.active .ws-skill-pill {
    animation: wsFadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.ws-case-panel.active .ws-skill-pill:nth-child(1) { animation-delay: 0.2s; }
.ws-case-panel.active .ws-skill-pill:nth-child(2) { animation-delay: 0.3s; }
.ws-case-panel.active .ws-skill-pill:nth-child(3) { animation-delay: 0.4s; }
.ws-case-panel.active .ws-skill-pill:nth-child(4) { animation-delay: 0.5s; }
.ws-skill-pill:hover {
    border-color: #ebbb81;
    color: #ffffff;
    background: rgba(235, 187, 129, 0.05);
}
@media (max-width: 992px) {
    .ws-showcase-container { flex-direction: column; gap: 25px; }
    .ws-showcase-sidebar { flex: auto; flex-direction: row; flex-wrap: wrap; justify-content: center; margin-top: 0; }
    .ws-tab-btn { border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50px; padding: 8px 16px; font-size: 13px; text-align: center; }
    .ws-tab-btn:hover { border-color: rgba(235, 187, 129, 0.5); }
    .ws-tab-btn.active { border-color: #ebbb81; background: rgba(235, 187, 129, 0.1); }
    .ws-case-layout { flex-direction: column; }
    .ws-case-data { flex: auto; padding: 40px 30px; min-height: 280px; }
    .ws-case-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(17,17,17,1) 100%); }
    .ws-case-info { padding: 0 30px 40px 30px; }
}


/* =========================================================================
   14. Section : Approche qui change (valeurs)
   ========================================================================= */
.ws-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.ws-value {
  background: var(--ws-bg-3);
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius);
  padding: 24px;
}
.ws-value__num {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--ws-gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.ws-value__title { color: var(--ws-text); margin-bottom: 8px; }
.ws-value__desc { color: var(--ws-text-mute); font-size: 0.88rem; line-height: 1.55; }
@media (max-width: 1000px) { .ws-values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .ws-values { grid-template-columns: 1fr; } }

/* =========================================================================
   15. Section : Budapest (texte gauche + globe droite)
   ========================================================================= */
.ws-budapest {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.ws-budapest__copy h2 { margin-bottom: 22px; }
.ws-budapest__copy p {
  color: var(--ws-text-mute);
  margin-bottom: 16px;
  line-height: 1.65;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
}
.ws-budapest__copy strong { color: var(--ws-text); }
.ws-budapest__globe {
  position: relative;
  min-height: 460px;
}
.ws-budapest__globe .globe-wrapper { max-width: 100% !important; height: 460px !important; }
@media (max-width: 900px) {
  .ws-budapest { grid-template-columns: minmax(0, 1fr); }
  .ws-budapest__copy, .ws-budapest__globe { min-width: 0; max-width: 100%; }
  .ws-budapest__globe { min-height: 320px; }
  .ws-budapest__globe .globe-wrapper { height: 320px !important; width: 100% !important; max-width: 100% !important; }
}

/* =========================================================================
   16. Section : Réputation (témoignages)
   ========================================================================= */
.ws-reviews {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ws-review {
  background: var(--ws-bg-3);
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius-lg);
  padding: 22px;
}
.ws-review__head { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.ws-review__head img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--ws-bg-2);
}
.ws-review__name { font-weight: 600; color: var(--ws-text); font-size: 14px; }
.ws-review__stars { color: var(--ws-gold); font-size: 13px; letter-spacing: 2px; }
.ws-review__quote { color: var(--ws-text-mute); font-size: 0.9rem; line-height: 1.55; font-style: italic; }
@media (max-width: 1000px) { .ws-reviews { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .ws-reviews { grid-template-columns: 1fr; } }

/* =========================================================================
   17. Section : Stack tech partenaires
   ========================================================================= */
/* === Section PARTENAIRES - 3 cards (logo + tagline) === */
.ws-partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.ws-partner {
  display: block;
  background: linear-gradient(135deg, rgba(22,22,22,0.95), rgba(8,8,8,0.95));
  border: 1px solid rgba(235,187,129,0.10);
  border-radius: 16px;
  padding: 36px 32px;
  text-decoration: none;
  color: inherit;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.ws-partner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ws-gold), transparent);
  opacity: 0.4;
  transition: opacity .3s ease;
}
.ws-partner:hover {
  border-color: rgba(235,187,129,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px -8px rgba(235,187,129,0.18);
}
.ws-partner:hover::before { opacity: 1; }
.ws-partner__logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(235,187,129,0.08);
}
.ws-partner__logo img {
  max-height: 50px;
  max-width: 180px;
  width: auto;
  filter: brightness(0.95);
  transition: filter .3s ease;
}
.ws-partner:hover .ws-partner__logo img { filter: brightness(1.1); }
.ws-partner__wordmark {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ws-text);
  line-height: 1;
}
.ws-partner__wordmark-accent {
  color: var(--ws-gold);
}
.ws-partner__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ws-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ws-partner__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ws-text);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.ws-partner__desc {
  color: var(--ws-text-mute);
  font-size: 0.92rem;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .ws-partners { grid-template-columns: 1fr; gap: 16px; }
}

/* =========================================================================
   18. Section : Garantie - Sceau premium + 4 garanties spécifiques
   ========================================================================= */
.ws-guarantee {
  max-width: 1100px;
  margin: 18px auto 0;
}

/* Header : sceau gauche + intro droite */
.ws-guarantee__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
  margin-bottom: 60px;
}

.ws-guarantee__seal {
  position: relative;
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws-guarantee__rays {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: ws-seal-rotate 30s linear infinite;
}
@keyframes ws-seal-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.ws-guarantee__seal-inner {
  position: relative;
  z-index: 2;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(235,187,129,0.18) 0%, rgba(235,187,129,0.04) 70%);
  border: 1px solid rgba(235,187,129,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow:
    inset 0 0 30px rgba(235,187,129,0.08),
    0 12px 40px -10px rgba(235,187,129,0.30);
}
.ws-guarantee__seal-pct {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--ws-gold);
  line-height: 1;
  letter-spacing: -0.04em;
  font-feature-settings: "tnum";
}
.ws-guarantee__seal-pct span {
  font-size: 1.6rem;
  font-weight: 700;
  margin-left: 2px;
  vertical-align: top;
}
.ws-guarantee__seal-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--ws-text);
  text-transform: uppercase;
  opacity: 0.85;
}

.ws-guarantee__intro h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}
.ws-guarantee__intro .ws-lead {
  color: var(--ws-text-mute);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.65;
  margin: 0;
}
.ws-guarantee__intro strong { color: var(--ws-text); }

/* Grille des 4 garanties */
.ws-guarantees {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 0 0 50px;
  padding: 0;
  list-style: none;
}
.ws-guarantees__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: flex-start;
  padding: 28px 30px;
  background: linear-gradient(135deg, rgba(20,20,20,0.7), rgba(10,10,10,0.7));
  border: 1px solid rgba(235,187,129,0.12);
  border-radius: 16px;
  transition: all .3s ease;
}
.ws-guarantees__item:hover {
  border-color: rgba(235,187,129,0.30);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px -10px rgba(235,187,129,0.18);
}
.ws-guarantees__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(235,187,129,0.18), rgba(235,187,129,0.06));
  border: 1px solid rgba(235,187,129,0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ws-gold);
  flex-shrink: 0;
}
.ws-guarantees__icon svg { width: 26px; height: 26px; }
.ws-guarantees__item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ws-text);
  letter-spacing: -0.005em;
  margin-bottom: 8px;
  line-height: 1.25;
}
.ws-guarantees__item p {
  color: var(--ws-text-mute);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* CTA bottom */
.ws-guarantee__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 32px;
  border-top: 1px solid rgba(235,187,129,0.10);
  text-align: center;
}
.ws-guarantee__cta p {
  color: var(--ws-text-mute);
  font-size: 0.95rem;
  margin: 0;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .ws-guarantee__head { grid-template-columns: 1fr; text-align: center; }
  .ws-guarantee__seal { margin: 0 auto; width: 180px; height: 180px; }
  .ws-guarantee__seal-inner { width: 130px; height: 130px; }
  .ws-guarantee__seal-pct { font-size: 2.5rem; }
  .ws-guarantee__seal-pct span { font-size: 1.2rem; }
  .ws-guarantees { grid-template-columns: 1fr; gap: 14px; }
  .ws-guarantees__item { padding: 22px 24px; gap: 16px; }
  /* Centrage mobile complet de la section engagement */
  .ws-guarantee__intro { text-align: center; }
  .ws-guarantee__intro .ws-section__head { justify-content: center; display: flex; }
  .ws-guarantee__intro .ws-lead { margin-left: auto; margin-right: auto; max-width: 560px; }
  .ws-guarantees__item { text-align: left; }
}

/* =========================================================================
   19. Section : FAQ - 2 cols (sidebar sticky + accordion numéroté)
   ========================================================================= */
.ws-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.6fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: flex-start;
  margin-top: 18px;
}
.ws-faq-aside {
  position: sticky;
  top: 100px;
  padding-right: 20px;
}
.ws-faq-aside h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
}
.ws-faq-aside .ws-lead {
  color: var(--ws-text-mute);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.65;
  margin-bottom: 30px;
}
.ws-faq-aside__cta { margin-bottom: 32px; }
.ws-faq-aside__hint {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(235,187,129,0.05);
  border: 1px solid rgba(235,187,129,0.15);
  border-radius: 12px;
  font-size: 13px;
  color: var(--ws-text-mute);
  line-height: 1.5;
}
.ws-faq-aside__hint svg { width: 18px; height: 18px; color: var(--ws-gold); flex-shrink: 0; margin-top: 1px; }
.ws-faq-aside__hint a { color: var(--ws-gold); border-bottom: 1px solid rgba(235,187,129,0.4); }
.ws-faq-aside__hint a:hover { color: #fff; border-color: var(--ws-gold); }

.ws-faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ws-faq__item {
  background: linear-gradient(135deg, rgba(20,20,20,0.7) 0%, rgba(10,10,10,0.7) 100%);
  border: 1px solid rgba(235,187,129,0.10);
  border-radius: 14px;
  overflow: hidden;
  transition: all .25s ease;
}
.ws-faq__item:hover {
  border-color: rgba(235,187,129,0.25);
  background: linear-gradient(135deg, rgba(25,25,25,0.85) 0%, rgba(14,14,14,0.85) 100%);
}
.ws-faq__item[open] {
  border-color: rgba(235,187,129,0.40);
  background: linear-gradient(135deg, rgba(28,24,18,0.95) 0%, rgba(14,12,8,0.95) 100%);
  box-shadow: 0 8px 32px -8px rgba(235,187,129,0.15);
}
.ws-faq__q {
  list-style: none;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 22px 28px;
  cursor: pointer;
  user-select: none;
}
.ws-faq__q::-webkit-details-marker { display: none; }
.ws-faq__num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ws-gold);
  font-feature-settings: "tnum";
  padding: 4px 10px;
  border: 1px solid rgba(235,187,129,0.25);
  border-radius: 8px;
  background: rgba(235,187,129,0.05);
  transition: all .25s ease;
}
.ws-faq__item[open] .ws-faq__num {
  background: var(--ws-gold);
  color: #1a1208;
  border-color: var(--ws-gold);
}
.ws-faq__qtext {
  font-weight: 600;
  color: var(--ws-text);
  font-size: 1.02rem;
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.ws-faq__toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(235,187,129,0.20);
  color: var(--ws-gold);
  flex-shrink: 0;
  transition: all .25s ease;
}
.ws-faq__chev {
  width: 14px; height: 14px;
  transition: transform .25s ease;
}
.ws-faq__item[open] .ws-faq__toggle {
  background: var(--ws-gold);
  color: #1a1208;
  border-color: var(--ws-gold);
}
.ws-faq__item[open] .ws-faq__chev {
  transform: rotate(45deg);
}
.ws-faq__a {
  padding: 0 28px 26px;
  color: var(--ws-text-mute);
  font-size: 0.95rem;
  line-height: 1.7;
  /* Indenter pour aligner avec le qtext */
  padding-left: 76px;
}
.ws-faq__a p { margin: 0; }
.ws-faq__a strong { color: var(--ws-text); }
.ws-faq__a em { color: var(--ws-gold); font-style: normal; }

@media (max-width: 1024px) {
  .ws-faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .ws-faq-aside { position: static; padding-right: 0; text-align: center; }
  .ws-faq-aside h2 br { display: none; }
  .ws-faq-aside .ws-lead { margin-left: auto; margin-right: auto; max-width: 540px; }
  .ws-faq-aside__cta { justify-content: center; display: flex; }
  .ws-faq-aside__hint { justify-content: center; }
  .ws-faq { max-width: 720px; margin-left: auto; margin-right: auto; }
  /* Eyebrow "10 · FAQ" centre en accord avec le reste */
  .ws-faq-aside .ws-section__head,
  .ws-faq-aside .ws-section__head--inline { display: flex; justify-content: center; }
}
@media (max-width: 600px) {
  .ws-faq__q { padding: 18px 18px; gap: 14px; }
  .ws-faq__qtext { font-size: 0.95rem; }
  .ws-faq__num { padding: 3px 8px; font-size: 12px; }
  .ws-faq__a { padding: 0 18px 20px 18px; }
}

/* =========================================================================
   20. Section : CTA final
   ========================================================================= */
.ws-section--cta {
  background:
    radial-gradient(circle at 50% 50%, rgba(235,187,129,0.12), transparent 60%),
    var(--ws-bg);
}
.ws-final {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.ws-final h2 { margin-bottom: 18px; }
.ws-final .ws-lead { margin-bottom: 28px; }

/* Audio background + bouton flottant - apparaît après scroll > 400px pour ne pas chevaucher le hero */
.ws-audio-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 50; /* sous le modal (99999999), au-dessus du reste */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--ws-text);
  border: 1px solid var(--ws-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.ws-audio-toggle.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ws-modal.open ~ .ws-audio-bg .ws-audio-toggle,
.ws-modal.open + .ws-audio-bg .ws-audio-toggle { display: none; }
@media (max-width: 600px) {
  .ws-audio-toggle { bottom: 14px; left: 14px; padding: 8px 12px; font-size: 12px; }
  /* Sur mobile, masquer le label pour gagner de la place */
  .ws-audio-toggle__label { display: none; }
  .ws-audio-toggle { padding: 10px; }
  .ws-audio-toggle__icon { font-size: 16px; margin: 0; }
}
.ws-audio-toggle:hover {
  background: rgba(235, 187, 129, 0.18);
  color: var(--ws-gold);
  border-color: var(--ws-gold);
}
.ws-audio-toggle__icon { font-size: 14px; }

/* === Section APPROCHE - FULL-WIDTH 2-cols sans padding vertical === */
.ws-section--full {
  padding: 0 !important;
  margin: 0;
  width: 100%;
  position: relative;
  background: #0a0a0a;
  border-top: 1px solid rgba(235,187,129,0.10);
  border-bottom: 1px solid rgba(235,187,129,0.10);
}
.ws-section--full::before { display: none; }

.ws-approche-full {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.5fr);
  align-items: stretch;
  min-height: 600px;
}
.ws-approche-full__copy {
  padding: clamp(60px, 7vw, 100px) clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(235,187,129,0.10);
}
.ws-approche-full__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: var(--ws-gold);
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid rgba(235,187,129,0.3);
  border-radius: 999px;
  background: rgba(235,187,129,0.05);
  margin-bottom: 28px;
  align-self: flex-start;
}
.ws-approche-full__copy h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  line-height: 1.1;
  margin-bottom: 22px;
}
.ws-approche-full__copy .ws-lead {
  margin-bottom: 30px;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: var(--ws-text-mute);
  line-height: 1.6;
}
.ws-approche-full__values {
  display: flex;
  align-items: stretch;
}
.ws-approche-full__values .ws-stripe-bench {
  max-width: 100% !important;
  border: 0 !important;
  width: 100% !important;
}
@media (max-width: 1024px) {
  .ws-approche-full { grid-template-columns: 1fr; }
  .ws-approche-full__copy { border-right: 0; border-bottom: 1px solid rgba(235,187,129,0.10); }
}

/* outro processus */
.ws-processus__outro {
  text-align: center;
  margin-top: 40px;
  color: var(--ws-text-mute);
}
.ws-processus__outro a {
  color: var(--ws-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Réviseur des sections "ws-section--dim" autour du composant ws-stripe-bench
   pour éviter que le bg du composant collide avec ws-section--dim */
.ws-section--dim .ws-stripe-bench { background: transparent; }

/* =========================================================================
   21. Blog - design magazine inspiré indepro.fr
   ========================================================================= */
.ws-blog,
.ws-single,
.ws-page {
  background: var(--ws-bg);
  min-height: 70vh;
}

/* HERO Blog centré (inspiré indepro) */
.ws-blog-hero--centered {
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(235,187,129,0.10), transparent 60%),
    radial-gradient(ellipse at 20% 100%, rgba(235,187,129,0.05), transparent 60%),
    #060606;
  border-bottom: 1px solid rgba(235,187,129,0.10);
}
.ws-blog-hero--centered::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ws-gold), transparent);
  opacity: 0.5;
}
.ws-blog-hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: var(--ws-gold);
  text-transform: uppercase;
  padding: 7px 18px;
  border: 1px solid rgba(235,187,129,0.3);
  border-radius: 999px;
  background: rgba(235,187,129,0.05);
  margin-bottom: 28px;
}
.ws-blog-hero--centered h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 auto 24px;
  max-width: 900px;
  color: var(--ws-text);
}
.ws-blog-hero--centered h1 em {
  font-style: italic;
  font-weight: 800;
  color: var(--ws-gold);
}
.ws-blog-hero__sub {
  color: var(--ws-text-mute);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 38px;
}
.ws-blog-hero__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 800px;
  margin: 0 auto;
}
.ws-blog-tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ws-text-mute);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(235,187,129,0.12);
  border-radius: 999px;
  transition: all .2s ease;
}
.ws-blog-tag:hover {
  background: rgba(235,187,129,0.08);
  border-color: rgba(235,187,129,0.40);
  color: var(--ws-gold);
}
.ws-blog-tag.is-current {
  background: var(--ws-gold);
  color: #1a1208;
  border-color: var(--ws-gold);
}
.ws-blog-hero__back {
  margin-top: 24px;
}
.ws-blog-hero__back a {
  color: var(--ws-text-mute);
  font-size: 13px;
}
.ws-blog-hero__back a:hover { color: var(--ws-gold); }

/* GRID magazine : featured 1er post sur 2 colonnes */
.ws-blog-grid-section {
  padding: 70px 0 100px;
}
.ws-blog-grid--magazine {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ws-blog-card {
  position: relative;
  background: #0a0a0a;
  border: 1px solid rgba(235,187,129,0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: all .3s ease;
}
.ws-blog-card:hover {
  border-color: rgba(235,187,129,0.30);
  transform: translateY(-4px);
}
.ws-blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.ws-blog-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(235,187,129,0.12), rgba(235,187,129,0.02));
}
.ws-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}
.ws-blog-card:hover .ws-blog-card__media img {
  transform: scale(1.06);
}
.ws-blog-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
/* Featured card : overlay encore plus discret pour préserver la photo */
.ws-blog-card--featured .ws-blog-card__overlay {
  background: linear-gradient(180deg, transparent 65%, rgba(0,0,0,0.30) 100%);
}
.ws-blog-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(235,187,129,0.25);
}
.ws-blog-card__placeholder svg { width: 56px; height: 56px; }
.ws-blog-card__cat {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #1a1208;
  background: var(--ws-gold);
  padding: 6px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  z-index: 2;
}
.ws-blog-card__body {
  padding: 24px 26px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ws-blog-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ws-text);
  letter-spacing: -0.005em;
  margin-bottom: 16px;
  transition: color .25s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ws-blog-card:hover .ws-blog-card__title { color: var(--ws-gold); }
.ws-blog-card__excerpt {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ws-text-mute);
  margin-bottom: 22px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ws-blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(235,187,129,0.10);
  font-size: 12px;
  color: var(--ws-text-dim);
  letter-spacing: 0.02em;
}
.ws-blog-card__readmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(235,187,129,0.10);
  color: var(--ws-gold);
  transition: all .25s ease;
}
.ws-blog-card__readmore svg { width: 14px; height: 14px; }
.ws-blog-card:hover .ws-blog-card__readmore {
  background: var(--ws-gold);
  color: #1a1208;
  transform: translateX(2px);
}

/* Featured 1er post : prend 2 colonnes sur desktop */
.ws-blog-card--featured {
  grid-column: span 2;
  grid-row: span 1;
}
.ws-blog-card--featured .ws-blog-card__media {
  aspect-ratio: 16 / 9;
}
.ws-blog-card--featured .ws-blog-card__title {
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  -webkit-line-clamp: 2;
}
.ws-blog-card--featured .ws-blog-card__body {
  padding: 32px 36px 30px;
}
.ws-blog-card--featured .ws-blog-card__cat {
  font-size: 11px;
  padding: 7px 14px;
  top: 20px;
  left: 20px;
}

/* Pagination */
.ws-blog-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 70px;
}
.ws-blog-pagination a,
.ws-blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ws-text-mute);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(235,187,129,0.10);
  border-radius: 12px;
  transition: all .2s ease;
}
.ws-blog-pagination a:hover {
  background: rgba(235,187,129,0.08);
  border-color: rgba(235,187,129,0.30);
  color: var(--ws-gold);
}
.ws-blog-pagination .current {
  background: var(--ws-gold);
  color: #1a1208;
  border-color: var(--ws-gold);
}

.ws-blog-empty {
  text-align: center;
  padding: 80px 20px;
}
.ws-blog-empty p {
  color: var(--ws-text-mute);
  font-size: 1rem;
  margin-bottom: 24px;
}

/* CTA bottom blog (inspiré indepro "Prêt à passer à la pratique ?") */
.ws-blog-cta {
  padding: 0 0 100px;
}
.ws-blog-cta__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 50px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(235,187,129,0.18), transparent 70%),
    linear-gradient(135deg, rgba(22,22,22,0.95), rgba(8,8,8,0.95));
  border: 1px solid rgba(235,187,129,0.18);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.ws-blog-cta__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ws-gold), transparent);
  opacity: 0.6;
}
.ws-blog-cta__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: var(--ws-gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.ws-blog-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}
.ws-blog-cta p {
  color: var(--ws-text-mute);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================================
   SINGLE - Layout magazine inspiré indepro.fr (article + aside sticky)
   ========================================================================= */
.ws-single-art {
  background: var(--ws-bg);
  padding-bottom: 80px;
}

/* Hero compact en haut - plus aéré, pattern subtle */
.ws-single-art__hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(235,187,129,0.08), transparent 60%),
    #060606;
  border-bottom: 1px solid rgba(235,187,129,0.08);
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.ws-single-art__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(235,187,129,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(235,187,129,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.ws-single-art__hero > .ws-container {
  position: relative;
  z-index: 1;
}
.ws-single-art__hero .ws-breadcrumb { margin-bottom: 30px; }
.ws-single-art__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--ws-gold);
  text-transform: uppercase;
  padding: 7px 16px;
  border: 1px solid rgba(235,187,129,0.30);
  border-radius: 999px;
  background: rgba(235,187,129,0.05);
  margin-bottom: 22px;
}
.ws-single-art__title {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 32px;
  max-width: 960px;
  color: var(--ws-text);
}
.ws-single-art__meta {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid rgba(235,187,129,0.10);
  margin-top: 8px;
}
.ws-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ws-text-mute);
  letter-spacing: 0.02em;
}
.ws-meta-item svg { width: 16px; height: 16px; color: var(--ws-gold); }
.ws-meta-item--author { gap: 10px; }
.ws-meta-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(235,187,129,0.3);
  background: rgba(235,187,129,0.1);
  display: inline-block;
  vertical-align: middle;
  object-fit: cover;
}
.ws-meta-item--author strong { color: var(--ws-text); font-weight: 600; }

/* Rating widget compact en début d'article */
.ws-single-art__main > .ws-rating.ws-rating--compact {
  margin: 0 0 30px;
}

/* Grid 2 cols : article (2fr) / aside sticky (1fr) - meilleur ratio lecture */
.ws-single-art__grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
  gap: 70px;
  align-items: flex-start;
  max-width: 1320px;
  margin: 0 auto;
}

/* Article main */
.ws-single-art__main { min-width: 0; }

/* Cover : si vraie image présente seulement, sinon masqué (pas de placeholder gold) */
.ws-single-art__cover {
  margin: 0 0 50px;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0a0a0a;
  border: 1px solid rgba(235,187,129,0.10);
}
.ws-single-art__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: 0 !important;
}
.ws-single-art__cover:empty,
.ws-single-art__main > .ws-single-art__cover:not(:has(img)) {
  display: none;
}

/* Aside sticky droite */
.ws-single-art__aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding-right: 6px;
}
.ws-single-art__aside::-webkit-scrollbar { width: 4px; }
.ws-single-art__aside::-webkit-scrollbar-thumb { background: rgba(235,187,129,0.2); border-radius: 2px; }
.ws-aside-block {
  background: linear-gradient(135deg, rgba(22,22,22,0.85), rgba(8,8,8,0.85));
  border: 1px solid rgba(235,187,129,0.12);
  border-radius: 16px;
  padding: 22px 22px;
}
.ws-aside-block__t {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--ws-gold);
  text-transform: uppercase;
  margin: 0 0 14px;
  line-height: 1.2;
}
.ws-aside-block__t svg { width: 16px; height: 16px; flex-shrink: 0; }

/* TOC : details collapsible */
details.ws-aside-toc { padding: 0; }
details.ws-aside-toc > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
details.ws-aside-toc > summary::-webkit-details-marker,
details.ws-aside-toc > summary::marker { display: none; }
.ws-aside-toc__icon { display: inline-flex; }
.ws-aside-toc__icon svg { width: 16px; height: 16px; }
.ws-aside-toc__chev {
  margin-left: auto;
  display: inline-flex;
  color: var(--ws-gold);
  transition: transform .25s ease;
}
.ws-aside-toc__chev svg { width: 16px; height: 16px; }
details.ws-aside-toc[open] > summary .ws-aside-toc__chev { transform: rotate(180deg); }
details.ws-aside-toc[open] > summary {
  border-bottom-color: rgba(235,187,129,0.10);
}

/* TOC list (visible only when details open) */
.ws-aside-toc__list {
  list-style: none;
  padding: 12px 14px 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 360px;
  overflow-y: auto;
}
.ws-aside-toc__list::-webkit-scrollbar { width: 3px; }
.ws-aside-toc__list::-webkit-scrollbar-thumb { background: rgba(235,187,129,0.2); border-radius: 2px; }
.ws-aside-toc__item a {
  display: block;
  padding: 8px 10px;
  font-size: 13px;
  color: var(--ws-text-mute);
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition: all .2s ease;
  line-height: 1.4;
  background-image: none !important;
}
.ws-aside-toc__item--h3 a {
  padding-left: 22px;
  font-size: 12px;
}
.ws-aside-toc__item a:hover {
  color: var(--ws-text);
  background: rgba(235,187,129,0.05);
  border-left-color: rgba(235,187,129,0.5);
}
.ws-aside-toc__item a.is-current {
  color: var(--ws-gold);
  background: rgba(235,187,129,0.10);
  border-left-color: var(--ws-gold);
}

/* CTA card aside */
.ws-aside-cta {
  background: linear-gradient(135deg, rgba(235,187,129,0.12), rgba(235,187,129,0.03)) !important;
  border-color: rgba(235,187,129,0.30) !important;
}
.ws-aside-block__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--ws-gold);
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(235,187,129,0.12);
  border-radius: 6px;
  margin-bottom: 14px;
}
.ws-aside-cta h3.ws-aside-block__t {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--ws-text);
  line-height: 1.3;
  margin-bottom: 12px;
}
.ws-aside-block__lead {
  font-size: 13px;
  color: var(--ws-text-mute);
  line-height: 1.55;
  margin: 0 0 16px;
}
.ws-aside-block__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ws-aside-block__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--ws-text);
  line-height: 1.4;
}
.ws-aside-block__bullets svg {
  width: 14px; height: 14px;
  color: var(--ws-gold);
  flex-shrink: 0;
}
.ws-aside-block__cta {
  width: 100%;
  justify-content: center;
  padding: 11px 18px !important;
  font-size: 13px !important;
}

/* Social aside */
.ws-aside-social__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ws-aside-social__list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--ws-text-mute);
  border: 1px solid rgba(235,187,129,0.08);
  background-image: none !important;
  transition: all .2s ease;
}
.ws-aside-social__list a:hover {
  background: rgba(235,187,129,0.08);
  border-color: rgba(235,187,129,0.35);
  color: var(--ws-gold);
}
.ws-aside-social__list svg {
  width: 18px;
  height: 18px;
  color: var(--ws-gold);
  flex-shrink: 0;
}

/* =========================================================================
   Article - Typographie complète (espacements + hiérarchie)
   ========================================================================= */
.ws-single-art .ws-article__content {
  max-width: 100%;
  margin: 0;
  background: linear-gradient(180deg, rgba(20,20,20,0.55), rgba(10,10,10,0.55));
  border: 1px solid rgba(235,187,129,0.10);
  border-radius: 18px;
  padding: clamp(32px, 4vw, 60px) clamp(28px, 4vw, 60px);
  box-shadow: 0 4px 24px -8px rgba(0,0,0,0.5);
  font-size: 1.06rem;
  line-height: 1.78;
  color: rgba(242, 241, 237, 0.85);
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga";
}

/* Paragraphes : grande respiration */
.ws-single-art .ws-article__content p {
  margin: 0 0 1.4em;
  color: rgba(242, 241, 237, 0.82);
  line-height: 1.78;
}
.ws-single-art .ws-article__content p:last-child { margin-bottom: 0; }

/* Premier paragraphe : lead, plus grand */
.ws-single-art .ws-article__content > p:first-of-type,
.ws-single-art .ws-article__content > .ws-rating + p {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--ws-text);
  font-weight: 400;
  margin-bottom: 2em;
}

/* H2 : grand, espacé, accent gold subtle */
.ws-single-art .ws-article__content h2 {
  font-size: clamp(1.55rem, 2.3vw, 1.9rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.018em;
  color: var(--ws-text);
  margin: 3.2em 0 1em;
  padding: 0;
  position: relative;
}
.ws-single-art .ws-article__content h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--ws-gold), transparent);
  border-radius: 1px;
  margin-top: 18px;
  opacity: 0.7;
}
.ws-single-art .ws-article__content h2:first-child { margin-top: 0; }

/* H3 : medium, espacé */
.ws-single-art .ws-article__content h3 {
  font-size: clamp(1.18rem, 1.7vw, 1.4rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--ws-text);
  margin: 2.4em 0 0.8em;
}

/* H4 : petit, accent gold */
.ws-single-art .ws-article__content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ws-gold);
  margin: 1.8em 0 0.7em;
  text-transform: none;
}

/* Strong / em */
.ws-single-art .ws-article__content strong {
  color: var(--ws-text);
  font-weight: 600;
}
.ws-single-art .ws-article__content em {
  color: var(--ws-gold);
  font-style: italic;
  font-weight: 400;
}

/* Listes : aérées, puces gold */
.ws-single-art .ws-article__content ul,
.ws-single-art .ws-article__content ol {
  margin: 1.4em 0 1.8em;
  padding-left: 1.6em;
  color: rgba(242, 241, 237, 0.82);
}
.ws-single-art .ws-article__content ul li,
.ws-single-art .ws-article__content ol li {
  margin-bottom: 0.7em;
  line-height: 1.7;
  padding-left: 0.3em;
}
.ws-single-art .ws-article__content ul li::marker {
  color: var(--ws-gold);
  font-size: 1.1em;
}
.ws-single-art .ws-article__content ol li::marker {
  color: var(--ws-gold);
  font-weight: 700;
}
.ws-single-art .ws-article__content li > strong:first-child,
.ws-single-art .ws-article__content li > b:first-child { color: var(--ws-gold); }

/* Listes imbriquées */
.ws-single-art .ws-article__content ul ul,
.ws-single-art .ws-article__content ol ol,
.ws-single-art .ws-article__content ul ol,
.ws-single-art .ws-article__content ol ul {
  margin: 0.6em 0;
}

/* Liens (override la règle générique pour respecter le boxed) */
.ws-single-art .ws-article__content a:not(.ws-btn) {
  text-decoration: none;
  color: var(--ws-text);
  background-image: linear-gradient(180deg, transparent 92%, rgba(235,187,129,0.5) 92%);
  transition: background-image .2s ease, color .2s ease;
  padding: 0 1px;
}
.ws-single-art .ws-article__content a:not(.ws-btn):hover {
  color: var(--ws-gold);
  background-image: linear-gradient(180deg, transparent 86%, var(--ws-gold) 86%);
}

/* Blockquote : encadré gold */
.ws-single-art .ws-article__content blockquote {
  margin: 2.4em 0;
  padding: 30px 36px 30px 64px;
  background: rgba(235,187,129,0.06);
  border: 1px solid rgba(235,187,129,0.15);
  border-radius: 14px;
  font-size: 1.08rem;
  font-style: normal;
  color: var(--ws-text);
  line-height: 1.7;
  position: relative;
}
.ws-single-art .ws-article__content blockquote::before {
  content: "\201C";
  position: absolute;
  top: 4px;
  left: 18px;
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--ws-gold);
  opacity: 0.5;
}
.ws-single-art .ws-article__content blockquote p:last-child { margin-bottom: 0; }
.ws-single-art .ws-article__content blockquote cite {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--ws-text-mute);
  font-style: normal;
}

/* Images et figures : espace généreux + rounded + shadow */
.ws-single-art .ws-article__content figure,
.ws-single-art .ws-article__content > img,
.ws-single-art .ws-article__content p > img:only-child {
  display: block;
  margin: 2.4em auto;
}
.ws-single-art .ws-article__content img,
.ws-single-art .ws-article__content figure img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 14px 36px -12px rgba(0,0,0,0.5);
  border: 1px solid rgba(235,187,129,0.06);
}
.ws-single-art .ws-article__content figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  color: var(--ws-text-mute);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* HR séparateur */
.ws-single-art .ws-article__content hr {
  margin: 3em auto;
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(235,187,129,0.30), transparent);
  max-width: 60%;
}

/* Tables : aérées */
.ws-single-art .ws-article__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-size: 0.95rem;
  border: 1px solid rgba(235,187,129,0.15);
  border-radius: 10px;
  overflow: hidden;
}
.ws-single-art .ws-article__content th,
.ws-single-art .ws-article__content td {
  padding: 14px 18px;
  text-align: left;
  border: 1px solid rgba(235,187,129,0.10);
  line-height: 1.55;
}
.ws-single-art .ws-article__content th {
  background: rgba(235,187,129,0.10);
  color: var(--ws-text);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.ws-single-art .ws-article__content tr:nth-child(even) td {
  background: rgba(255,255,255,0.015);
}

/* Code */
.ws-single-art .ws-article__content code {
  font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', monospace;
  font-size: 0.88em;
  background: rgba(235,187,129,0.10);
  color: var(--ws-gold);
  padding: 2px 8px;
  border-radius: 4px;
}
.ws-single-art .ws-article__content pre {
  background: #050505;
  border: 1px solid rgba(235,187,129,0.15);
  padding: 22px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 2em 0;
  font-size: 0.92rem;
  line-height: 1.6;
}
.ws-single-art .ws-article__content pre code {
  background: transparent;
  color: var(--ws-text);
  padding: 0;
  font-size: inherit;
}

/* Iframe embeds (YouTube, etc.) */
.ws-single-art .ws-article__content iframe {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  margin: 2em 0;
  border: 1px solid rgba(235,187,129,0.10);
}

/* Sélection */
.ws-single-art .ws-article__content ::selection {
  background: rgba(235,187,129,0.30);
  color: var(--ws-text);
}

/* Premier H2 : pas de marge top excessive si premier élément */
.ws-single-art .ws-article__content > h2:first-child,
.ws-single-art .ws-article__content > .ws-rating + h2 {
  margin-top: 0.5em;
}

/* Si <p> contient seulement <br> ou est presque vide : masquer */
.ws-single-art .ws-article__content p:empty,
.ws-single-art .ws-article__content p:has(br:only-child) {
  display: none;
}

/* Mobile : padding interne plus serré */
@media (max-width: 700px) {
  .ws-single-art .ws-article__content {
    padding: 24px 22px;
    font-size: 1rem;
    line-height: 1.72;
    border-radius: 14px;
  }
  .ws-single-art .ws-article__content > p:first-of-type,
  .ws-single-art .ws-article__content > .ws-rating + p { font-size: 1.05rem; }
  .ws-single-art .ws-article__content h2 { margin-top: 2.4em; }
  .ws-single-art .ws-article__content blockquote { padding: 22px 22px 22px 50px; }
}

/* Reading progress bar */
.ws-read-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  z-index: 200;
  pointer-events: none;
}
.ws-read-progress__bar {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--ws-gold), #f1c086);
  box-shadow: 0 0 8px rgba(235,187,129,0.5);
  transition: width .12s linear;
}

/* Tags + cleanup */
.ws-single-art .ws-article__tags {
  max-width: 100%;
  margin: 60px 0 0;
}

@media (max-width: 1024px) {
  .ws-single-art__grid { grid-template-columns: 1fr; gap: 40px; }
  .ws-single-art__aside { position: static; max-height: none; overflow: visible; }
}
@media (max-width: 700px) {
  .ws-single-art__hero { padding: 50px 0 36px; margin-bottom: 36px; }
  .ws-single-art__title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .ws-single-art__cover { margin-bottom: 36px; border-radius: 14px; }
  .ws-aside-block { padding: 18px 18px; }
}

/* RELATED - section grille 3 cols propre, indépendante du blog magazine */
.ws-related__head {
  text-align: center;
  margin-bottom: 50px;
}
.ws-related__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: var(--ws-gold);
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(235,187,129,0.25);
  border-radius: 999px;
  background: rgba(235,187,129,0.05);
  margin-bottom: 18px;
}
.ws-related__head h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.018em;
  margin: 0;
}
.ws-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1200px;
  margin: 0 auto;
}
.ws-related-card {
  background: #0a0a0a;
  border: 1px solid rgba(235,187,129,0.10);
  border-radius: 16px;
  overflow: hidden;
  transition: all .3s ease;
}
.ws-related-card:hover {
  border-color: rgba(235,187,129,0.30);
  transform: translateY(-4px);
}
.ws-related-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.ws-related-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(235,187,129,0.10), rgba(235,187,129,0.02));
}
.ws-related-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
}
.ws-related-card:hover .ws-related-card__media img { transform: scale(1.05); }
.ws-related-card__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(235,187,129,0.25);
}
.ws-related-card__placeholder svg { width: 44px; height: 44px; }
.ws-related-card__cat {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #1a1208;
  background: var(--ws-gold);
  padding: 5px 11px;
  border-radius: 6px;
  text-transform: uppercase;
  z-index: 2;
}
.ws-related-card__body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ws-related-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ws-text);
  letter-spacing: -0.005em;
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .25s ease;
}
.ws-related-card:hover .ws-related-card__title { color: var(--ws-gold); }
.ws-related-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(235,187,129,0.08);
  font-size: 12px;
  color: var(--ws-text-dim);
  letter-spacing: 0.02em;
}
.ws-related-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(235,187,129,0.10);
  color: var(--ws-gold);
  transition: all .25s ease;
}
.ws-related-card__arrow svg { width: 14px; height: 14px; }
.ws-related-card:hover .ws-related-card__arrow {
  background: var(--ws-gold);
  color: #1a1208;
}
@media (max-width: 1024px) {
  .ws-related__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .ws-related__grid { grid-template-columns: 1fr; gap: 18px; }
}

.ws-related {
  padding: 90px 0;
  background: #050505;
  border-top: 1px solid rgba(235,187,129,0.08);
}

/* PAGE - legacy (gardé pour compatibilité, plus utilisé)
   Le nouveau design des pages utilise .ws-single-art--page (cf. plus bas) */
.ws-page-hero {
  padding: 80px 0 40px;
  background: #060606;
  border-bottom: 1px solid rgba(235,187,129,0.08);
}
.ws-page-hero__inner {
  max-width: 760px;
  margin: 0 auto;
}
.ws-page-hero h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 16px 0 0;
}

/* PAGE - Layout centré boxed (mentions, confidentialité, cookies, contact, etc.) */
.ws-single-art--page {
  padding-bottom: 80px;
}
.ws-single-art--page .ws-single-art__hero {
  text-align: left;
  margin-bottom: 50px;
}
.ws-single-art--page .ws-single-art__hero > .ws-container {
  max-width: 960px;
  margin: 0 auto;
}
.ws-page__main {
  max-width: 960px;
  margin: 0 auto;
}
.ws-page__back {
  margin-top: 50px;
  text-align: center;
}
.ws-page__back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ws-text-mute);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(235,187,129,0.12);
  border-radius: 999px;
  background-image: none !important;
  transition: all .2s ease;
}
.ws-page__back-link:hover {
  background: rgba(235,187,129,0.10);
  border-color: var(--ws-gold);
  color: var(--ws-gold);
}
.ws-page__back-link svg {
  width: 16px;
  height: 16px;
  transition: transform .2s ease;
}
.ws-page__back-link:hover svg { transform: translateX(-3px); }

/* La typographie de .ws-article__content s'applique automatiquement aussi sur les pages
   (grâce à la spécificité .ws-single-art .ws-article__content) */

/* Responsive blog */
@media (max-width: 1100px) {
  .ws-blog-grid--magazine { grid-template-columns: repeat(2, 1fr); }
  .ws-blog-card--featured { grid-column: span 2; }
}
@media (max-width: 760px) {
  .ws-blog-hero--centered { padding: 80px 0 50px; }
  .ws-blog-grid-section { padding: 50px 0 70px; }
  .ws-blog-grid--magazine { grid-template-columns: 1fr; gap: 22px; }
  .ws-blog-card--featured { grid-column: span 1; }
  .ws-blog-card--featured .ws-blog-card__media { aspect-ratio: 16 / 10; }
  .ws-blog-card--featured .ws-blog-card__body { padding: 24px 22px 22px; }
  .ws-blog-card__body { padding: 20px 22px; }
  .ws-blog-cta__inner { padding: 40px 26px; }
  .ws-article-hero { padding: 60px 0 36px; }
  .ws-article { padding: 50px 0; }
  .ws-article__content { font-size: 1rem; }
  .ws-article__cta { padding: 30px 22px; }
}

/* =========================================================================
   22. WS Ratings - widget 5 étoiles custom
   ========================================================================= */
.ws-rating {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 14px;
  background: linear-gradient(135deg, rgba(235,187,129,0.10), rgba(235,187,129,0.02));
  border: 1px solid rgba(235,187,129,0.20);
  border-radius: 999px;
  margin: 0 0 28px;
  font-family: 'Poppins', sans-serif;
}
.ws-rating__stars {
  display: inline-flex;
  gap: 2px;
}
.ws-rating__star {
  background: transparent;
  border: 0;
  padding: 4px;
  cursor: pointer;
  color: rgba(235,187,129,0.30);
  transition: color .15s ease, transform .15s ease;
  display: inline-flex;
}
.ws-rating__star svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.ws-rating__star.is-filled { color: var(--ws-gold); }
.ws-rating__star:hover:not([aria-disabled="true"]) {
  color: var(--ws-gold);
  transform: scale(1.18);
}
.ws-rating__star:hover:not([aria-disabled="true"]) ~ .ws-rating__star {
  color: rgba(235,187,129,0.30);
}
/* Hover: fill all stars from start up to hovered (reverse trick) */
.ws-rating__stars:hover .ws-rating__star { color: var(--ws-gold); }
.ws-rating__stars .ws-rating__star:hover ~ .ws-rating__star { color: rgba(235,187,129,0.30); }
.ws-rating[data-voted="1"] .ws-rating__star,
.ws-rating.has-voted .ws-rating__star {
  cursor: default;
  pointer-events: none;
}
.ws-rating__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ws-text-mute);
}
.ws-rating__avg {
  font-weight: 800;
  color: var(--ws-gold);
  font-size: 15px;
  font-feature-settings: "tnum";
}
.ws-rating__sep {
  color: rgba(235,187,129,0.4);
}
.ws-rating__count {
  font-size: 12px;
}
.ws-rating__note {
  display: inline-block;
  margin-left: 12px;
  padding: 4px 10px;
  background: rgba(235,187,129,0.10);
  border-radius: 6px;
  font-size: 11px;
  color: var(--ws-gold);
}
.ws-rating.is-voting { opacity: 0.6; pointer-events: none; }

/* Centrer le widget en haut d'article */
.ws-article__content > .ws-rating:first-child {
  display: flex;
  margin: 0 auto 36px;
}

/* =========================================================================
   23. Améliorations design article
   ========================================================================= */

/* Drop-cap : retiré (gimmick, créait des incohérences) */

/* Highlight sur sélection */
.ws-article__content ::selection {
  background: rgba(235,187,129,0.30);
  color: var(--ws-text);
}

/* Image full-bleed (déborde du container) */
.ws-article__content .alignwide,
.ws-article__content figure.alignwide {
  margin-left: -60px;
  margin-right: -60px;
  max-width: calc(100% + 120px);
}

/* Cadre sur images dans article */
.ws-article__content img,
.ws-article__content figure img {
  border-radius: 14px;
  box-shadow: 0 12px 36px -12px rgba(0,0,0,0.5);
}

/* Blockquote relevée */
.ws-article__content blockquote {
  position: relative;
  padding: 28px 36px 28px 60px;
  font-size: 1.05rem;
  font-weight: 500;
  font-style: normal;
  background: linear-gradient(135deg, rgba(235,187,129,0.08), rgba(235,187,129,0.02));
  border-left: 0;
  border-radius: 14px;
}
.ws-article__content blockquote::before {
  content: "\201C";
  position: absolute;
  top: 0;
  left: 12px;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--ws-gold);
  opacity: 0.4;
}

/* Liens internes : style discret avec underline gold */
.ws-article__content a:not(.ws-btn) {
  text-decoration: none;
  background-image: linear-gradient(180deg, transparent 92%, rgba(235,187,129,0.55) 92%);
  transition: background-image .2s ease, color .2s ease;
  border: 0;
  padding: 0 1px;
}
.ws-article__content a:not(.ws-btn):hover {
  color: var(--ws-gold);
  background-image: linear-gradient(180deg, transparent 88%, var(--ws-gold) 88%);
}

/* H2 : accent gold subtil (sans barre verticale qui fait double effet avec sidebar) */
.ws-article__content h2 {
  position: relative;
}
.ws-article__content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--ws-gold), transparent);
  border-radius: 1px;
  margin-top: 14px;
  opacity: 0.7;
}

/* Reading time pill discret */
.ws-article-hero__meta { font-size: 13px; }

/* Smooth highlights de Lukcy WP TOC (si présent) */
.ws-article__content .lwptoc,
.ws-article__content .lwptoc_i {
  background: rgba(255,255,255,0.02) !important;
  border: 1px solid rgba(235,187,129,0.12) !important;
  border-radius: 14px !important;
  padding: 20px 24px !important;
  margin: 0 0 32px !important;
}
.ws-article__content .lwptoc_header,
.ws-article__content .lwptoc_title {
  color: var(--ws-gold) !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
}
.ws-article__content .lwptoc a {
  color: var(--ws-text-mute) !important;
  background: none !important;
  padding: 4px 0 !important;
  text-decoration: none !important;
}
.ws-article__content .lwptoc a:hover { color: var(--ws-gold) !important; }

/* Tables stylées */
.ws-article__content table tr:nth-child(even) td {
  background: rgba(255,255,255,0.02);
}

/* Inline highlight (Themify residue) */
.ws-article__content .builder-typewriter-text,
.ws-article__content .tb_text_wrap {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* =========================================================================
   24. Pages spéciales : Contact, Newsletter, Stickers, 404
   ========================================================================= */

/* Page lead universal (intro paragraph) */
.ws-article__content > .ws-page-lead:first-of-type,
.ws-article__content > p.ws-page-lead {
  font-size: 1.2rem !important;
  line-height: 1.65 !important;
  color: var(--ws-text) !important;
  font-weight: 400 !important;
  margin-bottom: 2.2em !important;
}

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

/* --- CONTACT --- */
.ws-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.2fr);
  gap: clamp(32px, 4vw, 60px);
  margin-top: 32px;
}
.ws-contact-info h2 { margin-top: 0 !important; font-size: 1.4rem !important; }
.ws-contact-info h2::after { display: none; }
.ws-contact-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 28px !important;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ws-contact-list li {
  display: flex !important;
  align-items: flex-start;
  gap: 14px;
  padding-left: 0 !important;
  margin: 0 !important;
}
.ws-contact-list li::marker { display: none; content: none; }
.ws-contact-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(235,187,129,0.10);
  border: 1px solid rgba(235,187,129,0.20);
  color: var(--ws-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}
.ws-contact-icon svg { width: 18px; height: 18px; }
.ws-contact-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ws-text);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.ws-contact-list a { color: var(--ws-gold); }
.ws-contact-social {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(235,187,129,0.10);
}
.ws-contact-social p { margin-bottom: 12px; color: var(--ws-text-mute); font-size: 14px; }
.ws-contact-social a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  margin-right: 8px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(235,187,129,0.15);
  color: var(--ws-text-mute);
  transition: all .2s ease;
  background-image: none !important;
  padding: 0 !important;
}
.ws-contact-social a:hover {
  background: rgba(235,187,129,0.10) !important;
  border-color: var(--ws-gold);
  color: var(--ws-gold);
  transform: translateY(-2px);
}
.ws-contact-social svg { width: 18px; height: 18px; }

.ws-contact-form-wrap h2 { margin-top: 0 !important; font-size: 1.4rem !important; }
.ws-contact-form-wrap h2::after { display: none; }
.ws-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}
.ws-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.ws-contact-form label,
.ws-newsletter-form label {
  display: flex !important;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--ws-text-mute);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.ws-contact-form label > span {
  color: var(--ws-text);
  font-weight: 600;
}
.ws-contact-form input,
.ws-contact-form select,
.ws-contact-form textarea,
.ws-newsletter-form input[type="email"] {
  width: 100%;
  padding: 13px 16px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: var(--ws-text);
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(235,187,129,0.18);
  border-radius: 10px;
  transition: border-color .2s ease, background .2s ease;
}
.ws-contact-form input:focus,
.ws-contact-form select:focus,
.ws-contact-form textarea:focus,
.ws-newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--ws-gold);
  background: rgba(235,187,129,0.04);
}
.ws-contact-form textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}
.ws-form-submit {
  align-self: flex-start;
  margin-top: 8px;
}
.ws-form-note {
  font-size: 12px !important;
  color: var(--ws-text-mute) !important;
  margin: 0 !important;
}
@media (max-width: 800px) {
  .ws-contact-grid { grid-template-columns: 1fr; }
  .ws-form-row { grid-template-columns: 1fr; }
}

/* --- STICKERS --- */
.ws-stickers-hero {
  text-align: center;
  padding: 40px 20px;
}
.ws-stickers-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(235,187,129,0.20), rgba(235,187,129,0.05));
  border: 1px solid rgba(235,187,129,0.30);
  color: var(--ws-gold);
  margin-bottom: 28px;
}
.ws-stickers-icon svg { width: 48px; height: 48px; }
.ws-stickers-hero h2 {
  text-align: center !important;
  margin: 0 0 18px !important;
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
}
.ws-stickers-hero h2::after {
  margin-left: auto !important;
  margin-right: auto !important;
}
.ws-stickers-hero p {
  max-width: 560px;
  margin: 0 auto 26px !important;
  text-align: center !important;
}
.ws-stickers-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px !important;
}

/* --- NEWSLETTER --- */
.ws-newsletter-hero {
  text-align: center;
  margin-bottom: 36px;
}
.ws-newsletter-avatar {
  display: inline-block;
  margin: 0 auto 20px !important;
}
.ws-newsletter-avatar img {
  width: 168px !important;
  height: 168px !important;
  border-radius: 50% !important;
  border: 3px solid rgba(235,187,129,0.45) !important;
  box-shadow: 0 18px 50px -12px rgba(235,187,129,0.32), 0 0 0 1px rgba(235,187,129,0.08) !important;
  display: block;
  object-fit: cover;
}
.ws-newsletter-hero h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem) !important;
  text-align: center !important;
  margin: 0 0 16px !important;
}
.ws-newsletter-hero h2::after {
  margin-left: auto !important;
  margin-right: auto !important;
}
.ws-newsletter-by {
  color: var(--ws-text-mute) !important;
  font-size: 13px !important;
  margin: 6px 0 0 !important;
}
.ws-newsletter-perks {
  list-style: none !important;
  padding: 0 !important;
  margin: 32px 0 !important;
  display: grid;
  gap: 14px;
}
.ws-newsletter-perks li {
  display: flex !important;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(235,187,129,0.10);
  border-radius: 10px;
  font-size: 0.96rem;
  color: var(--ws-text);
  margin: 0 !important;
}
.ws-newsletter-perks li::marker { display: none; content: none; }
.ws-newsletter-perks li > span:first-child {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: rgba(235,187,129,0.14);
  color: var(--ws-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(235,187,129,0.25);
}
.ws-newsletter-perks li > span:first-child svg { width: 14px; height: 14px; }

.ws-newsletter-form {
  display: flex;
  gap: 10px;
  margin: 28px 0 8px !important;
}
.ws-newsletter-form label { flex: 1; }
.ws-newsletter-form input[type="email"] { padding: 14px 18px; }
.ws-newsletter-form button {
  flex-shrink: 0;
  white-space: nowrap;
}
.ws-newsletter-mentions {
  font-size: 12px !important;
  color: var(--ws-text-mute) !important;
}
@media (max-width: 600px) {
  .ws-newsletter-form { flex-direction: column; gap: 12px; }
  .ws-newsletter-form button { width: 100%; justify-content: center; }
}

/* --- TUTO --- */
.ws-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 2em 0 !important;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(235,187,129,0.10);
}
.ws-video-embed iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  border-radius: 0 !important;
  margin: 0 !important;
}

/* --- 404 --- */
.ws-404 {
  min-height: 70vh;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(235,187,129,0.10), transparent 60%),
    #060606;
  padding: 100px 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ws-404::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(235,187,129,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(235,187,129,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
.ws-404__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}
.ws-404__code {
  display: block;
  font-size: clamp(7rem, 18vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  background: linear-gradient(180deg, rgba(235,187,129,0.30), rgba(235,187,129,0.05));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
}
.ws-404__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 auto 18px;
  max-width: 760px;
}
.ws-404__lead {
  color: var(--ws-text-mute);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 36px;
}
.ws-404__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.ws-404__search {
  max-width: 480px;
  margin: 0 auto 36px;
}
.ws-404__search p {
  font-size: 13px;
  color: var(--ws-text-mute);
  margin-bottom: 14px;
}
.ws-404__search-form {
  display: flex;
  gap: 0;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(235,187,129,0.2);
  border-radius: 999px;
  overflow: hidden;
  padding: 4px 4px 4px 18px;
}
.ws-404__search-form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 12px 8px;
  color: var(--ws-text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
}
.ws-404__search-form button {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 0;
  background: var(--ws-gold);
  color: #1a1208;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s ease;
}
.ws-404__search-form button:hover { transform: scale(1.05); }
.ws-404__search-form button svg { width: 18px; height: 18px; }
.ws-404__shortcuts {
  margin-top: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(235,187,129,0.10);
}
.ws-404__shortcuts p { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ws-gold); margin-bottom: 14px; }
.ws-404__shortcuts ul {
  display: flex;
  gap: 24px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.ws-404__shortcuts ul li { margin: 0; }
.ws-404__shortcuts ul a {
  font-size: 14px;
  color: var(--ws-text-mute);
  transition: color .2s ease;
}
.ws-404__shortcuts ul a:hover { color: var(--ws-gold); }

/* =========================================================================
   99. RESPONSIVE - Grosse passe finale (multi-viewports)
   ========================================================================= */

/* ---- Contenir les éléments qui débordent intentionnellement ---- */

/* Marquee clients : container clip horizontal */
.ws-clients {
  overflow: hidden !important;
}

/* Halo gradient autour photo Benjamin : doit pas déborder du container */
.ws-who__media {
  overflow: visible;
  position: relative;
  isolation: isolate;
}
.ws-who__halo {
  z-index: 0;
  max-width: 100%;
  max-height: 100%;
  inset: 0 !important;
  /* On garde le glow mais sans déborder à l'extérieur */
  border-radius: 24px;
  transform-origin: center !important;
}
/* Sur grand écran le halo peut être plus généreux */
@media (min-width: 901px) {
  .ws-who__halo { inset: -30px !important; border-radius: 50%; }
}

/* Anti-débordement horizontal sur body + html.
   IMPORTANT : `clip` au lieu de `hidden` - sinon position:sticky
   est cassé sur TOUS les descendants (le hidden crée un scroll container). */
html, body {
  overflow-x: clip;
  max-width: 100vw;
}

/* ============================================================
   MOBILE - viewports ≤ 640px
   ============================================================ */
@media (max-width: 640px) {

  /* Sections : padding plus serré pour réduire le scroll vertical */
  .ws-section {
    padding: 60px 0 !important;
  }
  /* Container un peu plus large sur mobile (réduction des marges) */
  .ws-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  /* Hero : H1 plus serré */
  .ws-hero {
    padding: 70px 0 80px;
  }
  .ws-hero__title {
    font-size: clamp(1.65rem, 8vw, 2.4rem);
    line-height: 1.1;
  }
  .ws-hero__sub {
    font-size: 0.95rem;
  }
  .ws-hero__cta {
    flex-direction: column;
  }
  .ws-hero__cta .ws-btn {
    width: 100%;
    justify-content: center;
  }
  /* Trustindex en bas du hero, pas à côté */
  .ws-hero__inner {
    grid-template-columns: 1fr;
  }

  /* Stats : 2 col → 1 col sur very small mobile */
  .ws-stats__grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px 8px !important;
  }
  .ws-stat:nth-child(2)::after,
  .ws-stat:nth-child(odd)::after { display: none !important; }
  .ws-stat__num { font-size: 1.4rem !important; }
  .ws-stat__label { font-size: 11px !important; }

  /* Section eyebrow : un peu plus serré */
  .ws-section__head[data-eyebrow]::before {
    font-size: 10px;
    padding: 5px 12px;
    margin-bottom: 16px;
    letter-spacing: 0.24em;
  }
  /* Titres H2 sections */
  .ws-section__head h2,
  .ws-section h2 {
    font-size: clamp(1.4rem, 6vw, 1.9rem) !important;
  }
  .ws-lead {
    font-size: 0.95rem !important;
  }

  /* Boutons primary/ghost full-width dans les sections */
  .ws-section .ws-btn--primary,
  .ws-section .ws-btn--ghost,
  .ws-final__cta,
  .ws-merite__cta,
  .ws-guarantee__cta,
  .ws-processus-sticky__cta,
  .ws-approche-full__cta {
    width: auto;
  }

  /* POURQUI : layout vertical (déjà set ailleurs probablement, on s'assure) */
  .ws-pourqui {
    grid-template-columns: 1fr !important;
  }
  .ws-pourqui__media {
    min-height: 280px !important;
    order: -1;
  }
  .ws-pourqui__copy {
    padding: 28px 24px !important;
  }

  /* Qui je suis : photo centrée + halo réduit */
  .ws-who__inner {
    text-align: center;
  }
  .ws-who__media img {
    max-width: 180px !important;
  }

  /* PROCESSUS stacking → static + cards plus compactes */
  .ws-processus-sticky {
    position: static !important;
    text-align: left;
    margin-bottom: 30px;
  }
  .ws-processus-sticky h2 {
    font-size: 1.6rem !important;
  }
  .ws-stack__card {
    position: static !important;
  }
  .ws-stack__card-inner {
    padding: 24px 22px !important;
    border-radius: 14px !important;
  }
  .ws-stack__head {
    grid-template-columns: 56px minmax(0, 1fr) !important;
    gap: 16px !important;
  }
  .ws-stack__num {
    display: none !important;
  }
  .ws-stack__icon {
    width: 56px !important; height: 56px !important;
  }
  .ws-stack__icon img { width: 32px !important; height: 32px !important; }
  .ws-stack__title {
    font-size: 1.05rem !important;
  }
  .ws-stack__phase {
    font-size: 10px !important;
    letter-spacing: 0.16em !important;
  }
  .ws-stack__points {
    grid-template-columns: 1fr !important;
    gap: 8px 0 !important;
  }

  /* COMPETENCES carousel : 1 card visible, scroll horizontal */
  .ws-carousel-track { gap: 16px !important; }
  .ws-card {
    flex: 0 0 calc(100% - 8px) !important;
    padding: 28px 22px !important;
  }
  .ws-card h3 { font-size: 14px !important; }
  .ws-card p { font-size: 13px !important; }
  .ws-controls { margin-top: 24px !important; }

  /* USE CASES : sidebar tabs en pills, panel en column */
  .ws-showcase-container {
    flex-direction: column !important;
    gap: 22px !important;
  }
  .ws-showcase-sidebar {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 6px !important;
  }
  .ws-tab-btn {
    flex: 0 0 auto !important;
    font-size: 12px !important;
    padding: 6px 12px !important;
    border-left: 0 !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
  }
  .ws-tab-btn.active {
    background: rgba(235,187,129,0.10) !important;
    border-color: var(--ws-gold) !important;
  }
  .ws-case-layout {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
  }
  .ws-case-data {
    min-height: 220px !important;
    padding: 32px 24px !important;
    flex: 0 0 auto !important;
  }
  .ws-case-info {
    padding: 28px 24px !important;
  }
  .ws-case-title { font-size: 1.2rem !important; }
  .ws-case-metric { font-size: 2rem !important; }

  /* APPROCHE full-width */
  .ws-approche-full {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }
  .ws-approche-full__copy {
    padding: 50px 24px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(235,187,129,0.10) !important;
  }
  .ws-approche-full__copy h2 {
    font-size: 1.6rem !important;
  }
  .ws-bench-nav {
    grid-template-columns: 1fr 1fr !important;
  }
  .ws-nav-item { padding: 18px 16px !important; }
  .ws-nav-title { font-size: 14px !important; }
  .ws-bench-body {
    flex-direction: column !important;
    min-height: 0 !important;
  }
  .ws-bench-text {
    padding: 30px 24px !important;
    flex: 1 !important;
  }
  .ws-bench-visual {
    height: 200px !important;
  }
  .ws-entry h3 { font-size: 1.6rem !important; line-height: 1.15 !important; }
  .ws-entry p { font-size: 0.95rem !important; }

  /* BUDAPEST : 1 col, globe simplifié.
     IMPORTANT : minmax(0,1fr) + min-width:0 sur les enfants, sinon
     le track grid gonfle à max-content et déborde du viewport. */
  .ws-budapest {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 30px !important;
  }
  .ws-budapest__copy,
  .ws-budapest__globe {
    min-width: 0 !important;
    max-width: 100% !important;
  }
  .globe-wrapper {
    height: 320px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .ws-budapest__copy h2 { font-size: 1.6rem !important; }

  /* TEMOIGNAGES / Trustindex : OK natif */

  /* PARTENAIRES : 3 cards → 1 col */
  .ws-partners {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .ws-partner {
    padding: 26px 22px !important;
  }

  /* GARANTIE : sceau plus petit + grid bullets 1 col */
  .ws-guarantee__head {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    margin-bottom: 40px !important;
  }
  .ws-guarantee__seal {
    margin: 0 auto !important;
    width: 160px !important; height: 160px !important;
  }
  .ws-guarantee__seal-inner {
    width: 120px !important; height: 120px !important;
  }
  .ws-guarantee__seal-pct { font-size: 2.2rem !important; }
  .ws-guarantee__intro h2 { font-size: 1.6rem !important; }
  .ws-guarantees {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .ws-guarantees__item {
    padding: 22px 20px !important;
  }

  /* FAQ : 1 col layout, sidebar avant */
  .ws-faq-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .ws-faq-aside {
    position: static !important;
    padding-right: 0 !important;
    text-align: center;
  }
  .ws-faq-aside h2 {
    font-size: 1.6rem !important;
  }
  .ws-faq__q {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    gap: 12px !important;
    padding: 18px 18px !important;
  }
  .ws-faq__qtext { font-size: 0.92rem !important; line-height: 1.35 !important; }
  .ws-faq__num { font-size: 11px !important; padding: 3px 8px !important; }
  .ws-faq__toggle { width: 28px !important; height: 28px !important; }
  .ws-faq__a { padding: 0 18px 22px !important; font-size: 0.92rem !important; }

  /* CTA final */
  .ws-final {
    padding: 0 !important;
  }
  .ws-final h2 { font-size: 1.6rem !important; }
  .ws-final__cta {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .ws-final__cta .ws-btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Blog list */
  .ws-blog-hero--centered { padding: 60px 0 50px !important; }
  .ws-blog-hero--centered h1 { font-size: clamp(1.8rem, 7vw, 2.4rem) !important; }
  .ws-blog-grid-section { padding: 40px 0 60px !important; }
  .ws-blog-grid--magazine {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .ws-blog-card--featured { grid-column: span 1 !important; }
  .ws-blog-card--featured .ws-blog-card__media { aspect-ratio: 16 / 10 !important; }
  .ws-blog-cta__inner { padding: 36px 22px !important; }
  .ws-blog-cta h2 { font-size: 1.5rem !important; }

  /* Single article */
  .ws-single-art__hero { padding: 50px 0 36px !important; margin-bottom: 30px !important; }
  .ws-single-art__title { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; }
  .ws-single-art__meta { gap: 14px !important; }
  .ws-meta-item { font-size: 12px !important; }
  .ws-single-art__grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .ws-single-art__aside {
    position: static !important;
    max-height: none !important;
    overflow: visible !important;
  }
  .ws-single-art__cover {
    margin-bottom: 30px !important;
    border-radius: 14px !important;
  }
  .ws-article__content {
    padding: 26px 22px !important;
    font-size: 1rem !important;
    line-height: 1.72 !important;
  }

  /* Related cards */
  .ws-related { padding: 60px 0 !important; }
  .ws-related__grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .ws-related__head h2 { font-size: 1.5rem !important; }

  /* Pages : padding réduit */
  .ws-single-art--page .ws-single-art__hero {
    padding: 60px 0 40px !important;
    margin-bottom: 30px !important;
  }
  .ws-single-art--page .ws-single-art__hero .ws-single-art__title {
    font-size: clamp(1.7rem, 7vw, 2.2rem) !important;
  }

  /* Newsletter & Contact form full-width */
  .ws-newsletter-form { flex-direction: column !important; gap: 12px !important; }
  .ws-newsletter-form button { width: 100% !important; justify-content: center !important; }
  .ws-contact-form input,
  .ws-contact-form select,
  .ws-contact-form textarea { font-size: 16px !important; /* anti-zoom iOS */ }
  .ws-form-submit { width: 100% !important; justify-content: center !important; }

  /* 404 : titre/code adapté */
  .ws-404 { padding: 70px 0 !important; }
  .ws-404__code { font-size: 5.5rem !important; }
  .ws-404__title { font-size: 1.5rem !important; }
  .ws-404__actions { flex-direction: column !important; gap: 12px !important; }
  .ws-404__actions .ws-btn { width: 100% !important; justify-content: center !important; }
  .ws-404__shortcuts ul { gap: 14px !important; }

  /* Footer compact */
  .ws-footer { padding: 50px 0 24px !important; }
  .ws-footer__grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .ws-footer h4 { margin-bottom: 16px !important; }
  .ws-footer__social { justify-content: flex-start !important; }
  .ws-footer__bottom { flex-direction: column !important; align-items: flex-start !important; }

  /* Scarcity bar : déjà gérée plus haut */
  .ns-b { padding: 8px 12px !important; font-size: 10px !important; }
  .ns-w { gap: 8px !important; }
  .ns-cta { font-size: 11px !important; }

  /* Pill gold inline : ne pas casser les lignes au mauvais endroit */
  .ws-pill-gold {
    display: inline-block;
    line-height: 1.2;
    padding: 2px 8px;
    white-space: normal;
  }

  /* Audio button : un peu plus petit + offset bottom right */
  .ws-audio-toggle {
    bottom: 80px !important; left: 14px !important;
    padding: 8px 12px !important; font-size: 11px !important;
  }
  .ws-back-top { bottom: 14px !important; right: 14px !important; }

  /* Back-top + audio ne se superposent pas */
  .ws-back-top { z-index: 80 !important; }
}

/* ============================================================
   MOBILE PETIT - viewports ≤ 380px
   ============================================================ */
@media (max-width: 380px) {
  .ws-container { padding-left: 14px; padding-right: 14px; }
  .ws-section { padding: 50px 0 !important; }
  .ws-stats__grid { grid-template-columns: 1fr 1fr; gap: 14px 6px !important; }
  .ws-stat__num { font-size: 1.25rem !important; }
  .ws-pill-gold { padding: 1px 7px; font-size: 0.9em; }
  .ws-header__inner { gap: 12px; height: 64px; }
}

/* ============================================================
   TABLETTE - 641px à 1024px
   ============================================================ */
@media (min-width: 641px) and (max-width: 1024px) {
  .ws-section { padding: 80px 0 !important; }
  .ws-container { padding-left: 28px; padding-right: 28px; }

  /* Hero : reste OK */
  /* Stats : 4 cols → 2x2 */
  .ws-stats__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px 24px !important;
  }
  .ws-stat:nth-child(2)::after { display: none !important; }

  /* POURQUI tablet : reste 2 cols */
  .ws-pourqui { grid-template-columns: 1fr 1fr; }

  /* PROCESSUS tablet : sidebar passe en column */
  .ws-processus-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .ws-processus-sticky { position: static !important; padding-right: 0 !important; }

  /* USE CASES tablet : 2 cols */
  .ws-showcase-container { gap: 30px !important; }
  .ws-showcase-sidebar { flex: 0 0 200px !important; }

  /* APPROCHE tablet : reste 2 cols full */
  .ws-bench-nav { grid-template-columns: repeat(2, 1fr) !important; }

  /* COMPETENCES : 2 cards visibles */
  .ws-card { flex: 0 0 calc((100% - 24px)/ 2) !important; }

  /* BUDAPEST : 1 col */
  .ws-budapest { grid-template-columns: minmax(0, 1fr) !important; }
  .ws-budapest__copy, .ws-budapest__globe { min-width: 0 !important; max-width: 100% !important; }
  .globe-wrapper { height: 420px !important; width: 100% !important; max-width: 100% !important; }

  /* PARTENAIRES : 3 cards → 2 + 1 */
  .ws-partners { grid-template-columns: repeat(2, 1fr) !important; }
  .ws-partner:last-child { grid-column: span 2; }

  /* GARANTIE : 2 cards bullets */
  .ws-guarantees { grid-template-columns: repeat(2, 1fr) !important; }

  /* FAQ tablet : layout 1 col */
  .ws-faq-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
  .ws-faq-aside { position: static !important; }

  /* Article : article + aside passent en 1 col */
  .ws-single-art__grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .ws-single-art__aside { position: static !important; max-height: none !important; }

  /* Blog grid : 2 cols */
  .ws-blog-grid--magazine { grid-template-columns: repeat(2, 1fr) !important; }
  .ws-blog-card--featured { grid-column: span 2; }

  /* Related : 2 cols */
  .ws-related__grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* =========================================================================
   100. POLISH RESPONSIVE & DESIGN - Fixes finaux (v2.13)
   ========================================================================= */

/* Eyebrow hero : compact + centré + fit-content même quand le grid parent stretch */
.ws-hero__copy .ws-eyebrow,
.ws-hero .ws-eyebrow {
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
}

/* Pill gold H1 hero : ne doit jamais dépasser la ligne */
.ws-hero__title .ws-pill-gold,
.ws-hero__title .ws-pill-gold--plain {
  /* Pour le H1, le pill gold reste inline et hérite de la line-height du H1 */
  padding: 0.04em 0.32em;
  /* Évite que le pill prenne 100% width quand seul sur sa ligne */
  white-space: normal;
}

/* Highlight gold "croissance commerciale" : underline subtle au lieu de bg */
.ws-hero__title .ws-highlight {
  background: none;
  color: var(--ws-gold);
}

/* Hero CTA : padding plus généreux + meilleure typo */
.ws-hero__cta .ws-btn--primary {
  padding: 14px 26px;
  font-size: 14px;
}

/* Trustindex hero : centré propre sur mobile */
@media (max-width: 900px) {
  .ws-hero__reviews {
    margin-top: 28px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Burger menu plus discret + adapté density */
.ws-burger {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(235, 187, 129, 0.15);
}
.ws-burger:hover {
  background: rgba(235, 187, 129, 0.08);
}
.ws-burger svg { width: 18px; height: 18px; }

/* Header logo : un peu plus petit sur mobile */
@media (max-width: 480px) {
  .ws-header__inner { gap: 14px; height: 60px; }
  .ws-logo span { font-size: 1rem; }
  .ws-logo img { width: 36px; height: 36px; }
}

/* Indépro respect typo : Indé blanc + pro gold italic */
.ws-partner__title-suffix {
  color: var(--ws-gold);
  font-style: italic;
  font-weight: 600;
}

/* Hero : padding plus généreux sur mobile pour aérer */
@media (max-width: 640px) {
  .ws-hero {
    padding: 40px 0 56px !important;
  }
  .ws-hero__title {
    margin-top: 18px !important;
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.12;
    letter-spacing: -0.01em;
  }
  .ws-hero__sub {
    margin-top: 22px;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .ws-hero__cta {
    margin-top: 28px;
  }
}

/* Use cases tabs : meilleur wrap quand passe en pills mobile */
@media (max-width: 640px) {
  .ws-showcase-sidebar {
    gap: 8px !important;
    padding: 0 4px;
  }
  .ws-tab-btn {
    padding: 8px 14px !important;
    font-size: 12.5px !important;
  }
}

/* Tablet 768-1024 : exploiter mieux l'espace */
@media (min-width: 641px) and (max-width: 1024px) {
  /* Container plus large */
  :root { --ws-container: 90vw; }
  .ws-container { max-width: 720px; }

  /* Sur tablet, garder POURQUI en 2 cols (texte + photo) */
  .ws-pourqui { grid-template-columns: 1fr 1fr; }
  .ws-pourqui__media { min-height: 360px !important; }

  /* PROCESSUS : intro 2 cols → 1 col mais cards stack OK */
  .ws-processus__intro {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .ws-processus__icon { margin: 0 auto; }
  .ws-processus__copy h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); }

  /* USE CASES : sidebar tabs verticale stable */
  .ws-showcase-container {
    flex-direction: row !important;
    gap: 30px !important;
  }
  .ws-showcase-sidebar {
    flex: 0 0 200px !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    margin-top: 0 !important;
  }
  .ws-tab-btn {
    border: 0 !important;
    border-left: 2px solid rgba(255,255,255,0.05) !important;
    border-radius: 0 8px 8px 0 !important;
    text-align: left !important;
    padding: 12px 18px !important;
    font-size: 14px !important;
  }
  .ws-tab-btn.active {
    border-left-color: var(--ws-gold) !important;
    background: linear-gradient(90deg, rgba(235,187,129,0.10), transparent) !important;
  }
  .ws-case-layout {
    flex-direction: column !important;
  }
  .ws-case-data { padding: 36px 30px !important; min-height: 240px !important; }
  .ws-case-info { padding: 32px 30px !important; }

  /* BUDAPEST : 1 col tablet (déjà set) mais espacement */
  .ws-budapest { gap: 30px !important; }
  .globe-wrapper { max-height: 450px; }

  /* APPROCHE full-width : revenir à 2 cols sur tablet large */
  .ws-approche-full {
    grid-template-columns: 0.7fr 1fr !important;
    min-height: 480px !important;
  }
  .ws-approche-full__copy {
    padding: 50px 36px !important;
    border-right: 1px solid rgba(235,187,129,0.10) !important;
    border-bottom: 0 !important;
  }

  /* FAQ : 2 cols garder sidebar à gauche */
  .ws-faq-grid {
    grid-template-columns: 0.85fr 1.6fr !important;
    gap: 36px !important;
  }
  .ws-faq-aside {
    position: sticky !important;
    top: 100px;
  }
  .ws-faq-aside h2 { font-size: 1.8rem !important; }

  /* Single article aside : passe sous l'article (déjà set) mais plus aéré */
  .ws-single-art__grid { gap: 50px !important; }
}

/* Featured card blog : image plus visible sur mobile */
@media (max-width: 700px) {
  .ws-blog-card--featured .ws-blog-card__media {
    aspect-ratio: 4 / 3 !important;
  }
}

/* Pagination blog : touch targets confortables */
.ws-blog-pagination a,
.ws-blog-pagination span {
  min-height: 44px;
}
@media (max-width: 640px) {
  .ws-blog-pagination {
    gap: 4px !important;
    flex-wrap: wrap;
    justify-content: center;
  }
  .ws-blog-pagination a,
  .ws-blog-pagination span {
    min-width: 40px;
    height: 44px;
    padding: 0 10px;
    font-size: 13px;
  }
}

/* Lead paragraph dans pages legal + contact + tuto : plus aéré */
.ws-page-lead {
  font-size: 1.15rem !important;
  line-height: 1.7 !important;
  margin-bottom: 1.8em !important;
  color: var(--ws-text) !important;
  font-weight: 400 !important;
}

/* Smooth typo sur les pages */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Focus states accessibilité */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--ws-gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.ws-btn:focus-visible {
  outline-offset: 4px;
}

/* Print : version sobre */
@media print {
  .ws-header, .ws-footer, .ws-audio-toggle, .ws-back-top, .ws-read-progress,
  .ws-single-art__aside, .ws-related, .ws-blog-cta, .ws-page__back {
    display: none !important;
  }
  body { background: white; color: black; }
  .ws-article__content { background: white !important; color: black !important; border: 0 !important; box-shadow: none !important; padding: 0 !important; }
  a { color: black; text-decoration: underline; }
}


/* =========================================================================
   Template Contact focus — page épurée, formulaire centré
   ========================================================================= */
body.ws-focus-body {
  background: #07070b;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.ws-focus {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 6vh, 64px) 20px;
  gap: clamp(28px, 4vh, 44px);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
.ws-focus__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #f2f1ed;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}
.ws-focus__logo:hover { opacity: 1; }
.ws-focus__logo img { width: 42px; height: 42px; display: block; }
.ws-focus__logo em {
  font-style: normal;
  font-weight: 400;
  color: var(--ws-gold);
}
.ws-focus__card {
  width: 100%;
  max-width: 660px;
  background: #07070b;
  border: 1px solid rgba(235,187,129,0.14);
  border-radius: 22px;
  padding: clamp(14px, 2.2vw, 26px);
  overflow: hidden;
  box-shadow:
    0 30px 80px -30px rgba(0,0,0,0.6),
    0 0 60px -10px rgba(235,187,129,0.18),
    0 0 0 1px rgba(235,187,129,0.04);
  position: relative;
}
.ws-focus__card .ws-form-embed {
  background: transparent;
  border-radius: 14px;
  overflow: hidden;
}
.ws-focus__card .ws-form-embed iframe { background: transparent; display: block; }
.ws-focus__back {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(242, 241, 237, 0.55);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 100px;
  transition: color 0.2s ease, background 0.2s ease;
}
.ws-focus__back:hover {
  color: var(--ws-gold);
  background: rgba(235,187,129,0.06);
}

/* =========================================================================
   Wordmarks clients — fontes variées pour faire de vrais "logos" texte
   ========================================================================= */
.ws-clients__wordmark--serif {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.ws-clients__wordmark--cormorant {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-style: normal;
  font-weight: 700;
  font-size: 23px;
  letter-spacing: 0.01em;
}
.ws-clients__wordmark--light {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.ws-clients__wordmark--tech {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.03em;
}
.ws-clients__wordmark--bold {
  font-family: 'DM Sans', 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.05em;
  text-transform: lowercase;
}
.ws-clients__wordmark--mono {
  font-family: 'Space Mono', 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .ws-clients__wordmark--serif,
  .ws-clients__wordmark--cormorant { font-size: 18px; }
  .ws-clients__wordmark--tech,
  .ws-clients__wordmark--bold { font-size: 16px; }
  .ws-clients__wordmark--light,
  .ws-clients__wordmark--mono { font-size: 12px; }
}

/* =========================================================================
   Fix overlap pill gold sur ligne précédente
   ========================================================================= */
.ws-pill-gold {
  padding: 0.04em 0.4em !important;
}
h1:has(.ws-pill-gold),
h2:has(.ws-pill-gold),
h3:has(.ws-pill-gold),
h4:has(.ws-pill-gold),
p:has(.ws-pill-gold),
.ws-section__head h2:has(.ws-pill-gold),
.ws-processus__copy h2:has(.ws-pill-gold) {
  line-height: 1.28 !important;
}

/* =====================================================================
   TIER 4.0 — Micro-anims : reveal au scroll + halo gold cursor
   Respecte prefers-reduced-motion (no-op si désactivé)
   ===================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .ws-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease-out, transform .7s cubic-bezier(.2, .8, .2, 1);
    will-change: opacity, transform;
  }
  .ws-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .ws-reveal--d2 { transition-delay: .08s; }
  .ws-reveal--d3 { transition-delay: .16s; }
  .ws-reveal--d4 { transition-delay: .24s; }
}

/* ===== Floating CTA "Prendre contact" =====
   Visible après ~600px de scroll, caché quand on entre dans la section CTA finale
   ou le footer. Hover = expand pour révéler le label. */
.ws-float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 14px 22px;
  background: linear-gradient(135deg, var(--ws-gold) 0%, var(--ws-gold-dark) 100%);
  color: #111;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 16px 48px -10px rgba(235,187,129,0.55), 0 4px 12px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.18);
  transform: translateY(24px) scale(0.92);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), opacity 0.35s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.ws-float-cta.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.ws-float-cta__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ws-float-cta__icon svg { width: 18px; height: 18px; }
.ws-float-cta__label {
  display: inline-block;
  transition: transform 0.25s ease;
}
@media (hover: hover) {
  .ws-float-cta:hover {
    box-shadow: 0 20px 56px -8px rgba(235,187,129,0.75), 0 6px 16px rgba(0,0,0,0.5);
    transform: translateY(-2px) scale(1.02);
  }
  .ws-float-cta.is-visible:hover { transform: translateY(-2px) scale(1.02); }
}
@media (max-width: 480px) {
  .ws-float-cta { padding: 12px 16px; font-size: 13px; gap: 8px; }
  .ws-float-cta__label { display: none; }
  .ws-float-cta { padding: 14px; }
}
/* Halo pulsation très subtil */
.ws-float-cta::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid rgba(235,187,129,0.4);
  opacity: 0;
  animation: ws-float-pulse 2.8s ease-out infinite;
  pointer-events: none;
}
@keyframes ws-float-pulse {
  0% { transform: scale(0.95); opacity: 0; }
  30% { opacity: 0.6; }
  100% { transform: scale(1.35); opacity: 0; }
}
@media (max-width: 640px) {
  .ws-float-cta { bottom: 18px; right: 18px; padding: 12px; }
  .ws-float-cta__icon { width: 22px; height: 22px; }
  .ws-float-cta__icon svg { width: 18px; height: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .ws-float-cta::before { animation: none; display: none; }
  .ws-float-cta { transition: opacity 0.3s ease; transform: none; }
}

/* ===== Parallax léger (via data-parallax) =====
   JS applique translate3d(0, scroll * speed, 0). Pour éléments décoratifs
   uniquement, jamais sur du contenu textuel. */
[data-parallax] {
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  [data-parallax] { transform: none !important; }
}

.ws-cursor-glow {
  position: relative;
  isolation: isolate;
}
.ws-cursor-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    260px circle at var(--mx, 50%) var(--my, 50%),
    rgba(235, 187, 129, 0.13),
    transparent 70%
  );
  opacity: 0;
  transition: opacity .25s ease-out;
  pointer-events: none;
  z-index: 0;
}
.ws-cursor-glow > * { position: relative; z-index: 1; }
.ws-cursor-glow:hover::before { opacity: 1; }

/* =====================================================================
   PAGE AGENCE — hero portrait + stats + cards
   ===================================================================== */
.ws-agence-hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin: 0 0 48px;
  padding: clamp(32px, 4vw, 56px);
  background: linear-gradient(135deg, rgba(235,187,129,0.04), rgba(13,12,10,0.6));
  border: 1px solid rgba(235,187,129,0.12);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}
.ws-agence-hero::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 22px;
  background: radial-gradient(600px circle at 20% 20%, rgba(235,187,129,0.10), transparent 60%);
  pointer-events: none;
}
.ws-agence-hero__media {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(235,187,129,0.25);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(235,187,129,0.06);
}
.ws-agence-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ws-agence-hero__halo {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 50%, rgba(235,187,129,0.20), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.ws-agence-hero__copy {
  position: relative;
  z-index: 1;
}
.ws-agence-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ws-gold, #ebbb81);
  margin-bottom: 14px;
}
.ws-agence-hero__title {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  margin: 0 0 16px;
}
.ws-agence-hero__lead {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 0 22px;
}
.ws-agence-hero__cta { margin: 0; }

.ws-agence-stats {
  list-style: none;
  margin: 0 0 64px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.ws-agence-stat {
  padding: 24px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(235,187,129,0.10);
  border-radius: 14px;
  text-align: center;
  transition: border-color .3s, transform .3s;
}
.ws-agence-stat:hover {
  border-color: rgba(235,187,129,0.30);
  transform: translateY(-2px);
}
.ws-agence-stat__num {
  display: block;
  font-family: "Space Grotesk", "Poppins", sans-serif;
  font-size: clamp(28px, 2.8vw, 36px);
  font-weight: 700;
  color: var(--ws-gold, #ebbb81);
  line-height: 1;
  margin-bottom: 8px;
}
.ws-agence-stat__label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}

.ws-agence-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 20px 0 40px;
}
.ws-agence-card {
  position: relative;
  padding: 26px 24px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(235,187,129,0.10);
  border-radius: 16px;
  transition: border-color .3s, transform .3s;
}
.ws-agence-card:hover {
  border-color: rgba(235,187,129,0.28);
  transform: translateY(-3px);
}
.ws-agence-card__tag {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: "Space Mono", monospace;
  font-size: 12px;
  color: rgba(235,187,129,0.55);
  letter-spacing: 0.06em;
}
.ws-agence-card h3 {
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--ws-gold, #ebbb81);
}
.ws-agence-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
}

@media (max-width: 880px) {
  .ws-agence-hero { grid-template-columns: 1fr; text-align: center; }
  .ws-agence-hero__media { margin: 0 auto; width: 200px; height: 200px; }
  .ws-agence-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ws-agence-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .ws-agence-stats { grid-template-columns: 1fr; }
}
