/* ============================================================
   ShieldIT Sàrl — shieldit.ch — feuille de styles partagée
   Refonte V2 (design handoff design_handoff_site_shieldit)
   ============================================================ */

:root {
  --bg: #08090C;
  --panel: #0C0E13;
  --panel-h: #11141B;
  --light: #F5F3EE;
  --ink: #14151A;
  --paper: #F4F2ED;
  --green: #5CB246;
  --green-l: #8FD874;
  --green-d: #47892F;
  --serif: 'Instrument Serif', Georgia, serif;
  --mono: ui-monospace, 'SF Mono', Menlo, monospace;
  --hair-d: rgba(244,242,237,.08);
  --hair-d2: rgba(244,242,237,.12);
  --hair-l: rgba(20,21,26,.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--green); color: #0A0B0F; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--green); }
img { max-width: 100%; }
input, select, textarea, button { font-family: inherit; }
input::placeholder, textarea::placeholder { color: rgba(244,242,237,.4); }

.wrap { max-width: 1280px; margin: 0 auto; width: 100%; }

/* ---------- Animations ---------- */
@keyframes heroUp { from { opacity: 0; transform: translateY(46px); } to { opacity: 1; transform: translateY(0); } }
@keyframes rise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes kenburnsHome { from { transform: scale(1.02); } to { transform: scale(1.12); } }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.1); } }
@keyframes auroraA { from { transform: translate3d(-4vw,-2vh,0) scale(1); } to { transform: translate3d(7vw,7vh,0) scale(1.18); } }
@keyframes auroraB { from { transform: translate3d(3vw,4vh,0) scale(1.1); } to { transform: translate3d(-6vw,-5vh,0) scale(0.95); } }
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@keyframes introLogo { from { opacity: 0; transform: scale(.8) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes introBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes introRing { 0% { transform: scale(.6); opacity: 0; } 40% { opacity: .55; } 100% { transform: scale(1.9); opacity: 0; } }

/* ---------- Barre de progression de lecture ---------- */
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--green), var(--green-l));
  z-index: 3000;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px 4vw;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease;
}
.nav.scrolled, .nav.menu-open {
  background: rgba(8,9,12,.8);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: rgba(244,242,237,.1);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 27px; height: 28px; display: block; filter: brightness(1.6) drop-shadow(0 0 5px rgba(244,242,237,.18)); }
.nav-word { font-size: 20px; letter-spacing: -0.02em; font-weight: 700; color: var(--paper); }
.nav-word .green { color: var(--green); }
.nav-sub { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(244,242,237,.45); }
.nav-links { display: flex; align-items: center; gap: 26px; justify-content: flex-end; }
.nav-link {
  white-space: nowrap; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(244,242,237,.72); border-bottom: 2px solid transparent; padding-bottom: 3px;
}
.nav-link:hover { color: var(--green-l); }
.nav-link.active { color: var(--green-l); border-bottom-color: var(--green); }
.nav-cta {
  white-space: nowrap; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  color: var(--paper); border: 1px solid var(--green); border-radius: 999px; padding: 10px 18px;
  transition: all .3s ease;
}
.nav-cta:hover { background: var(--green); color: #0A0B0F; }

/* Burger */
.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 12px 10px;
  background: rgba(12,14,19,.6); border: 1px solid rgba(244,242,237,.2); border-radius: 12px;
  cursor: pointer; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.burger span { height: 2px; width: 100%; background: var(--paper); border-radius: 2px; transition: transform .35s ease, opacity .25s ease; }
.burger.open { gap: 0; }
.burger.open span:nth-child(1) { transform: translateY(1px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-3px) rotate(-45deg); }

/* Menu mobile plein écran */
.mobile-menu {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(8,9,12,.97);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 110px 8vw 40px; overflow-y: auto;
  opacity: 0; transition: opacity .35s ease;
}
.mobile-menu.open { opacity: 1; }
.mm-links { display: flex; flex-direction: column; gap: 4px; }
.mm-link { display: flex; align-items: baseline; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--hair-d); }
.mm-link:last-child { border-bottom: none; }
.mm-num { font-family: var(--mono); font-size: 11px; color: var(--green); }
.mm-name { font-family: var(--serif); font-size: clamp(28px, 6vw, 38px); color: var(--paper); }
.mm-link.active .mm-name { color: var(--green-l); }
.mm-foot { display: flex; flex-direction: column; gap: 18px; margin-top: 40px; }
.mm-cta {
  display: block; text-align: center; background: var(--green); color: #0A0B0F;
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 17px 28px; border-radius: 999px;
}
.mm-cta:hover { color: #0A0B0F; }
.mm-meta { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 12px; color: rgba(244,242,237,.5); }
.mm-meta a { color: var(--green-l); }

/* Rideau de transition de page */
.curtain {
  position: fixed; inset: 0; z-index: 4500; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transform: translateY(101%);
  transition: transform .5s cubic-bezier(.65,0,.35,1);
  pointer-events: none;
}
.curtain.active { transform: translateY(0); }
.curtain img { width: 46px; height: 48px; filter: brightness(1.6) drop-shadow(0 0 12px rgba(92,178,70,.35)); }

/* Grain */
.grain {
  position: fixed; inset: 0; z-index: 5000; pointer-events: none; opacity: .05;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%22160%22 height=%22160%22><filter id=%22n%22><feTurbulence type=%22fractalNoise%22 baseFrequency=%220.9%22 numOctaves=%222%22/></filter><rect width=%22160%22 height=%22160%22 filter=%22url(%23n)%22 opacity=%220.6%22/></svg>');
}

/* ---------- Intro de chargement (accueil) ---------- */
.intro {
  position: fixed; inset: 0; z-index: 4000; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transform: translateY(0);
  transition: transform .75s cubic-bezier(.65,0,.35,1);
  pointer-events: none;
}
.intro.leave { transform: translateY(-100%); }
.intro-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; animation: introLogo .9s cubic-bezier(.2,.7,.2,1) both; }
.intro-badge { position: relative; display: flex; align-items: center; justify-content: center; }
.intro-ring { position: absolute; width: 110px; height: 110px; border: 1px solid var(--green); border-radius: 50%; animation: introRing 1.6s cubic-bezier(.2,.7,.2,1) .3s infinite; }
.intro-badge img { width: 62px; height: 64px; filter: brightness(1.6) drop-shadow(0 0 14px rgba(92,178,70,.35)); }
.intro-word { font-size: 26px; letter-spacing: -0.02em; font-weight: 700; color: var(--paper); }
.intro-word .green { color: var(--green); }
.intro-bar { width: 150px; height: 1px; background: rgba(244,242,237,.14); overflow: hidden; }
.intro-bar div { height: 100%; background: linear-gradient(90deg, var(--green), var(--green-l)); transform-origin: left; animation: introBar 1.5s cubic-bezier(.4,0,.2,1) both; }
.intro-tag { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(244,242,237,.4); }

/* ---------- Héros ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; background: var(--bg);
  padding: 150px 6vw 60px;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 38%;
  filter: brightness(.8) saturate(1.08) contrast(1.02);
  animation: kenburnsHome 26s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,9,12,.68) 0%, rgba(8,9,12,.22) 48%, rgba(8,9,12,.9) 100%); }
.hero-vignette { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 55% at 30% 60%, transparent 40%, rgba(8,9,12,.32) 100%); }
.aurora-a, .aurora-b { position: absolute; border-radius: 50%; }
.aurora-a {
  top: -18%; left: -12%; width: 58vw; height: 58vw;
  background: radial-gradient(circle at 35% 35%, rgba(92,178,70,.22), transparent 62%);
  filter: blur(70px); animation: auroraA 16s ease-in-out infinite alternate;
}
.aurora-b {
  bottom: -25%; right: -10%; width: 52vw; height: 52vw;
  background: radial-gradient(circle at 60% 60%, rgba(96,124,168,.2), transparent 60%);
  filter: blur(80px); animation: auroraB 20s ease-in-out infinite alternate;
}
.hero-content { position: relative; max-width: 1280px; width: 100%; margin: 0 auto; }
.hero-badge { display: flex; align-items: center; gap: 14px; animation: heroUp .9s cubic-bezier(.2,.7,.2,1) .05s both; }
.hero-badge .diamond { width: 8px; height: 8px; background: var(--green); transform: rotate(45deg); display: inline-block; }
.hero-badge span:last-child { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(244,242,237,.68); }
.hero h1 {
  margin: 28px 0 0; font-weight: 400; letter-spacing: -0.015em; line-height: 0.98;
  font-family: var(--serif); font-size: clamp(42px, 9vw, 144px);
  text-shadow: 0 2px 40px rgba(8,9,12,.5);
}
.hero h1 .l1 { display: block; animation: heroUp 1s cubic-bezier(.2,.7,.2,1) .18s both; }
.hero h1 .l2 { display: block; font-style: italic; color: var(--green-l); animation: heroUp 1s cubic-bezier(.2,.7,.2,1) .34s both; }
.hero-lede {
  max-width: 580px; margin: 34px 0 0; font-size: 18px; line-height: 1.7;
  color: rgba(244,242,237,.72);
  animation: heroUp 1s cubic-bezier(.2,.7,.2,1) .5s both;
}
.hero-ctas { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 44px; animation: heroUp 1s cubic-bezier(.2,.7,.2,1) .64s both; }
.btn-green {
  display: inline-block; background: var(--green); color: #0A0B0F;
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 18px 32px; border-radius: 999px; transition: all .3s ease; border: none; cursor: pointer;
}
.btn-green:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(92,178,70,.4); color: #0A0B0F; }
.btn-ghost {
  display: inline-block; border: 1px solid rgba(244,242,237,.35); color: rgba(244,242,237,.9);
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 17px 30px; border-radius: 999px; transition: all .3s ease;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green-l); }
.hero-foot {
  position: relative; max-width: 1280px; width: 100%; margin: auto auto 0; padding-top: 90px;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap;
  animation: heroUp 1s ease .9s both;
}
.hero-meta { display: flex; gap: 40px; flex-wrap: wrap; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: rgba(244,242,237,.55); text-transform: uppercase; }
.hero-cue { display: flex; align-items: center; gap: 12px; color: rgba(244,242,237,.55); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }
.hero-cue .line { width: 1px; height: 44px; background: var(--green); display: inline-block; animation: cue 2.2s ease-in-out infinite; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--bg); overflow: hidden; white-space: nowrap; padding: 30px 0;
  border-top: 1px solid var(--hair-d); border-bottom: 1px solid var(--hair-d);
}
.marquee-track { display: inline-flex; animation: marquee 55s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-seq {
  display: inline-flex; align-items: center; gap: 34px; padding-right: 34px;
  font-family: var(--serif); font-style: italic; font-size: 29px; color: rgba(244,242,237,.55);
}
.marquee-seq .d { color: var(--green); font-size: 9px; font-style: normal; }

/* ---------- Labels de section ---------- */
.label-row { display: flex; align-items: center; gap: 14px; }
.label-mono { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; color: var(--green); }
.label-text { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(244,242,237,.55); }
.on-light .label-mono { color: var(--green-d); }
.on-light .label-text { color: rgba(20,21,26,.55); }

/* ---------- Sections ---------- */
.sec-light { background: var(--light); color: var(--ink); }
.sec-dark { background: var(--bg); color: var(--paper); }
.sec-panel { background: var(--panel); color: var(--paper); }

/* Reveal au scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Accueil : la fiduciaire ---------- */
.fidu { padding: 140px 6vw 110px; scroll-margin-top: 70px; }
.fidu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: clamp(40px, 6vw, 110px); margin-top: 40px; }
.fidu h2 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(36px, 5vw, 76px); line-height: 1.04; letter-spacing: -0.01em; }
.fidu h2 em, .it-d { font-style: italic; color: var(--green-d); }
.fidu-text { display: flex; flex-direction: column; gap: 22px; justify-content: center; }
.fidu-text p { margin: 0; font-size: 17px; line-height: 1.75; color: rgba(20,21,26,.72); }
.link-under {
  align-self: flex-start; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); border-bottom: 2px solid var(--green); padding-bottom: 6px;
}
.fidu-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 40px;
  margin-top: 100px; border-top: 1px solid var(--hair-l); padding-top: 50px;
}
.fs-num { font-family: var(--serif); font-size: clamp(48px, 4.4vw, 72px); line-height: 1; }
.fs-num em { font-style: italic; color: var(--green-d); }
.fs-num .sm { font-size: .55em; }
.fs-label { margin-top: 12px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(20,21,26,.55); }

/* ---------- Accueil : services (cartes sticky) ---------- */
.services { padding: 140px 6vw 120px; scroll-margin-top: 40px; }
.services-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 70px; }
.services-head h2 { margin: 26px 0 0; font-family: var(--serif); font-weight: 400; font-size: clamp(36px, 5.4vw, 80px); line-height: 1.02; letter-spacing: -0.01em; }
.services-head h2 em, .it-l { font-style: italic; color: var(--green-l); }
.services-head p { max-width: 380px; margin: 0; font-size: 15px; line-height: 1.7; color: rgba(244,242,237,.55); }
.svc-stack { display: flex; flex-direction: column; gap: 26px; }
.svc-card { display: block; color: var(--ink); position: sticky; }
.svc-card:nth-child(1) { top: 90px; }
.svc-card:nth-child(2) { top: 106px; }
.svc-card:nth-child(3) { top: 122px; }
.svc-card:nth-child(4) { top: 138px; }
.svc-card:nth-child(5) { top: 154px; }
.svc-card:hover { color: var(--ink); }
.svc-card article {
  background: var(--light); border-radius: 22px; padding: clamp(28px, 4vw, 54px);
  box-shadow: 0 -18px 60px rgba(0,0,0,.5); border: 1px solid rgba(20,21,26,.08);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.svc-card:hover article { transform: translateY(-6px); }
.svc-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(28px, 4vw, 64px); align-items: center; }
.svc-num {
  font-family: var(--serif); font-size: 80px; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(20,21,26,.32);
}
@supports not (-webkit-text-stroke: 1px black) { .svc-num { color: rgba(20,21,26,.32); } }
.svc-card h3 { margin: 20px 0 6px; font-family: var(--serif); font-weight: 400; font-size: clamp(32px, 3.2vw, 48px); line-height: 1.05; }
.svc-tag { font-family: var(--serif); font-style: italic; font-size: 21px; color: var(--green-d); }
.svc-desc { margin: 20px 0 28px; font-size: 16px; line-height: 1.7; color: rgba(20,21,26,.68); max-width: 460px; }
.svc-more { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border-bottom: 2px solid var(--green); padding-bottom: 6px; color: var(--ink); }
.svc-side { display: flex; flex-direction: column; gap: 6px; }
.svc-img { position: relative; border-radius: 14px; overflow: hidden; height: 200px; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.svc-card:hover .svc-img img { transform: scale(1.05); }
.svc-items { list-style: none; margin: 10px 0 0; padding: 0; }
.svc-items li { display: flex; gap: 14px; align-items: baseline; padding: 12px 0; border-top: 1px solid rgba(20,21,26,.14); font-size: 15px; }
.svc-items .d { color: var(--green-d); font-size: 9px; }

/* ---------- Accueil : approche ---------- */
.approche { padding: 130px 6vw 120px; border-top: 1px solid rgba(244,242,237,.07); }
.approche h2 { margin: 26px 0 70px; font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 4.6vw, 68px); line-height: 1.05; max-width: 800px; }
.ap-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1px;
  background: var(--hair-d2); border: 1px solid var(--hair-d2); border-radius: 18px; overflow: hidden;
}
.ap-cell { background: var(--panel); padding: 38px 30px 44px; transition: background .4s ease; }
.ap-cell:hover { background: var(--panel-h); }
.ap-num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; color: var(--green); }
.ap-title { margin-top: 46px; font-family: var(--serif); font-size: 30px; }
.ap-cell p { margin: 14px 0 0; font-size: 14.5px; line-height: 1.7; color: rgba(244,242,237,.58); }
.quote { margin-top: 110px; text-align: center; padding: 0 4vw; }
.quote-text { font-family: var(--serif); font-style: italic; font-size: clamp(30px, 3.6vw, 54px); line-height: 1.25; max-width: 900px; margin: 0 auto; }
.quote-text span { color: var(--green-l); }
.quote .btn-green { margin-top: 44px; padding: 18px 34px; }

/* ---------- Pages service ---------- */
.shero {
  position: relative; min-height: 64vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; background: var(--bg);
  padding: 170px 6vw 70px;
}
.shero.short { min-height: 54vh; }
.shero-media { position: absolute; inset: 0; overflow: hidden; }
.shero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.82) saturate(1.08) contrast(1.02);
  animation: kenburns 24s ease-in-out infinite alternate;
  will-change: transform;
}
.shero-media .veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,9,12,.6) 0%, rgba(8,9,12,.08) 45%, rgba(8,9,12,.9) 100%); }
.shero-content { position: relative; max-width: 1280px; width: 100%; margin: 0 auto; }
.crumbs {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,242,237,.6);
  text-shadow: 0 1px 14px rgba(8,9,12,.85);
  animation: heroUp .8s cubic-bezier(.2,.7,.2,1) .05s both;
}
.crumbs a { color: rgba(244,242,237,.6); }
.crumbs a:hover { color: var(--green-l); }
.crumbs .sep { color: var(--green); }
.crumbs .here { color: var(--green-l); }
.shero-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-top: 26px; }
.shero h1 {
  margin: 0; font-weight: 400; letter-spacing: -0.015em; line-height: 1;
  font-family: var(--serif); font-size: clamp(36px, 6.6vw, 104px);
  text-shadow: 0 2px 40px rgba(8,9,12,.5);
  animation: heroUp .9s cubic-bezier(.2,.7,.2,1) .15s both;
}
.shero h1 em { font-style: italic; color: var(--green-l); }
.shero-tag {
  margin-top: 18px; font-family: var(--serif); font-style: italic;
  font-size: clamp(20px, 2vw, 28px); color: rgba(244,242,237,.75);
  text-shadow: 0 1px 18px rgba(8,9,12,.8);
  animation: heroUp .9s cubic-bezier(.2,.7,.2,1) .28s both;
}
.shero-num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; color: rgba(244,242,237,.55); text-shadow: 0 1px 14px rgba(8,9,12,.85); animation: heroUp .9s ease .4s both; }

.svc-page { padding: 110px 6vw 120px; }
.svc-page-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: clamp(50px, 6vw, 110px); align-items: start; max-width: 1280px; margin: 0 auto; }
.svc-copy h2 { margin: 30px 0 0; font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 3.6vw, 54px); line-height: 1.08; }
.svc-copy p { margin: 22px 0 0; font-size: 17px; line-height: 1.75; color: rgba(20,21,26,.72); }
.svc-copy p:first-of-type { margin-top: 30px; }
.points {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 30px;
  margin-top: 50px; border-top: 1px solid var(--hair-l); padding-top: 34px;
}
.pt-title { font-family: var(--serif); font-size: 30px; }
.pt-desc { margin-top: 8px; font-size: 13px; line-height: 1.6; color: rgba(20,21,26,.6); }

.panel {
  position: sticky; top: 100px;
  background: var(--panel); color: var(--paper);
  border-radius: 22px; padding: clamp(30px, 3.5vw, 46px);
  box-shadow: 0 30px 80px rgba(8,9,12,.25);
}
.panel-label { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--green-l); }
.prest { list-style: none; margin: 22px 0 0; padding: 0; }
.prest li {
  display: flex; gap: 14px; align-items: baseline; padding: 13px 0;
  border-top: 1px solid var(--hair-d2); font-size: 15px; line-height: 1.5;
  transition: padding-left .3s ease;
}
.prest li:last-child { border-bottom: 1px solid var(--hair-d2); }
.prest li:hover { padding-left: 8px; }
.prest .d { color: var(--green); font-size: 9px; }
.panel .btn-green { display: block; text-align: center; margin-top: 28px; padding: 17px 28px; }
.panel .btn-green:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(92,178,70,.4); }
.panel-tel { margin-top: 16px; text-align: center; font-size: 12px; color: rgba(244,242,237,.45); }
.panel-tel a { color: var(--green-l); }

.pn-nav { border-top: 1px solid var(--hair-d); }
.pn-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; }
.pn-prev, .pn-next { padding: 54px 30px 54px 6vw; transition: background .3s ease; }
.pn-prev { border-right: 1px solid var(--hair-d); }
.pn-next { padding: 54px 6vw 54px 30px; text-align: right; }
.pn-prev:hover, .pn-next:hover { background: var(--panel); }
.pn-label { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(244,242,237,.4); }
.pn-name { margin-top: 12px; font-family: var(--serif); font-size: clamp(24px, 2.4vw, 34px); color: var(--paper); }

/* ---------- Contact ---------- */
.contact-sec { padding: 110px 6vw 130px; }
.contact-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: clamp(50px, 6vw, 100px); align-items: start; }
.contact-left h2 { margin: 30px 0 0; font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 3.6vw, 54px); line-height: 1.08; }
.contact-left .lede { margin: 26px 0 40px; font-size: 16px; line-height: 1.7; color: rgba(20,21,26,.68); max-width: 460px; }
.c-rows { display: flex; flex-direction: column; }
.c-row { display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 18px 0; border-top: 1px solid var(--hair-l); font-size: 15.5px; }
.c-row:last-child { border-bottom: 1px solid var(--hair-l); }
.c-key { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(20,21,26,.5); padding-top: 3px; }
.c-val { line-height: 1.6; }
.c-val a.tel-link { color: var(--ink); border-bottom: 1px solid var(--green); justify-self: start; }
.map-block { position: relative; margin-top: 50px; margin-right: 14px; }
.map-outline { position: absolute; inset: 0; border: 1px solid var(--green); border-radius: 16px; transform: translate(14px, 14px); }
.map-frame { position: relative; border-radius: 16px; overflow: hidden; height: 340px; border: 1px solid rgba(20,21,26,.12); }
.map-frame iframe { width: 100%; height: 100%; border: none; display: block; }
.map-meta { margin-top: 26px; display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.map-coords { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(20,21,26,.5); }
.map-dir { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); border-bottom: 2px solid var(--green); padding-bottom: 3px; }

.form-panel {
  position: sticky; top: 100px;
  background: var(--panel); color: var(--paper);
  border-radius: 22px; padding: clamp(30px, 3.5vw, 50px);
  box-shadow: 0 30px 80px rgba(8,9,12,.25);
}
.fp-title { font-family: var(--serif); font-size: 32px; }
.fp-sub { margin: 10px 0 30px; font-size: 14px; color: rgba(244,242,237,.55); line-height: 1.6; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.f-grid2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
.contact-form input, .contact-form select, .contact-form textarea {
  background: transparent; border: none; border-bottom: 1px solid rgba(244,242,237,.25);
  color: var(--paper); font-size: 15px; padding: 12px 2px; outline: none; min-width: 0;
  border-radius: 0;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-bottom-color: var(--green); }
.contact-form select { appearance: none; -webkit-appearance: none; cursor: pointer; color: rgba(244,242,237,.4); }
.contact-form select.filled { color: var(--paper); }
.contact-form select option { color: var(--ink); }
.contact-form textarea { resize: vertical; }
.fp-send { margin-top: 10px; padding: 17px 30px; }
.fp-send:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(92,178,70,.4); }
.fp-alt { font-size: 12px; color: rgba(244,242,237,.4); text-align: center; }
.fp-alt a { color: var(--green-l); }
.hp { position: absolute; left: -9999px; }
.fp-sent { text-align: center; padding: 60px 10px; }
.fp-check {
  width: 54px; height: 54px; margin: 0 auto; border-radius: 50%;
  border: 1px solid var(--green); display: flex; align-items: center; justify-content: center;
  color: var(--green-l); font-size: 22px;
}
.fp-thanks { margin-top: 26px; font-family: var(--serif); font-size: 30px; }
.fp-sent p { margin: 12px 0 0; font-size: 14.5px; color: rgba(244,242,237,.6); line-height: 1.7; }

/* ---------- FAQ ---------- */
.faq { padding: 120px 6vw 130px; border-top: 1px solid rgba(244,242,237,.07); }
.faq-wrap { max-width: 900px; margin: 0 auto; }
.faq h2 { margin: 26px 0 60px; font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 4.2vw, 60px); line-height: 1.06; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--hair-d2); }
.faq-list::after { content: ''; border-top: 1px solid var(--hair-d2); display: block; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: none; border: none; cursor: pointer; text-align: left; color: var(--paper);
  padding: 26px 4px;
}
.faq-q span:first-child { font-family: var(--serif); font-size: clamp(20px, 2.2vw, 26px); line-height: 1.3; }
.faq-pill {
  flex-shrink: 0; width: 34px; height: 34px;
  border: 1px solid rgba(244,242,237,.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--green-l);
  transition: transform .35s ease, border-color .35s ease;
}
.faq-item.open .faq-pill { transform: rotate(45deg); border-color: var(--green); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s ease; }
.faq-a p { margin: 0; padding: 0 60px 30px 4px; font-size: 15.5px; line-height: 1.75; color: rgba(244,242,237,.62); max-width: 720px; }
.faq-more { margin: 50px 0 0; font-size: 14px; color: rgba(244,242,237,.5); }
.faq-more a { color: var(--green-l); }

/* ---------- Pages légales ---------- */
.legal-hero { padding: 170px 6vw 60px; background: var(--bg); }
.legal-hero h1 { margin: 20px 0 0; font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 5vw, 72px); line-height: 1.05; }
.legal-hero h1 em { font-style: italic; color: var(--green-l); }
.legal-body { padding: 90px 6vw 110px; }
.legal-inner { max-width: 800px; margin: 0 auto; }
.legal-inner h2 { font-family: var(--serif); font-weight: 400; font-size: 30px; margin: 44px 0 14px; }
.legal-inner h2:first-child { margin-top: 0; }
.legal-inner p, .legal-inner li { font-size: 15.5px; line-height: 1.75; color: rgba(20,21,26,.72); }
.legal-inner ul { padding-left: 22px; }
.legal-inner a { color: var(--green-d); border-bottom: 1px solid var(--green); }
.legal-note { margin-top: 40px; font-size: 13px; color: rgba(20,21,26,.5); }

/* ---------- 404 ---------- */
.nf {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 40px 6vw; background: var(--bg);
}
.nf-code { font-family: var(--serif); font-size: clamp(90px, 18vw, 200px); line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(244,242,237,.35); }
@supports not (-webkit-text-stroke: 1px black) { .nf-code { color: rgba(244,242,237,.35); } }
.nf h1 { margin: 20px 0 0; font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 4vw, 44px); }
.nf h1 em { font-style: italic; color: var(--green-l); }
.nf p { margin: 18px 0 0; font-size: 15px; color: rgba(244,242,237,.6); max-width: 440px; line-height: 1.7; }
.nf .btn-green { margin-top: 36px; }

/* ---------- Footer ---------- */
.footer { background: var(--bg); color: var(--paper); padding: 80px 6vw 40px; border-top: 1px solid var(--hair-d); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 50px; }
.f-brand-row { display: flex; align-items: center; gap: 12px; }
.f-brand-row img { width: 29px; height: 30px; display: block; filter: brightness(1.6) drop-shadow(0 0 5px rgba(244,242,237,.18)); }
.f-word { font-size: 22px; font-weight: 700; }
.f-word .green { color: var(--green); }
.f-brand p { margin: 18px 0 0; font-size: 14px; line-height: 1.7; color: rgba(244,242,237,.5); max-width: 280px; }
.f-col { display: flex; flex-direction: column; gap: 12px; }
.f-head { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(244,242,237,.4); margin-bottom: 8px; }
.f-link { font-size: 14px; color: rgba(244,242,237,.7); width: fit-content; }
.f-text { font-size: 14px; color: rgba(244,242,237,.7); line-height: 1.7; }
.f-rdv {
  margin-top: 6px; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-l); border-bottom: 2px solid var(--green); padding-bottom: 4px; width: fit-content;
}
.f-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: 70px; padding-top: 28px; border-top: 1px solid var(--hair-d);
  font-size: 12px; color: rgba(244,242,237,.4);
}
.f-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.f-legal a { color: rgba(244,242,237,.4); }
.f-legal a:hover { color: var(--green-l); }
.f-up { color: rgba(244,242,237,.55); }

/* ---------- Responsive ---------- */
@media (max-width: 919px) {
  .nav-links { display: none; }
  .nav-sub { display: none; }
  .burger { display: flex; }
}
@media (min-width: 920px) {
  .mobile-menu { display: none !important; }
}
@media (max-width: 700px) {
  .pn-grid { grid-template-columns: 1fr; }
  .pn-prev { border-right: none; border-bottom: 1px solid var(--hair-d); }
  .pn-prev, .pn-next { padding: 40px 6vw; text-align: left; }
  .hero { padding-top: 130px; }
  .hero-foot { padding-top: 60px; }
  .hero-meta { gap: 14px 24px; }
  .fidu { padding: 100px 6vw 80px; }
  .services { padding: 100px 6vw 90px; }
  .approche { padding: 100px 6vw 90px; }
  .svc-page { padding: 80px 6vw 90px; }
  .contact-sec { padding: 80px 6vw 90px; }
  .faq { padding: 90px 6vw 100px; }
  .faq-a p { padding-right: 20px; }
  .c-row { grid-template-columns: 110px 1fr; }
  .map-block { margin-right: 10px; }
  .legal-hero { padding: 140px 6vw 40px; }
  .legal-body { padding: 60px 6vw 80px; }
}

/* ---------- Mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img, .shero-media img { animation: none !important; }
  .aurora-a, .aurora-b { animation: none !important; }
  .marquee-track { animation: none !important; }
  .hero-cue .line { animation: none !important; }
  .intro { display: none !important; }
  .curtain { transition: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-badge, .hero h1 .l1, .hero h1 .l2, .hero-lede, .hero-ctas, .hero-foot,
  .crumbs, .shero h1, .shero-tag, .shero-num { animation: none !important; }
}
