/* =========================================================
   NEXA DÉMOLITION — Landing simple & lisible
   Accent: #E51A22 · Text: #111 · BG: #F5F5F5 / #FFF · Dark: #0A0A0A
   ========================================================= */

:root {
  --accent: #E51A22;
  --accent-hover: #c8151c;
  --text: #111111;
  --text-muted: #5a5a5a;
  --bg: #F5F5F5;
  --bg-alt: #FFFFFF;
  --bg-dark: #0A0A0A;
  --line: #e8e8e8;
  --radius: 14px;
  --radius-lg: 22px;
  --pill: 999px;
  --container: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg-alt);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* =======================================================
   REVEAL — base + variantes directionnelles + stagger
   ======================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal.in,
.reveal.visible { opacity: 1; transform: none; }

.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal-left.in { opacity: 1; transform: none; }

.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal-right.in { opacity: 1; transform: none; }

.reveal-scale { opacity: 0; transform: scale(.92); transition: opacity .8s var(--ease), transform .9s var(--ease); will-change: opacity, transform; }
.reveal-scale.in { opacity: 1; transform: none; }

.reveal-fade { opacity: 0; transition: opacity .9s var(--ease); }
.reveal-fade.in { opacity: 1; }

/* Stagger — parent reçoit .in, enfants se révèlent en cascade */
.stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(1) { transition-delay: .05s; }
.stagger.in > *:nth-child(2) { transition-delay: .14s; }
.stagger.in > *:nth-child(3) { transition-delay: .23s; }
.stagger.in > *:nth-child(4) { transition-delay: .32s; }
.stagger.in > *:nth-child(5) { transition-delay: .41s; }
.stagger.in > *:nth-child(6) { transition-delay: .50s; }
.stagger.in > *:nth-child(7) { transition-delay: .56s; }
.stagger.in > *:nth-child(8) { transition-delay: .62s; }

/* Hover lift — pour cards interactives */
.hover-lift { transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.hover-lift:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,.08); }

/* Parallax sur image hero */
.parallax-hero { will-change: transform; }

/* Count-up numérique — maintient la tabulation propre pendant l'animation */
.count-up { font-variant-numeric: tabular-nums; }

/* Page enter — fade + léger slide sur ouverture */
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
@keyframes pageEnterNav {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: none; }
}
body { animation: pageEnter .6s var(--ease) both; }
.navbar { animation: pageEnterNav .55s var(--ease) both; }

/* Respect des préférences utilisateur */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-fade,
  .stagger > *, .hover-lift, .parallax-hero {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  body, .navbar { animation: none !important; }
}

/* =======================================================
   PILL / BADGES
   ======================================================= */
.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  font-size: 12px;
  line-height: 14.4px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.pill::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

/* =======================================================
   HEADINGS
   ======================================================= */
.h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  line-height: 51px;
  font-weight: 400;
  letter-spacing: normal;
  color: var(--text);
}
.accent-text { color: var(--accent); font-weight: 400; }

.sec-head { max-width: 720px; margin-bottom: 3.5rem; }
.sec-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.6;
}

/* =======================================================
   BUTTONS
   ======================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .45rem .45rem 1rem;
  font-weight: 400;
  font-size: 14px;
  line-height: 18.2px;
  letter-spacing: normal;
  transition: transform .2s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.btn-pill { border-radius: var(--pill); }
.btn-red { background: var(--accent); color: #fff; }
.btn-red:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-lg { padding: .65rem .65rem .65rem 1.25rem; font-size: 16px; line-height: 24px; }

.arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: #fff;
  color: var(--text);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 400;
  transition: transform .3s var(--ease);
}
.btn:hover .arrow-circle { transform: rotate(45deg); }
.btn-lg .arrow-circle { width: 32px; height: 32px; font-size: 15px; }

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.2rem;
  font-weight: 400;
  color: var(--text);
  font-size: 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--pill);
  transition: border-color .2s, color .2s, background .2s;
}
.btn-phone:hover { border-color: var(--accent); color: var(--accent); }
.btn-phone.light { color: #fff; border-color: rgba(255,255,255,.3); }
.btn-phone.light:hover { background: #fff; color: var(--text); border-color: #fff; }
.btn-phone svg { color: var(--accent); }
.btn-phone.light svg { color: #fff; }

/* =======================================================
   NAVBAR
   ======================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.navbar-inner {
  display: flex;
  align-items: center;
  gap: .75rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: .75rem 2rem;
  min-height: 72px;
}
.navbar.scrolled { box-shadow: 0 8px 24px rgba(0,0,0,.06); }

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav-logo img { height: 44px; width: auto; display: block; }
.footer-logo img { height: 48px; filter: brightness(0) invert(1); margin-bottom: 1rem; }

.nav-links {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 2.25rem;
  font-size: 14px;
  line-height: 18.2px;
  font-weight: 400;
}
.nav-links a {
  position: relative;
  padding: .3rem 0;
  color: var(--text);
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); font-weight: 600; }
.nav-mobile a.active { color: var(--accent); font-weight: 600; }

.nav-cta { font-size: .98rem; padding: .55rem .55rem .55rem 1.3rem; }
.nav-cta .arrow-circle { width: 36px; height: 36px; font-size: .95rem; }

/* Language switch (FR / EN) */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .85rem;
  font-weight: 400;
  margin-left: auto;
  margin-right: 0;
  white-space: nowrap;
}
.lang-switch a {
  color: var(--text-muted);
  padding: .25rem .45rem;
  border-radius: 6px;
  transition: color .2s, background .2s;
  letter-spacing: .02em;
}
.lang-switch a:hover { color: var(--accent); }
.lang-switch a.active {
  color: var(--text);
  font-weight: 500;
  background: var(--bg);
}
.lang-switch span {
  color: var(--line);
  user-select: none;
}

/* Nav Mobile drop-down (index.html) */
.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: .25rem;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--text);
  font-size: 1rem;
  padding: .85rem .5rem;
  border-bottom: 1px solid var(--line);
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--accent); }
.nav-mobile a:last-of-type { border-bottom: 0; }
.nav-mobile-phone {
  display: inline-flex !important;
  align-items: center;
  gap: .6rem;
  color: var(--accent) !important;
  font-weight: 500;
}
.nav-mobile-cta {
  margin-top: .75rem;
  justify-content: center;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: .5rem;
}
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* =======================================================
   HERO (2 cols, stats stack sur image)
   ======================================================= */
.hero {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 92vh;
  padding-top: 72px;
}
.hero-left {
  background: var(--bg);
  padding: 5rem 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  font-size: .82rem;
  font-weight: 400;
  width: fit-content;
  color: var(--text);
}
.hero-badge svg { color: var(--accent); }

.hero-h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.01em;
  margin-top: .5rem;
}

.hero-lead {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.65;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 2rem;
}
.avatars { display: flex; }
.avatars img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -10px;
}
.avatars img:first-child { margin-left: 0; }
.sp-text { display: flex; flex-direction: column; line-height: 1.2; }
.sp-text strong { font-size: .95rem; font-weight: 400; }
.sp-text .stars { color: #f1b70e; font-size: .9rem; letter-spacing: normal; }
.star-rating {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 2px;
  line-height: 1;
  margin-top: 2px;
}
.star-rating .stars-bg { color: #e3e3e3; }
.star-rating .stars-fg {
  position: absolute;
  inset: 0;
  color: #f1b70e;
  overflow: hidden;
  white-space: nowrap;
  width: var(--rating, 100%);
}

/* HERO RIGHT — image + stats empilées en bas */
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-stats-stack {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(260px, 30%) 1fr;
  grid-template-rows: auto auto;
  z-index: 3;
  pointer-events: none;
}
.hero-stats-stack > * { pointer-events: auto; }
.hero-stat {
  padding: 1.4rem 1.6rem;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  min-width: 240px;
}
.hero-stat strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: .4rem;
  letter-spacing: normal;
}
.hero-stat span {
  font-size: .88rem;
  opacity: .95;
  line-height: 1.4;
  display: block;
  max-width: 200px;
}
.stat-red {
  background: var(--accent);
  border-radius: 0;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  justify-self: start;
  padding-right: 3rem;
}
.stat-dark {
  background: var(--bg-dark);
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}
.hero-side-text {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: #fff;
  padding: 1.75rem 2rem;
  font-size: .95rem;
  color: var(--text);
  line-height: 1.5;
}
.hero-side-text p { max-width: 420px; }
.side-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  color: var(--text);
  font-size: 1.1rem;
  transition: background .2s, color .2s, border-color .2s;
}
.side-arrow:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* =======================================================
   STATS STRIP
   ======================================================= */
.stats-simple {
  background: var(--bg);
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-simple-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stats-simple-grid > div {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.stats-simple-grid strong {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  letter-spacing: normal;
  color: var(--text);
  line-height: 1;
}
.stats-simple-grid span {
  font-size: .95rem;
  color: var(--text-muted);
}

/* =======================================================
   ABOUT SECTION (style Struxel)
   ======================================================= */
.about-section { padding: 6rem 0; background: var(--bg-alt); }
.about-section-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-section-left { display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start; }
.about-section-left .pill { margin-bottom: 0; }
.about-h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
  letter-spacing: normal;
  max-width: 640px;
}
.about-icon-venn {
  margin-top: 1.5rem;
  color: var(--text);
}
.about-dates { display: flex; flex-direction: column; gap: .25rem; }
.about-dates strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: normal;
}
.about-dates span { font-size: .95rem; color: var(--text-muted); }
.about-para {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}
.about-cta { margin-top: .5rem; }
.about-section-right { display: flex; justify-content: center; }
.about-illu { width: 100%; height: auto; max-width: 520px; }

/* =======================================================
   SERVICES LIST (avec images)
   ======================================================= */
.svc-list-section { padding: 6rem 0; background: var(--bg); }
.svc-list {
  border-top: 1px solid var(--line);
  margin-top: 1rem;
}
.svc-list-row {
  display: grid;
  grid-template-columns: 80px 1fr 180px 60px;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding .3s var(--ease), background .3s;
  cursor: pointer;
}
.svc-list-row:hover {
  padding-left: 1rem;
  padding-right: 1rem;
  background: rgba(255,255,255,.6);
}
.svc-list-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: normal;
}
.svc-list-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 400;
  letter-spacing: normal;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.svc-list-img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform .4s var(--ease);
  justify-self: end;
}
.svc-list-row:hover .svc-list-img { transform: scale(1.04); }
.svc-list-arrow {
  justify-self: end;
  font-size: 1.5rem;
  color: var(--text);
  transition: color .2s, transform .3s var(--ease);
}
.svc-list-row:hover .svc-list-arrow { color: var(--accent); transform: rotate(45deg); }
.svc-list-cta { display: flex; justify-content: flex-end; margin-top: 2rem; }

/* =======================================================
   TRUSTED PARTNER
   ======================================================= */
.trusted-section {
  padding: 7rem 0;
  background: var(--bg-alt);
  position: relative;
}
.trusted-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 4rem;
  gap: 1rem;
}
.trusted-head .pill { margin-bottom: 0; }
.trusted-h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  line-height: 1.25;
  letter-spacing: normal;
}
.trusted-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.trusted-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
}
.tl-cell {
  padding: 2.25rem 1rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: normal;
  color: #b0b0b0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
  cursor: default;
}
.tl-cell:hover {
  color: var(--accent);
  background: var(--bg);
  transform: scale(.98);
}
.trusted-right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.trusted-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 460px;
}
.trusted-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  position: relative;
}
.trusted-stats > div {
  position: relative;
  padding-right: 1rem;
}
.trusted-stats > div + div {
  border-left: 1px solid var(--line);
  padding-left: 1.25rem;
}
.trusted-stats strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1;
  margin-bottom: .5rem;
  color: var(--text);
}
.trusted-stats > div:first-child strong { color: var(--accent); }
.trusted-stats span {
  font-size: .75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: normal;
  font-weight: 400;
  white-space: nowrap;
}

/* =======================================================
   WHY TRUST US (paragraphe + accordion + photo)
   ======================================================= */
.why-trust { padding: 6rem 0; background: var(--bg); }
.why-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-trust-left { display: flex; flex-direction: column; gap: 2.5rem; }
.why-trust-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}
.why-trust-list { display: flex; flex-direction: column; gap: .75rem; }
.wt-item {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background .2s, border-color .2s, color .2s;
}
.wt-item:hover { background: #efefef; border-color: #dcdcdc; }
.wt-item[aria-expanded="true"] {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.wt-item[aria-expanded="true"]:hover { background: var(--text); }
.wt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.75rem;
  background: transparent;
  border: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.wt-item[aria-expanded="true"] .wt-arrow {
  color: var(--accent);
  transform: rotate(90deg);
}
.wt-arrow {
  font-size: 1.25rem;
  transition: transform .3s var(--ease), color .2s;
  display: inline-block;
}
.wt-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s var(--ease);
}
.wt-content > p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.75rem;
  font-size: .95rem;
  line-height: 1.65;
  color: rgba(255,255,255,.85);
}
.wt-item[aria-expanded="true"] .wt-content { grid-template-rows: 1fr; }
.wt-item[aria-expanded="true"] .wt-content > p { padding: 0 1.75rem 1.25rem; }

/* Quote Modal */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s var(--ease), visibility 0s linear .25s;
}
.quote-modal[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  transition: opacity .25s var(--ease);
}
.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.6);
  backdrop-filter: blur(4px);
}
.quote-modal-card {
  position: relative;
  width: min(1040px, calc(100vw - 2rem));
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  transform: translateY(10px);
  transition: transform .25s var(--ease);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.quote-modal-photo { position: relative; min-height: 560px; }
.quote-modal-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.quote-modal-body { padding: 3rem 2.5rem 2.5rem; }
@media (max-width: 640px) {
  .quote-modal-card { grid-template-columns: 1fr; }
  .quote-modal-photo { min-height: 180px; }
}
.quote-modal[aria-hidden="false"] .quote-modal-card { transform: translateY(0); }
.quote-modal-close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .95);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 0;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
  transition: background .2s, color .2s, transform .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.quote-modal-close:hover {
  background: #fff;
  color: var(--accent);
  transform: scale(1.08);
}
.quote-modal-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 .75rem;
  color: var(--text);
}
.quote-modal-lead {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
}
.quote-modal-action {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .9rem 1rem;
  border-radius: var(--pill);
  margin-top: .6rem;
  text-decoration: none;
  transition: transform .2s, filter .2s;
}
.quote-modal-action:hover { transform: translateY(-1px); filter: brightness(.95); }
.quote-modal-action svg { flex: 0 0 auto; }
.quote-modal-action span { display: flex; flex-direction: column; line-height: 1.2; }
.quote-modal-action strong { font-weight: 500; font-size: .95rem; }
.quote-modal-action em { font-style: normal; font-size: .8rem; opacity: .8; margin-top: 2px; }
.quote-modal-action-red { background: var(--accent); color: #fff; }
.quote-modal-action-dark { background: var(--bg-dark); color: #fff; }
.quote-modal-action-outline {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--line);
}
.quote-modal-action-outline:hover { border-color: var(--accent); color: var(--accent); }
.quote-modal-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin: 1.5rem 0 0;
  font-size: .88rem;
  color: var(--text-muted);
}
.quote-modal-hours svg { color: var(--accent); flex-shrink: 0; }
body.modal-open { overflow: hidden; }
.why-trust-right img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* =======================================================
   WORK SIMPLE
   ======================================================= */
.work-simple { padding: 6rem 0; background: var(--bg-alt); }

.work-simple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.work-simple-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--ease);
}
.work-simple-card:hover { transform: translateY(-4px); }
.work-simple-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.wsc-body { padding: 1.5rem; }
.wsc-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.work-simple-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: .5rem;
  letter-spacing: normal;
}
.work-simple-card p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.55;
}

/* =======================================================
   CTA SIMPLE
   ======================================================= */
.cta-simple {
  background: var(--bg-dark);
  color: #fff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-simple-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-simple-h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cta-simple p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-simple-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =======================================================
   FOOTER
   ======================================================= */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-grid-simple {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { color: #fff; margin-bottom: 1rem; }
.footer-desc {
  color: rgba(255,255,255,.6);
  font-size: .98rem;
  line-height: 1.6;
  max-width: 360px;
}
.footer-col h4 {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: normal;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.footer-col a,
.footer-col span {
  display: block;
  color: rgba(255,255,255,.85);
  padding: .35rem 0;
  font-size: .98rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-col span { color: rgba(255,255,255,.6); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-legal a:hover { color: #fff; }

/* =======================================================
   FAB PHONE
   ======================================================= */
.fab-phone {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.3rem;
  background: var(--accent);
  color: #fff;
  font-weight: 400;
  border-radius: var(--pill);
  box-shadow: 0 14px 30px rgba(192,57,43,.35);
  z-index: 90;
  transition: transform .2s, box-shadow .2s;
}
.fab-phone:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(192,57,43,.45); }

/* =======================================================
   RESPONSIVE
   ======================================================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 3rem 2rem; }
  .hero-right { min-height: 600px; }
  .about-section-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-illu { max-width: 400px; }
  .trusted-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .trusted-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why-trust-grid { grid-template-columns: 1fr; gap: 3rem; }
  .work-simple-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid-simple { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .navbar-inner { padding: .65rem 1.25rem; min-height: 60px; gap: 1rem; }
  .nav-logo { font-size: 1.35rem; }

  .hero-left { padding: 2.5rem 1.5rem; gap: 1.25rem; }
  .hero-h1 { font-size: 2.4rem; }
  .hero-right { min-height: 500px; }
  .hero-stat { min-width: 0; padding: 1.25rem 1.5rem; }
  .hero-stat strong { font-size: 2rem; }
  .hero-stats-stack { grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
  .stat-red { grid-column: 1; grid-row: 1; }
  .stat-dark { grid-column: 1; grid-row: 2; }
  .hero-side-text { grid-column: 1; grid-row: 3; }
  .hero-side-text { padding: 1.25rem 1.5rem; font-size: .85rem; }
  .side-arrow { width: 36px; height: 36px; }

  .stats-simple-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stats-simple { padding: 2.5rem 0; }

  .about-section, .svc-list-section, .trusted-section, .why-trust, .work-simple { padding: 4rem 0; }
  .work-simple-grid { grid-template-columns: 1fr; gap: 1rem; }
  .sec-head { margin-bottom: 2.5rem; }

  .svc-list-row { grid-template-columns: 28px minmax(0, 1fr) 80px 20px; gap: .5rem; padding: .9rem 0; align-items: center; min-height: 78px; }
  .svc-list-num { font-size: .85rem; }
  .svc-list-title { font-size: .95rem; line-height: 1.25; min-width: 0; }
  .svc-list-img { width: 80px; max-width: 80px; aspect-ratio: 16 / 10; height: auto; object-fit: cover; justify-self: end; flex-shrink: 0; }
  .svc-list-arrow { font-size: 1.25rem; }
  .svc-list-cta { justify-content: flex-start; padding-right: 5.5rem; }

  .trusted-logos { grid-template-columns: repeat(2, 1fr); }
  .tl-cell:nth-child(3n) { border-right: 1px solid var(--line); }
  .tl-cell:nth-child(2n) { border-right: none; }
  .tl-cell:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .tl-cell:nth-last-child(-n+2) { border-bottom: none; }
  .trusted-stats { grid-template-columns: 1fr; gap: 1rem; }

  .about-h2, .trusted-h2 { font-size: 1.6rem; }

  .cta-simple { padding: 4rem 0; }
  .cta-simple-actions { flex-direction: column; align-items: center; }
  .cta-simple-actions > * { justify-content: center; width: auto; }
  .cta-simple-actions .btn-phone { justify-content: center; }

  .footer-grid-simple { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .fab-phone span { display: none; }
  .fab-phone { padding: .85rem; }
}

/* Très petits mobiles — liste services compactée */
@media (max-width: 420px) {
  .svc-list-row { grid-template-columns: 24px minmax(0, 1fr) 64px 16px; gap: .4rem; min-height: 66px; padding: .75rem 0; }
  .svc-list-num { font-size: .75rem; }
  .svc-list-title { font-size: .85rem; }
  .svc-list-img { width: 64px; max-width: 64px; }
  .svc-list-arrow { font-size: 1.1rem; }
  .svc-list-cta { padding-right: 0; }
}

/* =======================================================
   ABOUT PAGE (dédiée)
   ======================================================= */
.page { padding-top: 72px; }

.about-hero { padding: 5rem 0 3rem; background: var(--bg); }
.about-hero-inner { max-width: 900px; text-align: left; }
.about-hero-inner .pill { margin-bottom: 1.5rem; }
.about-hero-h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 0 0 1.5rem;
  max-width: 780px;
}
.about-hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 760px;
}

.about-story { padding: 5rem 0; background: #fff; }
.about-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-story-text .pill { margin-bottom: 1rem; }
.about-story-text h2 { margin-bottom: 1.5rem; }
.about-story-text .body { margin-bottom: 1.25rem; line-height: 1.7; }
.about-credentials-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.about-credentials-inline span {
  font-size: .88rem;
  color: var(--text-muted);
  padding: .5rem .9rem;
  background: var(--bg);
  border-radius: 999px;
}
.about-credentials-inline strong { color: var(--text); }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.astat {
  padding: 2rem 1.5rem;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--line);
}
.astat strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: .5rem;
}
.astat span { font-size: .9rem; color: var(--text-muted); line-height: 1.4; }

.about-mission { padding: 5rem 0; background: var(--bg); }
.about-mission .sec-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.about-mission .sec-head .pill { margin: 0 auto 1rem; }
.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.amc {
  padding: 2rem 1.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color .2s, transform .2s;
}
.amc:hover { border-color: var(--accent); transform: translateY(-3px); }
.amc-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.amc h3 { font-size: 1.15rem; font-weight: 500; margin: 0 0 .75rem; }
.amc p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

.about-coverage { padding: 5rem 0; background: var(--bg); }
.about-coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-coverage .pill { margin-bottom: 1rem; }
.about-coverage h2 { margin-bottom: 1rem; }
.about-coverage .section-sub { margin-bottom: 1.75rem; }
.sector-pills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.sector-pills li {
  padding: .6rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .92rem;
  transition: border-color .2s, color .2s;
}
.sector-pills li:hover { border-color: var(--accent); color: var(--accent); }
.zones-text { line-height: 1.8; font-size: .95rem; color: var(--text-muted); }
.zones-text strong { color: var(--text); }

@media (max-width: 900px) {
  .about-coverage-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.estimator { padding: 5rem 0; background: #fff; }
.estimator .sec-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.estimator .sec-head .pill { margin: 0 auto 1rem; }
.estimator-card {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--bg);
  border-radius: 20px;
}
.estimator-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 14px;
}
.estimator-body h3 { font-size: 1.8rem; margin: 0 0 .25rem; font-family: 'Poppins', sans-serif; font-weight: 400; }
.estimator-role { color: var(--accent); font-size: .95rem; display: block; margin-bottom: 1.25rem; }
.estimator-body p { line-height: 1.7; margin: 0 0 1.5rem; color: var(--text-muted); }
.estimator-contact { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.estimator-contact .btn { display: inline-flex; align-items: center; }
.estimator-email { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.estimator-email:hover { color: var(--accent); }

/* =======================================================
   ABOUT — SECTEURS, ZONES, CREDENTIALS
   ======================================================= */
.about-sectors, .zones, .credentials { padding: 6rem 0; background: var(--bg); }
.zones { background: #fff; }
.about-sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.about-sector {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: border-color .2s, transform .2s;
}
.about-sector:hover { border-color: #FF4040; transform: translateY(-2px); }
.about-sector span {
  display: block;
  font-size: .85rem;
  color: #FF4040;
  margin-bottom: .5rem;
}
.about-sector h3 { font-size: 1.1rem; font-weight: 500; margin: 0 0 .5rem; }
.about-sector p { font-size: .88rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 2.5rem;
}
.zone-col h4 {
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 1rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid #FF4040;
  display: inline-block;
}
.zone-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 1.5rem;
}
.zone-col li {
  padding: .25rem 0;
  font-size: .92rem;
  color: var(--text);
}
.zone-col li::before { content: "·"; color: #FF4040; margin-right: .5rem; font-weight: 700; }

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.cred-card {
  padding: 2rem 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.cred-card:hover { border-color: #FF4040; transform: translateY(-3px); }
.cred-card svg { margin-bottom: 1rem; }
.cred-card h3 { font-size: 1rem; font-weight: 500; margin: 0 0 .5rem; }
.cred-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

@media (max-width: 1024px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-mission-grid { grid-template-columns: repeat(2, 1fr); }
  .estimator-card { grid-template-columns: 1fr; gap: 2rem; padding: 1.5rem; }
  .estimator-photo { max-width: 360px; margin: 0 auto; }
}
@media (max-width: 900px) {
  .about-sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .zones-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .about-sectors-grid, .cred-grid, .about-mission-grid { grid-template-columns: 1fr; }
  .zone-col ul { columns: 1; }
  .about-sectors, .zones, .credentials, .about-mission, .estimator, .about-story { padding: 4rem 0; }
  .about-hero { padding: 3.5rem 0 2rem; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: .75rem; }
}

/* =======================================================
   SERVICES PAGE — GARANTIES, CARTES DÉTAIL, MACHINERIE, PROCESS, FAQ
   ======================================================= */
.svc-guarantees {
  background: var(--bg-alt);
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.svc-guarantees-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.svc-guarantee {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  padding: 0 .5rem;
}
.svc-guarantee svg { color: var(--accent); }
.svc-guarantee strong {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}
.svc-guarantee span {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.svc-detail { padding: 6rem 0; background: var(--bg-alt); }
.svc-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 1rem;
}
.svc-detail-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .2s, box-shadow .3s var(--ease);
  scroll-margin-top: 90px;
}
.svc-detail-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0,0,0,.06);
}
.svc-detail-card > img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.svc-detail-body {
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  flex: 1;
}
.svc-detail-head {
  display: flex;
  align-items: baseline;
  gap: .85rem;
}
.svc-detail-num {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  color: var(--accent);
  font-weight: 400;
}
.svc-detail-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.25;
  color: var(--text);
  margin: 0;
}
.svc-detail-lead {
  color: var(--text-muted);
  font-size: .98rem;
  line-height: 1.65;
  margin: 0;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.svc-tags span {
  font-size: .78rem;
  padding: .3rem .75rem;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-muted);
}
.svc-feat {
  list-style: none;
  padding: 1.1rem 0 0;
  margin: 0;
  display: grid;
  gap: .6rem;
  border-top: 1px solid var(--line);
}
.svc-feat li {
  position: relative;
  padding-left: 1.5rem;
  font-size: .92rem;
  color: var(--text);
  line-height: 1.55;
}
.svc-feat li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .4rem;
  width: 10px;
  height: 10px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.svc-machinery { padding: 6rem 0; background: var(--bg); }
.svc-mach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.svc-mach-card {
  padding: 2rem 1.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.svc-mach-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.svc-mach-card svg {
  color: var(--accent);
  margin-bottom: .5rem;
}
.svc-mach-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: normal;
  color: var(--text);
  margin: 0;
}
.svc-mach-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.svc-process { padding: 6rem 0; background: var(--bg-alt); }
.svc-process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.svc-process-step {
  padding: 2rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.svc-process-step:hover { border-color: var(--accent); transform: translateY(-3px); }
.svc-process-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .75rem;
  font-weight: 400;
}
.svc-process-step h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 .25rem;
  letter-spacing: normal;
  color: var(--text);
}
.svc-process-step p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.svc-faq { padding: 6rem 0; background: var(--bg); }
.svc-faq-inner { max-width: 860px; margin: 2.5rem auto 0; }

@media (max-width: 1024px) {
  .svc-detail-grid { grid-template-columns: 1fr; }
  .svc-mach-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-process-list { grid-template-columns: repeat(3, 1fr); }
  .svc-guarantees-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
@media (max-width: 640px) {
  .svc-mach-grid { grid-template-columns: 1fr; }
  .svc-process-list { grid-template-columns: repeat(2, 1fr); }
  .svc-guarantees-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .svc-detail, .svc-machinery, .svc-process, .svc-faq { padding: 4rem 0; }
  .svc-guarantees { padding: 1.75rem 0; }
  .svc-detail-body { padding: 1.5rem 1.5rem 1.75rem; }
  .svc-detail-body h3 { font-size: 1.3rem; }
}

/* =======================================================
   CONTACT PAGE
   ======================================================= */
.contact-section { padding: 5rem 0 5rem; background: var(--bg-alt); }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 920px;
  margin: 0 auto;
}
.contact-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  color: var(--text);
}
.contact-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0,0,0,.06);
}
.contact-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  transition: background .2s, color .2s;
}
.contact-card:hover .contact-icon {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.contact-body { display: flex; flex-direction: column; gap: .25rem; min-width: 0; }
.contact-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  margin: 0 0 .35rem;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.contact-val {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
  word-break: break-word;
  transition: color .2s;
}
.contact-card:hover .contact-val { color: var(--accent); }
.contact-body small {
  display: block;
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: .3rem;
  line-height: 1.45;
}

.credentials-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 920px;
  margin: 3rem auto 0;
  padding: 2rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
}
.credentials-band > div {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 0 .5rem;
  border-right: 1px solid var(--line);
}
.credentials-band > div:last-child { border-right: 0; }
.credentials-band strong {
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
}
.credentials-band span {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .contact-cards { grid-template-columns: 1fr; gap: 1rem; }
  .credentials-band {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding: 1.5rem 1rem;
  }
  .credentials-band > div { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 1.25rem; }
  .credentials-band > div:nth-child(3),
  .credentials-band > div:nth-child(4) { border-bottom: 0; padding-bottom: 0; }
  .contact-section { padding: 3.5rem 0 4rem; }
}
@media (max-width: 480px) {
  .credentials-band { grid-template-columns: 1fr; }
  .credentials-band > div { border-right: 0; }
  .credentials-band > div:nth-child(3) { border-bottom: 1px solid var(--line); padding-bottom: 1.25rem; }
  .contact-card { padding: 1.5rem; }
}

/* =======================================================
   LEGAL PAGES (privacy.html, terms.html)
   ======================================================= */
.legal-page { padding: 5rem 0 6rem; background: var(--bg-alt); }
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  font-size: .98rem;
  line-height: 1.75;
  color: var(--text);
}
.legal-content .pill { margin-bottom: 1.5rem; }
.legal-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 1rem;
  color: var(--text);
  letter-spacing: normal;
}
.legal-meta {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.legal-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin: 2.5rem 0 .75rem;
  color: var(--text);
  letter-spacing: normal;
}
.legal-content p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}
.legal-content ul {
  margin: 0 0 1.25rem 1.25rem;
  list-style: disc;
  color: var(--text-muted);
  padding-left: .5rem;
}
.legal-content ul li {
  margin-bottom: .4rem;
  line-height: 1.65;
}
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--accent-hover); }
.legal-content strong { color: var(--text); font-weight: 500; }

@media (max-width: 640px) {
  .legal-page { padding: 3.5rem 0 4rem; }
  .legal-content { font-size: .95rem; }
  .legal-content h2 { font-size: 1.2rem; margin-top: 2rem; }
}

/* =======================================================
   TEAM SINGLE (Estimateur)
   ======================================================= */
.team-grid-single {
  grid-template-columns: minmax(280px, 360px) !important;
  justify-content: center;
}
.team-contact {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: .95rem;
}
.team-contact a {
  color: var(--ink);
  transition: color .2s;
}
.team-contact a:hover { color: var(--accent); }

/* =======================================================
   SP-TEXT accréditations (hero)
   ======================================================= */
.sp-text .sp-sub {
  font-size: .82rem;
  color: rgba(0,0,0,.6);
  margin-top: .15rem;
}
.sp-text strong { font-weight: 500; letter-spacing: .02em; }
