@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@500;600;700;800&family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root{
  --ink:#12161B;
  --surface:#1A2027;
  --brass:#C89B3C;
  --brass-dim:#9C7A2E;
  --circuit:#5FA8A0;
  --paper:#EDEAE2;
  --text-muted:#8E96A1;
  --line:rgba(237,234,226,0.10);
  --line-strong:rgba(237,234,226,0.20);
  --radius:2px;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  background:var(--ink);
  color:var(--paper);
  font-family:'IBM Plex Sans',sans-serif;
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms!important;transition-duration:0.001ms!important;}
}
a{color:inherit;text-decoration:none;}
img,svg{display:block;max-width:100%;}
.wrap{max-width:1200px;margin:0 auto;padding:0 32px;}
h1,h2,h3{
  font-family:'Big Shoulders Display',sans-serif;
  font-weight:700;
  line-height:0.95;
  letter-spacing:-0.5px;
}
::selection{background:var(--brass);color:var(--ink);}
:focus-visible{outline:2px solid var(--circuit);outline-offset:3px;}

/* ─── ENTRÉE ANIMATIONS ─────────────────────────── */
.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible{opacity:1;transform:none;}
.reveal-delay-1{transition-delay:0.1s;}
.reveal-delay-2{transition-delay:0.2s;}
.reveal-delay-3{transition-delay:0.3s;}
.reveal-delay-4{transition-delay:0.4s;}

/* ─── STATION (sans coins bracket) ─────────────── */
.station{
  border:1px solid var(--line);
  border-left:3px solid var(--brass);
  padding:36px 32px;
}

/* ─── TAGS ──────────────────────────────────────── */
.tag{
  font-family:'IBM Plex Mono',monospace;
  font-size:11.5px;
  color:var(--circuit);
  letter-spacing:0.06em;
  text-transform:uppercase;
}
/* tag-index : label de section — IBM Plex Sans, pas monospace */
.tag-index{
  font-family:'IBM Plex Sans',sans-serif;
  font-size:12px;
  font-weight:600;
  color:var(--text-muted);
  text-transform:uppercase;
  letter-spacing:0.10em;
  margin-bottom:18px;
  display:block;
}

/* ─── HEADER ────────────────────────────────────── */
header{
  position:sticky;top:0;z-index:100;
  background:rgba(18,22,27,0.95);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--line);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:72px;}
.logo{
  font-family:'Big Shoulders Display',sans-serif;
  font-weight:800;font-size:24px;
  display:flex;flex-direction:column;line-height:1;
}
.logo-wordmark{
  display:inline-flex;align-items:baseline;
  letter-spacing:-0.5px;
}
.logo .wm__build{color:var(--paper);}
.logo .wm__lab{color:var(--brass);}
.logo span.sub{
  font-size:9.5px;color:var(--text-muted);
  letter-spacing:0.12em;margin-top:4px;
  font-family:'IBM Plex Sans',sans-serif;
  font-weight:500;text-transform:uppercase;
}
nav ul{display:flex;gap:32px;list-style:none;}
nav a{
  font-size:14.5px;font-weight:500;color:var(--text-muted);
  position:relative;padding:4px 0;
  transition:color 0.2s ease;
}
nav a:hover{color:var(--paper);}
nav a::after{
  content:'';position:absolute;left:0;bottom:-2px;width:0;height:1px;
  background:var(--brass);transition:width 0.22s ease;
}
nav a:hover::after{width:100%;}
nav a.nav-active{color:var(--paper);}
nav a.nav-active::after{width:100%;background:var(--brass);}
.nav-cta{
  border:1px solid var(--brass);color:var(--brass);
  padding:9px 20px;font-size:13.5px;font-weight:600;
  border-radius:var(--radius);white-space:nowrap;
  transition:background 0.2s ease,color 0.2s ease;
}
.nav-cta:hover{background:var(--brass);color:var(--ink);}
.burger{display:none;background:none;border:none;cursor:pointer;padding:8px;z-index:101;position:relative;}
.burger span{display:block;width:22px;height:2px;background:var(--paper);margin:5px 0;
  transform-origin:center;transition:transform .22s ease,opacity .18s ease;}
.burger.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px);}
.burger.open span:nth-child(2){opacity:0;transform:scaleX(0);}
.burger.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px);}
.mobile-nav{
  position:fixed;inset:72px 0 0 0;z-index:99;
  background:var(--ink);
  padding:40px 24px 32px;
  display:flex;flex-direction:column;
  opacity:0;visibility:hidden;pointer-events:none;
  transform:translateY(-10px);
  transition:opacity .22s ease,transform .22s ease,visibility 0s linear .22s;
  overflow-y:auto;
}
.mobile-nav.open{
  opacity:1;visibility:visible;pointer-events:auto;
  transform:translateY(0);
  transition:opacity .22s ease,transform .22s ease,visibility 0s;
}
.mobile-nav nav{flex:1;}
.mobile-nav ul{list-style:none;display:flex;flex-direction:column;gap:0;}
.mobile-nav a{
  display:block;padding:18px 0;font-size:24px;
  font-family:'Big Shoulders Display',sans-serif;font-weight:700;
  border-bottom:1px solid var(--line);color:var(--paper);
  transition:color .18s ease,padding-left .18s ease;
}
.mobile-nav a:hover,.mobile-nav a:focus{color:var(--brass);padding-left:8px;}
.mobile-cta{
  display:block;margin-top:32px;flex-shrink:0;
  background:var(--brass);color:var(--ink);
  text-align:center;padding:16px 20px;
  font-family:'IBM Plex Sans',sans-serif;font-size:15px;font-weight:700;
  letter-spacing:.05em;text-transform:uppercase;
  transition:background .18s ease;
}
.mobile-cta:hover{background:var(--brass-dim);}
.mobile-location{
  margin-top:16px;flex-shrink:0;
  font-family:'IBM Plex Mono',monospace;font-size:10.5px;
  color:var(--text-muted);letter-spacing:.09em;text-transform:uppercase;
  text-align:center;
}

/* ─── HERO — FULL-BLEED SPLIT ───────────────────── */
.hero{
  min-height:72vh;
  display:flex;align-items:stretch;
  overflow:hidden;
  position:relative;
}
.hero-split{
  display:grid;
  grid-template-columns:5fr 6fr;
  width:100%;
  align-items:stretch;
}

/* ── Panneau gauche ── */
.hero-content{
  display:flex;flex-direction:column;justify-content:center;
  padding:60px 60px 72px max(40px, calc((100vw - 1200px)/2 + 40px));
  position:relative;z-index:1;
  background:var(--ink);
}
/* Glow laiton très subtil derrière le titre */
.hero-content::before{
  content:'';
  position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(ellipse 100% 70% at -5% 55%,rgba(200,155,60,.07) 0%,transparent 65%);
}

/* ── Panneau droit — photo ── */
.hero-visual-side{
  position:relative;overflow:hidden;
  min-height:600px;
}
.hero-visual-side>img{
  width:100%;height:100%;
  object-fit:cover;object-position:center;
  display:block;
}
/* Fondu gauche : raccord impeccable avec le panneau texte */
.hero-visual-side::before{
  content:'';position:absolute;inset:0;z-index:1;pointer-events:none;
  background:linear-gradient(to right, var(--ink) 0%, rgba(18,22,27,.55) 18%, transparent 46%);
}
/* Vignette bas */
.hero-visual-side::after{
  content:'';position:absolute;inset:0;z-index:1;pointer-events:none;
  background:linear-gradient(to top,rgba(18,22,27,.65) 0%,transparent 42%);
}
/* Badge photo */
.hero-badge{
  position:absolute;bottom:28px;right:28px;z-index:2;
  display:flex;flex-direction:column;gap:6px;align-items:flex-end;
}
.hero-badge .tag{
  background:rgba(18,22,27,.88);
  padding:5px 10px;
  display:inline-block;
}

/* ── Typographie hero ── */
.hero-eyebrow{
  font-family:'IBM Plex Mono',monospace;
  font-size:11.5px;color:var(--circuit);
  margin-bottom:28px;
  display:flex;align-items:center;gap:10px;
  letter-spacing:0.05em;
}
.hero-eyebrow .dot{
  width:6px;height:6px;background:var(--circuit);border-radius:50%;
  animation:pulse 2.4s ease-in-out infinite;
  flex-shrink:0;
}
@keyframes pulse{0%,100%{opacity:1;}50%{opacity:0.3;}}
.hero-eyebrow--closed{color:var(--text-muted);}
.hero-eyebrow .dot--closed{background:var(--text-muted);animation:none;}

.hero h1{
  font-size:clamp(62px,6.5vw,104px);
  color:var(--paper);
  margin-bottom:28px;
  line-height:.91;
  text-wrap:balance;
}
.hero h1 em{font-style:normal;color:var(--brass);}

.hero-kw{font-family:'IBM Plex Mono',monospace;font-size:11px;color:var(--text-muted);letter-spacing:0.06em;margin-bottom:24px;line-height:1.5;}
.hero p.lead{
  font-size:17px;color:var(--text-muted);
  max-width:46ch;margin-bottom:40px;line-height:1.72;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:0;}

/* ── Proof strip (chiffres clés en bas du panel) ── */
.hero-proof{
  display:flex;align-items:center;gap:20px;flex-wrap:wrap;
  margin-top:auto;padding-top:48px;
  border-top:1px solid var(--line);
}
.proof-item{display:flex;flex-direction:column;gap:3px;}
.proof-num{
  font-family:'Big Shoulders Display',sans-serif;
  font-size:30px;font-weight:700;color:var(--brass);
  line-height:1;font-variant-numeric:tabular-nums;
}
.proof-label{
  font-size:11px;color:var(--text-muted);
  text-transform:uppercase;letter-spacing:.07em;font-weight:500;
}
.proof-sep{width:1px;height:36px;background:var(--line-strong);flex-shrink:0;}

.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:14px 26px;font-size:14.5px;font-weight:600;
  border-radius:var(--radius);cursor:pointer;border:1px solid transparent;
  transition:transform 0.15s ease,background 0.18s ease,color 0.18s ease;
  font-family:'IBM Plex Sans',sans-serif;
}
.btn-primary{background:var(--brass);color:var(--ink);}
.btn-primary:hover{background:#d4a740;transform:translateY(-1px);}
.btn-ghost{border-color:var(--line-strong);color:var(--text-muted);background:none;}
.btn-ghost:hover{border-color:var(--paper);color:var(--paper);}

.pc-illustration{display:none;}

/* ─── TICKET HERO ───────────────────────────────── */
.ticket{
  background:var(--surface);
  border:1px solid var(--line-strong);
  overflow:hidden;
}
.ticket-head{
  display:flex;justify-content:space-between;align-items:center;
  padding:16px 20px;border-bottom:1px dashed var(--line-strong);
}
.ticket-head .tag{font-size:10.5px;}
.ticket-tabs{display:flex;border-bottom:1px solid var(--line);}
.ticket-tabs button{
  flex:1;background:none;border:none;color:var(--text-muted);
  font-family:'IBM Plex Sans',sans-serif;font-size:13px;font-weight:600;
  padding:13px 6px;cursor:pointer;border-bottom:2px solid transparent;
  transition:color 0.2s ease;
}
.ticket-tabs button.active{color:var(--paper);border-bottom-color:var(--brass);}
.ticket-body{padding:22px 20px;min-height:220px;}
.ticket-body h4{
  font-family:'Big Shoulders Display',sans-serif;
  font-size:22px;color:var(--paper);margin-bottom:8px;
}
.ticket-body p{color:var(--text-muted);font-size:13.5px;margin-bottom:14px;line-height:1.5;}
.spec-line{
  display:flex;justify-content:space-between;
  font-family:'IBM Plex Mono',monospace;font-size:12px;
  padding:7px 0;border-bottom:1px solid var(--line);color:var(--text-muted);
}
.spec-line span:last-child{color:var(--paper);}
.ticket-foot{
  padding:16px 20px;border-top:1px solid var(--line);
  display:flex;justify-content:space-between;align-items:center;
}
.ticket-foot .price{font-family:'IBM Plex Mono',monospace;color:var(--brass);font-size:14px;}

/* ─── MARQUEE ───────────────────────────────────── */
.marquee-wrap{
  overflow:hidden;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:var(--surface);
  padding:13px 0;
  white-space:nowrap;
}
.marquee-track{
  display:inline-flex;gap:0;
  animation:marquee 30s linear infinite;
}
.marquee-track:hover{animation-play-state:paused;}
@keyframes marquee{from{transform:translateX(0);}to{transform:translateX(-50%);}}
.marquee-item{
  font-family:'IBM Plex Mono',monospace;
  font-size:12px;color:var(--text-muted);
  padding:0 28px;
  letter-spacing:0.04em;
}
.marquee-item .sep{color:var(--brass);margin:0 6px;}

/* ─── STAT BAR ──────────────────────────────────── */
.stat-bar{
  border-bottom:1px solid var(--line);
  padding:36px 0;
  background:var(--ink);
}
.stat-inner{
  display:flex;align-items:center;
  justify-content:space-between;
  gap:24px;flex-wrap:wrap;
}
.stat-item{display:flex;flex-direction:column;gap:6px;flex:1;min-width:140px;}
.stat-num{
  font-family:'Big Shoulders Display',sans-serif;
  font-size:36px;font-weight:700;
  color:var(--brass);line-height:1;
}
.stat-label{font-size:13px;color:var(--text-muted);font-weight:500;}
.stat-sep{width:1px;height:44px;background:var(--line-strong);flex-shrink:0;}

/* ─── SECTIONS ──────────────────────────────────── */
section{padding:112px 0;}
#montage{padding:120px 0 112px;}
#reparation{padding:100px 0;}
#entreprises{padding:112px 0;}
#process{padding:80px 0 100px;}
#contact{padding:100px 0 112px;}
.section-alt{background:var(--surface);}

.section-head{
  display:flex;justify-content:space-between;align-items:flex-end;
  gap:40px;margin-bottom:60px;flex-wrap:wrap;
}
.section-head h2{
  font-size:clamp(32px,3.8vw,48px);
  color:var(--paper);max-width:14ch;
}
.section-head p{color:var(--text-muted);max-width:36ch;font-size:15.5px;line-height:1.65;}

/* ─── MONTAGE — HEADER ──────────────────────────── */
.montage-head{margin-bottom:56px;}
.montage-head .tag-index{display:block;margin-bottom:20px;}
.montage-head-inner{
  display:flex;justify-content:space-between;
  align-items:flex-end;gap:48px;flex-wrap:wrap;
}
.montage-head-inner h2{
  font-size:clamp(36px,4vw,54px);
  color:var(--paper);line-height:.95;
  text-wrap:balance;max-width:18ch;
  flex-shrink:0;
}
.montage-head-inner p{
  color:var(--text-muted);font-size:15.5px;
  line-height:1.65;max-width:44ch;
}

/* ─── TIERS ─────────────────────────────────────── */
.tiers{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.tier{
  background:var(--surface);
  border:1px solid var(--line);
  display:flex;flex-direction:column;
  position:relative;
  transition:border-color .25s ease, transform .3s ease, box-shadow .3s ease;
  overflow:hidden;
}
.tier:hover{
  border-color:var(--line-strong);
  transform:translateY(-5px);
  box-shadow:0 16px 40px rgba(0,0,0,.35);
}

/* Barre couleur en haut */
.tier::before{
  content:'';position:absolute;top:0;left:0;right:0;
  height:3px;z-index:3;
}
.tier:nth-child(1)::before{background:var(--text-muted);}
.tier:nth-child(2)::before{background:var(--circuit);}
.tier:nth-child(3)::before{background:var(--brass);}
.tier:nth-child(4)::before{background:#d97757;}

/* Featured */
.tier.featured{
  border-color:rgba(200,155,60,.45);
  background:#191f29;
}
.tier.featured::before{height:4px;}

/* ── Photo ── */
.tier-photo{
  position:relative;overflow:hidden;
  aspect-ratio:16/10;flex-shrink:0;
}
.tier-photo img{
  width:100%;height:100%;
  object-fit:cover;display:block;
  transition:transform .5s ease;
}
.tier:hover .tier-photo img{transform:scale(1.06);}
/* Vignette bas photo */
.tier-photo::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to top,rgba(18,22,27,.85) 0%,rgba(18,22,27,.2) 55%,transparent 100%);
  pointer-events:none;
}
/* Badge "Meilleur Q/P" */
.tier-badge{
  position:absolute;top:14px;right:14px;z-index:2;
  background:var(--brass);color:var(--ink);
  font-size:9.5px;font-weight:700;
  font-family:'IBM Plex Sans',sans-serif;
  padding:4px 9px;letter-spacing:.06em;
  text-transform:uppercase;
}
/* Prix overlay en bas de la photo */
.tier-price-overlay{
  position:absolute;bottom:14px;left:16px;z-index:2;
  display:flex;flex-direction:column;gap:0;
}
.tier-price-overlay .from{
  font-size:9.5px;color:rgba(237,234,226,.6);
  text-transform:uppercase;letter-spacing:.07em;
  font-weight:500;
}
.tier-price-overlay .amount{
  font-family:'Big Shoulders Display',sans-serif;
  font-size:28px;font-weight:700;color:var(--paper);
  line-height:1;
}
.tier.featured .tier-price-overlay .amount{color:var(--brass);}

/* ── Header texte ── */
.tier-head{padding:18px 20px 14px;}
.tier-code{
  font-family:'IBM Plex Mono',monospace;
  font-size:10.5px;color:var(--text-muted);
  letter-spacing:.09em;text-transform:uppercase;
  margin-bottom:7px;
}
.tier h3{
  font-family:'Big Shoulders Display',sans-serif;
  font-size:22px;color:var(--paper);
  margin-bottom:5px;line-height:1;
}
.tier-tagline{font-size:12.5px;color:var(--paper);font-style:italic;line-height:1.4;margin-bottom:3px;}
.tier-usage{color:var(--text-muted);font-size:11.5px;}

/* ── Body specs + CTA ── */
.tier-body{padding:0 20px 22px;flex:1;display:flex;flex-direction:column;}
.tier-specs{border:1px solid var(--line);margin-bottom:14px;}
.tier-spec-row{
  display:flex;justify-content:space-between;align-items:baseline;
  padding:6px 10px;border-bottom:1px solid var(--line);
}
.tier-spec-row:last-child{border-bottom:none;}
.spec-key{font-family:'IBM Plex Mono',monospace;font-size:10.5px;color:var(--text-muted);flex-shrink:0;}
.spec-val-wrap{display:flex;flex-direction:column;align-items:flex-end;gap:2px;max-width:62%;}
.spec-val{font-family:'IBM Plex Mono',monospace;font-size:10px;color:var(--paper);text-align:right;}
.spec-hint{font-size:9.5px;color:var(--circuit);text-align:right;line-height:1.4;font-style:italic;}

.tier-features{list-style:none;margin-bottom:16px;}
.tier-features li{
  padding:7px 0;border-bottom:1px solid var(--line);
  font-size:12.5px;color:var(--text-muted);
  display:flex;gap:9px;align-items:flex-start;line-height:1.4;
}
.tier-features li::before{content:'✓';color:var(--circuit);flex-shrink:0;font-size:10.5px;margin-top:2px;}

.tier-cta{
  display:block;text-align:center;margin-top:auto;
  padding:11px 16px;font-size:13px;
  border-radius:var(--radius);
}

.tiers-note{
  margin-top:24px;
  font-size:12.5px;color:var(--text-muted);
  border-top:1px solid var(--line);padding-top:18px;
  line-height:1.6;max-width:80ch;
}

/* ─── RÉPARATION — HEADER ───────────────────────── */
.repair-head{margin-bottom:56px;}
.repair-head .tag-index{display:block;margin-bottom:20px;}
.repair-head-inner{
  display:flex;justify-content:space-between;
  align-items:flex-end;gap:48px;flex-wrap:wrap;
}
.repair-head-inner h2{
  font-size:clamp(36px,4vw,54px);
  color:var(--paper);line-height:.95;
  text-wrap:balance;max-width:18ch;flex-shrink:0;
}
.repair-head-inner p{
  color:var(--text-muted);font-size:15.5px;
  line-height:1.65;max-width:44ch;
}

/* ─── RÉPARATION — LAYOUT ───────────────────────── */
.repair-layout{display:grid;grid-template-columns:1fr 1.05fr;gap:72px;align-items:start;}

/* Timeline steps */
.repair-steps{list-style:none;position:relative;}
.repair-steps::before{
  content:'';position:absolute;left:18px;top:36px;bottom:40px;
  width:1px;background:var(--line);z-index:0;
}
.repair-step{
  display:flex;gap:28px;align-items:flex-start;
  padding-bottom:36px;position:relative;
}
.repair-step:last-child{padding-bottom:0;}
.step-num{
  font-family:'IBM Plex Mono',monospace;
  font-size:10.5px;font-weight:600;
  color:var(--circuit);letter-spacing:.08em;
  background:var(--surface);border:1px solid var(--line);
  width:36px;height:36px;display:flex;align-items:center;justify-content:center;
  flex-shrink:0;position:relative;z-index:1;
}
.step-content h4{
  font-size:15.5px;color:var(--paper);
  font-weight:600;margin-bottom:7px;margin-top:8px;
}
.step-content p{color:var(--text-muted);font-size:13.5px;line-height:1.65;}

/* Carte devis */
.diag-card{
  background:var(--ink);
  border:1px solid var(--line);
  border-top:3px solid var(--brass);
  padding:32px 28px;
}
.diag-price{border-bottom:1px solid var(--line);padding-bottom:24px;margin-bottom:24px;}
.diag-label{
  font-family:'IBM Plex Mono',monospace;font-size:10px;
  color:var(--text-muted);letter-spacing:.1em;text-transform:uppercase;
  display:block;margin-bottom:12px;
}
.diag-amount{display:flex;align-items:baseline;gap:12px;}
.diag-from{font-size:13px;color:var(--text-muted);font-style:italic;}
.diag-num{
  font-family:'Big Shoulders Display',sans-serif;
  font-size:56px;color:var(--brass);line-height:1;font-weight:700;
}
.diag-sub{color:var(--text-muted);font-size:12px;margin-top:7px;line-height:1.4;}

.diag-facts{display:grid;grid-template-columns:1fr 1fr;margin-bottom:24px;}
.diag-fact{padding:16px 0;border-bottom:1px solid var(--line);}
.diag-fact:nth-child(odd){padding-right:20px;border-right:1px solid var(--line);}
.diag-fact:nth-child(even){padding-left:20px;}
.diag-fact:nth-last-child(-n+2){border-bottom:none;}
.fact-tag{
  font-family:'IBM Plex Mono',monospace;font-size:9.5px;
  color:var(--circuit);letter-spacing:.09em;text-transform:uppercase;
  display:block;margin-bottom:4px;
}
.diag-fact strong{color:var(--paper);display:block;font-size:13.5px;margin-bottom:3px;font-weight:600;}
.diag-fact p{font-size:12px;color:var(--text-muted);line-height:1.5;margin:0;}

.diag-cta{display:block;text-align:center;}

/* ─── ENTREPRISES — HEADER ──────────────────────── */
.ent-head{margin-bottom:56px;}
.ent-head .tag-index{display:block;margin-bottom:20px;}
.ent-head-inner{
  display:flex;justify-content:space-between;
  align-items:flex-end;gap:48px;flex-wrap:wrap;
}
.ent-head-inner h2{
  font-size:clamp(36px,4vw,54px);
  color:var(--paper);line-height:.95;
  text-wrap:balance;max-width:18ch;flex-shrink:0;
}
.ent-head-inner p{
  color:var(--text-muted);font-size:15.5px;
  line-height:1.65;max-width:44ch;
}

/* ─── ENTREPRISES — LAYOUT ──────────────────────── */
.ent-grid{display:grid;grid-template-columns:1fr 1fr;gap:72px;align-items:start;}

/* Process steps */
.ent-flow{display:flex;flex-direction:column;}
.flow-step{
  display:flex;gap:20px;align-items:flex-start;
  padding:22px 0;border-bottom:1px solid var(--line);
}
.flow-step:first-child{padding-top:0;}
.flow-step:last-child{border-bottom:none;}
.flow-num{
  font-family:'IBM Plex Mono',monospace;
  font-size:11px;font-weight:700;letter-spacing:.06em;
  background:var(--brass);color:var(--ink);
  width:34px;height:34px;display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.flow-step h4{font-size:15px;color:var(--paper);margin-bottom:5px;font-weight:600;margin-top:7px;}
.flow-step p{font-size:13px;color:var(--text-muted);line-height:1.6;margin:0;}

/* Livrables card */
.ent-deliverables{
  background:var(--ink);
  border:1px solid var(--line);
  border-top:3px solid var(--circuit);
  padding:32px 28px;
}
.ent-deliverables-label{
  font-family:'IBM Plex Mono',monospace;font-size:10px;
  color:var(--text-muted);letter-spacing:.1em;text-transform:uppercase;
  display:block;margin-bottom:14px;
}
.ent-deliverables h3{
  font-size:22px;color:var(--paper);margin-bottom:8px;line-height:1.1;
}
.ent-deliverables>p{
  color:var(--text-muted);font-size:13.5px;line-height:1.6;
  margin-bottom:22px;border-bottom:1px solid var(--line);padding-bottom:22px;
}
.compliance-list{list-style:none;margin-bottom:26px;}
.compliance-item{
  display:flex;gap:14px;align-items:flex-start;
  padding:14px 0;border-bottom:1px solid var(--line);
}
.compliance-item:last-child{border-bottom:none;}
.comp-tag{
  font-family:'IBM Plex Mono',monospace;font-size:9.5px;
  color:var(--circuit);letter-spacing:.09em;text-transform:uppercase;
  display:block;padding-top:2px;min-width:54px;flex-shrink:0;
}
.compliance-item strong{color:var(--paper);display:block;font-size:13.5px;margin-bottom:2px;font-weight:600;}
.compliance-item p{font-size:12px;color:var(--text-muted);line-height:1.5;margin:0;}
.ent-cta{display:block;text-align:center;}

/* ─── TRUST / POURQUOI ──────────────────────────── */
/* ─── TRUST — HEADER ────────────────────────────── */
.trust-head{margin-bottom:56px;}
.trust-head .tag-index{display:block;margin-bottom:20px;}
.trust-head-inner{
  display:flex;justify-content:space-between;
  align-items:flex-end;gap:48px;flex-wrap:wrap;
}
.trust-head-inner h2{
  font-size:clamp(36px,4vw,54px);
  color:var(--paper);line-height:.95;
  text-wrap:balance;max-width:18ch;flex-shrink:0;
}
.trust-head-inner p{
  color:var(--text-muted);font-size:15.5px;
  line-height:1.65;max-width:44ch;
}

/* ─── TRUST — MANIFESTE ──────────────────────────── */
.trust-list{border-top:1px solid var(--line);}
.trust-row{
  display:grid;grid-template-columns:1fr 1fr;
  gap:60px;padding:30px 0;
  border-bottom:1px solid var(--line);
  align-items:start;
  transition:background .2s;
}
.trust-row:hover{background:rgba(255,255,255,.025);}
.trust-row-left{display:flex;flex-direction:column;gap:10px;}
.trust-num{
  font-family:'IBM Plex Mono',monospace;
  font-size:10.5px;font-weight:600;
  color:var(--brass);letter-spacing:.08em;
}
.trust-row h4{
  font-family:'Big Shoulders Display',sans-serif;
  font-size:clamp(18px,2vw,24px);color:var(--paper);
  line-height:1.05;font-weight:700;
}
.trust-row-text{
  color:var(--text-muted);font-size:14px;
  line-height:1.7;padding-top:4px;
}

/* ─── CONTACT ───────────────────────────────────── */
.contact-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:72px;align-items:start;}

.contact-info .tag-index{display:block;margin-bottom:24px;}
.contact-info h2{
  font-size:clamp(34px,4vw,52px);color:var(--paper);
  line-height:.95;margin-bottom:18px;
}
.contact-info>p{
  color:var(--text-muted);font-size:15px;
  max-width:40ch;line-height:1.7;margin-bottom:0;
}
.contact-details{border-top:1px solid var(--line);margin-top:36px;}
.contact-detail{
  display:flex;gap:20px;align-items:flex-start;
  padding:14px 0;border-bottom:1px solid var(--line);
}
.contact-detail-label{
  font-family:'IBM Plex Mono',monospace;font-size:9.5px;
  letter-spacing:.09em;text-transform:uppercase;
  color:var(--text-muted);flex-shrink:0;
  min-width:56px;padding-top:3px;
}
.contact-detail-value{color:var(--paper);font-size:14px;line-height:1.6;}
.contact-detail-sub{color:var(--text-muted);font-size:12px;display:block;margin-top:2px;}
.contact-link{border-bottom:1px solid var(--line-strong);color:var(--paper);transition:color .18s;}
.contact-link:hover{color:var(--brass);border-bottom-color:var(--brass);}

.alert-success{
  background:rgba(95,168,160,0.1);
  border:1px solid var(--circuit);color:var(--paper);
  padding:14px 16px;font-size:14px;margin-bottom:18px;
}
.field-error{color:#d97757;font-size:12px;margin-top:5px;display:block;}
.form{display:flex;flex-direction:column;gap:16px;}
.field label{display:block;font-size:12px;color:var(--text-muted);margin-bottom:7px;font-weight:500;text-transform:uppercase;letter-spacing:.07em;}
.field input,.field select,.field textarea{
  width:100%;background:var(--surface);border:1px solid var(--line-strong);
  color:var(--paper);padding:12px 14px;font-family:'IBM Plex Sans',sans-serif;
  font-size:14.5px;border-radius:var(--radius);
  transition:border-color .18s ease;
}
.field input:focus,.field select:focus,.field textarea:focus{
  border-color:var(--circuit);outline:none;
}
.field textarea{resize:vertical;min-height:130px;}
.row2{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.form-foot{display:flex;align-items:center;gap:20px;flex-wrap:wrap;margin-top:4px;}
.form-foot .btn-primary{border:none;cursor:pointer;}
.form-note{font-size:12px;color:var(--text-muted);}

/* ─── FOOTER ────────────────────────────────────── */
footer{border-top:1px solid var(--line);padding:56px 0 40px;}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:40px;margin-bottom:48px;}
.footer-brand .logo{margin-bottom:16px;}
.footer-brand p{color:var(--text-muted);font-size:13.5px;max-width:30ch;line-height:1.6;}
.footer-col h5{font-size:11.5px;color:var(--text-muted);margin-bottom:16px;text-transform:uppercase;letter-spacing:0.08em;font-weight:600;}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:10px;}
.footer-col a{color:var(--text-muted);font-size:13.5px;transition:color 0.18s ease;}
.footer-col a:hover{color:var(--paper);}
.footer-bottom{
  border-top:1px solid var(--line);padding-top:22px;
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;
  font-size:12px;color:var(--text-muted);
}
.footer-bottom a{color:var(--text-muted);border-bottom:1px solid var(--line);}
.footer-bottom a:hover{color:var(--paper);}

/* ─── FAQ ───────────────────────────────────────── */
#faq{padding:100px 0;}
.faq-head{margin-bottom:56px;}
.faq-head h2{font-size:clamp(28px,3.5vw,42px);margin-top:12px;line-height:1.2;}
.faq-list{display:flex;flex-direction:column;border-top:1px solid var(--line);}
.faq-item{border-bottom:1px solid var(--line);}
.faq-q{
  list-style:none;
  display:flex;justify-content:space-between;align-items:center;
  padding:22px 0;
  font-size:15px;font-weight:600;color:var(--paper);
  cursor:pointer;gap:24px;
}
.faq-q::-webkit-details-marker{display:none;}
.faq-q::after{
  content:'＋';
  font-size:18px;font-weight:300;color:var(--brass);
  flex-shrink:0;transition:transform 0.2s ease;
}
.faq-item[open] .faq-q::after{transform:rotate(45deg);}
.faq-a{
  padding:0 0 22px 0;
  font-size:14.5px;line-height:1.7;color:var(--text-muted);
  max-width:680px;
}


/* ─── SECTION AVIS ──────────────────────────────── */
.section-reviews{
  padding:96px 0;
  background:var(--ink);
  border-top:1px solid var(--line);
}

/* Header */
.reviews-head{
  display:flex;justify-content:space-between;align-items:flex-end;
  gap:40px;flex-wrap:wrap;
  margin-bottom:56px;
}
.reviews-head-left h2{
  font-family:'Big Shoulders Display',sans-serif;
  font-size:clamp(32px,4vw,48px);font-weight:800;
  line-height:1.05;margin-bottom:12px;
}
.reviews-head-left p{
  font-size:15px;color:var(--text-muted);max-width:44ch;line-height:1.7;
}
.reviews-rating-block{
  display:flex;flex-direction:column;align-items:flex-end;gap:8px;
  flex-shrink:0;
}
.reviews-score{
  font-family:'Big Shoulders Display',sans-serif;
  font-size:56px;font-weight:800;line-height:1;
  color:var(--paper);
}
.reviews-stars{
  display:flex;gap:3px;
}
.star{color:#f9ab00;font-size:22px;}
.reviews-source{
  display:flex;align-items:center;gap:7px;
  font-family:'IBM Plex Mono',monospace;
  font-size:11px;color:var(--text-muted);letter-spacing:.05em;
}
.g-logo{display:block;flex-shrink:0;}
.btn-leave-review{
  display:inline-block;
  font-family:'IBM Plex Mono',monospace;
  font-size:11px;letter-spacing:.08em;
  color:var(--brass);
  border-bottom:1px solid var(--brass);
  padding-bottom:1px;
  transition:opacity .15s ease;
  margin-top:4px;
}
.btn-leave-review:hover{opacity:.75;}

/* Grid */
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-bottom:48px;
}

/* Card */
.review-card{
  background:var(--surface);
  border:1px solid var(--line);
  padding:28px;
  transition:border-color .2s ease,transform .2s ease;
  display:flex;flex-direction:column;gap:12px;
}
.review-card:hover{
  border-color:var(--line-strong);
  transform:translateY(-2px);
}
.review-card-top{
  display:flex;align-items:center;gap:12px;
}
.review-avatar{
  width:40px;height:40px;border-radius:50%;
  background:var(--av-color,var(--brass));
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-family:'Big Shoulders Display',sans-serif;
  font-size:18px;font-weight:700;
  flex-shrink:0;
}
.review-author{
  flex:1;display:flex;flex-direction:column;gap:1px;
}
.review-author strong{
  font-size:14px;font-weight:600;color:var(--paper);
}
.review-author span{
  font-family:'IBM Plex Mono',monospace;
  font-size:10.5px;color:var(--text-muted);letter-spacing:.04em;
}
.review-glogo{margin-left:auto;flex-shrink:0;opacity:.85;}
.review-stars{
  color:#f9ab00;font-size:16px;letter-spacing:1px;
}
.review-text{
  font-size:14px;line-height:1.75;
  color:rgba(237,234,226,.82);
  font-style:normal;
  margin:0;flex:1;
}
.review-date{
  font-family:'IBM Plex Mono',monospace;
  font-size:10px;color:var(--text-muted);
  letter-spacing:.06em;text-transform:uppercase;
  margin-top:4px;
}

/* Empty state */
.reviews-empty{
  grid-column:1/-1;
  display:flex;justify-content:center;padding-block:48px;
}
.reviews-empty-inner{
  display:flex;flex-direction:column;align-items:center;gap:20px;
  max-width:360px;text-align:center;
}
.reviews-empty-icon{opacity:.5;}
.reviews-empty-text{
  font-size:15px;color:var(--text-muted);line-height:1.6;
}

/* Footer */
.reviews-footer{
  display:flex;align-items:center;gap:24px;flex-wrap:wrap;
}
.reviews-cta{
  display:inline-flex;align-items:center;gap:10px;
  font-size:14px;
}
.reviews-note{
  font-size:13px;color:var(--text-muted);
  max-width:50ch;line-height:1.6;
  margin:0;
}

/* ─── RESPONSIVE ────────────────────────────────── */
@media(max-width:1100px){
  .tiers{grid-template-columns:repeat(2,1fr);}
  .montage-head-inner,.repair-head-inner,.ent-head-inner{flex-direction:column;align-items:flex-start;gap:20px;}
}
@media(max-width:920px){
  nav ul,.nav-cta{display:none;}
  .burger{display:block;}
  .hero{min-height:auto;}
  .hero-split{grid-template-columns:1fr;}
  .hero-content{
    padding:80px 32px 64px 32px;
    order:1;
  }
  .hero-visual-side{
    order:2;
    min-height:52vw;
    max-height:460px;
  }
  .hero-visual-side::before{
    background:linear-gradient(to bottom, var(--ink) 0%, transparent 30%);
  }
  .tiers{grid-template-columns:repeat(2,1fr);}
  .repair-layout,.ent-grid,.contact-grid{grid-template-columns:1fr;gap:48px;}
  .trust-head-inner{flex-direction:column;align-items:flex-start;gap:20px;}
  .trust-row{grid-template-columns:1fr;gap:12px;}
  .reviews-head{flex-direction:column;align-items:flex-start;gap:24px;}
  .reviews-rating-block{align-items:flex-start;}
  .reviews-score{font-size:44px;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .diag-facts{grid-template-columns:1fr;}
  .diag-fact:nth-child(odd){padding-right:0;border-right:none;}
  .diag-fact:nth-child(even){padding-left:0;}
  .diag-fact:nth-last-child(-n+2){border-bottom:1px solid var(--line);}
  .diag-fact:last-child{border-bottom:none;}
  .row2{grid-template-columns:1fr;}
  section{padding:80px 0;}
  #montage,#reparation,#entreprises,#process,#contact{padding:80px 0;}
  .hero{padding:72px 0 80px;}
  .stat-inner{gap:32px;}
}
@media(max-width:640px){
  .tiers{grid-template-columns:1fr;gap:12px;}
  .stat-inner{flex-direction:column;gap:24px;}
  .stat-sep{width:40px;height:1px;}
  .hero h1{font-size:clamp(46px,12vw,72px);}
  .footer-grid{grid-template-columns:1fr;}
  .reviews-grid{grid-template-columns:1fr;}
}

/* ── PAGES LÉGALES ───────────────────────────────────────── */
.legal-page{padding:80px 0 112px;}
.legal-head{margin-bottom:56px;padding-bottom:40px;border-bottom:1px solid var(--line);}
.legal-head .tag-index{display:block;margin-bottom:16px;}
.legal-head h1{font-size:clamp(32px,5vw,52px);color:var(--paper);margin-bottom:12px;line-height:1.05;}
.legal-head p{font-size:14px;color:var(--text-muted);}
.legal-body{display:flex;flex-direction:column;gap:0;}
.legal-block{padding:32px 0;border-bottom:1px solid var(--line);}
.legal-block:last-child{border-bottom:none;}
.legal-block h2{font-family:'Big Shoulders Display',sans-serif;font-size:22px;color:var(--paper);margin-bottom:16px;font-weight:700;}
.legal-block p{font-size:14px;color:var(--text-muted);line-height:1.75;margin-bottom:12px;}
.legal-block p:last-child{margin-bottom:0;}
.legal-block a{color:var(--brass);border-bottom:1px solid rgba(200,155,60,.3);transition:border-color .18s;}
.legal-block a:hover{border-bottom-color:var(--brass);}
.legal-block--highlight{background:var(--surface);padding:32px;margin-bottom:0;border:1px solid var(--line-strong);}
.legal-table{display:flex;flex-direction:column;border:1px solid var(--line);margin-block:16px;}
.legal-row{display:grid;grid-template-columns:200px 1fr;gap:16px;padding:11px 14px;border-bottom:1px solid var(--line);font-size:13.5px;}
.legal-row:last-child{border-bottom:none;}
.legal-key{font-family:'IBM Plex Mono',monospace;font-size:11px;color:var(--text-muted);letter-spacing:.05em;padding-top:2px;}
.legal-val{color:var(--paper);}
.legal-val a{color:var(--brass);}
.legal-list{list-style:none;margin-block:12px;display:flex;flex-direction:column;gap:8px;}
.legal-list li{font-size:14px;color:var(--text-muted);padding-left:20px;position:relative;line-height:1.6;}
.legal-list li::before{content:'—';position:absolute;left:0;color:var(--brass);font-size:12px;}
.legal-list strong{color:var(--paper);}
.legal-note{font-size:12px;color:var(--text-muted);margin-top:12px;font-style:italic;}
.legal-summary-grid{border:1px solid var(--line);margin-block:16px;font-size:13px;}
.legal-summary-row{display:grid;grid-template-columns:2fr 1.5fr 1fr 1fr;gap:0;border-bottom:1px solid var(--line);}
.legal-summary-row:last-child{border-bottom:none;}
.legal-summary-row span{padding:10px 14px;color:var(--text-muted);}
.legal-summary-head span{color:var(--paper);font-weight:600;font-size:11.5px;text-transform:uppercase;letter-spacing:.06em;background:var(--surface);}
.legal-foot{display:flex;gap:16px;flex-wrap:wrap;margin-top:48px;padding-top:32px;border-top:1px solid var(--line);}
@media(max-width:640px){
  .legal-row{grid-template-columns:1fr;}
  .legal-summary-row{grid-template-columns:1fr 1fr;}
  .legal-summary-row span:nth-child(3),.legal-summary-row span:nth-child(4){display:none;}
}

/* ─── BACK TO TOP ───────────────────────────────── */
#back-to-top{
  position:fixed;
  bottom:28px;
  right:28px;
  width:40px;
  height:40px;
  background:var(--surface);
  border:1px solid var(--line-strong);
  color:var(--paper);
  border-radius:var(--radius);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  opacity:0;
  pointer-events:none;
  transform:translateY(8px);
  transition:opacity 0.25s ease, transform 0.25s ease, border-color 0.2s, background 0.2s;
  z-index:999;
}
#back-to-top.visible{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}
#back-to-top:hover{
  background:var(--brass);
  border-color:var(--brass);
  color:var(--ink);
}
@media(max-width:640px){
  #back-to-top{bottom:20px;right:16px;width:36px;height:36px;}
}
