/* ============================================
   EVA COMPTA CONSULTING SARL
   Charte : bleu marine + orange (couleurs du logo)
   ============================================ */

:root {
  --ink:        #021b40;   /* bleu marine très profond */
  --ink-soft:   #01265b;   /* bleu marine du logo */
  --ink-line:   #143a73;
  --paper:      #f5f7fa;   /* blanc gris très clair */
  --paper-pure: #ffffff;
  --amber:      #f47a35;   /* orange clair accent */
  --amber-deep: #ee6616;   /* orange du logo (accents texte) */
  --accent:     #f35600;   /* orange vif (flèche du logo) */
  --accent-deep:#d34a00;
  --mist:       #5b647d;   /* gris-bleu professionnel texte secondaire */
  --mist-light: #9fb0cc;
  --line:       #e1e6ee;

  --serif: 'Montserrat', 'Inter', -apple-system, sans-serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:  'IBM Plex Mono', 'Courier New', monospace;

  --wrap: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }

a { color: inherit; text-decoration: none; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-deep);
  display: inline-flex;
  align-items: center;
}

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }
.display { font-size: clamp(2.8rem, 6.5vw, 5.4rem); font-weight: 800; }
.hero h1 em { font-style: normal; color: var(--accent); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 245, 240, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 10px;
}
.brand .mark {
  width: 14px; height: 14px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  position: relative;
}
.brand .mark::after {
  content: ""; position: absolute; inset: 3px;
  background: var(--ink); border-radius: 50%;
}
.brand-logo { height: 46px; width: auto; display: block; }
@media (max-width: 680px) { .brand-logo { height: 38px; } }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 15px; color: var(--mist);
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 2px; background: var(--amber);
}
.nav-cta {
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  background: var(--ink); color: var(--paper);
  padding: 11px 22px; border-radius: 2px;
  transition: background 0.25s var(--ease);
}
.nav-cta:hover { background: var(--amber-deep); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
}
.hero::before {
  content: "";
  position: absolute; top: -30%; right: -10%;
  width: 60vw; height: 120%;
  background: radial-gradient(circle at center, rgba(217,138,61,0.16), transparent 60%);
  pointer-events: none;
  transform: translateY(var(--par, 0));
  will-change: transform;
}
.hero .eyebrow { color: var(--amber); }

/* ============================================
   RAYONS ROTATIFS (triangles lumineux) — hero & page-head
   ============================================ */
.hero, .page-head { position: relative; overflow: hidden; }
.hero::after, .page-head::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 150vmax; height: 150vmax;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(244,122,53,0.10) 14deg,
    transparent 30deg,
    rgba(255,255,255,0.05) 46deg,
    transparent 62deg,
    rgba(244,122,53,0.08) 80deg,
    transparent 100deg,
    rgba(255,255,255,0.05) 128deg,
    transparent 150deg,
    rgba(244,122,53,0.10) 180deg,
    transparent 210deg,
    rgba(255,255,255,0.04) 250deg,
    transparent 290deg,
    rgba(244,122,53,0.08) 320deg,
    transparent 350deg
  );
  animation: raysSpin 40s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes raysSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
/* le contenu passe au-dessus des rayons */
.hero > .wrap, .page-head > .wrap { position: relative; z-index: 2; }
.hero-particles { z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero::after, .page-head::after { animation: none; }
}

.hero h1 {
  margin: 26px 0 28px;
  max-width: 16ch;
}
.hero-sub {
  font-size: 1.2rem; color: var(--mist-light);
  max-width: 52ch; line-height: 1.55;
}
.hero-actions { margin-top: 44px; display: flex; gap: 18px; flex-wrap: wrap; }
.btn {
  font-family: var(--sans); font-weight: 500; font-size: 15px;
  padding: 15px 30px; border-radius: 2px; cursor: pointer;
  transition: all 0.25s var(--ease);
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid transparent;
}
.btn-amber { background: var(--amber); color: var(--ink); }
.btn-amber:hover { background: var(--paper); }
.btn-ghost { background: transparent; color: var(--paper); border-color: var(--ink-line); }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

/* hero figures strip */
.hero-figures {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--ink-line);
  margin-top: 80px; border-top: 1px solid var(--ink-line);
}
.fig {
  background: var(--ink); padding: 30px 28px 30px 0;
}
.fig .n { font-family: var(--serif); font-size: 2.6rem; color: var(--paper); display: block; }
.fig .n span { color: var(--amber); }
.fig .l { font-size: 13px; color: var(--mist-light); margin-top: 6px; line-height: 1.4; }

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 100px 0; }
.section-head { max-width: 60ch; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 20px 0 18px; }
.section-head p { color: var(--mist); font-size: 1.1rem; }

/* services grid */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.svc {
  background: var(--paper); padding: 46px 42px;
  transition: background 0.3s var(--ease);
  position: relative;
}
.svc:hover { background: var(--paper-pure); }
.svc .num { font-family: var(--mono); font-size: 13px; color: var(--amber-deep); letter-spacing: 0.1em; }
.svc h3 { font-size: 1.6rem; margin: 18px 0 14px; }
.svc p { color: var(--mist); font-size: 1rem; margin-bottom: 22px; }
.svc .more { font-size: 14px; font-weight: 500; color: var(--ink); display: inline-flex; gap: 8px; align-items: center; }
.svc .more svg { transition: transform 0.25s var(--ease); }
.svc:hover .more svg { transform: translateX(5px); }

/* dark band */
.band { background: var(--ink); color: var(--paper); }
.band .section-head h2 { color: var(--paper); }
.band .section-head p { color: var(--mist-light); }
.band .eyebrow { color: var(--amber); }

/* sectors list */
.sectors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--ink-line); border: 1px solid var(--ink-line); }
.sector { background: var(--ink); padding: 34px 30px; transition: background 0.3s var(--ease); }
.sector:hover { background: var(--ink-soft); }
.sector .si { font-family: var(--mono); font-size: 12px; color: var(--mist-light); }
/* icône Font Awesome dans les blocs "points forts" */
.sectors-icons .sector { padding: 40px 32px; text-align: left; }
.sectors-icons .sector .si {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 13px;
  background: rgba(243,86,0,0.12); color: var(--accent);
  font-size: 1.35rem; margin-bottom: 6px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.sectors-icons .sector:hover .si { background: var(--accent); color: #fff; transform: translateY(-3px); }
.sector h3 { font-size: 1.3rem; color: var(--paper); margin: 14px 0 8px; }
.sector p { font-size: 0.92rem; color: var(--mist-light); }

/* approach steps */
.steps { display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: 90px 1fr; gap: 40px;
  padding: 40px 0; border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step .sn { font-family: var(--serif); font-size: 2.4rem; color: var(--amber); }
.step h3 { font-size: 1.5rem; margin-bottom: 12px; }
.step p { color: var(--mist); max-width: 60ch; }

/* CTA strip */
.cta-strip {
  background: var(--amber);
  color: var(--ink);
  padding: 84px 0;
}
.cta-strip h2 { font-size: clamp(2rem, 4vw, 3rem); max-width: 20ch; }
.cta-strip p { font-size: 1.15rem; margin: 18px 0 34px; max-width: 50ch; color: var(--ink-soft); }
.cta-strip .btn-dark { background: var(--ink); color: var(--paper); }
.cta-strip .btn-dark:hover { background: var(--paper); color: var(--ink); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--ink); color: var(--mist-light); padding: 80px 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid var(--ink-line); }
.footer-brand .brand { color: var(--paper); margin-bottom: 18px; }
.footer-brand p { max-width: 38ch; font-size: 0.95rem; }
.footer-col h4 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 0.95rem; padding: 7px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 28px; font-size: 0.85rem; flex-wrap: wrap; gap: 14px; }

/* ============================================
   PAGE HEADER (interior pages)
   ============================================ */
.page-head { background: var(--ink); color: var(--paper); padding: 92px 0 80px; position: relative; overflow: hidden; }
.page-head::before { content:""; position:absolute; bottom:-40%; left:-10%; width:50vw; height:120%; background: radial-gradient(circle, rgba(217,138,61,0.13), transparent 60%); }
.page-head .eyebrow { color: var(--amber); }
.page-head h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); margin: 22px 0 20px; max-width: 18ch; }
.page-head p { color: var(--mist-light); font-size: 1.15rem; max-width: 56ch; }

/* prose */
.prose { max-width: 70ch; }
.prose h2 { font-size: 2rem; margin: 48px 0 18px; }
.prose h3 { font-size: 1.4rem; margin: 34px 0 12px; }
.prose p { color: var(--ink-soft); margin-bottom: 18px; }
.prose ul { margin: 0 0 22px 0; list-style: none; }
.prose li { padding-left: 26px; position: relative; margin-bottom: 12px; color: var(--ink-soft); }
.prose li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; background: var(--amber); border-radius: 50%; }

/* team grid */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.member { }
.member .avatar { aspect-ratio: 4/5; background: linear-gradient(160deg, var(--ink-soft), var(--ink)); border-radius: 3px; display: flex; align-items: flex-end; padding: 22px; position: relative; overflow: hidden; }
.member .avatar::before { content: ""; position: absolute; top: -20%; right: -20%; width: 70%; height: 70%; background: radial-gradient(circle, rgba(217,138,61,0.25), transparent 65%); }
.member .initials { font-family: var(--serif); font-size: 3rem; color: var(--amber); opacity: 0.55; position: absolute; top: 24px; left: 24px; }
.member h3 { color: var(--paper); font-size: 1.2rem; position: relative; }
.member .role { color: var(--mist-light); font-size: 0.9rem; position: relative; }
.member .bio { font-size: 0.92rem; color: var(--mist); margin-top: 14px; }

/* stats inline */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat-row .fig { background: var(--paper); padding: 36px 30px; }
.stat-row .fig .n { color: var(--ink); }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: start; }

/* Formulaire dans une carte élégante */
#contact-form {
  background: var(--paper-pure);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px 38px;
  box-shadow: 0 30px 60px -36px rgba(2,27,64,0.35);
}
.field { margin-bottom: 20px; position: relative; }
.field label { display: block; font-size: 12.5px; font-weight: 600; font-family: var(--sans); letter-spacing: 0.02em; color: var(--ink-soft); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; font-family: var(--sans); font-size: 15.5px;
  border: 1.5px solid var(--line); background: var(--paper); border-radius: 10px; color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--mist-light); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); background: var(--paper-pure);
  box-shadow: 0 0 0 4px rgba(243,86,0,0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2301265b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px;
}
#contact-form .btn { width: 100%; justify-content: center; border-radius: 10px; padding: 16px; font-size: 15px; margin-top: 4px;
  background: var(--accent); color: #fff; }
#contact-form .btn:hover { background: var(--accent-deep); box-shadow: 0 12px 28px -10px rgba(243,86,0,0.5); }

/* Panneau coordonnées sur fond marine */
.contact-info {
  background: var(--ink-soft);
  border-radius: 16px;
  padding: 36px 34px;
  color: var(--paper);
  box-shadow: 0 30px 60px -36px rgba(2,27,64,0.5);
}
.contact-info .ci-block { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.contact-info .ci-block:first-child { border-top: none; padding-top: 0; }
.contact-info h4 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.contact-info p { color: var(--mist-light); line-height: 1.55; }
.contact-info a { color: var(--paper) !important; }

/* insights / articles */
.articles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.article { border-top: 2px solid var(--ink); padding-top: 22px; transition: border-color 0.25s; }
.article:hover { border-color: var(--amber); }
.article .tag { font-family: var(--mono); font-size: 12px; color: var(--amber-deep); letter-spacing: 0.08em; }
.article h3 { font-size: 1.35rem; margin: 14px 0 12px; line-height: 1.2; }
.article p { font-size: 0.95rem; color: var(--mist); margin-bottom: 16px; }
.article .meta { font-size: 0.82rem; color: var(--mist-light); }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================
   SÉLECTEUR DE LANGUE
   ============================================ */
.lang-switch { display: flex; align-items: center; gap: 8px; margin-left: 8px; }
.lang-switch button {
  background: none; border: none; cursor: pointer; padding: 0;
  border-radius: 50%; line-height: 0;
  opacity: 0.45; transition: opacity 0.2s, transform 0.2s;
}
.lang-switch button:hover { opacity: 0.8; transform: scale(1.08); }
.lang-switch button.active { opacity: 1; }
.lang-switch button.active .flag { box-shadow: 0 0 0 2px var(--accent), 0 2px 6px rgba(0,0,0,0.2); }

.flag {
  display: inline-block; width: 26px; height: 26px; border-radius: 50%;
  overflow: hidden; box-shadow: 0 0 0 1px rgba(0,0,0,0.12), 0 2px 5px rgba(0,0,0,0.15);
  background-size: cover; background-position: center;
}
/* Drapeau France : 3 bandes verticales bleu/blanc/rouge */
.flag-fr {
  background-image: linear-gradient(90deg,
    #0055A4 0%, #0055A4 33.33%,
    #ffffff 33.33%, #ffffff 66.66%,
    #EF4135 66.66%, #EF4135 100%);
}
/* Drapeau Royaume-Uni (anglais) : Union Jack en SVG */
.flag-en {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3CclipPath id='c'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23c)'%3E%3Crect width='60' height='60' fill='%23012169'/%3E%3Cpath d='M0,0 L60,60 M60,0 L0,60' stroke='%23fff' stroke-width='12'/%3E%3Cpath d='M0,0 L60,60 M60,0 L0,60' stroke='%23C8102E' stroke-width='8'/%3E%3Cpath d='M30,0 V60 M0,30 H60' stroke='%23fff' stroke-width='20'/%3E%3Cpath d='M30,0 V60 M0,30 H60' stroke='%23C8102E' stroke-width='12'/%3E%3C/g%3E%3C/svg%3E");
}

/* ============================================
   ÉTUDES DE CAS
   ============================================ */
.cases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.case {
  background: var(--paper-pure); border: 1px solid var(--line);
  border-radius: 4px; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex; flex-direction: column;
}
.case:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(46,49,146,0.4); }
.case .case-top {
  background: var(--ink-soft); padding: 28px 30px; color: var(--paper);
  position: relative; overflow: hidden;
}
.case .case-top::after { content:""; position:absolute; top:-30%; right:-15%; width:55%; height:120%; background: radial-gradient(circle, rgba(255,210,63,0.22), transparent 65%); }
.case .case-tag { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--accent); position: relative; }
.case .case-metric { font-family: var(--serif); font-weight: 800; font-size: 2.8rem; margin-top: 12px; position: relative; line-height: 1; }
.case .case-metric span { font-size: 1.4rem; color: var(--mist-light); }
.case .case-body { padding: 26px 30px 30px; flex: 1; display: flex; flex-direction: column; }
.case .case-body h3 { font-size: 1.3rem; margin-bottom: 10px; }
.case .case-body p { color: var(--mist); font-size: 0.96rem; flex: 1; }
.case .case-body .more { margin-top: 18px; font-size: 14px; font-weight: 600; color: var(--ink-soft); display: inline-flex; gap: 8px; align-items: center; }

/* ============================================
   TÉMOIGNAGES
   ============================================ */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote {
  background: var(--paper-pure); border: 1px solid var(--line);
  border-radius: 4px; padding: 34px 30px;
  display: flex; flex-direction: column;
}
.quote .qm { font-family: var(--serif); font-size: 3.4rem; line-height: 0.6; color: var(--amber); height: 28px; }
.quote blockquote { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.55; margin: 18px 0 24px; flex: 1; }
.quote .author { display: flex; align-items: center; gap: 14px; }
.quote .author .ai { width: 44px; height: 44px; border-radius: 50%; background: var(--ink-soft); color: var(--paper); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 0.95rem; }
.quote .author .an { font-weight: 600; font-size: 0.95rem; }
.quote .author .ar { font-size: 0.82rem; color: var(--mist); }

.band .quote { background: var(--ink-soft); border-color: var(--ink-line); }
.band .quote blockquote { color: var(--paper); }
.band .quote .qm { color: var(--accent); }
.band .quote .author .ai { background: var(--accent); color: var(--ink); }
.band .quote .author .an { color: var(--paper); }
.band .quote .author .ar { color: var(--mist-light); }

/* ============================================
   CARRIÈRES
   ============================================ */
.jobs { display: grid; gap: 0; border-top: 1px solid var(--line); }
.job {
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center;
  padding: 28px 4px; border-bottom: 1px solid var(--line);
  transition: padding-left 0.25s var(--ease);
}
.job:hover { padding-left: 16px; }
.job .job-info h3 { font-size: 1.25rem; margin-bottom: 8px; }
.job .job-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.85rem; color: var(--mist); }
.job .job-meta span { display: inline-flex; align-items: center; gap: 6px; }
.job .job-apply {
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
  display: inline-flex; gap: 8px; align-items: center; white-space: nowrap;
}
.job .job-apply svg { transition: transform 0.25s var(--ease); }
.job:hover .job-apply svg { transform: translateX(5px); }

.perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--ink-line); border: 1px solid var(--ink-line); }
.perk { background: var(--ink-soft); padding: 30px 26px; }
.perk .pi { font-family: var(--mono); font-size: 12px; color: var(--accent); }
.perk h3 { color: var(--paper); font-size: 1.15rem; margin: 12px 0 8px; }
.perk p { font-size: 0.9rem; color: var(--mist-light); }

/* ============================================
   NEWSLETTER (footer)
   ============================================ */
.footer-news { margin-top: 16px; display: flex; gap: 8px; max-width: 320px; }
.footer-news input {
  flex: 1; padding: 11px 14px; font-family: var(--sans); font-size: 14px;
  background: var(--ink); border: 1px solid var(--ink-line); border-radius: 2px;
  color: var(--paper);
}
.footer-news input::placeholder { color: var(--mist); }
.footer-news input:focus { outline: none; border-color: var(--accent); }
.footer-news button {
  background: var(--accent); border: none; border-radius: 2px; padding: 0 16px;
  cursor: pointer; color: var(--ink); display: flex; align-items: center;
  transition: background 0.2s;
}
.footer-news button:hover { background: var(--paper); }
.footer-news.done input { border-color: var(--accent); }

/* Réseaux sociaux footer */
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink); border: 1px solid var(--ink-line);
  color: var(--mist-light);
  transition: all 0.25s var(--ease);
}
.footer-social a:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); transform: translateY(-3px); }

/* ============================================
   FAQ — accordéon
   ============================================ */
.faq-wrap { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px; text-align: left;
  font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--ink-soft);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q i {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(243,86,0,0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.faq-item.open .faq-q i { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a p { padding: 0 4px 26px; color: var(--mist); line-height: 1.65; margin: 0; }
.faq-item.open .faq-a { max-height: 320px; }

/* ============================================
   WIDGET WHATSAPP (bulle + panneau de chat)
   ============================================ */
.wa-widget { position: fixed; right: 22px; bottom: 22px; z-index: 9990; }

/* bulle flottante */
.wa-fab {
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 24px -6px rgba(37,211,102,0.6);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  animation: waPulse 2.6s ease-in-out infinite;
  margin-left: auto;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 12px 30px -6px rgba(37,211,102,0.75); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px -6px rgba(37,211,102,0.6); }
  50% { box-shadow: 0 8px 24px -6px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0.12); }
}

/* panneau de chat */
.wa-panel {
  position: absolute; bottom: 74px; right: 0;
  width: 320px; max-width: calc(100vw - 44px);
  background: var(--paper-pure); border-radius: 16px;
  box-shadow: 0 24px 60px -20px rgba(2,27,64,0.45);
  overflow: hidden;
  transform: translateY(16px) scale(0.96); transform-origin: bottom right;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.wa-widget.open .wa-panel { opacity: 1; transform: none; pointer-events: auto; }

.wa-panel-head {
  background: #075E54; color: #fff;
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
}
.wa-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.wa-head-info { display: flex; flex-direction: column; line-height: 1.3; flex: 1; }
.wa-head-info strong { font-size: 0.95rem; }
.wa-head-info span { font-size: 0.78rem; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 6px; }
.wa-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; display: inline-block; }
.wa-close { background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; line-height: 1; opacity: 0.8; }
.wa-close:hover { opacity: 1; }

.wa-panel-body {
  padding: 22px 18px;
  background: #ECE5DD;
  min-height: 90px;
}
.wa-bubble {
  background: #fff; border-radius: 0 12px 12px 12px;
  padding: 14px 16px; font-size: 0.9rem; color: #303030; line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0,0,0,0.12); position: relative;
}

.wa-start {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #25D366; color: #fff; font-weight: 600; font-size: 0.95rem;
  padding: 16px; text-decoration: none;
  transition: background 0.2s;
}
.wa-start i { font-size: 1.2rem; }
.wa-start:hover { background: #1da851; }

@media (max-width: 680px) {
  .wa-widget { right: 16px; bottom: 16px; }
  .wa-fab { width: 52px; height: 52px; font-size: 27px; }
}
@media (prefers-reduced-motion: reduce) { .wa-fab { animation: none; } }


/* Carte de localisation (contact) */
.map-wrap { margin-top: 56px; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; background: var(--paper-pure); }
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; filter: grayscale(0.2); }
.map-link { display: inline-flex; align-items: center; gap: 8px; padding: 16px 20px; font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.map-link svg { transition: transform 0.25s var(--ease); }
.map-link:hover svg { transform: translateX(5px); }
/* ============================================
   SECTION ACTUALITÉS — carrousel 3D (coverflow)
   ============================================ */
.news-section { padding: 90px 0 100px; overflow: hidden; }

.carousel3d {
  position: relative;
  max-width: 1100px;
  margin: 30px auto 0;
  padding: 30px 0 10px;
}
.carousel3d-stage {
  position: relative;
  height: 520px;
  transform-style: preserve-3d;
  perspective: 1400px;
}

.c3d-card {
  position: absolute;
  top: 0; left: 50%;
  width: 300px; height: 500px;
  margin-left: -150px;
  background: var(--paper-pure);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 20px 50px -20px rgba(2,27,64,0.4);
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
  will-change: transform;
  backface-visibility: hidden;
  cursor: pointer;
}
/* positions calculées en JS via variables, fallback ci-dessous */
.c3d-card.pos-center { transform: translateZ(120px) rotateY(0deg) scale(1); opacity: 1; z-index: 3; }
.c3d-card.pos-left   { transform: translateX(-220px) translateZ(-40px) rotateY(42deg) scale(0.86); opacity: 0.6; z-index: 2; }
.c3d-card.pos-right  { transform: translateX(220px) translateZ(-40px) rotateY(-42deg) scale(0.86); opacity: 0.6; z-index: 2; }
.c3d-card.pos-hidden { transform: translateZ(-300px) scale(0.7); opacity: 0; z-index: 1; pointer-events: none; }

/* contenu interne des cartes */
.news-img {
  height: 290px; flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--paper-pure);
  display: flex; align-items: center; justify-content: center;
}
.news-body { padding: 16px 20px 18px; display: flex; flex-direction: column; flex: 1; }
.news-date {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--amber-deep); text-transform: uppercase;
}
.news-body h3 { font-size: 1.02rem; margin: 8px 0 7px; line-height: 1.2; color: var(--ink-soft);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-body p {
  font-size: 0.84rem; color: var(--mist); line-height: 1.45; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.news-link {
  margin-top: 12px; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--accent);
}
.news-link svg { transition: transform 0.25s var(--ease); }
.news-link:hover svg { transform: translateX(4px); }

/* cartes vides (placeholders) */
.news-placeholder .news-img { background: linear-gradient(160deg, var(--ink-soft), var(--ink)); }
.news-ph-icon {
  font-family: var(--serif); font-size: 3rem; font-weight: 300;
  color: rgba(255,255,255,0.4);
  width: 64px; height: 64px; border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
}
.news-placeholder { border-style: dashed; }
.news-placeholder h3, .news-placeholder p { color: var(--mist); }

/* navigation du carrousel */
.carousel3d-nav {
  display: flex; align-items: center; justify-content: center; gap: 22px;
  margin-top: 26px;
}
.c3d-btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--line); background: var(--paper-pure);
  color: var(--ink-soft); cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--ease);
}
.c3d-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: scale(1.06); }
.c3d-dots { display: flex; gap: 10px; }
.c3d-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--line); cursor: pointer; border: none; padding: 0;
  transition: all 0.25s var(--ease);
}
.c3d-dot.active { background: var(--accent); width: 26px; border-radius: 5px; }

@media (max-width: 680px) {
  .carousel3d-stage { height: 480px; }
  .c3d-card { width: 250px; height: 460px; margin-left: -125px; }
  .c3d-card.pos-left  { transform: translateX(-150px) translateZ(-40px) rotateY(40deg) scale(0.82); }
  .c3d-card.pos-right { transform: translateX(150px) translateZ(-40px) rotateY(-40deg) scale(0.82); }
}
@media (prefers-reduced-motion: reduce) {
  .c3d-card { transition: opacity 0.3s; }
}


/* ============================================
   SECTION CHIFFRES CLÉS (centrée)
   ============================================ */
.stats-band { background: var(--ink); padding: 70px 0; }
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--ink-line);
  border: 1px solid var(--ink-line);
}
.stats-row .stat {
  background: var(--ink);
  padding: 40px 28px;
  text-align: center;
}
.stats-row .stat .n {
  font-family: var(--serif); font-weight: 800;
  font-size: 3rem; color: var(--paper);
  display: block; line-height: 1;
}
.stats-row .stat .n .count { color: var(--amber); }
.stats-row .stat .l {
  display: block; margin-top: 14px;
  font-size: 0.95rem; color: var(--mist-light);
  line-height: 1.45;
}
@media (max-width: 680px) {
  .stats-row { grid-template-columns: 1fr; }
}

/* ============================================
   SECTION ÉQUIPE AU TRAVAIL (style bannière)
   ============================================ */
.teamwork { padding: 0; background: var(--ink); }
.teamwork-inner {
  position: relative;
  min-height: 560px;
  display: flex; align-items: center;
  background-color: var(--ink);
  background-size: cover; background-position: center;
}
.teamwork-inner::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 2%, rgba(2,27,64,0.55) 32%, rgba(2,27,64,0.1) 58%, transparent 75%),
    linear-gradient(0deg, var(--ink) 1%, transparent 22%),
    linear-gradient(180deg, var(--ink) 1%, transparent 18%);
}
.teamwork-card {
  position: relative;
  margin-left: auto;
  width: min(46%, 560px);
  background: var(--ink-soft);
  color: var(--paper);
  padding: 56px 52px;
  box-shadow: 0 30px 60px -30px rgba(10,15,40,0.6);
}
.teamwork-card h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--paper); margin-bottom: 22px; }
.teamwork-card p { color: var(--mist-light); font-size: 1.1rem; line-height: 1.6; margin-bottom: 34px; }
.teamwork-card .btn-pill {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--paper); color: var(--ink-soft);
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  padding: 16px 30px; border-radius: 100px;
  transition: gap 0.25s var(--ease), background 0.25s var(--ease);
}
.teamwork-card .btn-pill svg {
  width: 26px; height: 26px; padding: 5px;
  border-radius: 50%; background: var(--ink-soft); color: var(--paper);
  transition: transform 0.25s var(--ease);
}
.teamwork-card .btn-pill:hover { gap: 20px; }
.teamwork-card .btn-pill:hover svg { transform: translateX(3px); }

@media (max-width: 820px) {
  .teamwork-inner { min-height: 0; flex-direction: column; }
  .teamwork-inner::before { background: linear-gradient(180deg, rgba(10,15,40,0.25), rgba(10,15,40,0.05)); }
  .teamwork-card { width: 100%; margin-left: 0; padding: 40px 28px; }
  .teamwork-img-mobile { width: 100%; height: 280px; background-size: cover; background-position: center; }
}

/* ============================================
   VALIDATION FORMULAIRE
   ============================================ */
.field .err { display: none; font-family: var(--sans); font-size: 12.5px; color: #c0392b; margin-top: 7px; letter-spacing: 0; text-transform: none; }
.field.invalid input, .field.invalid textarea { border-color: #c0392b; }
.field.invalid input:focus, .field.invalid textarea:focus { box-shadow: 0 0 0 4px rgba(192,57,43,0.12); }
.field.invalid .err { display: block; }
.field.valid input, .field.valid textarea { border-color: #1f9d55; }
.form-note { font-size: 0.82rem; color: var(--mist); margin-top: 6px; }

/* selection accent */
::selection { background: var(--accent); color: var(--ink); }

/* ============================================
   ANIMATIONS JS — hero, curseur, transitions
   ============================================ */

/* --- Hero : entrée au chargement --- */
.hero-in { opacity: 0; transform: translateY(28px); }
.hero-loaded .hero-in {
  opacity: 1; transform: none;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.hero-loaded .hero-in[data-delay="0"] { transition-delay: 0.05s; }
.hero-loaded .hero-in[data-delay="1"] { transition-delay: 0.18s; }
.hero-loaded .hero-in[data-delay="2"] { transition-delay: 0.32s; }
.hero-loaded .hero-in[data-delay="3"] { transition-delay: 0.46s; }
.hero-loaded .hero-in[data-delay="4"] { transition-delay: 0.60s; }

/* --- Dégradé animé du hero (sous les particules) --- */
.hero {
  background: linear-gradient(125deg, #14163d, #1a1c4b, #24267a, #1a1c4b);
  background-size: 280% 280%;
  animation: heroGradient 18s ease infinite;
}
@keyframes heroGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* --- Canvas particules --- */
.hero-particles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }

/* --- Curseur personnalisé --- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  border-radius: 50%; pointer-events: none;
  z-index: 9999; mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}
.cursor-dot { width: 7px; height: 7px; background: #fff; }
.cursor-ring {
  width: 34px; height: 34px; border: 1.5px solid #fff;
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.cursor-ring.hovering { width: 56px; height: 56px; background: rgba(255,255,255,0.12); }
body.has-custom-cursor, body.has-custom-cursor a, body.has-custom-cursor button { cursor: none; }

/* --- Boutons : effets de survol renforcés --- */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%;
  width: 70%; height: 100%; transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transition: left 0.6s var(--ease);
}
.btn:hover::after { left: 130%; }
.btn:hover { transform: translateY(-2px); }
.btn-amber:hover { box-shadow: 0 10px 26px -10px rgba(124,127,232,0.7); }

.nav-cta { position: relative; overflow: hidden; }
.nav-cta:hover { transform: translateY(-1px); }

/* --- Transition de page (overlay au départ) --- */
.page-fade {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--ink-soft);
  transform: scaleY(0); transform-origin: bottom;
  pointer-events: none;
}
.page-fade.run {
  transform: scaleY(1); transform-origin: bottom;
  transition: transform 0.5s var(--ease);
}
body.page-enter { animation: pageEnter 0.6s var(--ease); }
@keyframes pageEnter { from { opacity: 0; } to { opacity: 1; } }

/* --- Parallaxe : lueur du hero pilotée en JS --- */
.hero::before { will-change: transform; }

@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none !important; }
  body.has-custom-cursor, body.has-custom-cursor a, body.has-custom-cursor button { cursor: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .hero { animation: none; }
  .hero-in { opacity: 1; transform: none; }
  .cursor-dot, .cursor-ring { display: none !important; }
  .page-fade { display: none !important; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 920px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .team, .articles, .sectors, .cases, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .perks { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .wrap { padding: 0 22px; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; background: var(--paper); padding: 24px; gap: 20px; border-bottom: 1px solid var(--line); }
  section { padding: 70px 0; }
  .hero { padding: 70px 0 80px; }
  .services, .sectors, .team, .articles, .stat-row, .hero-figures, .cases, .testimonials, .perks { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 12px; }
  .job { grid-template-columns: 1fr; gap: 14px; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ============================================
   PAGE FORMATION CAISSIER (détail)
   ============================================ */
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--amber); font-size: 14px; font-weight: 600;
  margin-bottom: 22px; transition: gap 0.2s;
}
.back-link:hover { gap: 12px; }

.formation-meta {
  display: flex; gap: 40px; margin-top: 34px; flex-wrap: wrap;
}
.fm-item { display: flex; flex-direction: column; gap: 4px; }
.fm-label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mist-light); }
.fm-value { font-family: var(--serif); font-size: 1.8rem; font-weight: 800; color: var(--accent); }

.formation-section { padding: 90px 0; }

/* Accordéon programme (style parcours) */
.prog-accordion { margin-top: 50px; max-width: 920px; margin-left: auto; margin-right: auto; }
.prog-item { border: 1px solid var(--line); border-radius: 10px; margin-bottom: 12px; overflow: hidden; background: var(--paper-pure); transition: box-shadow 0.25s var(--ease); }
.prog-item.open { box-shadow: 0 14px 34px -20px rgba(2,27,64,0.3); }
.prog-head {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; text-align: left;
  transition: background 0.2s;
}
.prog-head:hover { background: var(--paper); }
.prog-chevron {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(243,86,0,0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; transition: transform 0.3s var(--ease), background 0.3s, color 0.3s;
}
.prog-item.open .prog-chevron { transform: rotate(180deg); background: var(--accent); color: #fff; }
.prog-title { flex: 1; font-family: var(--serif); font-size: 1.05rem; color: var(--ink-soft); font-weight: 500; }
.prog-title strong { font-weight: 800; }
.prog-meta { flex-shrink: 0; font-family: var(--mono); font-size: 0.82rem; color: var(--mist); letter-spacing: 0.03em; }
.prog-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.prog-item.open .prog-body { max-height: 600px; }
.prog-list { list-style: none; padding: 6px 24px 22px 70px; margin: 0; }
.prog-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 0; font-size: 0.95rem; color: var(--mist);
  border-top: 1px solid var(--line);
}
.prog-list li:first-child { border-top: none; }
.prog-list li i {
  color: var(--accent); font-size: 0.7rem; flex-shrink: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(243,86,0,0.1);
  display: inline-flex; align-items: center; justify-content: center;
}

@media (max-width: 760px) {
  .prog-head { padding: 16px 16px; gap: 12px; }
  .prog-title { font-size: 0.95rem; }
  .prog-meta { display: none; }
  .prog-list { padding-left: 50px; }
  .goal-card { flex-direction: column; text-align: center; padding: 34px 28px; }
  .formation-meta { gap: 28px; }
}

/* Objectif général */
.formation-goal { padding: 0 0 90px; }
.goal-card {
  display: flex; align-items: center; gap: 28px;
  background: var(--ink-soft); color: var(--paper);
  border-radius: 18px; padding: 44px 46px;
  box-shadow: 0 30px 60px -30px rgba(2,27,64,0.5);
}
.goal-icon {
  flex-shrink: 0;
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.goal-card h2 { color: var(--paper); font-size: 1.5rem; margin-bottom: 10px; }
.goal-card p { color: var(--mist-light); line-height: 1.6; font-size: 1.02rem; }

@media (max-width: 760px) {
  .modules-grid { grid-template-columns: 1fr; }
  .goal-card { flex-direction: column; text-align: center; padding: 34px 28px; }
  .formation-meta { gap: 28px; }
}

/* Photo d'un associé : voile sombre pour garder le nom lisible par-dessus l'image */
.member .avatar[style*="background-image"]::before {
  content: ""; position: absolute; inset: 0;
  top: 0; right: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(10,15,40,0.10) 35%, rgba(10,15,40,0.85) 100%);
}
