/* =========================================================
   ARTISTE COMPTA — Design system v3
   Direction : studio / label de musique. Noir profond, typo
   d'affiche géante, photographie en duotone, curseur signature,
   révélations masquées au scroll. Une seule couleur d'accent.
   ========================================================= */

:root {
  --void: #07050B;
  --deep: #0F0A18;
  --panel: #171022;
  --panel-2: #1D1529;
  --ink: #F4F1EC;
  --ink-dim: #A79FB3;
  --ink-faint: #6E6580;
  --accent: #3BAAE1;
  --accent-dim: #2C88B8;
  --violet: #5A2382;
  --violet-light: #B98CE0;
  --line: rgba(244,241,236,.12);
  --line-strong: rgba(244,241,236,.22);

  --font-display: 'Bebas Neue', 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1240px;
  --ease: cubic-bezier(.16,.84,.24,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--void); }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--void);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .92;
  margin: 0 0 .3em;
  color: var(--ink);
  letter-spacing: .002em;
  text-transform: uppercase;
}
h1 { font-size: clamp(3.2rem, 8.6vw, 7.4rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.2rem; text-transform: none; letter-spacing: 0; }

p { line-height: 1.75; color: var(--ink-dim); margin: 0 0 1em; font-size: 1.02rem; }

.eyebrow {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.1em;
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--accent); }

.lead { font-size: 1.2rem; color: var(--ink-dim); max-width: 52ch; }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  border-radius: 50%; transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot { width: 6px; height: 6px; background: var(--accent); }
.cursor-ring {
  width: 38px; height: 38px; border: 1px solid rgba(244,241,236,.5);
  transition: width .25s var(--ease), height .25s var(--ease), border-color .25s ease, background .25s ease;
}
.cursor-ring.hover { width: 68px; height: 68px; border-color: var(--accent); background: rgba(59,170,225,.08); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px;
  font-family: var(--font-mono); font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .1em;
  cursor: pointer; border: 1px solid var(--line-strong);
  transition: transform .3s var(--ease), background .3s ease, border-color .3s ease, color .3s ease;
  background: transparent; color: var(--ink);
}
.btn:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent); }

.btn-solid { background: var(--ink); color: var(--void); border-color: var(--ink); }
.btn-solid:hover { background: linear-gradient(120deg, var(--accent), var(--violet)); border-color: var(--accent); color: #fff; }

.btn-arrow::after { content: '→'; transition: transform .3s var(--ease); }
.btn-arrow:hover::after { transform: translateX(4px); }

.link-underline {
  position: relative; font-family: var(--font-mono); font-size: .82rem;
  text-transform: uppercase; letter-spacing: .1em; padding-bottom: 4px;
}
.link-underline::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--ink); transform: scaleX(1); transform-origin: right;
  transition: transform .35s var(--ease);
}
.link-underline:hover::after { transform: scaleX(0); transform-origin: left; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 4px 0;
  background: linear-gradient(rgba(7,5,11,.85), rgba(7,5,11,0));
  transition: background .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background: rgba(7,5,11,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { flex-shrink: 0; }
.header-right { display: flex; align-items: center; gap: 26px; }
.brand {
  display: inline-block;
  animation: brandIn .9s var(--ease) .1s backwards;
}
.brand img {
  height: 156px; width: auto;
  transition: transform .4s var(--ease);
}
.brand:hover img { transform: scale(1.07) rotate(-3deg); }
@keyframes brandIn {
  from { opacity: 0; transform: translateY(-14px) rotate(-4deg); }
  to   { opacity: 1; transform: translateY(0) rotate(0); }
}

.nav-links { display: flex; align-items: center; gap: 38px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--font-mono); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--ink);
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; }
.nav-cta .btn { padding: 11px 22px; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 1px; background: var(--ink); margin: 6px 0; }

@media (max-width: 1140px) {
  /* backdrop-filter sur .site-header créerait un "containing block" pour
     .nav-links (position: fixed), qui se retrouverait alors positionné par
     rapport au header (quelques dizaines de px de haut) au lieu du vrai
     écran — c'est ce qui empêchait le menu mobile de s'afficher en plein écran. */
  .site-header, .site-header.scrolled { background: rgba(7,5,11,.96); backdrop-filter: none; padding: 10px 0; }
  .brand img { height: 64px; }
  .nav-links {
    position: fixed; inset: 84px 0 0 0; background: var(--void); z-index: 150;
    flex-direction: column; align-items: flex-start; padding: 40px 32px; gap: 26px;
    transform: translateX(100%); transition: transform .3s var(--ease);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.4rem; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
}

/* =========================================================
   HERO — full bleed, duotone artists, Ken Burns, mask reveal
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--void);
  padding-bottom: 90px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 78% 38%, rgba(90,35,130,.55), transparent 60%),
    linear-gradient(180deg, var(--void) 0%, var(--deep) 55%, var(--void) 100%);
}
.hero-figure {
  position: absolute; right: -8%; top: 3%; width: 78%; max-width: 1020px;
  z-index: 1;
  animation: kenburns 24s ease-in-out infinite alternate;
  opacity: 1;
}
.hero-figure img { width: 100%; filter: drop-shadow(0 40px 80px rgba(0,0,0,.6)); }
@keyframes kenburns {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.06) translateY(-14px); }
}
.hero-figure-static { animation: none; } /* photo de la page d'accueil : fixe, sans zoom ni tilt au survol */
.hero::after {
  /* grain */
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: .28; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 3; width: 100%; }

.hero-slate {
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 22px;
  display: flex; gap: 14px; align-items: center;
}
.hero-slate b { color: var(--violet-light); font-weight: 700; }

.mask-line { overflow: hidden; }
.mask-line span {
  display: block;
  transform: translateY(105%);
  animation: maskUp 1s var(--ease) forwards;
}
@keyframes maskUp { to { transform: translateY(0); } }

.hero h1 { max-width: 11.5ch; }
.hero .lead { margin-top: 26px; opacity: 0; animation: fadeUp .8s var(--ease) .7s forwards; }
.hero-actions {
  display: flex; gap: 22px; align-items: center; margin-top: 40px;
  opacity: 0; animation: fadeUp .8s var(--ease) .85s forwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }


.page-hero .hero-figure {
  width: 58%; max-width: 700px; right: -3%; top: 8%; opacity: 1;
}

@media (max-width: 900px) {
  .hero { align-items: center; padding-bottom: 60px; flex-direction: column; }
  .hero-figure { position: relative; right: auto; top: auto; width: 90%; margin: 0 auto 30px; opacity: .5; }
  .hero-inner { width: 100%; }
  .hero h1 { max-width: none; }
  .page-hero .hero-figure { display: none; }
}

/* ---------- "Signal" : lueur de curseur ---------- */
.hero-glow {
  position: absolute; z-index: 1; left: 0; top: 0;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,170,225,.32) 0%, rgba(185,140,224,.16) 45%, transparent 72%);
  transform: translate(-50%, -50%);
  pointer-events: none; opacity: 0; transition: opacity .6s ease;
  mix-blend-mode: screen;
}
.hero-glow.on { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .hero-glow { display: none; }
}

/* ---------- Marquee (outlined ghost type) ---------- */
.ghost-marquee {
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--void);
  padding: 6px 0;
}
.ghost-track {
  display: flex; width: max-content; gap: 60px;
  animation: ghostScroll 34s linear infinite;
}
.ghost-marquee:hover .ghost-track { animation-play-state: paused; }
@keyframes ghostScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ghost-track span {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px var(--line-strong);
  white-space: nowrap;
  letter-spacing: .01em;
  display: flex; align-items: center; gap: 40px;
}
.ghost-track span.filled { -webkit-text-stroke: 0; color: var(--violet-light); }
.ghost-track span::after { content: '/'; color: var(--ink-faint); -webkit-text-stroke: 0; font-family: var(--font-body); font-size: .5em; }

/* ---------- Sections ---------- */
section { padding: 140px 0; position: relative; }
.section-tight { padding: 90px 0; }
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.on-panel { background: var(--deep); }

/* ---------- Missions (large duotone-style number cards) ---------- */
.mission-list { display: flex; flex-direction: column; }
.mission-item {
  display: grid; grid-template-columns: 120px 1fr 200px;
  align-items: center; gap: 30px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
  position: relative;
  transition: padding-left .4s var(--ease);
}
.mission-list .mission-item:last-child { border-bottom: 1px solid var(--line); }
.mission-item:hover { padding-left: 18px; background: linear-gradient(90deg, rgba(59,170,225,.06), transparent); }
.mission-num-col { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.mission-picto { width: 42px; height: 42px; filter: drop-shadow(0 6px 14px rgba(0,0,0,.45)); transition: transform .35s var(--ease); }
.mission-item:hover .mission-picto { transform: scale(1.1) rotate(-4deg); }
.mission-num { font-family: var(--font-display); font-size: 3.4rem; color: var(--ink-faint); transition: color .3s ease; }
.mission-item:hover .mission-num { color: var(--violet-light); }
.mission-body h3 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); text-transform: uppercase; margin-bottom: .2em; }
.mission-body p { margin: 0; max-width: 60ch; }
.mission-cta {
  justify-self: end; font-family: var(--font-mono); font-size: .76rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-dim); display: flex; align-items: center; gap: 8px;
  transition: color .3s ease, gap .3s ease;
}
.mission-item:hover .mission-cta { color: var(--accent); gap: 14px; }
@media (max-width: 760px) {
  .mission-item { grid-template-columns: 60px 1fr; }
  .mission-cta { display: none; }
  .mission-num { font-size: 2.2rem; }
}

/* ---------- Detail rows (services.html) ---------- */
.detail-row { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
@media (max-width: 900px) { .detail-row { grid-template-columns: 1fr; gap: 34px; } }
.detail-row .kicker {
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px; display: block;
}
.detail-list { list-style: none; margin: 0; padding: 0; }
.detail-list li {
  padding: 22px 0; border-top: 1px solid var(--line);
  color: var(--ink-dim); line-height: 1.7; position: relative; padding-left: 30px;
}
.detail-list li:last-child { border-bottom: 1px solid var(--line); }
.detail-list li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 200;
  display: flex; align-items: center; gap: 13px;
  background: var(--ink); color: var(--void);
  padding: 10px 22px 10px 10px; border-radius: 999px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 14px 34px -10px rgba(0,0,0,.65);
  font-family: var(--font-mono); font-weight: 700; font-size: .8rem;
  letter-spacing: .04em; text-transform: uppercase;
  transition: transform .3s var(--ease), box-shadow .3s ease, background .3s ease, color .3s ease;
}
.wa-float:hover {
  transform: translateY(-3px);
  background: var(--accent); color: var(--void);
  box-shadow: 0 18px 40px -8px rgba(0,0,0,.7);
}
.wa-float .wa-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--void); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative;
}
.wa-float .wa-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--accent); stroke-width: 1.6; }
.wa-float:hover .wa-icon svg { stroke: var(--void); }
.wa-float .wa-dot {
  position: absolute; top: -2px; right: -2px; width: 12px; height: 12px;
  border-radius: 50%; background: #3ED598; border: 2px solid var(--void);
}
.wa-float .wa-dot::after {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 1.5px solid #3ED598; opacity: .6;
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(.7); opacity: .6; }
  70%  { transform: scale(1.8); opacity: 0; }
  100% { opacity: 0; }
}
.wa-float .wa-label { text-align: left; line-height: 1.3; }
.wa-float .wa-label b { display: block; font-size: .8rem; }
.wa-float .wa-label small { display: block; font-weight: 400; opacity: .6; font-size: .66rem; letter-spacing: .06em; }

@media (max-width: 600px) {
  .wa-float { right: 16px; bottom: 16px; padding: 8px; }
  .wa-float .wa-label { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float .wa-dot::after { animation: none; }
}
/* ---------- Photo cards (métiers) ---------- */
.photo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 960px) { .photo-grid { grid-template-columns: 1fr; } }
.photo-card { background: var(--void); position: relative; overflow: hidden; transition: background .3s ease; }
.photo-card .photo-frame { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.photo-card .photo-frame img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.88) saturate(1.1);
  transition: transform .6s var(--ease), filter .4s ease;
}
.photo-card:hover .photo-frame img { transform: scale(1.06); filter: brightness(1.05) saturate(1.2); }
.photo-card .photo-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,5,11,0) 40%, rgba(7,5,11,.9) 100%);
}
.photo-card .photo-num {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: var(--font-mono); font-size: .72rem; color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.3); padding: 4px 10px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.photo-card .photo-body { padding: 26px 26px 30px; }
.photo-card .photo-body h3 { margin-bottom: .4em; }
.photo-card .photo-body p { margin: 0; font-size: .92rem; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--void); padding: 46px 36px; position: relative;
  display: flex; flex-direction: column; transition: background .3s ease;
}
.price-card:hover { background: var(--panel); }
.price-card.featured { background: var(--panel); }
.price-card.featured:hover { background: var(--panel-2); }

.price-badge {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--void); background: var(--accent); padding: 6px 12px; border-radius: 999px;
}
.price-card .kicker {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px; display: block;
}
.price-name {
  font-family: var(--font-display); text-transform: uppercase; font-size: 2.2rem;
  margin-bottom: .2em; color: var(--ink);
}
.price-target { color: var(--ink-dim); min-height: 3.4em; margin-bottom: 22px; }
.price-amount { display: flex; align-items: baseline; gap: 8px; margin-bottom: 26px; }
.price-amount .amount { font-family: var(--font-display); font-size: 2rem; color: var(--ink); text-transform: uppercase; }
.price-amount .period { font-family: var(--font-mono); font-size: .78rem; color: var(--ink-faint); }
.price-actions { display: flex; flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 30px; }
.price-steps { display: flex; flex-direction: column; border: 1px solid var(--line-strong); border-radius: 10px; overflow: hidden; }
.price-step {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 16px; font-family: var(--font-mono); font-size: .82rem; font-weight: 700;
  color: var(--ink); border-bottom: 1px solid var(--line);
  transition: background .25s ease, color .25s ease;
}
.price-steps a.price-step:last-child { border-bottom: none; }
.price-step:hover { background: var(--accent); color: var(--void); }
.price-step .step-n {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: var(--panel-2); color: var(--ink-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; transition: background .25s ease, color .25s ease;
}
.price-step:hover .step-n { background: var(--void); color: var(--accent); }
.price-cta { align-self: stretch; justify-content: center; margin-bottom: 0; }
.price-secondary { font-size: .76rem; align-self: center; }
.price-secondary-muted { color: var(--ink-faint); font-family: var(--font-mono); font-size: .74rem; letter-spacing: .04em; cursor: default; align-self: center; }
.price-secondary-muted:hover { color: var(--ink-faint); }
.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li {
  padding: 14px 0; border-top: 1px solid var(--line); color: var(--ink-dim);
  font-size: .92rem; line-height: 1.5; position: relative; padding-left: 22px;
}
.price-list li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }

.promo-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--void);
  font-family: var(--font-mono); font-weight: 700; font-size: .82rem;
  letter-spacing: .03em; padding: 12px 22px; border-radius: 999px;
}

.price-note {
  text-align: center; font-family: var(--font-mono); font-size: .8rem;
  color: var(--ink-faint); margin-top: 40px; letter-spacing: .02em;
}
.profile-wall {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.3rem, 3vw, 2.3rem); line-height: 1.6;
  color: var(--ink-faint); text-align: center; letter-spacing: .01em;
}
.profile-wall .item { transition: color .3s ease; }
.profile-wall .item:hover { color: var(--accent); }
.profile-wall .sep { color: var(--line-strong); margin: 0 .28em; font-family: var(--font-body); }
.org-band {
  display: grid; grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.org-cell {
  padding: 40px 16px; border-left: 1px solid var(--line);
  text-align: center; font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.05rem, 1.8vw, 1.6rem); letter-spacing: .01em;
  color: var(--ink-dim); transition: color .3s ease, background .3s ease;
}
.org-cell:first-child { border-left: none; }
.org-cell:hover { color: var(--accent); background: rgba(59,170,225,.06); }
@media (max-width: 760px) {
  .org-band { grid-template-columns: repeat(3, 1fr); }
  .org-cell:nth-child(3n+1) { border-left: none; }
  .org-cell:nth-child(n+4) { border-top: 1px solid var(--line); }
}
.chips { display: flex; flex-wrap: wrap; gap: 14px; }
.chip {
  border: 1px solid var(--line-strong); color: var(--ink-dim);
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .05em;
  text-transform: uppercase; padding: 12px 20px; border-radius: 999px;
  transition: border-color .3s ease, color .3s ease;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Big stat band ---------- */
.stat-band { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 760px) { .stat-band { grid-template-columns: 1fr 1fr; } }
.stat-cell { padding: 50px 30px; border-left: 1px solid var(--line); text-align: center; }
.stat-cell:first-child { border-left: none; }
@media (max-width: 760px) { .stat-cell:nth-child(2n+1) { border-left: none; } .stat-cell:nth-child(n+3) { border-top: 1px solid var(--line); } }
.stat-cell b { display: block; font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--ink); }
.stat-cell span { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); }

/* ---------- Manifesto ---------- */
.manifesto {
  text-align: center; padding: 160px 0;
  background:
    radial-gradient(ellipse 45% 55% at 38% 45%, rgba(90,35,130,.28), transparent 65%),
    radial-gradient(ellipse 45% 55% at 65% 40%, rgba(59,170,225,.16), transparent 65%);
}
.manifesto p {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(2.6rem, 7vw, 4.2rem); color: var(--ink); max-width: 18ch; margin: 0 auto;
  line-height: 1.05;
}
@media (max-width: 760px) { .manifesto { padding: 80px 0; } }

/* ---------- Steps (process) ---------- */
.steps { display: flex; flex-direction: column; }
.step-row {
  display: grid; grid-template-columns: 90px 1fr; gap: 26px;
  padding: 36px 0; border-top: 1px solid var(--line);
}
.step-row:last-child { border-bottom: 1px solid var(--line); }
.step-row .step-idx { font-family: var(--font-mono); color: var(--accent); font-size: .9rem; padding-top: 6px; }
.step-row h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.6rem; margin-bottom: .25em; }
.step-row p { margin: 0; max-width: 60ch; }
@media (max-width: 620px) {
  .step-row { grid-template-columns: 34px 1fr; gap: 14px; }
}

/* ---------- Cards (FAQ / values) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 50px; }
@media (max-width: 900px) { .card-grid { grid-template-columns: 1fr; gap: 40px; } }
.dark-card { padding-top: 26px; border-top: 1px solid var(--line); transition: border-color .3s ease; }
.dark-card:hover { border-color: var(--accent); }
.dark-card h3 { margin-bottom: .5em; }

/* ---------- Portrait / about ---------- */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.about-grid.reverse { grid-template-columns: 1.15fr .85fr; }
@media (max-width: 900px) {
  .about-grid, .about-grid.reverse { grid-template-columns: 1fr; gap: 36px; }
}
.portrait-frame {
  border-left: 2px solid var(--accent); padding-left: 30px; position: relative;
}
.portrait-frame .tag {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--line-strong); display: inline-block;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.portrait-frame h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.8rem; }

/* ---------- CTA closer ---------- */
.closer { text-align: center; padding: 170px 0 140px; }
.closer h2 { font-size: clamp(2.6rem, 8vw, 6rem); max-width: 16ch; margin: 0 auto .4em; }
.closer .hero-actions { justify-content: center; margin-top: 40px; opacity: 1; animation: none; }
@media (max-width: 760px) { .closer { padding: 90px 0 80px; } }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  min-height: 62vh; display: flex; align-items: flex-end;
  padding-bottom: 70px; padding-top: 190px;
  background: var(--void);
}
.breadcrumb { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 20px; }
.breadcrumb a { text-decoration: underline; }
.page-hero h1 { max-width: 16ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.form-field { margin-bottom: 24px; }
.form-field label {
  display: block; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 10px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 14px 0; border: none; border-bottom: 1px solid var(--line-strong);
  background: transparent; color: var(--ink); font-family: var(--font-body); font-size: 1rem;
  border-radius: 0; transition: border-color .3s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--accent); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select option { background: var(--void); }
.form-note { font-size: .82rem; color: var(--ink-faint); margin-top: 10px; }

.contact-panel { border-top: 1px solid var(--line); padding-top: 34px; }
.contact-panel h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.6rem; }
.contact-line { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.contact-line .ic { font-family: var(--font-mono); color: var(--accent); font-size: .78rem; padding-top: 3px; }
.contact-line div { color: var(--ink-dim); }
.contact-line a:hover { color: var(--accent); }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 70px 0 110px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 46px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
footer h4 {
  font-family: var(--font-mono); color: var(--ink-faint); font-size: .72rem;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; font-weight: 700;
}
footer ul { list-style: none; margin: 0; padding: 0; }
footer li { margin-bottom: 12px; color: var(--ink-dim); }
footer a:hover { color: var(--accent); }
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: .74rem; color: var(--ink-faint);
  flex-wrap: wrap; gap: 10px; text-transform: uppercase; letter-spacing: .06em;
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-group > * { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-group.in > * { opacity: 1; transform: translateY(0); transition-delay: calc(var(--stagger,0) * 80ms); }

.center { text-align: center; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  .reveal, .reveal-group > * { opacity: 1; transform: none; transition: none; }
  .mask-line span, .hero .lead, .hero-actions, .hero-figure, .btn:hover {
    animation: none !important; opacity: 1 !important; transform: none !important;
  }
}

/* =========================================================
   V4 — Boost marketing, responsive & perf
   ========================================================= */

/* ---------- Bande de réassurance (hero) ---------- */
.trust-strip {
  list-style: none; margin: 34px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  opacity: 0; animation: fadeUp .8s var(--ease) 1s forwards;
}
.trust-strip li {
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-dim);
  display: inline-flex; align-items: center; gap: 9px;
}
.trust-strip li::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  box-shadow: 0 0 10px rgba(59,170,225,.7);
}
.trust-strip sup { font-size: .6em; }

/* ---------- FAQ tarifs : 2 colonnes -> 1 sur mobile ---------- */
.faq-grid { grid-template-columns: repeat(2, 1fr); gap: 46px 50px; }
@media (max-width: 760px) { .faq-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Breakpoints intermédiaires (tablette) ---------- */
@media (max-width: 1100px) and (min-width: 641px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid:not(.faq-grid) { grid-template-columns: repeat(2, 1fr) !important; gap: 40px; }
}
@media (max-width: 960px) and (min-width: 641px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* ---------- Petits écrans ---------- */
@media (max-width: 480px) {
  .wrap { padding: 0 22px; }
  section { padding: 96px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .closer .hero-actions { align-items: center; }
  .price-card { padding: 38px 24px; }
  .trust-strip { flex-direction: column; gap: 12px; }
  .org-band { grid-template-columns: repeat(2, 1fr); }
  .org-cell:nth-child(3n+1) { border-left: 1px solid var(--line); }
  .org-cell:nth-child(2n+1) { border-left: none; }
  .org-cell:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ---------- Débordements & mots longs ---------- */
h1, h2, h3, .ghost-track span { overflow-wrap: break-word; }
.hero-figure img, .page-hero .hero-figure img { height: auto; }
.brand img { height: 156px; width: auto; }
@media (max-width: 1140px) { .brand img { height: 64px; width: auto; } }

/* ---------- Accessibilité : focus visible ---------- */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px;
}

/* ---------- Pages légales ---------- */
.legal-wrap { max-width: 820px; }
.legal-block { margin-bottom: 54px; }
.legal-block h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  border-top: 1px solid var(--line); padding-top: 28px;
}
.legal-block p { max-width: 72ch; }
.legal-block a { color: var(--accent); }

/* =========================================================
   V4.1 — Correctifs & touches visibles premium
   ========================================================= */

/* FIX : logo footer écrasé (hauteur CSS + attribut width) */
.footer-brand img { width: auto; height: 44px; }

/* Titre hero : accent dégradé sur la seconde ligne */
.grad-text {
  background: linear-gradient(100deg, var(--accent) 10%, var(--violet-light) 90%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* Pill promo dans le hero */
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: .74rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); border: 1px solid var(--line-strong);
  background: rgba(59,170,225,.1);
  padding: 9px 18px; border-radius: 999px; margin-bottom: 26px;
  animation: fadeUp .7s var(--ease) .15s backwards;
}
.hero-pill::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: #3ED598; box-shadow: 0 0 12px rgba(62,213,152,.9);
  animation: waPulseDot 2.2s ease-in-out infinite;
}
@keyframes waPulseDot { 0%,100% { opacity: 1; } 50% { opacity: .45; } }
.hero-pill b { color: var(--accent); }

/* Carte tarifaire vedette : halo et liseré accent */
.price-card.featured {
  border-top: 2px solid var(--accent);
  box-shadow: inset 0 60px 80px -70px rgba(59,170,225,.45);
}
.pricing-grid { overflow: visible; }
.price-card { transition: background .3s ease, transform .3s var(--ease); }
.price-card:hover { transform: translateY(-4px); }
@media (max-width: 960px) { .price-card:hover { transform: none; } }

/* Cartes "Pourquoi nous" : index accent */
.dark-card { position: relative; }
.dark-card::before {
  content: ''; position: absolute; top: -1px; left: 0; width: 46px; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transition: width .4s var(--ease);
}
.dark-card:hover::before { width: 100%; }

@media (prefers-reduced-motion: reduce) {
  .hero-pill, .hero-pill::before { animation: none; }
  .price-card:hover { transform: none; }
}

/* =========================================================
   V4.2 — Nouvelle section Missions (cartes bénéfices)
   ========================================================= */
.mission-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.mission-card {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, var(--panel) 0%, var(--deep) 78%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 38px 32px 34px;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
}
.mission-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59,170,225,.55);
  box-shadow: 0 30px 60px -30px rgba(59,170,225,.35);
}
.mission-card .mission-ghost {
  position: absolute; top: -18px; right: 6px;
  font-family: var(--font-display); font-size: 8.6rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(244,241,236,.1);
  pointer-events: none; user-select: none;
  transition: -webkit-text-stroke-color .35s ease, transform .5s var(--ease);
}
.mission-card:hover .mission-ghost {
  -webkit-text-stroke-color: rgba(59,170,225,.35);
  transform: translateY(6px);
}
.mission-card .mission-picto {
  width: 46px; height: 46px; margin-bottom: 20px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.5));
  transition: transform .35s var(--ease);
}
.mission-card:hover .mission-picto { transform: scale(1.12) rotate(-5deg); }
.mission-card h3 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 1.9rem; letter-spacing: .01em; margin-bottom: .15em;
}
.mission-hook {
  font-family: var(--font-mono); font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: linear-gradient(100deg, var(--accent), var(--violet-light));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  margin-bottom: 16px;
}
.mission-card > p:not(.mission-hook) { font-size: .96rem; margin-bottom: 20px; }
.mission-points {
  list-style: none; margin: 0 0 26px; padding: 18px 0 0;
  border-top: 1px solid var(--line);
  flex-grow: 1;
}
.mission-points li {
  position: relative; padding: 7px 0 7px 24px;
  color: var(--ink-dim); font-size: .9rem; line-height: 1.55;
}
.mission-points li::before {
  content: ''; position: absolute; left: 2px; top: 15px;
  width: 9px; height: 9px; border-radius: 2px;
  background: linear-gradient(135deg, var(--accent), var(--violet-light));
  transform: rotate(45deg);
}
.mission-more {
  font-family: var(--font-mono); font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .3s ease, gap .3s ease;
}
.mission-more span { transition: transform .3s var(--ease); }
.mission-card:hover .mission-more { color: var(--accent); gap: 13px; }

@media (max-width: 1100px) and (min-width: 761px) {
  .mission-cards { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .mission-card { padding: 30px 24px 28px; }
  .mission-card .mission-ghost { font-size: 6.6rem; }
}
@media (max-width: 760px) {
  .mission-cards { grid-template-columns: 1fr; gap: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .mission-card:hover { transform: none; }
}

/* =========================================================
   V4.3 — Missions : 4 cartes, icônes SVG sur mesure
   ========================================================= */
.mission-cards { grid-template-columns: repeat(2, 1fr); gap: 26px; }
.mission-icon {
  width: 48px; height: 48px; margin-bottom: 20px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.5));
  transition: transform .35s var(--ease);
}
.mission-card:hover .mission-icon { transform: scale(1.04); }
@media (max-width: 1100px) and (min-width: 761px) {
  .mission-cards { grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }
}

/* FIX v4.3 : 1 colonne sur mobile (doit suivre la règle 2 colonnes) */
@media (max-width: 760px) {
  .mission-cards { grid-template-columns: 1fr !important; gap: 20px; }
}

/* =========================================================
   FIX grilles mobiles — dimensionnement contraint (indépendant de la typo)
   ========================================================= */
.pricing-grid, .card-grid, .photo-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.mission-cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
.faq-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.pricing-grid > *, .mission-cards > *, .card-grid > *, .photo-grid > * { min-width: 0; }
@media (max-width: 1100px) and (min-width: 641px) {
  .mission-cards { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .card-grid:not(.faq-grid) { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
}
@media (max-width: 960px) {
  .pricing-grid, .photo-grid { grid-template-columns: minmax(0,1fr); }
}
@media (max-width: 900px) { .card-grid { grid-template-columns: minmax(0,1fr); } }
@media (max-width: 760px) {
  .mission-cards, .faq-grid { grid-template-columns: minmax(0,1fr) !important; }
}

/* =========================================================
   V5.1 — Libellés d'offre & réassurance : casse naturelle
   (correction ciblée : hero-pill, trust-strip, promo-badge.
   Le reste de l'identité typographique est inchangé.)
   ========================================================= */
.hero-pill {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: .01em;
  font-size: .88rem;
  font-weight: 600;
}
.hero-pill b { font-weight: 700; }

.trust-strip li {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: .01em;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-dim);
}
.trust-strip sup { font-size: .68em; }

.promo-badge {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: .01em;
  font-size: .95rem;
  font-weight: 700;
}

/* =========================================================
   V5.2 — Navigation & boutons : casse naturelle
   (suite de la modernisation ciblée validée sur les libellés
   d'offre ; les titres Bebas et labels de section sont inchangés)
   ========================================================= */
.nav-links a {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: .015em;
  font-size: .95rem;
  font-weight: 600;
}
@media (max-width: 1140px) {
  .nav-links a { font-size: 1.3rem; font-weight: 700; }
}

.btn {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: .015em;
  font-size: .95rem;
  font-weight: 700;
}
.link-underline {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: .015em;
  font-size: .95rem;
  font-weight: 600;
}
.mission-more, .mission-cta {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: .015em;
  font-size: .92rem;
  font-weight: 700;
}
.price-step {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: .01em;
  font-size: .95rem;
  font-weight: 600;
}
.wa-float {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: .01em;
}

/* =========================================================
   V5.3 — Accroches des cartes missions : casse naturelle
   (le dégradé bleu → violet est conservé)
   ========================================================= */
.mission-hook {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: .005em;
  font-size: 1.06rem;
  font-weight: 700;
}

/* =========================================================
   V5.4 — Cartes tarifs : mentions secondaires en casse naturelle
   (les montants 79 € / 149 € / Sur devis restent en typo affiche)
   ========================================================= */
.price-amount .period {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: .01em;
  font-size: .88rem;
  font-weight: 500;
}
.price-secondary,
.price-secondary-muted {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: .01em;
  font-size: .86rem;
  font-weight: 500;
}
.price-note {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: .01em;
  font-size: .92rem;
  font-weight: 500;
}
.price-badge {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: .02em;
  font-size: .78rem;
  font-weight: 700;
}
.form-note {
  font-family: var(--font-body);
  letter-spacing: .01em;
}

/* =========================================================
   V5.5 — Harmonisation complète des libellés (tout le site)
   Montserrat, casse naturelle, pour tout ce qui se lit.
   Conservés en typo affiche : grands titres, montants,
   marquee, murs de mots. Conservés en repères : numéros.
   ========================================================= */

/* Labels de section (eyebrows) : « Nos missions », « Qui sommes-nous »... */
.eyebrow {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: .04em;
  font-size: .85rem;
  font-weight: 700;
}

/* Kickers : « Formule 01 », « Mission — 01 »... */
.kicker, .detail-row .kicker, .price-card .kicker {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: .04em;
  font-size: .8rem;
  font-weight: 700;
}

/* Ligne de contexte du hero */
.hero-slate {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: .04em;
  font-size: .85rem;
  font-weight: 600;
}

/* Bande de chiffres : libellés sous les stats */
.stat-cell span {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: .02em;
  font-size: .88rem;
  font-weight: 500;
}

/* Étapes & badges numériques : chiffres en Montserrat gras */
.step-row .step-idx {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: .02em;
}
.photo-card .photo-num {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .04em;
}

/* Formulaires */
.form-field label {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: .02em;
  font-size: .86rem;
  font-weight: 600;
}

/* Panneau contact : abréviations en Montserrat */
.contact-line .ic {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .06em;
  font-size: .72rem;
}

/* Tags (À propos, Contact) */
.portrait-frame .tag {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: .03em;
  font-size: .78rem;
  font-weight: 700;
}

/* Pied de page */
footer h4 {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: .03em;
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink-dim);
}
.footer-bottom {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: .02em;
  font-size: .82rem;
}

/* Chips (si utilisées) */
.chip {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: .02em;
  font-size: .86rem;
}

/* =========================================================
   V6 — Étapes : timeline horizontale connectée (proposition A)
   ========================================================= */
.timeline {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 30px; position: relative; padding-top: 8px;
}
.timeline::before {
  content: ''; position: absolute; top: 35px; left: 40px; right: 40px; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--violet-light));
  opacity: .3;
}
.tl-step { position: relative; }
.tl-node {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; position: relative; z-index: 1;
  transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
}
.tl-node span {
  font-family: var(--font-body); font-weight: 800; font-size: 1rem;
  background: linear-gradient(120deg, var(--accent), var(--violet-light));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tl-step:hover .tl-node {
  transform: scale(1.12);
  border-color: var(--accent);
  box-shadow: 0 0 0 6px rgba(59,170,225,.12), 0 0 30px rgba(59,170,225,.35);
}
.tl-when {
  display: inline-block;
  font-family: var(--font-body); font-weight: 700; font-size: .76rem;
  letter-spacing: .03em; color: var(--accent);
  border: 1px solid rgba(59,170,225,.35); border-radius: 999px;
  padding: 4px 12px; margin-bottom: 14px;
  background: rgba(59,170,225,.07);
}
.tl-step h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.15rem; margin-bottom: .35em; }
.tl-step p { margin: 0; font-size: .93rem; }

@media (max-width: 960px) {
  .timeline { grid-template-columns: minmax(0,1fr); gap: 0; padding-left: 4px; }
  .timeline::before {
    top: 30px; bottom: 30px; left: 31px; right: auto; width: 2px; height: auto;
    background: linear-gradient(180deg, var(--accent), var(--violet-light));
  }
  .tl-step { display: grid; grid-template-columns: 64px 1fr; gap: 0 20px; padding: 22px 0; }
  .tl-node { margin-bottom: 0; grid-row: span 3; }
  .tl-when { justify-self: start; margin-bottom: 8px; }
}
@media (prefers-reduced-motion: reduce) { .tl-step:hover .tl-node { transform: none; } }

/* =========================================================
   V6.1 — Pastille « 1er mois offert » sur les cartes tarifs
   (l'offre vit uniquement au niveau des formules)
   ========================================================= */
.price-card { overflow: visible; }
.offer-badge {
  position: absolute; top: -16px; left: 24px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 800; font-size: .85rem;
  letter-spacing: .01em; color: #fff;
  background: linear-gradient(120deg, var(--accent), var(--violet));
  padding: 9px 18px; border-radius: 999px;
  transform: rotate(-2.5deg);
  box-shadow: 0 10px 26px -8px rgba(59,170,225,.65);
  overflow: hidden;
  animation: obPulse 2.6s ease-in-out infinite;
}
.offer-badge sup { font-size: .68em; }
.offer-badge .ob-gift { font-size: 1rem; animation: obWiggle 2.6s ease-in-out infinite; }
.offer-badge::after {
  /* reflet balayant */
  content: ''; position: absolute; top: 0; bottom: 0; width: 40%;
  left: -60%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  animation: obShine 3.4s ease-in-out infinite;
}
@keyframes obPulse {
  0%, 100% { box-shadow: 0 10px 26px -8px rgba(59,170,225,.65); }
  50%      { box-shadow: 0 10px 34px -6px rgba(185,140,224,.85); }
}
@keyframes obShine {
  0%, 55%  { left: -60%; }
  75%, 100% { left: 120%; }
}
@keyframes obWiggle {
  0%, 80%, 100% { transform: rotate(0); }
  85% { transform: rotate(-12deg); }
  90% { transform: rotate(10deg); }
  95% { transform: rotate(-6deg); }
}
/* la carte vedette a déjà son badge en haut à droite : pas de collision */
.price-card.featured .offer-badge { left: 24px; }

@media (max-width: 960px) {
  .offer-badge { top: -14px; left: 18px; font-size: .82rem; }
}
@media (prefers-reduced-motion: reduce) {
  .offer-badge, .offer-badge::after, .offer-badge .ob-gift { animation: none; }
}

/* =========================================================
   V6.2 — Page Services : panneaux d'expertise
   ========================================================= */
.svc { padding: 44px 0; }
.svc:first-of-type { padding-top: 80px; }
.svc-panel {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 22px;
  background: linear-gradient(160deg, var(--panel) 0%, var(--deep) 72%);
  padding: 54px 50px;
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px;
  align-items: start;
  transition: border-color .35s ease, box-shadow .35s ease;
}
.svc-panel:hover {
  border-color: rgba(59,170,225,.4);
  box-shadow: 0 34px 70px -40px rgba(59,170,225,.3);
}
.svc-ghost {
  position: absolute; top: -26px; right: 8px;
  font-size: 11rem !important; line-height: 1;
}
.svc-head { position: relative; z-index: 1; }
.svc-head .mission-icon { margin-bottom: 18px; }
.svc-head h2 { margin-bottom: .15em; }
.svc-head .mission-hook { margin-bottom: 14px; }
.svc-head .lead { font-size: 1.05rem; margin-bottom: 24px; }

.svc-items {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px;
  position: relative; z-index: 1;
}
.svc-items li {
  position: relative;
  border: 1px solid var(--line); border-radius: 12px;
  background: rgba(7,5,11,.4);
  padding: 16px 18px 16px 42px;
  color: var(--ink-dim); font-size: .92rem; line-height: 1.55;
  transition: border-color .3s ease, transform .3s var(--ease), background .3s ease;
}
.svc-items li:hover {
  border-color: rgba(59,170,225,.5);
  background: rgba(59,170,225,.05);
  transform: translateY(-2px);
}
.svc-items li::before {
  content: ''; position: absolute; left: 17px; top: 21px;
  width: 9px; height: 9px; border-radius: 2px;
  background: linear-gradient(135deg, var(--accent), var(--violet-light));
  transform: rotate(45deg);
}
.svc-items li:last-child:nth-child(odd) { grid-column: 1 / -1; }

/* Navigation par ancres */
.svc-nav {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  padding: 34px 24px 0;
}
.svc-nav a {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: .9rem;
  color: var(--ink-dim);
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 10px 18px;
  transition: border-color .3s ease, color .3s ease, background .3s ease, transform .3s var(--ease);
}
.svc-nav a b {
  font-weight: 800;
  background: linear-gradient(120deg, var(--accent), var(--violet-light));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.svc-nav a:hover {
  border-color: var(--accent); color: var(--ink);
  background: rgba(59,170,225,.07); transform: translateY(-2px);
}

@media (max-width: 1000px) {
  .svc-panel { grid-template-columns: 1fr; gap: 30px; padding: 38px 28px; }
  .svc-ghost { font-size: 7.5rem !important; top: -18px; }
}
@media (max-width: 640px) {
  .svc-items { grid-template-columns: minmax(0,1fr); }
  .svc-items li:last-child:nth-child(odd) { grid-column: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .svc-items li:hover, .svc-nav a:hover { transform: none; }
}

/* =========================================================
   V6.3 — Services épurés : filets fins, alignement direct
   (remplace les panneaux encadrés de la V6.2)
   ========================================================= */
.svc { padding: 0; }
.svc .svc-row {
  display: grid; grid-template-columns: .82fr 1.18fr; gap: 64px;
  align-items: start;
  padding: 74px 0;
  border-top: 1px solid var(--line);
}
.svc:first-of-type .svc-row { border-top: none; padding-top: 60px; }
.svc:last-of-type .svc-row { padding-bottom: 96px; }

.svc-head .mission-icon { margin-bottom: 20px; }
.svc-head h2 { margin-bottom: .2em; }
.svc-head .mission-hook { margin-bottom: 14px; }
.svc-head .lead { font-size: 1.04rem; margin-bottom: 24px; }

/* Tuiles : bordures seules, sans fond, pour rester sur le fond du site */
.svc-items li { background: transparent; }
.svc-items li:hover { background: rgba(59,170,225,.04); }

@media (max-width: 1000px) {
  .svc .svc-row { grid-template-columns: 1fr; gap: 30px; padding: 54px 0; }
}

/* =========================================================
   V6.4 — Services : respiration entre marquee et navigation
   ========================================================= */
.svc-nav { padding: 84px 24px 10px; }
@media (max-width: 760px) { .svc-nav { padding: 56px 20px 6px; } }

/* =========================================================
   V6.5 — Tarifs : boutons alignés en bas + pastille premium
   ========================================================= */
/* Cartes en colonne : la liste s'étire, les actions s'alignent en bas */
.price-card { display: flex; flex-direction: column; }
.price-list { flex-grow: 1; }
.price-actions { margin-top: 28px; }
.price-actions .btn { width: 100%; justify-content: center; text-align: center; }
.price-actions .price-secondary { display: block; text-align: center; margin-top: 12px; }
.price-actions .price-secondary-muted { margin-top: 12px; }

/* Pastille « 1er mois offert » : version sobre et premium */
.offer-badge {
  transform: none;
  animation: none;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(120deg, var(--accent), var(--violet-light)) border-box;
  border: 1px solid transparent;
  color: var(--ink);
  font-weight: 700;
  font-size: .8rem;
  padding: 8px 16px;
  box-shadow: 0 8px 24px -12px rgba(0,0,0,.6);
  overflow: visible;
}
.offer-badge::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--violet-light));
  flex-shrink: 0;
}
.offer-badge::after { display: none; }

/* FIX V6.5 : hauteur d'actions commune pour un alignement parfait des boutons */
.price-actions { min-height: 154px; }
@media (max-width: 1160px) and (min-width: 961px) { .price-actions { min-height: 174px; } }

/* =========================================================
   V6.6 — Tarifs : ligne de prix alignée + carte vedette premium
   ========================================================= */
/* Descriptions à hauteur égale -> les prix s'alignent */
.price-target { min-height: 88px; }
@media (max-width: 1160px) and (min-width: 961px) { .price-target { min-height: 118px; } }
@media (max-width: 960px) { .price-target { min-height: 0; } }

/* Carte vedette : liseré dégradé complet à la place de la ligne bleue */
.price-card.featured {
  border: 1px solid transparent;
  background:
    linear-gradient(160deg, var(--panel), var(--deep) 80%) padding-box,
    linear-gradient(160deg, rgba(59,170,225,.75), rgba(185,140,224,.75)) border-box;
  box-shadow: 0 34px 80px -40px rgba(59,170,225,.4);
  transform: translateY(-12px);
}
.price-card.featured:hover { transform: translateY(-16px); }

/* Badge « Le plus choisi » : pastille pleine en dégradé */
.price-badge {
  background: linear-gradient(120deg, var(--accent), var(--violet));
  color: #fff;
  border: none;
  font-weight: 800;
  font-size: .78rem;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 26px -10px rgba(59,170,225,.6);
}

@media (max-width: 960px) {
  .price-card.featured, .price-card.featured:hover { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .price-card.featured, .price-card.featured:hover { transform: translateY(-12px); }
}

/* FIX V6.6 : carte vedette au même niveau que les autres (plus de surélévation) */
.price-card.featured,
.price-card.featured:hover { transform: none; }

/* =========================================================
   V6.7 — En-tête : navigation centrée entre logo et CTA
   ========================================================= */
@media (min-width: 1141px) {
  .site-header .wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .header-right { display: contents; }
  .brand { justify-self: start; }
  .header-right nav { justify-self: center; grid-column: 2; }
  .nav-cta { justify-self: end; grid-column: 3; }
}

/* =========================================================
   V6.8 — Un visuel par page : photos métiers encadrées
   ========================================================= */
.page-hero .hero-figure.photo {
  width: 44%; max-width: 600px; right: 4.5%; top: 18%;
}
.hero-figure.photo img {
  width: 100%; height: auto; display: block;
  border-radius: 22px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 44px 90px -44px rgba(0,0,0,.85);
}
.hero-figure.photo {
  border-radius: 22px;
}
.hero-figure.photo::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 22px;
  background: linear-gradient(200deg, transparent 55%, rgba(7,5,11,.5));
  pointer-events: none;
}

/* =========================================================
   V6.9 — FIX : vide au-dessus du contenu des heros sur grands écrans
   Les heros sont ancrés en bas ; sur un écran haut, le vide entre
   l'en-tête et le contenu explosait. On plafonne leur hauteur.
   ========================================================= */
.hero { min-height: min(100vh, 900px); }
.page-hero { min-height: min(62vh, 520px); padding-top: 170px; }
/* Garde : le contenu du hero ne passe jamais sous l'en-tête */
.hero { padding-top: 200px; }

/* =========================================================
   V7 — Accessibilité tactile : cibles d'au moins 44 px sur mobile
   (recommandation Apple/Google ; les liens texte faisaient 18-23 px)
   ========================================================= */
@media (max-width: 900px) {
  .link-underline,
  .mission-more,
  .mission-cta {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding-top: 10px;
    padding-bottom: 12px;
  }
  .link-underline::after { bottom: 8px; }
  .price-actions .price-secondary { margin-top: 4px; }
  /* le pouce doit atteindre confortablement les boutons pleins */
  .btn { min-height: 48px; }
  .wa-float { min-height: 48px; }
}

/* Pied de page : titres de colonnes (h3 pour la hiérarchie SEO, style inchangé) */
footer h3.foot-h {
  font-family: var(--font-body); text-transform: none; letter-spacing: .03em;
  font-size: .88rem; font-weight: 700; color: var(--ink-dim);
  margin-bottom: 18px;
}

/* Titres promus en h2 pour la hiérarchie SEO — apparence inchangée */
h2.price-name { font-size: 1.7rem; letter-spacing: -.012em; margin-bottom: .3em; }
h2.portrait-name { font-size: 1.5rem; letter-spacing: -.012em; }

/* =========================================================
   V7.1 - Bandeau defilant : alternance automatique en violet
   Un mot sur deux est plein, les autres restent en contour.
   La regle nth-child gere l'alternance seule : si un mot est
   ajoute ou retire, les couleurs se reajustent automatiquement.
   (Chaque moitie du bandeau contient un nombre pair de mots,
   condition necessaire pour que le raccord reste invisible.)
   ========================================================= */
.ghost-track span:nth-child(even) {
  -webkit-text-stroke: 0;
  color: var(--violet-light);
}

/* =========================================================
   V7.2 — Services : suppression des encadrés
   Les prestations redeviennent une liste aérée, séparée par
   de fins filets, sans cadre ni fond — dans l'esprit épuré
   du reste de la page.
   ========================================================= */
.svc-items {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.svc-items li {
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 20px 0 20px 30px;
  font-size: .96rem;
  line-height: 1.65;
  transition: color .3s ease, padding-left .3s var(--ease);
}
.svc-items li:hover {
  background: transparent;
  transform: none;
  color: var(--ink);
  padding-left: 36px;
}
.svc-items li::before {
  left: 2px;
  top: 28px;
  width: 8px;
  height: 8px;
}
.svc-items li:last-child:nth-child(odd) { grid-column: auto; }

@media (max-width: 1000px) {
  .svc-items li { padding: 18px 0 18px 28px; }
  .svc-items li::before { top: 26px; }
}

/* =========================================================
   V7.3 — Démarcations dynamiques + photos alignées
   ========================================================= */

/* --- 1) Séparateurs des expertises : trait d'accent qui s'étend --- */
.svc .svc-row {
  border-top: none;
  position: relative;
}
.svc .svc-row::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 46px; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transition: width .45s var(--ease);
}
.svc:hover .svc-row::before { width: 100%; }
.svc:first-of-type .svc-row::before { display: none; }

/* --- 2) Séparateurs des prestations : filet dégradé qui s'efface --- */
.svc-items { border-top: none; }
.svc-items li {
  border-bottom: none;
  position: relative;
}
.svc-items li::after {
  content: '';
  position: absolute; left: 0; bottom: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent 85%);
  transition: background .35s ease;
}
.svc-items li:hover::after {
  background: linear-gradient(90deg, var(--accent), transparent 85%);
}
.svc-items li:last-child::after { display: none; }

/* --- 3) Photos des pages annexes : même hauteur de départ partout --- */
@media (min-width: 1000px) {
  .page-hero .hero-figure.photo { top: 150px; }
}

/* =========================================================
   V7.4 — Pages annexes : aération homogène
   Les photos retrouvent leurs proportions d'origine (4/3).
   L'aération vient d'un espace ajouté SOUS la section : il
   éloigne le bandeau défilant sans decaler le texte vers le
   bas, donc sans recreer de vide sous l'en-tete.
   ========================================================= */
@media (min-width: 1000px) {
  .page-hero { padding-bottom: 170px; }
  .page-hero .hero-figure.photo { top: 150px; }
}

/* =========================================================
   V8 — Page BNC & TVA : montants à valider + note de mise à jour
   ========================================================= */
.a-valider {
  color: var(--violet-light);
  font-weight: 700;
  border-bottom: 1px dashed rgba(185,140,224,.6);
  padding-bottom: 1px;
  cursor: help;
}
.maj-note {
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  background: rgba(59,170,225,.05);
  padding: 22px 26px;
  color: var(--ink-dim);
  font-size: .95rem;
  line-height: 1.7;
  max-width: 900px;
}
.maj-note strong { color: var(--ink); }

/* =========================================================
   V8.2 — Colonnes « éligible / exclu »
   ========================================================= */
.two-cols {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 54px;
}
.two-cols h3 {
  font-family: var(--font-body); font-weight: 700; font-size: 1.15rem;
  margin-bottom: 20px; padding-bottom: 14px; position: relative;
}
.two-cols h3::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 46px; height: 2px;
}
.col-ok h3::after { background: linear-gradient(90deg, #3ED598, transparent); }
.col-ko h3::after { background: linear-gradient(90deg, #E1706B, transparent); }
.col-ok .detail-list li::marker, .col-ko .detail-list li::marker { color: transparent; }
@media (max-width: 860px) { .two-cols { grid-template-columns: minmax(0,1fr); gap: 40px; } }

/* =========================================================
   V8.3 — En-tête : logo non déformé et bouton sur une ligne
   Avec 7 liens, les colonnes latérales se comprimaient :
   le logo (hauteur fixe, largeur contrainte) s'écrasait et
   le bouton passait sur deux lignes. On empêche les colonnes
   latérales de descendre sous la largeur de leur contenu.
   ========================================================= */
@media (min-width: 1141px) {
  .site-header .wrap {
    grid-template-columns: minmax(max-content, 1fr) auto minmax(max-content, 1fr);
    gap: 26px;
  }
  .brand img { max-width: none; }
  .nav-cta .btn { white-space: nowrap; }
  .nav-links { flex-wrap: nowrap; }
  .nav-links a { white-space: nowrap; }
}
/* Écrans intermédiaires : on resserre plutôt que de comprimer */
@media (min-width: 1141px) and (max-width: 1400px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: .88rem; }
  .brand img { height: 120px; }
}

/* =========================================================
   V8.4 — Tableau des seuils de TVA + espacements
   ========================================================= */

/* Section contenant l'encadré de mise à jour : espacement resserré */
.section-note { padding-top: 90px; padding-bottom: 0; }
.section-note + section { padding-top: 76px; }

/* Tableau des seuils : lecture en colonnes, chiffres alignés */
.tab-seuils {
  width: 100%;
  max-width: 960px;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 1rem;
  table-layout: fixed;
}
.tab-seuils caption { text-align: left; }
.tab-seuils th,
.tab-seuils td { padding: 22px 24px; vertical-align: middle; }
.tab-seuils thead th {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border-bottom: 1px solid var(--line-strong);
  text-align: left;
  padding-bottom: 14px;
}
.tab-seuils thead th:not(:first-child) { text-align: right; }
.tab-seuils tbody td {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
}
.tab-seuils tbody td:not(:first-child) {
  text-align: right;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  letter-spacing: .01em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.tab-seuils tbody td:nth-child(2) { color: var(--accent); }
.tab-seuils tbody td:nth-child(3) { color: var(--violet-light); }
.tab-seuils tbody tr:last-child td { border-bottom: none; }
.tab-seuils col.c-lib { width: 46%; }

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

/* Mobile : le tableau devient une liste de blocs lisibles */
@media (max-width: 700px) {
  .tab-seuils, .tab-seuils tbody, .tab-seuils tr, .tab-seuils td { display: block; width: 100%; }
  .tab-seuils thead { display: none; }
  .tab-seuils tbody tr {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px 18px;
    margin-bottom: 16px;
  }
  .tab-seuils tbody td { border: none; padding: 6px 0; text-align: left !important; }
  .tab-seuils tbody td:first-child {
    font-size: 1rem; margin-bottom: 8px;
    padding-bottom: 12px; border-bottom: 1px solid var(--line);
  }
  .tab-seuils tbody td:not(:first-child) {
    font-size: 1.5rem; display: flex; justify-content: space-between; align-items: baseline;
  }
  .tab-seuils tbody td:not(:first-child)::before {
    content: attr(data-label);
    font-family: var(--font-body); font-size: .8rem; font-weight: 600;
    letter-spacing: .04em; color: var(--ink-faint);
  }
}

/* =========================================================
   V9 — Ancres : dégagement sous l'en-tête fixe
   Sans cela, la section visée se cale en haut de fenêtre et
   se retrouve masquée par l'en-tête (193 px sur bureau).
   ========================================================= */
section[id],
div[id="contact-form"],
div[id="rdv"],
[id="contact-form"],
[id="rdv"] {
  scroll-margin-top: 225px;
}
@media (max-width: 1140px) {
  section[id], [id="contact-form"], [id="rdv"] { scroll-margin-top: 150px; }
}
@media (max-width: 640px) {
  section[id], [id="contact-form"], [id="rdv"] { scroll-margin-top: 140px; }
}
