/* ================================================
   GSH CAPITAL — main.css
   Variables, reset, layout, typographie, boutons
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,200;0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,200;1,9..40,300&family=JetBrains+Mono:wght@300;400&display=swap');

/* ── VARIABLES ── */
:root {
  /* Palette */
  --white:    #FAFAF8;
  --off:      #F3F1EC;
  --cream:    #E8E4DA;
  --beige:    #DDD8CE;
  --bark:     #C8C2B4;
  --graphite: #0F0F0F;
  --g2:       #181818;
  --g3:       #222222;
  --g4:       #2C2C2C;
  --g5:       #383838;
  --tx1:      #0D0D0D;
  --tx2:      #3A3A3A;
  --tx3:      #6E6E6E;
  --tx4:      #A8A8A8;
  --gold:     #B8996A;
  --gold2:    #D4B896;
  --gold-a:   rgba(184,153,106,.14);
  --gold-b:   rgba(184,153,106,.28);
  --red:      #A83232;
  --red-a:    rgba(168,50,50,.07);
  --green:    #1A6048;
  --green-a:  rgba(26,96,72,.07);
  /* Layout */
  --nav-h: 72px;
  --mw:    1300px;
  --px:    72px;
  --sy:    128px;
  /* Typography */
  --font-s: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'DM Sans', system-ui, sans-serif;
  --font-m: 'JetBrains Mono', monospace;
  /* Motion */
  --ease:     cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(0,0,.2,1);
  --dur:      .5s;
  --dur-f:    .22s;
  /* Shadow */
  --sh1: 0 1px 6px rgba(0,0,0,.04);
  --sh2: 0 4px 20px rgba(0,0,0,.07);
  --sh3: 0 12px 48px rgba(0,0,0,.10);
  --sh4: 0 28px 80px rgba(0,0,0,.13);
  /* Radius */
  --r1: 6px; --r2: 12px; --r3: 20px; --r4: 32px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: var(--font-b); background: var(--white); color: var(--tx1); overflow-x: hidden; line-height: 1.65; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; background: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--graphite); color: var(--white); }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--beige); border-radius: 2px; }

/* ── LAYOUT ── */
.container { max-width: var(--mw); margin: 0 auto; padding: 0 var(--px); }
section { padding: var(--sy) 0; }
.divider { height: 1px; background: var(--cream); }

/* ── TYPOGRAPHY ── */
.eye { font-family: var(--font-m); font-size: .6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 18px; }
.d1 { font-family: var(--font-s); font-size: clamp(3rem,6.5vw,6rem); font-weight: 300; line-height: 1.03; letter-spacing: -1.5px; }
.d2 { font-family: var(--font-s); font-size: clamp(2.2rem,4.2vw,4rem); font-weight: 300; line-height: 1.08; letter-spacing: -.8px; }
.d3 { font-family: var(--font-s); font-size: clamp(1.7rem,2.8vw,2.6rem); font-weight: 300; line-height: 1.15; letter-spacing: -.4px; }
.lead { font-size: 1.05rem; color: var(--tx3); line-height: 1.78; font-weight: 300; }
.sm { font-size: .8rem; color: var(--tx3); line-height: 1.72; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r1);
  font-size: .82rem; font-weight: 500; letter-spacing: .2px;
  transition: all var(--dur-f) var(--ease);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn-dark  { background: var(--graphite); color: var(--white); }
.btn-dark:hover { background: var(--g3); transform: translateY(-1px); box-shadow: var(--sh3); }
.btn-out   { border: 1px solid rgba(0,0,0,.16); color: var(--tx1); }
.btn-out:hover { border-color: var(--tx1); background: var(--off); }
.btn-outl  { border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.8); }
.btn-outl:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-gold  { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #a88558; transform: translateY(-1px); box-shadow: 0 8px 32px rgba(184,153,106,.42); }
.btn-red   { background: var(--red); color: #fff; }
.btn-red:hover { background: #943030; transform: translateY(-1px); box-shadow: 0 8px 32px rgba(168,50,50,.45); }
.btn-sm { padding: 10px 20px; font-size: .75rem; }
.btn-lg { padding: 16px 36px; font-size: .88rem; }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  height: var(--nav-h);
  transition: background var(--dur) var(--ease), border-color var(--dur);
}
#nav.dk { background: rgba(15,15,15,.92); backdrop-filter: blur(28px); border-bottom: 1px solid rgba(255,255,255,.07); }
#nav.lt { background: rgba(250,250,248,.94); backdrop-filter: blur(28px); border-bottom: 1px solid var(--cream); }
.ni { max-width: var(--mw); margin: 0 auto; padding: 0 var(--px); height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nb { display: flex; align-items: center; gap: 12px; }
.nm { width: 36px; height: 36px; border-radius: 8px; background: linear-gradient(135deg,var(--gold),var(--gold2)); display: flex; align-items: center; justify-content: center; font-family: var(--font-s); font-size: 1.1rem; font-weight: 600; color: #fff; flex-shrink: 0; }
.nn { display: flex; flex-direction: column; line-height: 1.1; }
.nn-a { font-family: var(--font-s); font-size: 1rem; font-weight: 500; letter-spacing: 1px; }
.nn-b { font-size: .52rem; letter-spacing: 2.5px; text-transform: uppercase; opacity: .45; font-family: var(--font-m); }
#nav.dk .nn-a, #nav.dk .nn-b { color: #fff; }
#nav.lt .nn-a { color: var(--graphite); }
.nl { display: flex; align-items: center; gap: 30px; }
.nl a { font-size: .7rem; letter-spacing: 1px; text-transform: uppercase; transition: opacity var(--dur-f); font-weight: 400; }
#nav.dk .nl a { color: rgba(255,255,255,.5); }
#nav.dk .nl a:hover, #nav.dk .nl a.active { color: #fff; }
#nav.lt .nl a { color: var(--tx3); }
#nav.lt .nl a:hover, #nav.lt .nl a.active { color: var(--tx1); }
.ncw { display: flex; align-items: center; gap: 10px; }
.hb { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hb span { width: 22px; height: 1.5px; display: block; transition: var(--dur-f); }
#nav.dk .hb span { background: rgba(255,255,255,.65); }
#nav.lt .hb span { background: var(--graphite); }
.mn { display: none; position: fixed; top: var(--nav-h); left: 0; width: 100%; z-index: 999; padding: 24px var(--px) 32px; flex-direction: column; }
.mn.dk { background: rgba(15,15,15,.97); border-bottom: 1px solid rgba(255,255,255,.07); }
.mn.lt { background: rgba(250,250,248,.97); border-bottom: 1px solid var(--cream); }
.mn.open { display: flex; }
.mn a { padding: 13px 0; font-size: .8rem; letter-spacing: 1px; text-transform: uppercase; border-bottom: 1px solid; }
.mn.dk a { color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.05); }
.mn.lt a { color: var(--tx3); border-color: var(--cream); }
.mn a:last-child { border: none; }
.mn .mcta { margin-top: 18px; }
/* Float CTA mobile */
#fc {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 998; display: none; align-items: center; gap: 8px;
  background: var(--graphite); color: #fff; padding: 13px 26px; border-radius: 50px;
  font-size: .8rem; font-weight: 500;
  box-shadow: 0 8px 40px rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.1);
  white-space: nowrap; transition: all var(--dur-f);
}
#fc:hover { box-shadow: 0 12px 48px rgba(0,0,0,.5); transform: translateX(-50%) translateY(-2px); }

/* ── HERO ── */
#hero { min-height: 100vh; background: var(--graphite); display: flex; align-items: center; padding-top: var(--nav-h); position: relative; overflow: hidden; }
.hg { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.022) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px); background-size: 88px 88px; will-change: transform; }
.hgl { position: absolute; pointer-events: none; border-radius: 50%; filter: blur(80px); will-change: transform; }
.hgl1 { width: 700px; height: 700px; top: -15%; right: -10%; background: radial-gradient(ellipse,rgba(184,153,106,.09),transparent 65%); }
.hgl2 { width: 500px; height: 500px; bottom: -20%; left: -8%; background: radial-gradient(ellipse,rgba(184,153,106,.05),transparent 70%); }
.hc { max-width: var(--mw); margin: 0 auto; padding: 88px var(--px) 100px; width: 100%; display: grid; grid-template-columns: 1fr 440px; gap: 80px; align-items: center; }
.hbdg { display: inline-flex; align-items: center; gap: 9px; padding: 7px 16px; border: 1px solid rgba(184,153,106,.25); border-radius: 50px; margin-bottom: 40px; }
.hbdot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; }
.hbtxt { font-family: var(--font-m); font-size: .58rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.4); }
.hh { font-family: var(--font-s); font-size: clamp(3.2rem,7vw,6.2rem); font-weight: 300; line-height: 1.03; letter-spacing: -1.5px; color: #fff; margin-bottom: 28px; max-width: 780px; }
.hh span { color: var(--gold); }
.hs { font-size: 1.05rem; color: rgba(255,255,255,.42); max-width: 500px; line-height: 1.78; margin-bottom: 52px; font-weight: 300; }
.hcts { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 80px; }
.hmet { display: grid; grid-template-columns: repeat(3,auto); gap: 48px; padding-top: 44px; border-top: 1px solid rgba(255,255,255,.08); max-width: 520px; }
.hmet > div { position: relative; }
.hmet > div::after { content: ''; position: absolute; right: -24px; top: 20%; bottom: 20%; width: 1px; background: rgba(255,255,255,.08); }
.hmet > div:last-child::after { display: none; }
.hmn { font-family: var(--font-s); font-size: 2.4rem; font-weight: 300; color: #fff; line-height: 1; margin-bottom: 6px; }
.hml { font-family: var(--font-m); font-size: .58rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.3); }
.hpanel { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.09); border-radius: 24px; padding: 36px; backdrop-filter: blur(20px); transition: transform .1s ease; }
.hpanel-title { font-family: var(--font-s); font-size: 1.1rem; color: rgba(255,255,255,.85); font-weight: 400; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.07); }
.hpitems { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.hpitem { display: flex; align-items: flex-start; gap: 12px; }
.hpicon { width: 34px; height: 34px; background: rgba(255,255,255,.05); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid rgba(255,255,255,.07); }
.hptext strong { display: block; font-size: .82rem; color: rgba(255,255,255,.75); font-weight: 400; margin-bottom: 2px; }
.hptext span { font-size: .74rem; color: rgba(255,255,255,.35); }
.hpdivider { height: 1px; background: rgba(255,255,255,.06); margin-bottom: 18px; }
.hpnote { font-size: .72rem; color: rgba(255,255,255,.3); line-height: 1.65; text-align: center; }
.hpnote strong { color: rgba(184,153,106,.7); font-weight: 400; }
.hscroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hscroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom,rgba(255,255,255,.2),transparent); }
.hscroll-txt { font-family: var(--font-m); font-size: .52rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.18); }

/* ── PRESSION ── */
#pression { background: var(--white); }
.pr-intro { max-width: 680px; margin-bottom: 80px; }
.pr-quote { font-family: var(--font-s); font-size: clamp(1.3rem,2vw,1.8rem); font-weight: 300; color: var(--tx2); line-height: 1.45; margin-top: 24px; padding-left: 24px; border-left: 2px solid var(--gold); max-width: 640px; }
.pr-grid { display: grid; grid-template-columns: 1fr 52px 1fr; gap: 0; margin-bottom: 56px; }
.pc { border-radius: var(--r3); overflow: hidden; border: 1px solid; position: relative; }
.pc.av { border-color: rgba(168,50,50,.15); }
.pc.ap { border-color: rgba(26,96,72,.18); }
.pc-hd { padding: 26px 34px; border-bottom: 1px solid; display: flex; align-items: center; gap: 12px; }
.pc.av .pc-hd { background: var(--red-a); border-color: rgba(168,50,50,.1); }
.pc.ap .pc-hd { background: var(--green-a); border-color: rgba(26,96,72,.1); }
.pc-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.av .pc-dot { background: var(--red); } .ap .pc-dot { background: var(--green); }
.pc-lbl { font-family: var(--font-m); font-size: .62rem; letter-spacing: 2px; text-transform: uppercase; }
.av .pc-lbl { color: var(--red); } .ap .pc-lbl { color: var(--green); }
.pc-items { padding: 26px 34px; display: flex; flex-direction: column; gap: 14px; }
.pi { display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px; border-radius: var(--r2); opacity: 0; transform: translateX(-8px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.av .pi { background: var(--red-a); border: 1px solid rgba(168,50,50,.08); }
.ap .pi { background: var(--green-a); border: 1px solid rgba(26,96,72,.08); }
.pc.in-view .pi { opacity: 1; transform: none; }
.pc.in-view .pi:nth-child(1) { transition-delay: .05s; } .pc.in-view .pi:nth-child(2) { transition-delay: .12s; } .pc.in-view .pi:nth-child(3) { transition-delay: .19s; } .pc.in-view .pi:nth-child(4) { transition-delay: .26s; } .pc.in-view .pi:nth-child(5) { transition-delay: .33s; }
.pi-ico { flex-shrink: 0; margin-top: 2px; } .pi-name { font-size: .84rem; font-weight: 500; margin-bottom: 3px; } .pi-val { font-family: var(--font-m); font-size: .73rem; }
.av .pi-val { color: var(--red); } .ap .pi-val { color: var(--green); }
.pc-tot { margin: 0 34px 26px; padding: 18px 22px; border-radius: var(--r2); display: flex; justify-content: space-between; align-items: center; opacity: 0; transform: translateY(6px); transition: opacity .5s var(--ease) .42s, transform .5s var(--ease) .42s; }
.pc.in-view .pc-tot { opacity: 1; transform: none; }
.av .pc-tot { background: rgba(168,50,50,.06); border: 1px solid rgba(168,50,50,.14); }
.ap .pc-tot { background: rgba(26,96,72,.06); border: 1px solid rgba(26,96,72,.14); }
.pt-lbl { font-family: var(--font-m); font-size: .62rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--tx3); }
.pt-val { font-family: var(--font-s); font-size: 2rem; font-weight: 400; }
.av .pt-val { color: var(--red); } .ap .pt-val { color: var(--green); }
.pr-arrow { display: flex; align-items: center; justify-content: center; }
.pr-arrow svg { color: var(--bark); }
.pr-savings { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.sv { background: var(--off); border: 1px solid var(--cream); border-radius: var(--r2); padding: 28px 24px; text-align: center; transition: all var(--dur-f); overflow: hidden; }
.sv:hover { box-shadow: var(--sh2); transform: translateY(-2px); }
.sv-val { font-family: var(--font-s); font-size: 2.2rem; font-weight: 300; color: var(--green); display: block; margin-bottom: 8px; transition: transform .3s var(--ease); }
.sv:hover .sv-val { transform: scale(1.05); }
.sv-lbl { font-size: .74rem; color: var(--tx3); line-height: 1.55; }

/* ── RESPIRER ── */
#respirer { background: linear-gradient(180deg,var(--g2) 0%,#141414 60%,#111 100%); position: relative; overflow: hidden; }
.rb { position: absolute; inset: 0; pointer-events: none; will-change: transform; }
.rb1 { background: radial-gradient(ellipse at 50% 60%,rgba(184,153,106,.07),transparent 65%); }
.rb2 { position: absolute; bottom: -30%; left: -10%; width: 600px; height: 600px; background: radial-gradient(ellipse,rgba(184,153,106,.04),transparent 65%); }
.rc { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; text-align: center; }
.rh { font-family: var(--font-s); font-size: clamp(2.4rem,5.5vw,4.4rem); font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 22px; letter-spacing: -.5px; }
.rs { font-size: 1rem; color: rgba(255,255,255,.38); line-height: 1.82; margin-bottom: 60px; max-width: 520px; margin-left: auto; margin-right: auto; }
.rpills { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.05); border-radius: var(--r3); overflow: hidden; margin-bottom: 60px; }
.rpill { background: var(--g2); padding: 36px 24px; text-align: center; transition: background var(--dur-f); position: relative; overflow: hidden; }
.rpill:hover { background: var(--g3); }
.rpill::before { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 1px; background: var(--gold); opacity: 0; transition: opacity var(--dur), width var(--dur); }
.rpill:hover::before { opacity: .5; width: 70%; }
.rpi { margin: 0 auto 16px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.rpn { font-family: var(--font-s); font-size: 1rem; color: #fff; font-weight: 400; margin-bottom: 6px; }
.rps { font-size: .73rem; color: rgba(255,255,255,.3); line-height: 1.55; }

/* ── SITUATIONS ── */
#situations { background: var(--off); }
.sit-intro { max-width: 580px; margin-bottom: 68px; }
.sit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--cream); border-radius: var(--r3); overflow: hidden; margin-bottom: 52px; }
.sc { background: var(--white); padding: 38px 32px; transition: background var(--dur-f); position: relative; overflow: hidden; }
.sc:hover { background: var(--off); }
.sc::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,var(--gold),var(--gold2)); transform: scaleX(0); transition: transform var(--dur) var(--ease); transform-origin: left; }
.sc:hover::after { transform: scaleX(1); }
.sc-ico { margin-bottom: 20px; } .sc-t { font-size: .88rem; font-weight: 500; color: var(--tx1); margin-bottom: 8px; } .sc-d { font-size: .77rem; color: var(--tx3); line-height: 1.65; }
.sc-tag { display: inline-block; margin-top: 14px; font-family: var(--font-m); font-size: .58rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; }
.chip { display: flex; align-items: center; gap: 7px; background: var(--white); border: 1px solid var(--cream); padding: 9px 16px; border-radius: 50px; font-size: .75rem; color: var(--tx2); transition: all var(--dur-f); }
.chip:hover { border-color: var(--beige); box-shadow: var(--sh1); }
.chip svg { opacity: .45; flex-shrink: 0; }

/* ── DIFFÉRENCIATION ── */
#diff { background: var(--white); }
.dg { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
.dl-list { display: flex; flex-direction: column; margin-top: 52px; }
.dli { display: flex; gap: 26px; padding: 28px 0; border-bottom: 1px solid var(--cream); }
.dli:last-child { border: none; }
.dln { font-family: var(--font-m); font-size: .62rem; color: var(--gold); letter-spacing: 1px; padding-top: 4px; flex-shrink: 0; width: 28px; }
.dlt { font-size: .88rem; font-weight: 500; color: var(--tx1); margin-bottom: 6px; }
.dld { font-size: .77rem; color: var(--tx3); line-height: 1.65; }
.drbox { background: var(--graphite); border-radius: var(--r4); padding: 52px 44px; position: sticky; top: calc(var(--nav-h) + 32px); }
.drbox-eye { font-family: var(--font-m); font-size: .55rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 18px; display: block; }
.drbox-t { font-family: var(--font-s); font-size: 1.55rem; font-weight: 300; color: #fff; line-height: 1.4; margin-bottom: 32px; }
.drbox-pts { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.drbox-pt { display: flex; gap: 12px; align-items: flex-start; }
.drbox-pt span { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.65; }
.drbox-pt span strong { color: #fff; font-weight: 400; }
.drbox-div { height: 1px; background: rgba(255,255,255,.07); margin-bottom: 24px; }

/* ── MATRICE ── */
#matrice { background: var(--off); }
.tl { position: relative; padding-left: 52px; max-width: 800px; }
.tl::before { content: ''; position: absolute; left: 0; top: 14px; bottom: 14px; width: 1px; background: linear-gradient(to bottom,var(--gold),rgba(184,153,106,.1)); }
.tlph { position: relative; margin-bottom: 56px; }
.tlph:last-child { margin-bottom: 0; }
.tldot { position: absolute; left: -57px; top: 2px; width: 12px; height: 12px; border-radius: 50%; background: var(--white); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; }
.tldot::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid rgba(184,153,106,.3); }
.tldot-i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.tl-lbl { font-family: var(--font-m); font-size: .58rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.tl-t { font-family: var(--font-s); font-size: 1.25rem; font-weight: 400; color: var(--tx1); margin-bottom: 16px; }
.tl-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.tlp { background: var(--white); border: 1px solid var(--cream); padding: 7px 14px; border-radius: 50px; font-size: .74rem; color: var(--tx2); display: flex; align-items: center; gap: 6px; }
.tlp svg { opacity: .4; }

/* ── PROCESS ── */
#process { background: var(--white); }
.psteps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: var(--cream); border-radius: var(--r3); overflow: hidden; margin-top: 64px; }
.pst { background: var(--white); padding: 48px 36px; position: relative; transition: background var(--dur-f); overflow: hidden; }
.pst:hover { background: var(--off); }
.pst-n { font-family: var(--font-m); font-size: .58rem; letter-spacing: 2px; color: var(--gold); margin-bottom: 28px; display: block; }
.pst-t { font-family: var(--font-s); font-size: 1.15rem; font-weight: 400; color: var(--tx1); margin-bottom: 12px; }
.pst-d { font-size: .77rem; color: var(--tx3); line-height: 1.65; }

/* ── CADRE ── */
#cadre { background: var(--off); }
.cadre-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; background: var(--cream); border-radius: var(--r3); overflow: hidden; margin-bottom: 2px; }
.cg { background: var(--white); padding: 36px 32px; transition: background var(--dur-f); position: relative; overflow: hidden; }
.cg:hover { background: var(--off); }
.cg-eye { font-family: var(--font-m); font-size: .56rem; letter-spacing: 2px; text-transform: uppercase; color: var(--tx4); margin-bottom: 12px; display: block; }
.cg-val { font-family: var(--font-s); font-size: 1.8rem; font-weight: 300; color: var(--tx1); margin-bottom: 6px; line-height: 1; }
.cg-sub { font-size: .75rem; color: var(--tx3); line-height: 1.6; }
.rpv-table { width: 100%; border-collapse: collapse; }
.rpv-table tr { border-bottom: 1px solid var(--cream); transition: background var(--dur-f); }
.rpv-table tr:last-child { border: none; }
.rpv-table tr:hover { background: var(--off); }
.rpv-table td { padding: 14px 20px; font-size: .8rem; color: var(--tx2); vertical-align: top; }
.rpv-table td:first-child { color: var(--tx4); font-size: .74rem; width: 42%; font-family: var(--font-m); letter-spacing: .5px; }
.rpv-table td:last-child { font-weight: 400; color: var(--tx1); }
.cadre-notice { font-size: .68rem; color: var(--tx4); font-family: var(--font-m); letter-spacing: .5px; padding-top: 16px; border-top: 1px solid var(--cream); margin-top: 16px; }

/* ── CALCULATEUR ── */
#calc { background: var(--white); }
.calc-lay { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.calc-panel { background: var(--off); border: 1px solid var(--cream); border-radius: var(--r4); padding: 48px; }
.cpt { font-family: var(--font-s); font-size: 1.4rem; font-weight: 300; color: var(--tx1); margin-bottom: 6px; }
.cps { font-size: .77rem; color: var(--tx3); margin-bottom: 40px; }
.cfield { margin-bottom: 32px; }
.cftop { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.cfl { font-size: .77rem; font-weight: 500; color: var(--tx2); }
.cfv { font-family: var(--font-m); font-size: .75rem; color: var(--gold); background: var(--white); padding: 4px 12px; border-radius: 50px; border: 1px solid var(--cream); }
.cr { width: 100%; height: 2px; border-radius: 1px; outline: none; -webkit-appearance: none; cursor: pointer; background: linear-gradient(to right,var(--gold) var(--pct,50%),var(--cream) var(--pct,50%)); transition: background var(--dur-f); }
.cr::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--white); border: 2px solid var(--gold); box-shadow: 0 2px 10px rgba(0,0,0,.12); cursor: pointer; transition: transform var(--dur-f); }
.cr::-webkit-slider-thumb:hover { transform: scale(1.2); }
.cr:focus::-webkit-slider-thumb { box-shadow: 0 0 0 4px rgba(184,153,106,.2), 0 2px 10px rgba(0,0,0,.12); }
.calc-res { background: var(--graphite); border-radius: var(--r4); padding: 48px; position: sticky; top: calc(var(--nav-h) + 32px); }
.crl { font-family: var(--font-m); font-size: .56rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 14px; display: block; }
.cra { font-family: var(--font-s); font-size: 3.2rem; font-weight: 300; color: #fff; line-height: 1; margin-bottom: 8px; transition: color var(--dur), transform var(--dur-f) var(--ease); }
.cra.hi { color: var(--gold); }
.crn { font-size: .7rem; color: rgba(255,255,255,.28); margin-bottom: 36px; line-height: 1.65; }
.crbar-row { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.crbar-top { display: flex; justify-content: space-between; }
.crbar-nm { font-size: .7rem; color: rgba(255,255,255,.38); }
.crbar-pct { font-family: var(--font-m); font-size: .62rem; color: rgba(255,255,255,.25); }
.crbar-tr { height: 3px; background: rgba(255,255,255,.07); border-radius: 2px; overflow: hidden; }
.crbar-fi { height: 100%; border-radius: 2px; transition: width .6s var(--ease); }
.crbar-fi.g { background: var(--gold); } .crbar-fi.w { background: rgba(255,255,255,.3); }
.cr-disc { font-size: .65rem; color: rgba(255,255,255,.18); line-height: 1.72; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.06); margin-top: 6px; }

/* ── DIAGNOSTIC ── */
#diag { background: var(--off); }
.dw { background: var(--graphite); border-radius: var(--r4); padding: 72px 64px; }
.dprog { display: flex; gap: 6px; margin-bottom: 56px; }
.dpb { flex: 1; height: 2px; background: rgba(255,255,255,.08); border-radius: 1px; transition: background var(--dur); }
.dpb.on { background: var(--gold); } .dpb.dn { background: rgba(184,153,106,.35); }
.dlbl { font-family: var(--font-m); font-size: .56rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 12px; display: block; }
.dtxt { font-family: var(--font-s); font-size: clamp(1.4rem,3vw,2.1rem); font-weight: 300; color: #fff; margin-bottom: 36px; line-height: 1.3; }
.dopts { display: flex; flex-wrap: wrap; gap: 10px; }
.dopt { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.58); padding: 12px 20px; border-radius: var(--r1); font-size: .8rem; cursor: pointer; transition: all var(--dur-f); }
.dopt:hover, .dopt.s { background: var(--gold-a); border-color: var(--gold-b); color: #fff; }
.drv { font-family: var(--font-s); font-size: 2.4rem; color: var(--gold); margin-bottom: 16px; font-weight: 300; }
.dnav { display: flex; justify-content: space-between; align-items: center; margin-top: 44px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.07); }
.dbk { color: rgba(255,255,255,.3); font-size: .76rem; display: flex; align-items: center; gap: 6px; transition: color var(--dur-f); }
.dbk:hover { color: rgba(255,255,255,.6); }
.sw { display: grid; grid-template-columns: 210px 1fr; gap: 52px; align-items: center; }
.srw { position: relative; width: 200px; height: 200px; }
.srw svg { transform: rotate(-90deg); }
.sc-c { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.scn { font-family: var(--font-s); font-size: 3rem; font-weight: 300; color: #fff; line-height: 1; }
.scd { font-size: .7rem; color: rgba(255,255,255,.28); margin-top: 3px; }
.s-lbl { font-family: var(--font-s); font-size: 1.6rem; font-weight: 300; margin-bottom: 12px; }
.s-d { font-size: .8rem; color: rgba(255,255,255,.42); line-height: 1.75; margin-bottom: 28px; max-width: 420px; }
.scts { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── URGENCE ── */
#urgence { background: var(--graphite); position: relative; overflow: hidden; }
.ub { position: absolute; inset: 0; pointer-events: none; }
.ub1 { background: radial-gradient(ellipse at 50% 40%,rgba(168,50,50,.1),transparent 65%); }
.uc { position: relative; z-index: 1; max-width: 740px; margin: 0 auto; text-align: center; }
.ubdg { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border: 1px solid rgba(168,50,50,.25); border-radius: 50px; margin-bottom: 28px; }
.ubdot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; }
.ubtxt { font-family: var(--font-m); font-size: .58rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(168,50,50,.8); }
.uh { font-family: var(--font-s); font-size: clamp(2rem,4.5vw,3.6rem); color: #fff; font-weight: 300; line-height: 1.15; margin-bottom: 16px; letter-spacing: -.3px; }
.us { font-size: .96rem; color: rgba(255,255,255,.38); margin-bottom: 48px; line-height: 1.8; max-width: 520px; margin-left: auto; margin-right: auto; }
.uchips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 48px; }
.uchip { background: rgba(168,50,50,.08); border: 1px solid rgba(168,50,50,.18); color: rgba(255,255,255,.55); padding: 8px 16px; border-radius: 50px; font-size: .75rem; transition: all var(--dur-f); }
.uchip:hover { background: rgba(168,50,50,.14); border-color: rgba(168,50,50,.28); color: rgba(255,255,255,.75); }
.ucts { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ure { margin-top: 32px; font-size: .7rem; color: rgba(255,255,255,.2); font-family: var(--font-m); letter-spacing: .5px; }

/* ── COMMERCIAL ── */
#commercial { background: var(--graphite); position: relative; overflow: hidden; }
.com-bg-grid { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px); background-size: 100px 100px; }
.com-bg-accent { position: absolute; top: -20%; right: -5%; width: 600px; height: 600px; background: radial-gradient(ellipse,rgba(184,153,106,.06),transparent 65%); pointer-events: none; }
.com-layout { display: grid; grid-template-columns: 1fr 480px; gap: 80px; align-items: center; position: relative; z-index: 1; }
.com-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border: 1px solid rgba(184,153,106,.22); border-radius: 50px; margin-bottom: 32px; }
.com-badge-line { width: 20px; height: 1px; background: var(--gold); }
.com-badge-txt { font-family: var(--font-m); font-size: .58rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.4); }
.com-h { font-family: var(--font-s); font-size: clamp(2.4rem,5vw,4.2rem); font-weight: 300; color: #fff; line-height: 1.06; letter-spacing: -1px; margin-bottom: 20px; }
.com-h span { color: var(--gold); }
.com-sub { font-size: .96rem; color: rgba(255,255,255,.38); line-height: 1.78; margin-bottom: 20px; max-width: 520px; }
.com-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.com-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.06); border-radius: var(--r2); overflow: hidden; margin-top: 52px; }
.com-stat { background: rgba(255,255,255,.02); padding: 20px 18px; text-align: center; }
.com-stat-n { font-family: var(--font-s); font-size: 1.9rem; font-weight: 300; color: #fff; line-height: 1; margin-bottom: 5px; }
.com-stat-l { font-family: var(--font-m); font-size: .56rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.28); }
.com-panel { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 32px; backdrop-filter: blur(12px); }
.com-panel-label { font-family: var(--font-m); font-size: .56rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 20px; display: block; }
.com-assets { display: flex; flex-direction: column; gap: 0; }
.com-asset { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06); transition: all var(--dur-f); cursor: default; }
.com-asset:last-child { border: none; } .com-asset:hover { padding-left: 6px; }
.com-asset-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); opacity: .5; flex-shrink: 0; transition: all var(--dur-f); }
.com-asset:hover .com-asset-dot { opacity: 1; transform: scale(1.5); }
.com-asset-name { font-size: .82rem; color: rgba(255,255,255,.55); transition: color var(--dur-f); }
.com-asset:hover .com-asset-name { color: rgba(255,255,255,.85); }
.com-asset-tag { margin-left: auto; font-family: var(--font-m); font-size: .54rem; letter-spacing: 1px; color: rgba(184,153,106,.45); }

/* ── BRIDGE ── */
#bridge { background: var(--graphite); position: relative; overflow: hidden; }
.bridge-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 30% 60%,rgba(184,153,106,.05),transparent 60%); }
.bridge-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.bridge-h { font-family: var(--font-s); font-size: clamp(2rem,3.5vw,3rem); font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 20px; letter-spacing: -.4px; }
.bridge-sub { font-size: .9rem; color: rgba(255,255,255,.38); line-height: 1.8; margin-bottom: 36px; }
.bridge-points { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.bridge-pt { display: flex; align-items: flex-start; gap: 12px; font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.6; }
.bridge-pt svg { flex-shrink: 0; margin-top: 2px; } .bridge-pt strong { color: rgba(255,255,255,.8); font-weight: 400; }
.bridge-visual { display: flex; flex-direction: column; align-items: center; gap: 0; }
.bv-step { width: 100%; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r2); padding: 22px 28px; display: flex; align-items: center; gap: 18px; transition: all var(--dur-f); }
.bv-step:hover { background: rgba(255,255,255,.06); border-color: rgba(184,153,106,.2); }
.bv-step.highlight { border-color: rgba(184,153,106,.3); background: rgba(184,153,106,.05); }
.bv-num { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(184,153,106,.35); display: flex; align-items: center; justify-content: center; font-family: var(--font-m); font-size: .62rem; color: var(--gold); flex-shrink: 0; }
.bv-step.highlight .bv-num { background: rgba(184,153,106,.15); border-color: var(--gold); }
.bv-step-lbl { font-family: var(--font-m); font-size: .56rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 4px; }
.bv-step-title { font-size: .86rem; font-weight: 500; color: rgba(255,255,255,.75); }
.bv-step-sub { font-size: .73rem; color: rgba(255,255,255,.35); margin-top: 2px; }
.bv-connector { width: 1px; height: 28px; background: linear-gradient(to bottom,rgba(184,153,106,.3),rgba(184,153,106,.1)); margin: 0 auto; }
.bv-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 24px; justify-content: center; }
.bv-tag { background: rgba(184,153,106,.08); border: 1px solid rgba(184,153,106,.18); padding: 6px 14px; border-radius: 50px; font-family: var(--font-m); font-size: .6rem; letter-spacing: 1px; color: rgba(184,153,106,.7); }

/* ── COM-TYPES ── */
#com-types { background: var(--off); }
.com-types-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--cream); border-radius: var(--r3); overflow: hidden; margin-top: 56px; }
.ct-card { background: var(--white); padding: 40px 32px; position: relative; transition: background var(--dur-f); overflow: hidden; cursor: default; }
.ct-card:hover { background: var(--off); }
.ct-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,var(--gold),var(--gold2)); transform: scaleX(0); transition: transform var(--dur) var(--ease); transform-origin: left; }
.ct-card:hover::after { transform: scaleX(1); }
.ct-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at var(--mx,50%) var(--my,50%),rgba(184,153,106,.05),transparent 60%); opacity: 0; transition: opacity var(--dur-f); pointer-events: none; }
.ct-card:hover::before { opacity: 1; }
.ct-num { font-family: var(--font-m); font-size: .56rem; letter-spacing: 2px; color: var(--gold); margin-bottom: 20px; display: block; opacity: .6; }
.ct-icon { margin-bottom: 18px; } .ct-title { font-family: var(--font-s); font-size: 1.2rem; font-weight: 400; color: var(--tx1); margin-bottom: 10px; } .ct-desc { font-size: .77rem; color: var(--tx3); line-height: 1.65; margin-bottom: 14px; } .ct-tag { font-family: var(--font-m); font-size: .56rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); opacity: .7; }

/* ── COM-INV ── */
#com-inv { background: var(--off); }
.inv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 56px; }
.inv-card { background: var(--white); border: 1px solid var(--cream); border-radius: var(--r3); padding: 32px 28px; transition: all var(--dur-f); position: relative; overflow: hidden; }
.inv-card:hover { box-shadow: var(--sh3); transform: translateY(-3px); border-color: var(--beige); }
.inv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,var(--gold),transparent); opacity: 0; transition: opacity var(--dur); }
.inv-card:hover::before { opacity: 1; }
.inv-card::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at var(--mx,50%) var(--my,50%),rgba(184,153,106,.05),transparent 60%); opacity: 0; transition: opacity var(--dur-f); pointer-events: none; }
.inv-card:hover::after { opacity: 1; }
.inv-icon { margin-bottom: 18px; } .inv-title { font-family: var(--font-s); font-size: 1.1rem; font-weight: 400; color: var(--tx1); margin-bottom: 8px; } .inv-desc { font-size: .76rem; color: var(--tx3); line-height: 1.65; } .inv-note { margin-top: 12px; font-family: var(--font-m); font-size: .58rem; letter-spacing: 1px; color: var(--gold); opacity: .7; }

/* ── CONSTRUCTION ── */
#com-construction { background: var(--white); }
.con-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.con-phases { display: flex; flex-direction: column; gap: 0; margin-top: 36px; }
.con-phase { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--cream); }
.con-phase:last-child { border: none; }
.con-phase-num { font-family: var(--font-m); font-size: .58rem; color: var(--gold); letter-spacing: 1px; padding-top: 3px; flex-shrink: 0; width: 24px; }
.con-phase-title { font-size: .86rem; font-weight: 500; color: var(--tx1); margin-bottom: 4px; } .con-phase-desc { font-size: .76rem; color: var(--tx3); line-height: 1.6; }
.con-visual { background: var(--graphite); border-radius: var(--r3); padding: 40px; position: sticky; top: calc(var(--nav-h) + 32px); }
.con-vis-label { font-family: var(--font-m); font-size: .56rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 24px; display: block; }
.con-bars { display: flex; flex-direction: column; gap: 14px; }
.con-bar-header { display: flex; justify-content: space-between; margin-bottom: 6px; }
.con-bar-name { font-size: .75rem; color: rgba(255,255,255,.5); } .con-bar-pct { font-family: var(--font-m); font-size: .62rem; color: rgba(255,255,255,.3); }
.con-bar-track { height: 3px; background: rgba(255,255,255,.07); border-radius: 2px; overflow: hidden; }
.con-bar-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg,var(--gold),var(--gold2)); }
.con-note { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.07); font-size: .68rem; color: rgba(255,255,255,.2); line-height: 1.7; }

/* ── COM-CTA ── */
#com-cta { background: var(--off); }
.com-cta-inner { background: var(--graphite); border-radius: var(--r4); padding: 72px 64px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; position: relative; overflow: hidden; }
.com-cta-inner::before { content: ''; position: absolute; top: -30%; right: -5%; width: 500px; height: 500px; background: radial-gradient(ellipse,rgba(184,153,106,.07),transparent 65%); pointer-events: none; }
.com-cta-left { position: relative; z-index: 1; }
.com-cta-eye { font-family: var(--font-m); font-size: .58rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 14px; display: block; }
.com-cta-h { font-family: var(--font-s); font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 300; color: #fff; line-height: 1.15; margin-bottom: 10px; }
.com-cta-sub { font-size: .82rem; color: rgba(255,255,255,.35); }
.com-cta-right { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; position: relative; z-index: 1; flex-shrink: 0; }

/* ── INVOLVE ZONES ── */
.involve-zone { background: var(--white); border: 1px solid var(--cream); border-radius: var(--r4); padding: 48px; }
.involve-zone-title { font-family: var(--font-s); font-size: 1.4rem; font-weight: 300; margin-bottom: 6px; }
.involve-zone-sub { font-size: .77rem; color: var(--tx3); margin-bottom: 32px; }
.involve-ph { border: 1.5px dashed var(--cream); border-radius: var(--r2); padding: 56px 32px; text-align: center; background: var(--off); }
.involve-ph-label { font-family: var(--font-m); font-size: .6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.involve-ph-sub { font-size: .73rem; color: var(--tx4); line-height: 1.65; }

/* ── TRANSFORMATIONS ── */
#transfo { background: var(--white); }
.tg { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.tc { background: var(--off); border: 1px solid var(--cream); border-radius: var(--r3); padding: 36px; transition: all var(--dur-f); position: relative; overflow: hidden; }
.tc::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,var(--gold),var(--gold2)); transform: scaleX(0); transition: transform var(--dur) var(--ease); transform-origin: left; }
.tc:hover { box-shadow: 0 16px 56px rgba(0,0,0,.1); transform: translateY(-2px); }
.tc:hover::before { transform: scaleX(1); }
.tc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.tc-av { display: flex; align-items: center; gap: 12px; }
.tc-ava { width: 40px; height: 40px; background: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tc-nm { font-size: .88rem; font-weight: 500; } .tc-loc { font-size: .7rem; color: var(--tx3); margin-top: 1px; }
.tc-bdg { font-family: var(--font-m); font-size: .58rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); background: var(--white); padding: 4px 10px; border-radius: 50px; border: 1px solid var(--cream); }
.tc-q { font-size: .8rem; color: var(--tx3); line-height: 1.72; margin-bottom: 18px; font-style: italic; }
.tc-stats { display: grid; grid-template-columns: repeat(3,1fr); background: var(--white); border-radius: var(--r2); overflow: hidden; border: 1px solid var(--cream); }
.tcs { padding: 16px; text-align: center; border-right: 1px solid var(--cream); }
.tcs:last-child { border: none; }
.tcsv { font-family: var(--font-s); font-size: 1.2rem; font-weight: 400; color: var(--tx1); display: block; }
.tcsv.pos { color: var(--green); }
.tcsl { font-size: .58rem; color: var(--tx4); text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-m); margin-top: 2px; }
.transfo-notice { text-align: center; margin-top: 24px; font-size: .65rem; color: var(--tx4); font-family: var(--font-m); }

/* ── FAQ ── */
#faq { background: var(--off); }
.flay { display: grid; grid-template-columns: 360px 1fr; gap: 88px; align-items: start; }
.fsi { position: sticky; top: calc(var(--nav-h) + 32px); }
.flist { display: flex; flex-direction: column; }
.fi { border-bottom: 1px solid var(--cream); }
.fq { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 22px 0; cursor: pointer; }
.fqt { font-size: .86rem; font-weight: 400; color: var(--tx1); line-height: 1.45; }
.ftog { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--cream); display: flex; align-items: center; justify-content: center; color: var(--tx3); transition: all var(--dur-f); font-size: 1rem; font-weight: 300; }
.fi.open .ftog { background: var(--graphite); border-color: var(--graphite); color: #fff; transform: rotate(45deg); }
.fa { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.fai { padding-bottom: 18px; font-size: .78rem; color: var(--tx3); line-height: 1.75; }
.fi.open .fa { max-height: 280px; }

/* ── ÉCOSYSTÈME ── */
#eco { background: var(--g2); overflow: hidden; }
.eco-hrow { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; }
.eco-intro { font-size: .8rem; color: rgba(255,255,255,.3); max-width: 360px; line-height: 1.72; margin-top: 14px; }
.eco-outer { overflow: hidden; }
.eco-track { display: flex; gap: 14px; transition: transform .55s var(--ease); cursor: grab; user-select: none; }
.eco-track.grab { cursor: grabbing; }
.ecard { flex: 0 0 210px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r3); padding: 26px 22px; transition: all var(--dur-f); position: relative; overflow: hidden; }
.ecard::before { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg,transparent 40%,rgba(255,255,255,.03) 50%,transparent 60%); transform: translateX(-100%); transition: transform .6s var(--ease); }
.ecard:hover::before { transform: translateX(100%); }
.ecard:hover { background: rgba(255,255,255,.06); border-color: rgba(184,153,106,.18); }
.ecard.main { border-color: rgba(184,153,106,.22); background: rgba(184,153,106,.04); }
.ebox { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-family: var(--font-m); font-size: .65rem; color: rgba(255,255,255,.5); letter-spacing: .5px; }
/* ─ NOTE: Remplacer le contenu .ebox par les vrais logos dans /assets/logos/ ─ */
.en { font-size: .8rem; font-weight: 500; color: #fff; margin-bottom: 4px; line-height: 1.35; }
.ecat { font-family: var(--font-m); font-size: .54rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.22); margin-bottom: 10px; }
.eact { font-family: var(--font-m); font-size: .57rem; letter-spacing: .8px; color: rgba(184,153,106,.45); }
/* ─ NOTE: Ajouter href aux .eact quand les liens des verticales sont disponibles ─ */
.eco-ctl { display: flex; align-items: center; gap: 10px; margin-top: 28px; }
.ecob { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.45); display: flex; align-items: center; justify-content: center; transition: all var(--dur-f); }
.ecob:hover { border-color: rgba(255,255,255,.25); color: #fff; }
.ecodots { display: flex; gap: 5px; }
.ecod { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.1); cursor: pointer; transition: all var(--dur-f); }
.ecod.on { width: 14px; border-radius: 3px; background: var(--gold); }

/* ── CONTACT ── */
#contact { background: var(--off); }
.cog { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.ci-t { font-family: var(--font-s); font-size: 1.6rem; font-weight: 300; margin-bottom: 14px; }
.ci-s { font-size: .8rem; color: var(--tx3); line-height: 1.75; margin-bottom: 40px; }
.cmethods { display: flex; flex-direction: column; gap: 12px; }
.cm { display: flex; align-items: center; gap: 16px; background: var(--white); border: 1px solid var(--cream); border-radius: var(--r2); padding: 17px 20px; transition: all var(--dur-f); }
.cm:hover { border-color: var(--beige); box-shadow: var(--sh1); }
.cmic { width: 38px; height: 38px; background: var(--off); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--cream); }
.cml { font-family: var(--font-m); font-size: .56rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--tx4); margin-bottom: 3px; }
.cmv { font-size: .86rem; font-weight: 400; color: var(--tx1); }
.cma { margin-left: auto; color: var(--tx4); transition: all var(--dur-f); }
.cm:hover .cma { transform: translateX(3px); color: var(--tx2); }
.cm-map { display: flex; align-items: center; gap: 16px; background: var(--graphite); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r2); padding: 17px 20px; transition: all var(--dur-f); }
.cm-map:hover { border-color: var(--gold-b); }
.cm-map .cmic { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.08); }
.cm-map .cml { color: rgba(255,255,255,.22); } .cm-map .cmv { color: #fff; }
.cm-map .cma { color: rgba(255,255,255,.2); } .cm-map:hover .cma { color: var(--gold); }

/* ── FOOTER ── */
footer { background: var(--graphite); border-top: 1px solid rgba(255,255,255,.05); padding: 64px 0 36px; }
.fg { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 52px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.05); margin-bottom: 28px; }
.fb-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.fb-n { font-family: var(--font-s); font-size: .95rem; color: #fff; letter-spacing: 1px; }
.fb-d { font-size: .74rem; color: rgba(255,255,255,.28); line-height: 1.72; max-width: 220px; margin-bottom: 18px; }
.fb-r { font-family: var(--font-m); font-size: .58rem; color: rgba(255,255,255,.18); line-height: 1.65; }
.fc-t { font-family: var(--font-m); font-size: .54rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.22); margin-bottom: 18px; }
.fc ul { display: flex; flex-direction: column; gap: 10px; }
.fc ul li a { font-size: .76rem; color: rgba(255,255,255,.32); transition: color var(--dur-f); }
.fc ul li a:hover { color: rgba(255,255,255,.7); }
.fbot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.fbot-l { font-size: .68rem; color: rgba(255,255,255,.18); }
.fbot-r { font-family: var(--font-m); font-size: .56rem; color: rgba(255,255,255,.13); }
.fdisc { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.04); font-size: .6rem; color: rgba(255,255,255,.14); line-height: 1.82; }

/* ================================================
   TYPOGRAPHIE — HARMONISATION GLOBALE v2
   Correction lisibilité, cohérence, tailles min
   ================================================ */

/* ── TAILLES MINIMUM GLOBALES ── */
body {
  font-size: 16px;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}

/* Aucun texte sous 12px sur le site */
* { min-font-size: unset; }

/* ── CORPS DE TEXTE — normalisation ── */
p, li, span, div {
  font-size: inherit;
}

/* ── TEXTES TROP PETITS — corrections ciblées ── */

/* Eyebrow / labels mono — minimum 11px */
.eye,
.eye * {
  font-size: 0.69rem;        /* 11px */
  letter-spacing: 2.5px;
}

/* Tags mono petits — minimum 11px */
.sc-tag, .ct-tag, .inv-note,
.tl-lbl, .phase-label,
.pst-n, .cg-eye, .crl,
.drbox-eye, .com-cta-eye,
.com-panel-label, .con-vis-label,
.bv-step-lbl, .hbtxt, .hml,
.com-badge-txt, .com-stat-l,
.ecat, .eact,
.fc-t, .fb-r, .fbot-l, .fbot-r,
.cadre-notice, .cr-disc,
.ure, .transfo-notice,
.involve-ph-label,
.com-form-ph-l,
.dlbl, .crbar-nm, .crbar-pct,
.hscroll-txt {
  font-size: 0.69rem !important;  /* 11px minimum */
  line-height: 1.6;
}

/* Textes corps secondaires — minimum 13px */
.sm, .sm *,
.body-sm,
.hptext span,
.rps,
.sc-d, .ct-desc, .inv-desc,
.dld, .bridge-sub,
.pst-d, .cg-sub,
.con-phase-desc,
.bridge-pt,
.bv-step-sub,
.com-asset-name,
.ci-s,
.fai,
.fb-d,
.eco-intro,
.tc-q,
.us,
.con-note,
.hpnote,
.sv-lbl,
.involve-ph-sub,
.iph-s,
.com-form-ph-s,
.s-d,
.crn {
  font-size: 0.85rem;   /* 13.6px */
  line-height: 1.72;
}

/* Textes corps principaux — 14-15px */
.lead, .lead * { font-size: 1rem; line-height: 1.78; }
.chip          { font-size: 0.8rem; }
.btn           { font-size: 0.85rem; }
.btn-sm        { font-size: 0.78rem; }
.fqt           { font-size: 0.9rem; }
.dopt          { font-size: 0.85rem; }
.pi-name       { font-size: 0.88rem; }
.pi-val        { font-size: 0.78rem; }
.sc-t, .ct-title, .inv-title { font-size: 0.92rem; }
.dlt           { font-size: 0.9rem; }
.tc-nm         { font-size: 0.9rem; }
.cmv           { font-size: 0.9rem; }
.cml           { font-size: 0.65rem; letter-spacing: 1.5px; }
.en            { font-size: 0.85rem; }

/* Valeurs display dans cards ── jamais sous 1rem */
.cg-val        { font-size: 1.9rem; }
.sv-val        { font-size: 2.2rem; }
.hmn           { font-size: 2.4rem; }
.cra           { font-size: 3.2rem; }
.drv           { font-size: 2.4rem; }

/* ── TITRES DE SECTION — cohérence ── */
.d1 { font-size: clamp(3rem, 6.5vw, 6rem);   letter-spacing: -1.5px; }
.d2 { font-size: clamp(2.2rem, 4vw, 3.8rem); letter-spacing: -0.8px; }
.d3 { font-size: clamp(1.8rem, 2.8vw, 2.6rem); letter-spacing: -0.4px; }

/* Titres dans composants */
.hpanel-title  { font-size: 1.1rem; line-height: 1.45; }
.tl-t          { font-size: 1.25rem; }
.bridge-h      { font-size: clamp(1.9rem, 3vw, 2.8rem); }
.ci-t          { font-size: 1.6rem; }
.drbox-t       { font-size: 1.5rem; line-height: 1.45; }
.com-h         { font-size: clamp(2.2rem, 4.5vw, 4rem); }
.rh            { font-size: clamp(2.2rem, 5vw, 4rem); }
.uh            { font-size: clamp(1.9rem, 4vw, 3.4rem); }

/* ── INVOLVE EMBED — typo harmonisée ── */
.involveme_embed,
.involveme_embed * {
  font-family: var(--font-b) !important;
}

/* ── ESPACEMENTS — cohérence verticale ── */
.section-intro-block { margin-bottom: 64px; }

/* ── FOOTER typo ── */
.fc ul li a { font-size: 0.8rem; }
.fdisc      { font-size: 0.65rem; line-height: 1.8; }

/* ── MOBILE — tailles adaptées ── */
@media (max-width: 768px) {
  body { font-size: 15px; }

  .d1 { font-size: clamp(2.4rem, 9vw, 3.2rem); letter-spacing: -1px; }
  .d2 { font-size: clamp(1.9rem, 7vw, 2.6rem); letter-spacing: -0.5px; }
  .d3 { font-size: clamp(1.6rem, 5.5vw, 2rem); }

  /* Textes corps mobile — jamais sous 14px */
  .sc-d, .ct-desc, .inv-desc,
  .dld, .bridge-sub, .pst-d,
  .cg-sub, .con-phase-desc,
  .ci-s, .fai, .fb-d,
  .eco-intro, .tc-q, .us,
  .hpnote, .sv-lbl, .s-d { font-size: 0.88rem; }

  /* Chips et tags mobiles */
  .chip  { font-size: 0.8rem; padding: 9px 16px; }
  .tlp   { font-size: 0.78rem; }

  /* Boutons mobiles — plus grands pour clic */
  .btn    { font-size: 0.88rem; padding: 15px 28px; }
  .btn-sm { font-size: 0.82rem; padding: 12px 22px; }
  .btn-lg { font-size: 0.92rem; padding: 17px 32px; }

  /* Valeurs monétaires mobiles */
  .cra  { font-size: 2.6rem; }
  .hmn  { font-size: 2rem; }
  .sv-val { font-size: 1.9rem; }
  .cg-val { font-size: 1.6rem; }

  /* Labels mono mobiles — toujours lisibles */
  .eye { font-size: 0.65rem; letter-spacing: 2px; }
  .pst-n, .tl-lbl, .crl { font-size: 0.65rem; }

  /* Diagnostic mobile */
  .dtxt { font-size: clamp(1.3rem, 5.5vw, 1.8rem); }
  .dopt { font-size: 0.85rem; padding: 13px 18px; }

  /* FAQ mobile */
  .fqt { font-size: 0.88rem; }
  .fai { font-size: 0.84rem; line-height: 1.75; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .hh  { letter-spacing: -0.5px; }
  .hs  { font-size: 0.96rem; }
  .hptex strong { font-size: 0.82rem; }
  .hptext span  { font-size: 0.75rem; }
  .bv-step-title { font-size: 0.84rem; }
  .rpn { font-size: 0.95rem; }
  .rps { font-size: 0.8rem; }
  .com-stat-n { font-size: 1.6rem; }
  .pt-val { font-size: 1.75rem; }
}
