@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500&family=Cinzel:wght@400;500;600&display=swap');
/* ================================================================
   JOMEGA EXPERTISE — Premium Multi-Page · Édition claire
   Palette : Blanc · Vert frais · Vert profond · Crème · Or subtil
   ================================================================ */

:root {
  /* ---- Backgrounds clairs ---- */
  --bg:           #FFFFFF;
  --bg-soft:      #F7FAF8;
  --bg-mint:      #EAF6EE;
  --bg-cream:     #FBF8F2;
  --bg-deep:      #0F2A1F;   /* vert très profond — emphases uniquement */
  --bg-deepest:   #08221A;

  /* ---- Textes (ink) ---- */
  --ink:          #15212E;
  --ink-soft:     #4A5560;
  --ink-muted:    #6B7682;
  --ink-faint:    rgba(21,33,46,.46);

  /* ---- Vert (primaire) ---- */
  --green:        #5ECD8C;
  --green-mid:    #34B574;
  --green-deep:   #1F9461;
  --green-darker: #166848;
  --green-tint:   #DCF3E5;

  /* ---- Or (accent subtil, hérité de l'image — balance dorée) ---- */
  --gold:         #C8A960;
  --gold-bright:  #D4AF37;
  --gold-soft:    #B89548;
  --gold-tint:    rgba(200,169,96,.12);

  /* ---- Cream (pour les sections sombres) ---- */
  --cream:        #F5F1EA;
  --cream-muted:  rgba(245,241,234,.7);
  --cream-faint:  rgba(245,241,234,.45);
  --cream-line:   rgba(245,241,234,.10);
  --cream-rule:   rgba(245,241,234,.18);

  /* ---- Surfaces sombres (cards d'emphase sur fond clair) ---- */
  --surface:      #0F2418;
  --surface-2:    #14321F;
  --surface-3:    #1A2E1A;

  /* ---- Lines & rules ---- */
  --rule:         rgba(21,33,46,.08);
  --rule-strong:  rgba(21,33,46,.14);

  --danger:       #DC4A4A;

  /* Fonts */
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Inter", "DM Sans", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Spacing & layout */
  --container:    1320px;
  --container-narrow: 1080px;
  --nav-h:        78px;
  --radius-sm:    10px;
  --radius:       16px;
  --radius-lg:    24px;
  --radius-xl:    32px;

  /* Shadows */
  --shadow-sm:    0 4px 12px -4px rgba(15,42,31,.08);
  --shadow:       0 24px 48px -28px rgba(15,42,31,.18);
  --shadow-lg:    0 40px 80px -40px rgba(15,42,31,.25);
  --shadow-green: 0 24px 48px -24px rgba(31,148,97,.30);

  /* Motion */
  --ease-out:     cubic-bezier(.16,1,.3,1);
  --ease-spring:  cubic-bezier(.34,1.56,.64,1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}
body {
  overflow-x: hidden;
  background:
    radial-gradient(70% 50% at 50% -5%, rgba(31,148,97,.20), transparent 65%),
    radial-gradient(50% 40% at 0% 30%, rgba(22,104,72,.10), transparent 65%),
    radial-gradient(45% 35% at 100% 60%, rgba(94,205,140,.10), transparent 65%),
    linear-gradient(180deg, #F6FAF5 0%, #EFF6F0 50%, #F6FAF5 100%);
  min-height: 100vh;
  position: relative;
}
/* Grain papier subtil — texture éditoriale */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.06  0 0 0 0 0.16  0 0 0 0 0.12  0 0 0 0.45 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}
/* Tout le contenu reste cliquable au-dessus du grain */
.top-banner, .nav, main, section, footer, .scroll-progress { position: relative; z-index: 2; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
::selection { background: var(--green); color: var(--ink); }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }
section { position: relative; }
.section-pad    { padding: 96px 0; }
.section-pad-lg { padding: 128px 0; }

.section-white  { background: transparent; }
.section-soft   {
  background: linear-gradient(180deg, var(--bg-mint) 0%, var(--bg-soft) 100%);
}
.section-mint   { background: var(--bg-mint); }
.section-cream  { background: var(--bg-cream); }
.section-green-soft {
  background:
    radial-gradient(50% 50% at 100% 0%, rgba(94,205,140,.18), transparent 60%),
    linear-gradient(180deg, var(--bg-mint) 0%, var(--green-tint) 100%);
}
.section-deep   { background: var(--bg-deep); color: var(--cream); }
.section-deep .display-1,
.section-deep .display-2,
.section-deep .display-3 { color: #fff; }
.section-deep .lead { color: var(--cream-muted); }
.section-deep .eyebrow { color: var(--green); }

/* ---------- Type scale ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
}
.eyebrow-green { color: var(--green-deep); }

.display-1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 7.2vw, 116px);
  line-height: .98;
  letter-spacing: -.024em;
  color: var(--ink);
  margin: 0;
}
.display-2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 76px);
  line-height: 1.04;
  letter-spacing: -.018em;
  color: var(--ink);
  margin: 0;
}
.display-3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -.012em;
  color: var(--ink);
  margin: 0;
}
.italic { font-style: italic; }
.em-green { color: var(--green-deep); font-style: italic; }
.em-gold  { color: var(--green-deep); font-style: italic; }  /* alias pour ne pas casser HTML */
.section-deep .em-green, .section-deep .em-gold { color: var(--green); }

.lead {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.15vw, 19px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 62ch;
}
.body-lg { font-size: 17px; line-height: 1.65; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 28px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  letter-spacing: .01em;
  cursor: pointer; white-space: nowrap;
  transition: background .35s var(--ease-out),
              color .35s var(--ease-out),
              border-color .35s var(--ease-out),
              transform .35s var(--ease-spring),
              box-shadow .4s var(--ease-out);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--green);
  color: var(--ink);
  border-color: var(--green);
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.btn-green {
  background: var(--green);
  color: var(--ink);
  border-color: var(--green);
  font-weight: 600;
}
.btn-green:hover {
  background: var(--green-mid);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn-dark:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn-ghost:hover {
  background: var(--bg-mint);
  border-color: var(--green-deep);
  color: var(--green-deep);
}
.section-deep .btn-ghost {
  color: var(--cream);
  border-color: rgba(245,241,234,.24);
}
.section-deep .btn-ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: var(--green);
  color: var(--green);
}
.btn .arrow { transition: transform .35s var(--ease-out); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* Shine sweep on primary */
.btn-primary::after, .btn-green::after {
  content: ""; position: absolute; top: 0; left: -150%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.5) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left .9s var(--ease-out);
}
.btn-primary:hover::after, .btn-green:hover::after { left: 150%; }

/* ---------- Link arrow ---------- */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: gap .3s var(--ease-out), color .3s;
}
.link-arrow:hover { gap: 14px; color: var(--green-darker); }
.section-deep .link-arrow { color: var(--green); }

/* ---------- Chips ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--rule-strong);
  font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--bg);
}
.chip-green { background: var(--green-tint); border-color: transparent; color: var(--green-darker); }
.chip-gold { background: var(--gold-tint); border-color: rgba(200,169,96,.3); color: var(--gold-soft); }

/* ================================================================
   TOP BANNER + NAV (sticky, blur)
   ================================================================ */
.top-banner {
  background: var(--bg-deep);
  color: var(--cream);
  font-size: 12px;
  padding: 10px 32px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.top-banner .ordre {
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: .04em;
}
.top-banner .ordre::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(94,205,140,.6);
  animation: livePulse 2.4s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(94,205,140,.6); }
  50% { box-shadow: 0 0 0 6px rgba(94,205,140,0); }
}
.top-banner a { color: var(--green); }
.top-banner a:hover { color: #fff; }
.top-banner-right { display: flex; gap: 18px; align-items: center; }
.top-banner-right a { color: inherit; opacity: .85; }
.top-banner-right a:hover { opacity: 1; color: var(--green); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--rule);
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: box-shadow .3s var(--ease-out), background .3s;
}
.nav.scrolled {
  box-shadow: 0 8px 24px -16px rgba(15,42,31,.10);
  background: rgba(255,255,255,.95);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.nav-brand {
  display: flex; align-items: center; gap: 14px;
  color: var(--ink); flex-shrink: 0;
  text-decoration: none;
}
.nav-brand .brand-omega {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 42px;
  line-height: 1;
  color: var(--ink);
}
.nav-brand .brand-text {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0;
  padding-left: 14px;
  border-left: 1px solid #c9a875;
}
.nav-brand .brand-divider { display: none; }
.nav-brand .brand-name {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .28em;
  color: var(--ink);
  padding-left: .28em;
}

.nav-links {
  display: flex; align-items: center;
  gap: 4px;
}
.nav-link {
  position: relative;
  padding: 10px 16px;
  font-size: 13.5px; font-weight: 500;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color .3s, background .3s;
}
.nav-link:hover { color: var(--ink); background: var(--bg-soft); }
.nav-link.active {
  color: var(--green-darker);
  background: var(--green-tint);
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px;
  font-size: 13px; font-weight: 600;
  background: var(--green);
  color: var(--ink);
  border-radius: 999px;
  border: 1.5px solid var(--green);
  transition: all .3s var(--ease-out);
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
}
.nav-mobile-toggle {
  display: none;
  width: 42px; height: 42px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 10px;
  color: var(--ink);
  align-items: center; justify-content: center;
}

/* Mobile menu drawer */
.nav-mobile {
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.98);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  z-index: 99;
  transform: translateY(-100%);
  transition: transform .45s var(--ease-out);
  padding: 32px;
  overflow-y: auto;
}
.nav-mobile.open { transform: translateY(0); }
.nav-mobile a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
}
.nav-mobile a:hover { color: var(--green-deep); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(70% 60% at 85% -10%, rgba(94,205,140,.35), transparent 60%),
    radial-gradient(55% 55% at 0% 30%, rgba(31,148,97,.15), transparent 70%),
    radial-gradient(40% 40% at 50% 100%, rgba(94,205,140,.10), transparent 65%),
    linear-gradient(180deg, #FBFDFB, #EAF6EE);
}
.hero .particles {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden;
}
.hero .particle {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  opacity: .35;
  filter: blur(.5px);
  animation: floatP 18s ease-in-out infinite;
}
@keyframes floatP {
  0%,100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-40px) translateX(20px); }
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 64px; align-items: center;
}
.hero-meta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 12px; letter-spacing: .04em;
  color: var(--ink-soft);
  margin-bottom: 32px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.hero-meta .pip {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(94,205,140,.6);
  animation: livePulse 2.2s ease-in-out infinite;
}
.hero-meta strong { font-weight: 600; color: var(--ink); }
.hero-meta .sep { color: var(--rule-strong); }
.hero-title { margin-bottom: 28px; }
.hero-sub {
  margin: 0 0 40px;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.65; color: var(--ink-soft);
  max-width: 54ch;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-deep);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-lg);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .ph-tag {
  position: absolute; z-index: 5;
  bottom: 18px; left: 20px; right: 20px;
  display: flex; justify-content: space-between;
  font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  pointer-events: none;
}
.hero-visual .ph-tag span:last-child { font-family: var(--font-mono); color: var(--green); }

.hero-visual .badge-float {
  position: absolute; z-index: 6;
  bottom: 28px; left: -28px;
  background: #fff;
  color: var(--ink);
  padding: 16px 22px;
  border-radius: 16px;
  border: 1px solid var(--rule);
  box-shadow: 0 24px 48px -24px rgba(15,42,31,.4);
  display: flex; align-items: center; gap: 14px;
  animation: floatBadge 6s ease-in-out infinite;
}
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-visual .badge-float .icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-darker);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 16px; font-style: italic;
}
.hero-visual .badge-float .label {
  font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-visual .badge-float .val {
  font-family: var(--font-display);
  font-size: 20px; margin-top: 2px;
}

/* ================================================================
   STAT BUTTONS
   ================================================================ */
.stat-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 8px;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--rule);
  border-radius: 22px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  margin-top: 56px;
}
.stat-btn {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 6px; padding: 18px 18px 16px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 16px;
  text-align: left;
  transition: transform .4s var(--ease-spring),
              border-color .35s, box-shadow .4s, background .35s;
  cursor: pointer;
}
.stat-btn:hover {
  transform: translateY(-4px);
  border-color: var(--green-deep);
  background: var(--bg-mint);
  box-shadow: 0 20px 36px -24px rgba(31,148,97,.30);
}
.stat-btn .num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--ink);
}
.stat-btn .num .unit {
  font-size: .5em;
  color: var(--green-deep);
  margin-left: 2px;
  font-style: italic;
}
.stat-btn .lbl {
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--ink-soft);
  line-height: 1.3;
}
.stat-btn .go {
  align-self: flex-end;
  font-size: 10px; color: var(--green-deep);
  opacity: 0; transform: translateX(-4px);
  transition: opacity .3s, transform .3s;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
}
.stat-btn:hover .go { opacity: 1; transform: translateX(0); }

/* ================================================================
   MARQUEE
   ================================================================ */
.marquee-stack {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
  padding: 24px 0;
  overflow: hidden;
}
.marquee-row {
  display: flex; gap: 56px;
  white-space: nowrap; width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-row.reverse {
  margin-top: 16px;
  animation: marquee 50s linear infinite reverse;
  opacity: .45;
}
.marquee-row span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  letter-spacing: -.005em;
}
.marquee-row .dot { color: var(--green-deep); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================================================================
   SECTION HEADING
   ================================================================ */
.s-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px; align-items: end;
  margin-bottom: 64px;
}
.s-head .lead { margin-top: 24px; }
.s-head .num-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--green-deep);
  display: block;
  margin-bottom: 12px;
}
.section-deep .s-head .num-label { color: var(--green); }

/* ================================================================
   TABS — Problèmes (PRÉSERVÉS)
   ================================================================ */
.tabs-problems {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px;
}
.tab-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px 12px 16px;
  background: var(--bg);
  border: 1.5px solid var(--rule-strong);
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-soft);
  transition: all .35s var(--ease-out);
}
.tab-btn .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rule-strong);
  transition: background .35s, transform .35s var(--ease-spring);
}
.tab-btn:hover {
  border-color: var(--green-deep);
  color: var(--ink);
  transform: translateY(-1px);
}
.tab-btn:hover .dot { background: var(--green-deep); }
.tab-btn.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  font-weight: 600;
  box-shadow: 0 12px 24px -16px rgba(15,33,46,.4);
}
.tab-btn.active .dot { background: var(--green); transform: scale(1.3); }

.tab-pane {
  display: none;
  opacity: 0;
  transform: translateY(12px);
}
.tab-pane.active {
  display: grid;
  animation: paneFade .55s var(--ease-out) forwards;
}
@keyframes paneFade { to { opacity: 1; transform: none; } }

.prob-detail {
  grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  box-shadow: var(--shadow-sm);
}
.prob-detail h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0 0 20px;
  color: var(--ink);
}
.prob-detail h3 .em { color: var(--green-deep); font-style: italic; }
.prob-detail p {
  color: var(--ink-soft);
  font-size: 15.5px; line-height: 1.7;
  margin: 0 0 28px;
}
.prob-detail .savings {
  display: inline-flex; align-items: baseline; gap: 12px;
  padding: 14px 22px;
  background: var(--green-tint);
  border: 1px solid rgba(94,205,140,.3);
  border-radius: 14px;
  color: var(--green-darker);
}
.prob-detail .savings .v {
  font-family: var(--font-display);
  font-size: 30px; line-height: 1;
  color: var(--green-darker);
}
.prob-detail .savings .k { font-size: 12px; letter-spacing: .04em; }

/* ================================================================
   DASHBOARDS — fond clair, vert frais
   ================================================================ */
.dashboard {
  position: relative;
  background: linear-gradient(135deg, var(--bg-mint) 0%, var(--bg-cream) 100%);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
  overflow: hidden;
  aspect-ratio: 1;
}
.dashboard::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(31,148,97,.04) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(90deg, rgba(31,148,97,.04) 1px, transparent 1px) 0 0 / 40px 40px;
  pointer-events: none;
}
.dashboard::after {
  content: ""; position: absolute;
  top: 0; right: 0; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(94,205,140,.20) 0%, transparent 60%);
  pointer-events: none;
}
.dashboard-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.dashboard-head .title {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink);
  font-style: italic;
}
.dashboard-head .dots {
  display: flex; gap: 6px;
}
.dashboard-head .dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rule-strong);
}
.dashboard-head .dots span:first-child { background: var(--danger); }
.dashboard-head .dots span:nth-child(2) { background: var(--gold); }
.dashboard-head .dots span:last-child { background: var(--green-deep); }

/* Dashboard: KPI cards row */
.dash-kpis {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.dash-kpi {
  background: rgba(255,255,255,.7);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 14px;
}
.dash-kpi .k {
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 6px;
}
.dash-kpi .v {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  line-height: 1;
}
.dash-kpi .delta {
  font-size: 10px;
  margin-top: 4px;
  color: var(--green-deep);
  font-weight: 600;
}
.dash-kpi .delta.down { color: var(--danger); }

/* Dashboard: chart - bars */
.dash-chart {
  position: relative; z-index: 1;
  height: 140px;
  display: flex; align-items: flex-end; gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.dash-chart .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--green), var(--green-mid));
  border-radius: 4px 4px 0 0;
  position: relative;
  transform-origin: bottom;
  animation: growBar 1.2s var(--ease-spring) forwards;
  transform: scaleY(0);
  opacity: .9;
}
.dash-chart .bar.gold {
  background: linear-gradient(180deg, var(--green-deep), var(--green-darker));
  opacity: 1;
}
@keyframes growBar { to { transform: scaleY(1); } }
.dash-chart .bar::after {
  content: attr(data-month);
  position: absolute;
  bottom: -18px; left: 50%; transform: translateX(-50%);
  font-size: 9px;
  color: var(--ink-faint);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Dashboard: line chart */
.dash-line {
  position: relative; z-index: 1;
  height: 180px;
}
.dash-line svg { width: 100%; height: 100%; overflow: visible; }
.dash-line .line-path {
  fill: none;
  stroke: var(--green-deep);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(31,148,97,.4));
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 2.4s var(--ease-out) forwards;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.dash-line .line-area {
  fill: url(#lineGradient);
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.2s forwards;
}
.dash-line .line-point {
  fill: var(--green-deep);
  filter: drop-shadow(0 0 4px var(--green-deep));
  opacity: 0;
  animation: fadeIn .4s var(--ease-out) forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
.dash-line .label-axis {
  fill: var(--ink-faint);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1px;
}

/* Dashboard: donut */
.dash-donut {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 24px;
}
.dash-donut svg { width: 140px; height: 140px; }
.dash-donut .ring {
  fill: none; stroke-width: 14;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: center;
}
.dash-donut .ring-bg { stroke: var(--rule-strong); }
.dash-donut .ring-fg {
  stroke: var(--green-deep);
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  animation: drawDonut 2s var(--ease-out) .3s forwards;
  filter: drop-shadow(0 0 6px rgba(31,148,97,.3));
}
@keyframes drawDonut { to { stroke-dashoffset: var(--donut-offset, 90); } }
.dash-donut .donut-center {
  position: absolute; top: 50%; left: 70px;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}
.dash-donut .donut-center .pct {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink);
  line-height: 1;
}
.dash-donut .donut-center .lbl {
  font-size: 9px; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 4px;
}
.dash-donut .legend {
  flex: 1;
  display: flex; flex-direction: column; gap: 10px;
}
.dash-donut .legend-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  color: var(--ink-soft);
}
.dash-donut .legend-row .dot {
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--green-deep);
}
.dash-donut .legend-row .dot.gold { background: var(--green); }
.dash-donut .legend-row .dot.muted { background: var(--rule-strong); }

/* ================================================================
   STRUCTURE SELECTOR
   ================================================================ */
.struct-selector {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 8px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}
.struct-btn {
  flex: 1; min-width: 130px;
  padding: 16px 14px;
  background: transparent;
  border: 0;
  border-radius: 12px;
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 4px;
  text-align: left;
  transition: all .35s var(--ease-out);
  color: var(--ink-soft);
}
.struct-btn:hover { background: var(--bg-mint); color: var(--ink); }
.struct-btn .acro {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--green-deep);
  line-height: 1;
}
.struct-btn .acro .em { font-style: italic; color: var(--ink); font-weight: 400; }
.struct-btn .name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.struct-btn.active {
  background: var(--bg-deep);
  box-shadow: 0 12px 24px -12px rgba(15,42,31,.4);
}
.struct-btn.active .acro { color: var(--green); }
.struct-btn.active .acro .em { color: #fff; }
.struct-btn.active .name { color: rgba(255,255,255,.7); }

.struct-card {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  opacity: 0;
  transform: translateY(12px);
  box-shadow: var(--shadow-sm);
}
.struct-card.active { display: grid; animation: paneFade .55s var(--ease-out) forwards; }
.struct-card .header { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.struct-card .pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  background: var(--green-tint);
  color: var(--green-darker);
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
}
.struct-card .pill.is { background: var(--bg-deep); color: var(--green); }
.struct-card h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.015em;
  margin: 0 0 16px;
  color: var(--ink);
}
.struct-card .desc {
  color: var(--ink-soft);
  font-size: 15.5px; line-height: 1.7;
  margin-bottom: 28px;
}
.struct-card ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.struct-card ul li {
  font-size: 14.5px;
  color: var(--ink-soft);
  padding-left: 24px;
  position: relative;
  line-height: 1.55;
}
.struct-card ul li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  color: var(--green-deep); font-weight: 700;
}
.struct-card ul.cons li::before { content: "−"; color: var(--ink-faint); }
.struct-card .right {
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 4px;
}
.struct-card .stat-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
}
.struct-card .stat-row:first-child { border-top: 0; }
.struct-card .stat-row .k {
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ink-soft);
}
.struct-card .stat-row .v {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
}
.struct-card .stat-row .v .accent { color: var(--green-deep); }
.struct-card .ideal {
  margin-top: auto; padding-top: 18px;
  border-top: 1px dashed var(--rule-strong);
  font-size: 13px;
  color: var(--ink-soft);
}
.struct-card .ideal strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px; font-style: italic;
  color: var(--green-deep);
  margin-bottom: 4px;
}

/* ================================================================
   SIMULATOR
   ================================================================ */
.simulator {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-deepest) 100%);
  border: 1px solid var(--green-darker);
  border-radius: var(--radius-xl);
  padding: 64px;
  position: relative;
  overflow: hidden;
  color: var(--cream);
}
.simulator::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 100% 0%, rgba(94,205,140,.20), transparent 60%),
    radial-gradient(40% 40% at 0% 100%, rgba(94,205,140,.10), transparent 60%);
  pointer-events: none;
}
.simulator-grid {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.simulator .eyebrow,
.simulator .eyebrow-green { color: var(--green); }
.simulator h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.016em;
  color: #fff;
  margin: 16px 0 20px;
}
.simulator h2 .em { color: var(--green); font-style: italic; }
.simulator p {
  color: var(--cream-muted);
  font-size: 15.5px; line-height: 1.7;
  max-width: 42ch;
  margin-bottom: 32px;
}
.simulator .field-group {
  display: flex; flex-direction: column;
  gap: 24px;
  padding: 32px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(94,205,140,.2);
  border-radius: 20px;
}
.simulator .toggle {
  display: flex;
  background: rgba(0,0,0,.4);
  border-radius: 12px;
  padding: 4px;
  position: relative;
}
.simulator .toggle-btn {
  flex: 1;
  padding: 14px 14px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--cream-muted);
  cursor: pointer;
  z-index: 2;
  transition: color .3s;
  position: relative;
}
.simulator .toggle-btn.active { color: var(--ink); font-weight: 600; }
.simulator .toggle-bg {
  position: absolute; top: 4px; bottom: 4px;
  left: 4px; width: calc(50% - 4px);
  background: var(--green);
  border-radius: 8px;
  z-index: 1;
  transition: transform .4s var(--ease-spring);
}
.simulator .toggle.is .toggle-bg { transform: translateX(100%); }

.simulator .slider-wrap label {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 12px;
}
.simulator .slider-wrap .k {
  font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream-faint);
  font-weight: 600;
}
.simulator .slider-wrap .v {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--green);
}
.simulator input[type=range] {
  width: 100%;
  appearance: none; -webkit-appearance: none;
  height: 6px;
  background: rgba(255,255,255,.10);
  border-radius: 999px;
  outline: none;
}
.simulator input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid #fff;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(94,205,140,.5);
}
.simulator input[type=range]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid #fff;
  cursor: pointer;
}
.simulator .result {
  padding: 28px;
  background: linear-gradient(135deg, rgba(94,205,140,.18), rgba(94,205,140,.04));
  border: 1px solid rgba(94,205,140,.3);
  border-radius: 16px;
  text-align: center;
}
.simulator .result .lbl {
  font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
}
.simulator .result .big {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: #fff;
  margin: 12px 0 6px;
  letter-spacing: -.02em;
}
.simulator .result .sub {
  font-size: 13px;
  color: var(--cream-muted);
  line-height: 1.5;
}
.simulator .disclaimer {
  margin-top: 20px;
  font-size: 11px;
  color: var(--cream-faint);
  letter-spacing: .04em;
  font-style: italic;
}

/* ================================================================
   METHOD STEPS
   ================================================================ */
.step-progress {
  height: 3px;
  background: var(--rule);
  border-radius: 999px;
  margin-bottom: 32px;
  overflow: hidden;
  position: relative;
}
.section-deep .step-progress { background: rgba(255,255,255,.10); }
.step-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-deep));
  border-radius: 999px;
  width: 20%;
  transition: width .6s var(--ease-spring);
}
.method-steps {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 8px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}
.section-deep .method-steps {
  background: rgba(255,255,255,.04);
  border-color: rgba(94,205,140,.2);
}
.step-btn {
  flex: 1; min-width: 140px;
  padding: 16px 18px;
  background: transparent;
  border: 0;
  border-radius: 12px;
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 6px;
  text-align: left;
  transition: all .35s var(--ease-out);
  color: var(--ink-soft);
}
.section-deep .step-btn { color: var(--cream-muted); }
.step-btn:hover { background: var(--bg-mint); }
.section-deep .step-btn:hover { background: rgba(94,205,140,.08); }
.step-btn .step-i {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--green-deep);
  font-weight: 600;
}
.section-deep .step-btn .step-i { color: var(--green); }
.step-btn .step-t {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -.005em;
  color: var(--ink);
}
.section-deep .step-btn .step-t { color: #fff; }
.step-btn.active {
  background: var(--green);
  color: var(--ink);
}
.step-btn.active .step-i,
.step-btn.active .step-t { color: var(--ink); }
.step-btn.active .step-i { opacity: .7; }

.step-content {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
  opacity: 0;
  transform: translateY(12px);
}
.step-content.active { display: grid; animation: paneFade .5s var(--ease-out) forwards; }
.step-content .num-big {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(120px, 14vw, 200px);
  line-height: .85;
  color: var(--green-deep);
  opacity: .15;
  letter-spacing: -.04em;
}
.section-deep .step-content .num-big { color: var(--green); opacity: .25; }
.step-content h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.015em;
  margin: 0 0 24px;
  color: var(--ink);
}
.section-deep .step-content h3 { color: #fff; }
.step-content p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 50ch;
}
.section-deep .step-content p { color: var(--cream-muted); }
.step-content .details {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.section-deep .step-content .details { border-top-color: rgba(255,255,255,.08); }
.step-content .detail-cell .k {
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.section-deep .step-content .detail-cell .k { color: var(--green); }
.step-content .detail-cell .v {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
}
.section-deep .step-content .detail-cell .v { color: #fff; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi {
  padding: 36px 32px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 20px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease-spring), border-color .4s, box-shadow .4s;
  box-shadow: var(--shadow-sm);
}
.testi::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-tint) 0%, transparent 50%);
  opacity: 0; transition: opacity .4s;
  pointer-events: none;
}
.testi:hover {
  transform: translateY(-6px);
  border-color: var(--green-deep);
  box-shadow: 0 30px 60px -32px rgba(31,148,97,.30);
}
.testi:hover::before { opacity: .6; }
.testi .stars {
  color: var(--green-deep);
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 20px;
  position: relative;
}
.testi blockquote {
  margin: 0; padding: 0;
  font-family: var(--font-display);
  font-size: 19.5px;
  line-height: 1.42;
  font-weight: 400;
  letter-spacing: -.005em;
  flex: 1;
  color: var(--ink);
  position: relative;
}
.testi .who {
  margin-top: 28px;
  display: flex; align-items: center; gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  position: relative;
}
.testi .who .av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-darker);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-style: italic; font-size: 16px;
}
.testi .who .name { font-weight: 600; font-size: 14px; color: var(--ink); }
.testi .who .firm { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }

/* ================================================================
   POLE HEAD CENTRÉ + SEO
   ================================================================ */
.pole-head-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 48px;
  padding-bottom: 0;
  border-bottom: 0;
}
.pole-head-centered .pole-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--green-deep);
}
.pole-head-centered .pole-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -.018em;
  margin: 0;
  line-height: 1.1;
}
.pole-head-centered .pole-title .em { color: var(--green-deep); font-style: italic; }
.pole-head-centered .pole-seo {
  margin: 14px auto 0;
  max-width: 70ch;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ================================================================
   SEO LINK CLOUD — section pills SEO (footer-style)
   ================================================================ */
.seo-cloud {
  background: linear-gradient(180deg, #FFFFFF 0%, #F2F8F4 50%, #FFFFFF 100%);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  box-shadow: var(--shadow-sm);
}
.seo-cloud-section {
  text-align: center;
}
.seo-cloud-section + .seo-cloud-section {
  margin-top: 40px;
  padding-top: 40px;
  position: relative;
}
.seo-cloud-section + .seo-cloud-section::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 1px;
  background: var(--rule-strong);
}
.seo-cloud h4 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  margin: 0 0 28px;
}
.seo-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.seo-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--green-darker);
  transition: all .3s var(--ease-out);
}
.seo-pill:hover {
  background: var(--green-tint);
  border-color: var(--green-mid);
  color: var(--green-darker);
  transform: translateY(-1px);
}

/* ================================================================
   EXPERTISE LIST — éditorial spécimen typographique (NON-adviz)
   ================================================================ */
.expertise-list {
  border-top: 1px solid var(--ink);
  margin-bottom: 56px;
}
.expertise-row {
  display: grid;
  grid-template-columns: 100px 1fr 80px;
  gap: 56px;
  padding: 40px 32px;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  transition: background .4s var(--ease-out),
              padding .4s var(--ease-out);
  position: relative;
  cursor: pointer;
  color: var(--ink);
}
.expertise-row::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 3px; height: 0;
  background: var(--green-deep);
  transition: height .45s var(--ease-out);
}
.expertise-row:hover {
  background: linear-gradient(90deg, var(--bg-mint), transparent 80%);
}
.expertise-row:hover::before {
  height: 100%;
}
.exp-roman {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--green-deep);
  letter-spacing: -.04em;
  transition: transform .45s var(--ease-out), color .35s;
}
.expertise-row:hover .exp-roman {
  transform: translateX(8px);
  color: var(--green-darker);
}
.exp-body h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 400;
  margin: 0 0 10px;
  letter-spacing: -.012em;
  color: var(--ink);
  line-height: 1.1;
}
.exp-body h3 .em {
  color: var(--green-deep);
  font-style: italic;
}
.exp-body .exp-kw {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-family: var(--font-mono);
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}
.exp-body p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  max-width: 70ch;
}
.exp-arrow {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--rule-strong);
  display: grid; place-items: center;
  color: var(--ink-soft);
  background: transparent;
  transition: all .4s var(--ease-spring);
  justify-self: end;
}
.exp-arrow svg { width: 18px; height: 18px; transition: transform .35s var(--ease-out); }
.expertise-row:hover .exp-arrow {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #fff;
  transform: rotate(-45deg) scale(1.05);
}
.expertise-row:hover .exp-arrow svg {
  transform: rotate(45deg);
}

@media (max-width: 1100px) {
  .expertise-row { grid-template-columns: 60px 1fr 44px; gap: 24px; padding: 28px 16px; }
  .exp-arrow { width: 44px; height: 44px; }
}

/* ================================================================
   SERVICES GRID (ancien — gardé pour autres usages)
   ================================================================ */
.pole { margin-bottom: 64px; }
.pole-head {
  display: flex; align-items: baseline; gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.pole-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--green-deep);
}
.pole-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  margin: 0;
  color: var(--ink);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s;
  display: flex; flex-direction: column;
  min-height: 280px;
  box-shadow: var(--shadow-sm);
}
.service-card::after {
  content: ""; position: absolute;
  top: 0; right: 0; width: 200px; height: 200px;
  background: radial-gradient(circle, var(--green-tint) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-deep);
  box-shadow: 0 30px 60px -32px rgba(31,148,97,.25);
}
.service-card:hover::after { opacity: 1; }
.service-card .icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--green-tint);
  display: grid; place-items: center;
  color: var(--green-darker);
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--ink);
  letter-spacing: -.005em;
  position: relative; z-index: 1;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 24px;
  flex: 1;
  position: relative; z-index: 1;
}
.service-card .more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-deep);
  transition: gap .3s var(--ease-out);
  position: relative; z-index: 1;
}
.service-card:hover .more { gap: 14px; }

/* ================================================================
   SECTORS GRID
   ================================================================ */
.sectors-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}
.sector {
  position: relative;
  padding: 36px 32px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 360px;
  transition: transform .4s var(--ease-out), border-color .4s;
  box-shadow: var(--shadow-sm);
}
.sector:hover { transform: translateY(-4px); border-color: var(--green-deep); }
.sector.featured {
  background: var(--bg-deep);
  color: var(--cream);
  border-color: transparent;
  min-height: 460px;
}
.sector.featured::after {
  content: ""; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(94,205,140,.20), transparent 60%);
  pointer-events: none;
}
.sector .tag {
  font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-faint);
}
.sector.featured .tag { color: var(--green); }
.sector h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  margin: 16px 0 0;
  color: var(--ink);
}
.sector.featured h3 { color: #fff; font-size: clamp(36px, 4vw, 52px); }
.sector p {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.sector.featured p { color: var(--cream-muted); max-width: 40ch; }
.sector .pill-list {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 20px;
}
.sector .pill-list .pill {
  font-size: 11px;
  padding: 4px 10px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink-soft);
  letter-spacing: .04em;
}
.sector.featured .pill-list .pill { border-color: rgba(94,205,140,.3); color: var(--green); }

/* ================================================================
   FAQ
   ================================================================ */
.faq-list {
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
  cursor: pointer;
  transition: padding .35s;
}
.faq-item:hover .faq-q h4 { color: var(--green-deep); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}
.faq-q h4 {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  margin: 0;
  letter-spacing: -.005em;
  flex: 1;
  color: var(--ink);
  transition: color .3s;
}
.faq-q .plus {
  width: 36px; height: 36px;
  border: 1px solid var(--rule-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  background: var(--bg);
  color: var(--ink-soft);
  transition: transform .4s var(--ease-spring), background .35s, color .35s, border-color .35s;
}
.faq-item.open .faq-q .plus {
  background: var(--green);
  color: var(--ink);
  border-color: var(--green);
  transform: rotate(135deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s var(--ease-out), margin .55s, opacity .5s;
  opacity: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 70ch;
}
.faq-item.open .faq-a {
  max-height: 600px;
  margin-top: 18px;
  opacity: 1;
}

/* ================================================================
   FORM
   ================================================================ */
.form-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  color: var(--ink);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: 10px;
  transition: border-color .3s var(--ease-out), background .3s, box-shadow .3s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--green-deep);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(94,205,140,.14);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  background:
    radial-gradient(65% 55% at 100% -10%, rgba(94,205,140,.30), transparent 65%),
    radial-gradient(45% 50% at 0% 100%, rgba(31,148,97,.10), transparent 70%),
    linear-gradient(180deg, #FBFDFB, #F0F8F2);
}
.breadcrumb {
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.breadcrumb a:hover { color: var(--green-deep); }
.breadcrumb .sep { color: var(--ink-faint); margin: 0 8px; }
.breadcrumb .current { color: var(--green-deep); font-weight: 600; }
.page-hero h1 { margin: 0 0 24px; max-width: 18ch; }
.page-hero .lead { font-size: clamp(17px, 1.3vw, 21px); max-width: 64ch; margin: 0; }
.page-hero .meta-row {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.page-hero .meta-row .k {
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-deep);
}
.page-hero .meta-row .v {
  font-family: var(--font-display);
  font-size: 22px;
  margin-top: 8px;
  color: var(--ink);
  line-height: 1.2;
}

/* ================================================================
   CTA Banner
   ================================================================ */
.cta-banner {
  text-align: center;
  padding: 128px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
  color: var(--cream);
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 50% 0%, rgba(94,205,140,.18), transparent 60%),
    radial-gradient(40% 40% at 100% 100%, rgba(94,205,140,.10), transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: 1.02;
  letter-spacing: -.018em;
  margin: 0 auto 32px;
  max-width: 20ch;
  color: #fff;
  position: relative;
}
.cta-banner h2 .em { color: var(--green); font-style: italic; }
.cta-banner .lead { margin: 0 auto 48px; text-align: center; color: var(--cream-muted); }
.cta-banner .ctas {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
  position: relative;
}
.cta-banner .btn-ghost {
  color: var(--cream);
  border-color: rgba(245,241,234,.24);
}
.cta-banner .btn-ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: var(--green);
  color: var(--green);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--bg-deep);
  color: var(--cream);
  padding: 0 0 32px;
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(30% 30% at 90% 0%, rgba(94,205,140,.12), transparent 70%),
    linear-gradient(180deg, #0F2A1F 0%, #08221A 100%);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 96px 0 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.footer-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}
.footer-headline .em { color: var(--green); font-style: italic; }
.footer-top-right {
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.08);
}
.footer-top-right .map-mock {
  aspect-ratio: 16/10;
  border-radius: 12px;
  background:
    linear-gradient(rgba(94,205,140,.1) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(90deg, rgba(94,205,140,.1) 1px, transparent 1px) 0 0 / 40px 40px,
    radial-gradient(circle at 50% 50%, rgba(94,205,140,.20), transparent 50%),
    var(--bg-deepest);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.footer-top-right .map-pin {
  position: absolute;
  top: 50%; left: 50%;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 16px rgba(94,205,140,.5);
}
.footer-top-right .map-pin::after {
  content: ""; position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--green);
  opacity: .5;
  animation: pulseMap 2.5s ease-in-out infinite;
}
@keyframes pulseMap {
  0% { transform: scale(.8); opacity: .6; }
  100% { transform: scale(2.4); opacity: 0; }
}
.footer-top-right address {
  font-style: normal;
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.4;
}
.footer-top-right .addr-sub {
  color: var(--cream-faint);
  font-size: 13px;
  font-family: var(--font-body);
  margin-top: 8px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  position: relative;
}
.footer h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 20px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  font-size: 14px;
  color: var(--cream-muted);
  transition: color .3s;
}
.footer ul a:hover { color: var(--green); }
.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: var(--cream-faint);
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
}
.footer-bottom .ordre {
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-bottom .ordre::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
}
.footer-bottom a { color: var(--cream-muted); }
.footer-bottom a:hover { color: var(--green); }

/* ================================================================
   BOOKING calendar
   ================================================================ */
.booking-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  box-shadow: var(--shadow-lg);
}
.booking-left h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.012em;
  margin: 16px 0 20px;
  color: var(--ink);
}
.booking-left h3 .em { color: var(--green-deep); font-style: italic; }
.booking-left p {
  color: var(--ink-soft);
  font-size: 15px; line-height: 1.7;
  margin-bottom: 28px;
}
.booking-left .booking-feats {
  display: flex; flex-direction: column; gap: 12px;
}
.booking-left .feat-row {
  display: flex; gap: 14px; align-items: center;
  font-size: 14px;
  color: var(--ink-soft);
}
.booking-left .feat-row .check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-darker);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.calendar {
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 28px;
}
.calendar-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.calendar-head h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  color: var(--ink);
}
.calendar-head .nav-btns { display: flex; gap: 6px; }
.calendar-nav-btn {
  width: 32px; height: 32px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--ink-soft);
  transition: all .3s;
}
.calendar-nav-btn:hover { background: var(--green-tint); color: var(--green-darker); border-color: var(--green-mid); }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 20px;
}
.calendar-dow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  padding: 8px 0;
}
.calendar-day {
  aspect-ratio: 1;
  display: grid; place-items: center;
  border-radius: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft);
  background: var(--bg);
  cursor: pointer;
  transition: all .25s;
  border: 1.5px solid transparent;
}
.calendar-day.empty { background: transparent; cursor: default; }
.calendar-day.past { color: var(--ink-faint); cursor: not-allowed; background: transparent; }
.calendar-day.available { color: var(--ink); }
.calendar-day.available:hover { background: var(--green-tint); border-color: var(--green-mid); }
.calendar-day.selected { background: var(--green); color: var(--ink); font-weight: 600; border-color: var(--green-mid); }
.calendar-day.today { border-color: var(--green-deep); }
.slots-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.slot-btn {
  padding: 12px 8px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all .25s;
}
.slot-btn:hover { background: var(--green-tint); border-color: var(--green-mid); color: var(--green-darker); }
.slot-btn.selected { background: var(--ink); color: #fff; border-color: var(--ink); }
.booking-action {
  margin-top: 20px;
  display: flex; gap: 12px; align-items: center;
}
.booking-action .summary {
  flex: 1;
  font-size: 12.5px;
  color: var(--ink-soft);
}
.booking-action .summary strong { color: var(--ink); font-weight: 600; }

/* ================================================================
   BLOG GRID
   ================================================================ */
.blog-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 8px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}
.filter-btn {
  padding: 10px 18px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .3s;
}
.filter-btn:hover { color: var(--ink); background: var(--bg-mint); }
.filter-btn.active {
  background: var(--green);
  color: var(--ink);
  font-weight: 600;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--green-deep);
  box-shadow: 0 30px 60px -32px rgba(31,148,97,.25);
}
.blog-thumb {
  aspect-ratio: 16/10;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.blog-thumb svg { width: 100%; height: 100%; }
.blog-cat {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 10px; font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-deep);
}
.blog-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.blog-meta .read-time { color: var(--green-deep); }
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 12px;
  line-height: 1.25;
  letter-spacing: -.005em;
  color: var(--ink);
}
.blog-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 20px;
  flex: 1;
}
.blog-card .more {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-deep);
  display: inline-flex; gap: 8px;
  transition: gap .3s;
}
.blog-card:hover .more { gap: 14px; }

/* ================================================================
   FOUNDERS
   ================================================================ */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.founder-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .4s, transform .4s var(--ease-out);
  box-shadow: var(--shadow-sm);
}
.founder-card:hover { border-color: var(--green-deep); transform: translateY(-4px); }
.founder-photo {
  aspect-ratio: 5/4;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(50% 60% at 60% 50%, rgba(94,205,140,.35), transparent 60%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-deepest) 100%);
}
.founder-photo .initials {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 140px;
  color: rgba(94,205,140,.5);
}
.founder-photo .pill {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 12px;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green-darker);
}
.founder-body { padding: 28px 32px 32px; }
.founder-body h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  margin: 0;
  letter-spacing: -.01em;
  color: var(--ink);
}
.founder-body .role {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-top: 6px;
  font-weight: 600;
}
.founder-body .bio {
  margin-top: 16px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.founder-body .quick-stats {
  display: flex; gap: 24px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.founder-body .quick-stats .v {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--green-deep);
}
.founder-body .quick-stats .k {
  font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 4px;
}

/* ================================================================
   REVEAL ON SCROLL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }

/* Scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-deep));
  z-index: 200;
  width: 0%;
  transition: width 80ms linear;
}

/* ================================================================
   MOBILE
   ================================================================ */
@media (max-width: 1100px) {
  .nav-inner { padding: 0 20px; gap: 16px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: grid; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { aspect-ratio: 4/4; }
  .hero-visual .badge-float { left: 16px; }
  .stat-buttons { grid-template-columns: repeat(2, 1fr); }
  .s-head { grid-template-columns: 1fr; gap: 16px; }
  .prob-detail { grid-template-columns: 1fr; padding: 32px; }
  .struct-card { grid-template-columns: 1fr; padding: 32px; }
  .simulator { padding: 40px 28px; }
  .simulator-grid { grid-template-columns: 1fr; gap: 32px; }
  .step-content { grid-template-columns: 1fr; }
  .step-content .num-big { font-size: 80px; }
  .testi-grid { grid-template-columns: 1fr; }
  .booking-card { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .sector.featured { grid-column: span 2; min-height: 320px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .top-banner { display: none; }
  .page-hero .meta-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .container-narrow { padding: 0 20px; }
  .stat-buttons { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .sector.featured { grid-column: span 1; }
  .blog-grid { grid-template-columns: 1fr; }
  .struct-selector { padding: 6px; }
  .struct-btn { min-width: 100px; padding: 12px 10px; }
  .method-steps { padding: 6px; }
  .step-btn { min-width: 110px; padding: 12px; }
  .slots { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .page-hero .meta-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .marquee-row { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ================================================================
   BENTO GRID — Premium tech-design (Apple / Linear / Vercel)
   ================================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
}
.bento-cell {
  position: relative;
  border-radius: 28px;
  padding: 36px;
  overflow: hidden;
  background: linear-gradient(155deg, rgba(255,255,255,.85), rgba(234,246,238,.55));
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  isolation: isolate;
  cursor: pointer;
  transition: transform .5s var(--ease-out),
              box-shadow .5s var(--ease-out);
  display: flex; flex-direction: column;
  color: var(--ink);
}
/* Gradient border subtil (animé au hover) */
.bento-cell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(155deg, rgba(31,148,97,.45), rgba(94,205,140,.10) 40%, transparent 70%, rgba(200,169,96,.30));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  opacity: .7;
  transition: opacity .5s, background .5s;
}
/* Halo lumineux derrière (vert profond) */
.bento-cell::after {
  content: "";
  position: absolute;
  top: -40%; right: -20%;
  width: 70%; height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94,205,140,.30), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  opacity: .65;
  transition: opacity .5s, transform .5s;
}
.bento-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(31,148,97,.30);
}
.bento-cell:hover::before {
  opacity: 1;
  background: linear-gradient(155deg, rgba(31,148,97,.9), rgba(94,205,140,.5) 40%, rgba(200,169,96,.35) 70%, rgba(31,148,97,.6));
}
.bento-cell:hover::after { opacity: 1; transform: scale(1.1); }

/* Variantes de tailles */
.bento-cell.col-3 { grid-column: span 3; }
.bento-cell.col-2 { grid-column: span 2; }
.bento-cell.col-4 { grid-column: span 4; }
.bento-cell.col-6 { grid-column: span 6; }
.bento-cell.row-2 { grid-row: span 2; }

/* Cellule featured (dark green) — variante */
.bento-cell.featured {
  background: linear-gradient(155deg, var(--bg-deep) 0%, var(--bg-deepest) 100%);
  color: var(--cream);
}
.bento-cell.featured::before {
  background: linear-gradient(155deg, rgba(94,205,140,.6), rgba(200,169,96,.4) 50%, rgba(94,205,140,.5));
  opacity: 1;
}
.bento-cell.featured::after {
  background: radial-gradient(circle, rgba(94,205,140,.45), transparent 60%);
  opacity: 1;
}

/* Contenu interne */
.bento-cell .bento-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.bento-cell.featured .bento-tag { color: var(--green); }

.bento-cell h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  letter-spacing: -.012em;
  line-height: 1.15;
  margin: 0 0 12px;
  position: relative;
  z-index: 2;
}
.bento-cell.featured h3 { color: #fff; }
.bento-cell h3 .em { color: var(--green-deep); font-style: italic; }
.bento-cell.featured h3 .em { color: var(--green); }

.bento-cell p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  position: relative;
  z-index: 2;
  max-width: 42ch;
}
.bento-cell.featured p { color: var(--cream-muted); }

.bento-cell .bento-cta {
  margin-top: auto;
  padding-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-deep);
  position: relative;
  z-index: 2;
  transition: gap .3s var(--ease-out);
}
.bento-cell:hover .bento-cta { gap: 16px; }
.bento-cell.featured .bento-cta { color: var(--green); }

/* Visuel interne — gros chiffre */
.bento-big-number {
  font-family: var(--font-display);
  font-size: clamp(72px, 8vw, 128px);
  line-height: .9;
  letter-spacing: -.04em;
  color: var(--green-deep);
  margin: 24px 0 16px;
  position: relative;
  z-index: 2;
  font-style: italic;
}
.bento-cell.featured .bento-big-number { color: var(--green); }
.bento-big-number .unit {
  font-size: .4em;
  color: var(--ink-soft);
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 500;
  margin-left: 4px;
  vertical-align: baseline;
}
.bento-cell.featured .bento-big-number .unit { color: var(--cream-muted); }

/* Visuel interne — mini-dashboard chart */
.bento-mini-chart {
  position: relative;
  z-index: 2;
  margin: 16px 0 8px;
  height: 80px;
  display: flex; align-items: flex-end; gap: 6px;
}
.bento-mini-chart .bar {
  flex: 1;
  background: linear-gradient(180deg, var(--green), var(--green-deep));
  border-radius: 3px 3px 0 0;
  transform-origin: bottom;
  animation: growBar 1.2s var(--ease-spring) forwards;
  transform: scaleY(0);
}
.bento-cell.featured .bento-mini-chart .bar {
  background: linear-gradient(180deg, var(--green), rgba(94,205,140,.4));
}

/* Visuel interne — donut */
.bento-donut {
  position: relative; z-index: 2;
  width: 100px; height: 100px;
  margin: 16px 0 8px;
}
.bento-donut svg { width: 100%; height: 100%; }
.bento-donut .ring-bg { stroke: var(--rule-strong); fill: none; stroke-width: 10; }
.bento-donut .ring-fg {
  stroke: var(--green-deep); fill: none; stroke-width: 10;
  stroke-linecap: round; transform: rotate(-90deg);
  transform-origin: center;
  stroke-dasharray: 251.3;
  stroke-dashoffset: 251.3;
  animation: bentoDonut 1.6s var(--ease-out) .3s forwards;
}
@keyframes bentoDonut { to { stroke-dashoffset: 75; } }
.bento-cell.featured .bento-donut .ring-fg { stroke: var(--green); }
.bento-donut .donut-label {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--ink);
}
.bento-cell.featured .bento-donut .donut-label { color: #fff; }

/* Visuel interne — line/spark */
.bento-spark {
  position: relative; z-index: 2;
  height: 80px;
  margin: 16px 0 8px;
}
.bento-spark svg { width: 100%; height: 100%; overflow: visible; }
.bento-spark .line {
  fill: none;
  stroke: var(--green-deep);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: bentoLine 2s var(--ease-out) forwards;
  filter: drop-shadow(0 0 6px rgba(31,148,97,.3));
}
@keyframes bentoLine { to { stroke-dashoffset: 0; } }
.bento-cell.featured .bento-spark .line { stroke: var(--green); }
.bento-spark .fill {
  fill: url(#sparkGrad);
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1s forwards;
}

/* Visuel interne — hexagone (patrimoine) */
.bento-hex {
  position: relative; z-index: 2;
  width: 96px; height: 96px;
  margin: 16px 0;
}

/* Mobile bento */
@media (max-width: 1100px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-cell.col-3, .bento-cell.col-4, .bento-cell.col-6 { grid-column: span 2; }
  .bento-cell.col-2 { grid-column: span 1; }
  .bento-cell { padding: 28px; }
  .bento-big-number { font-size: 64px; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .bento-cell, .bento-cell.col-2, .bento-cell.col-3, .bento-cell.col-4, .bento-cell.col-6 { grid-column: span 1; }
}

/* ================================================================
   ÉDITORIAL PREMIUM — masthead, chapitres romains, pull-quotes
   ================================================================ */

/* Masthead bar (en haut du hero, style presse) */
.masthead {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule-strong);
  background: transparent;
  padding: 14px 0;
  margin-bottom: 56px;
}
.masthead-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.masthead-center {
  font-family: var(--font-display);
  font-style: italic;
  text-transform: none;
  letter-spacing: .04em;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
}
.masthead .vol {
  display: inline-flex; align-items: center; gap: 8px;
}
.masthead .vol::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%; background: var(--green-deep);
  box-shadow: 0 0 0 0 rgba(31,148,97,.6);
  animation: livePulse 2.4s ease-in-out infinite;
}
.masthead .right {
  display: flex; gap: 24px;
}

/* Chapitre romain (numérotation éditoriale) */
.chapter {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding-bottom: 32px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--ink);
}
.chapter-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--green-deep);
  flex-shrink: 0;
  min-width: 80px;
}
.chapter-title {
  flex: 1;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.012em;
  color: var(--ink);
  margin: 0;
}
.chapter-title .em { color: var(--green-deep); font-style: italic; }
.chapter-meta {
  align-self: flex-end;
  text-align: right;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-family: var(--font-mono);
  padding-bottom: 8px;
}

/* Pull-quote (citation magazine massive) */
.pull-quote {
  padding: 96px 0;
  text-align: center;
  position: relative;
}
.pull-quote::before, .pull-quote::after {
  content: "";
  width: 80px; height: 1px;
  background: var(--green-deep);
  display: block;
  margin: 0 auto 32px;
}
.pull-quote::after {
  margin: 32px auto 0;
}
.pull-quote q {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 3.8vw, 56px);
  line-height: 1.2;
  letter-spacing: -.012em;
  color: var(--ink);
  display: block;
  max-width: 22ch;
  margin: 0 auto;
  quotes: "«\00a0" "\00a0»";
}
.pull-quote q::before, .pull-quote q::after {
  color: var(--green-deep);
  font-size: 1.2em;
}
.pull-quote cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-family: var(--font-body);
  font-weight: 500;
}

/* Photo "planche" éditoriale (hero) */
.editorial-plate {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 0;
  overflow: hidden;
  background: var(--bg-deep);
  box-shadow:
    0 1px 0 var(--ink),
    0 30px 60px -30px rgba(15,42,31,.4);
}
.editorial-plate img { width: 100%; height: 100%; object-fit: cover; }
.editorial-plate .plate-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(180deg, transparent, rgba(8,34,26,.85));
  color: var(--cream);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  display: flex; justify-content: space-between;
}
.editorial-plate .plate-caption .plate-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--cream);
}
.editorial-plate .corner-mark {
  position: absolute;
  top: 16px; right: 16px;
  padding: 6px 12px;
  background: rgba(255,255,255,.95);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-darker);
  font-family: var(--font-mono);
}

/* Stat-callouts éditoriales (annotations type magazine) */
.editorial-callouts {
  position: absolute;
  z-index: 5;
  display: flex; flex-direction: column;
  gap: 16px;
}
.editorial-callouts.right {
  top: 20%; right: -160px;
  width: 200px;
}
.editorial-callouts.left {
  top: 60%; left: -180px;
  width: 200px;
  text-align: right;
}
.editorial-callout {
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-left: 2px solid var(--green-deep);
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
}
.editorial-callouts.left .editorial-callout {
  border-left: 0;
  border-right: 2px solid var(--green-deep);
}
.editorial-callout .v {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -.02em;
}
.editorial-callout .k {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
  font-family: var(--font-mono);
}

/* Marque-page sticky (index latéral) */
.toc-sticky {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex; flex-direction: column;
  gap: 14px;
  padding: 16px 14px;
  background: rgba(255,255,255,.8);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--rule);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transition: opacity .4s var(--ease-out);
}
.toc-sticky.show { opacity: 1; }
.toc-sticky a {
  display: block;
  position: relative;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-family: var(--font-mono);
  font-weight: 600;
  padding-left: 14px;
  transition: color .3s;
}
.toc-sticky a::before {
  content: "";
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 1px;
  background: var(--ink-faint);
  transition: width .3s, background .3s;
}
.toc-sticky a:hover, .toc-sticky a.active {
  color: var(--green-deep);
}
.toc-sticky a:hover::before, .toc-sticky a.active::before {
  width: 10px;
  background: var(--green-deep);
}

/* Editorial section heading (alternative au .s-head pour le style premium) */
.s-edito {
  display: grid;
  grid-template-columns: 80px 1fr 1.6fr;
  gap: 48px;
  margin-bottom: 64px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--ink);
  align-items: end;
}
.s-edito .roman {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--green-deep);
}
.s-edito .meta {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-family: var(--font-mono);
  margin-bottom: 8px;
  display: block;
}
.s-edito h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.018em;
  color: var(--ink);
  margin: 0;
}
.s-edito h2 .em { color: var(--green-deep); font-style: italic; }
.s-edito .right-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 50ch;
}

/* Hairline rules (filets éditoriaux) */
.hairline {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ink), transparent);
  width: 100%;
  margin: 64px 0;
}
.hairline-green {
  background: linear-gradient(90deg, transparent, var(--green-deep), transparent);
}

/* Signature manuscrite SVG (fondateurs) */
.signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--green-deep);
  display: inline-block;
  position: relative;
}
.signature::after {
  content: "";
  display: block;
  width: 60%;
  height: 1px;
  background: var(--green-deep);
  margin-top: 4px;
  transform: skewX(-12deg);
}

@media (max-width: 1100px) {
  .editorial-callouts.right, .editorial-callouts.left { display: none; }
  .toc-sticky { display: none; }
  .chapter { flex-direction: column; gap: 8px; }
  .chapter-meta { align-self: flex-start; text-align: left; }
  .s-edito { grid-template-columns: 1fr; gap: 24px; }
  .pull-quote { padding: 64px 0; }
}
