/*
Theme Name:  Clinett
Theme URI:   https://clinett.fr
Author:      Clinett
Author URI:  https://clinett.fr
Description: Thème professionnel pour Clinett – Entreprise de nettoyage industriel en Île-de-France. Responsive, burger menu, Customizer, blog, pages internes, archives.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: clinett
Tags:        one-page, responsive, customizer, custom-colors, custom-logo, blog
*/

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Poppins', sans-serif; color: #1a2a42; background: #fff; overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
/* Reset listes UNIQUEMENT dans nav/footer — pas dans le contenu */
nav ul, nav ol, .nav-menu ul, .nav-menu ol,
.ft-col ul, .ft-col ol,
.nav-items ul, .nav-items ol { list-style: none; padding: 0; margin: 0; }
nav li, .nav-menu li, .ft-col li,
.nav-items li { list-style: none; }

/* ── CSS VARIABLES (overridden by Customizer) ── */
:root {
  --blue:   #1B4F9B;
  --blue2:  #2563C0;
  --green:  #5BAD2E;
  --green2: #4a9424;
  --orange: #E8821A;
  --navy:   #1C2D4F;
  --navy2:  #112038;
  --light:  #F5F8FC;
  --grey:   #E4ECF5;
  --muted:  #6E84A3;
}

/* ════════════════════════════
   NAVBAR
════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  height: 66px;
  background: #fff;
  box-shadow: 0 2px 20px rgba(27,79,155,.12);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4vw;
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.15); }

/* Logo */
.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.85rem; font-weight: 800;
  letter-spacing: -.03em; line-height: 1; flex-shrink: 0;
  background: linear-gradient(90deg, var(--blue) 40%, var(--green) 40%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo img { height: 44px; width: auto; -webkit-text-fill-color: unset; }

/* ── Desktop nav container ── */
.nav-menu {
  display: flex; align-items: center;
  gap: 0; flex: 1; justify-content: flex-end;
}
.nav-items {
  display: flex; align-items: center; gap: 0;
}

/* ── Chaque item niveau 1 ── */
.nav-item {
  position: relative;
}
.nav-item > a {
  display: flex; align-items: center; gap: 5px;
  color: #1a2a42; font-size: .83rem; font-weight: 500;
  padding: 0 .95rem; height: 66px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-item > a:hover,
.nav-item > a.active { color: var(--blue); }
.nav-item > a.active { font-weight: 600; }

/* Indicateur actif souligné */
.nav-item > a::after {
  content: '';
  position: absolute; bottom: 0; left: .95rem; right: .95rem;
  height: 2px; background: var(--blue); border-radius: 2px 2px 0 0;
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s;
}
.nav-item > a.active::after,
.nav-item:hover > a::after { transform: scaleX(1); }

/* ── Flèche dropdown ── */
.dd-arrow {
  display: inline-block; width: 8px; height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s;
  margin-left: 2px; flex-shrink: 0;
}
.nav-item.has-dropdown:hover .dd-arrow {
  transform: rotate(-135deg) translateY(-2px);
}

/* ── Dropdown sous-menu ── */
.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  min-width: 240px;
  background: #fff;
  border-top: 3px solid var(--blue);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  padding: .5rem 0;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity .22s, transform .22s, visibility .22s;
  z-index: 100;
}
.nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: .65rem 1.2rem;
  color: #1a2a42; font-size: .82rem; font-weight: 500;
  border-left: 3px solid transparent;
  transition: color .15s, background .15s, border-color .15s, padding-left .15s;
}
.dropdown-menu a:hover,
.dropdown-menu a.active {
  color: var(--blue);
  background: var(--light);
  border-left-color: var(--blue);
  padding-left: 1.5rem;
}
.dropdown-menu a.active { font-weight: 600; }

/* Séparateur entre items du dropdown */
.dropdown-menu a + a {
  border-top: 1px solid var(--grey);
}

/* ── Actions (tel + CTA) ── */
.nav-actions {
  display: flex; align-items: center; gap: .8rem;
  margin-left: 1rem; padding-left: 1rem;
  border-left: 1px solid var(--grey);
}
.nav-tel {
  display: flex; align-items: center; gap: .4rem;
  color: var(--blue); font-size: .82rem; font-weight: 600;
  white-space: nowrap;
}
.nav-tel svg { flex-shrink: 0; }
.nav-cta {
  background: var(--blue); color: #fff !important;
  font-weight: 700; font-size: .82rem;
  padding: .55rem 1.2rem; border-radius: 6px;
  white-space: nowrap;
  transition: background .2s, transform .15s;
  display: inline-block;
}
.nav-cta:hover { background: var(--blue2); transform: translateY(-1px); }

/* ── Burger ── */
.burger-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 5px; width: 38px; height: 38px;
  align-items: center; justify-content: center;
}
.burger-btn span {
  display: block; width: 24px; height: 2px;
  background: #1a2a42; border-radius: 2px; transition: all .3s;
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════
   MOBILE DRAWER (accordéon)
══════════════════════════════ */
#drawer {
  display: none; position: fixed;
  top: 66px; left: 0; right: 0; z-index: 9998;
  background: #fff;
  border-top: 3px solid var(--blue);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
  overflow: hidden; max-height: 0;
  transition: max-height .38s ease;
}
#drawer.open { max-height: 85vh; overflow-y: auto; }
.drawer-inner { display: flex; flex-direction: column; padding-bottom: 1rem; }

/* Item niveau 1 */
.mob-item {
  border-bottom: 1px solid var(--grey);
}
.mob-item > a,
.mob-item-head a {
  display: block; padding: .9rem 4vw;
  color: #1a2a42; font-size: .9rem; font-weight: 500;
  transition: color .2s;
}
.mob-item > a:hover,
.mob-item-head a:hover,
.mob-item > a.active,
.mob-item-head a.active { color: var(--blue); }
.mob-item > a.active,
.mob-item-head a.active { font-weight: 700; }

/* Ligne head avec bouton toggle */
.mob-item-head {
  display: flex; align-items: center; justify-content: space-between;
}
.mob-item-head a { flex: 1; }

/* Bouton toggle accordéon */
.mob-toggle {
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mob-toggle span {
  display: block; width: 10px; height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg); transition: transform .25s;
}
.mob-item.open .mob-toggle span { transform: rotate(-135deg); }

/* Sous-menu mobile */
.mob-submenu {
  display: none;
  background: var(--light);
  border-top: 1px solid var(--grey);
}
.mob-item.open .mob-submenu { display: block; }
.mob-sub-link {
  display: block;
  padding: .75rem 4vw .75rem 6vw;
  color: var(--muted); font-size: .85rem; font-weight: 500;
  border-bottom: 1px solid var(--grey);
  border-left: 3px solid transparent;
  transition: color .2s, border-color .2s, padding-left .2s;
}
.mob-sub-link:last-child { border-bottom: none; }
.mob-sub-link:hover,
.mob-sub-link.active {
  color: var(--blue); border-left-color: var(--blue); padding-left: 7vw;
}
.mob-sub-link.active { font-weight: 600; }

/* Footer drawer */
.drawer-footer {
  display: flex; flex-direction: column; gap: .6rem;
  padding: 1rem 4vw .5rem;
  border-top: 1px solid var(--grey);
  margin-top: .3rem;
}
.drawer-tel {
  display: flex; align-items: center; gap: .5rem;
  color: var(--blue); font-size: .9rem; font-weight: 600;
}
.drawer-cta {
  display: block; text-align: center;
  background: var(--blue); color: #fff;
  font-weight: 700; font-size: .9rem;
  padding: .85rem; border-radius: 6px;
  transition: background .2s;
}
.drawer-cta:hover { background: var(--blue2); color: #fff; }

/* ════════════════════════════
   HERO (page d'accueil)
════════════════════════════ */
.hero {
  margin-top: 66px; position: relative; overflow: hidden;
  min-height: 500px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #a8ccec 0%, #c8e2f6 45%, #dff0fc 100%);
}
.hero-par {
  position: absolute; inset: -15%;
  background: linear-gradient(160deg, #90bce4 0%, #c0def4 50%, #daeefa 100%);
  will-change: transform;
}
.hero-par.has-img {
  background-size: cover; background-position: center;
}
.bb { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.5), rgba(180,220,255,.15)); filter: blur(1px); }
.bb:nth-child(1) { width: 150px; height: 150px; top: 10%; left: 5%; opacity: .65; }
.bb:nth-child(2) { width:  90px; height:  90px; top: 55%; left: 13%; opacity: .45; }
.bb:nth-child(3) { width:  75px; height:  75px; top: 18%; right: 17%; opacity: .55; }
.bb:nth-child(4) { width: 170px; height: 170px; bottom: 5%; right: 7%; opacity: .30; }
.bb:nth-child(5) { width:  45px; height:  45px; top: 62%; right: 30%; opacity: .50; }
.hero-ov { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,50,114,.52) 0%, rgba(15,50,114,.22) 55%, rgba(15,50,114,.04) 100%); }

/* techniciens */
.tech { position: absolute; bottom: 0; display: flex; align-items: flex-end; }
.tech.tl { left: 2%; } .tech.tr { right: 2%; }
.t-fig { position: relative; width: 180px; height: 420px; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; }
.t-torso { width: 128px; height: 265px; border-radius: 64px 64px 12px 12px; background: linear-gradient(168deg,#2055bc,#163fa8,#0c2d8e); position: relative; box-shadow: inset -10px 0 22px rgba(0,0,0,.18), 8px 14px 30px rgba(0,0,0,.2); }
.t-head { position: absolute; top: -48px; left: 50%; transform: translateX(-50%); width: 48px; height: 48px; border-radius: 50%; }
.t-tag { position: absolute; top: 52px; left: 50%; transform: translateX(-50%); font-size: .52rem; font-weight: 800; color: rgba(255,255,255,.95); letter-spacing: .09em; white-space: nowrap; background: rgba(255,255,255,.13); padding: 2px 6px; border-radius: 3px; }
.t-al { position: absolute; top: 36px; left: -18px; width: 18px; height: 105px; border-radius: 9px; background: linear-gradient(180deg,#2055bc,#163fa8); transform: rotate(5deg); }
.t-ar { position: absolute; top: 36px; right: -18px; width: 18px; height: 105px; border-radius: 9px; background: linear-gradient(180deg,#2055bc,#163fa8); transform: rotate(-5deg); }
.t-gl { position: absolute; bottom: -7px; left: -19px; width: 18px; height: 20px; background: #f5c518; border-radius: 4px; }
.t-gr { position: absolute; bottom: -7px; right: -19px; width: 18px; height: 20px; background: #f5c518; border-radius: 4px; }
.t-legs { width: 108px; height: 118px; background: linear-gradient(180deg,#182238,#0e1826); border-radius: 0 0 6px 6px; position: relative; }
.t-sl { position: absolute; bottom: 0; left: 11px; width: 36px; height: 11px; background: #111; border-radius: 3px 3px 2px 2px; }
.t-sr { position: absolute; bottom: 0; right: 11px; width: 36px; height: 11px; background: #111; border-radius: 3px 3px 2px 2px; }
.t-cap { position: absolute; top: -64px; left: 50%; transform: translateX(-50%); width: 54px; height: 19px; background: #1a40a0; border-radius: 50% 50% 0 0; }
.t-cap::after { content: ''; position: absolute; bottom: -1px; left: -7px; width: 68px; height: 6px; background: #122e80; border-radius: 3px; }
.mach { position: absolute; bottom: 116px; right: -50px; }
.mach-b { width: 68px; height: 76px; background: linear-gradient(180deg,#ddd,#bbb); border-radius: 7px; box-shadow: 4px 4px 10px rgba(0,0,0,.18); position: relative; }
.mach-b::before { content: ''; position: absolute; top: 8px; left: 7px; right: 7px; height: 16px; background: rgba(255,255,255,.28); border-radius: 3px; }
.mach-b::after { content: ''; position: absolute; bottom: -7px; left: 4px; right: 4px; height: 12px; background: #1a6ed8; border-radius: 6px; }
.mach-h { position: absolute; top: -28px; right: 8px; width: 5px; height: 32px; background: #999; border-radius: 2px; }
.sq { position: absolute; bottom: 145px; left: -10px; transform: rotate(-11deg); transform-origin: bottom; }
.sq-p { width: 5px; height: 115px; background: linear-gradient(180deg,#ccc,#999); border-radius: 2px; }
.sq-h { width: 20px; height: 14px; background: #2255b8; border-radius: 3px 3px 0 0; margin-left: -7px; }

.hero-txt { position: relative; z-index: 10; text-align: center; padding: 65px 20px 75px; max-width: 560px; }
.hero-txt h1 { font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: .7rem; text-shadow: 0 2px 14px rgba(0,0,0,.28); }
.hero-txt .sub { font-size: .97rem; font-style: italic; font-weight: 300; color: rgba(255,255,255,.9); margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-g { background: var(--green); color: #fff; font-weight: 700; font-size: .9rem; padding: .85rem 2rem; border-radius: 6px; box-shadow: 0 4px 14px rgba(91,173,46,.4); transition: background .2s, transform .15s; display: inline-block; }
.btn-g:hover { background: var(--green2); transform: translateY(-2px); color: #fff; }
.btn-w { background: rgba(255,255,255,.15); color: #fff; font-weight: 600; font-size: .9rem; padding: .85rem 2rem; border-radius: 6px; border: 2px solid rgba(255,255,255,.5); transition: background .2s; display: inline-block; }
.btn-w:hover { background: rgba(255,255,255,.25); color: #fff; }
.wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.wave svg { display: block; width: 100%; height: 58px; }

/* ════════════════════════════
   INFO BAR
════════════════════════════ */
.ibar { background: #fff; border-bottom: 1px solid #E4ECF5; display: flex; justify-content: center; }
.ibar-in { display: flex; max-width: 800px; width: 100%; }
.ib { flex: 1; display: flex; align-items: center; gap: .8rem; padding: 1.4rem 2rem; }
.ib + .ib { border-left: 1px solid #E4ECF5; }
.ib-ico { font-size: 1.3rem; flex-shrink: 0; }
.ib-l { font-size: .68rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1px; }
.ib-v { font-size: .88rem; font-weight: 700; color: var(--navy); }

/* ════════════════════════════
   SERVICES GRID
════════════════════════════ */
#services { padding: 75px 5vw; background: #fff; }
.sec-hd { text-align: center; margin-bottom: 2.8rem; }
.sec-hd h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); font-weight: 700; color: var(--navy); }
.sec-hd h2 em { color: var(--green); font-weight: 300; font-style: normal; }
.sec-ln { width: 48px; height: 3px; background: var(--green); border-radius: 2px; margin: .6rem auto 0; }
.srv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.sc { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; display: block; box-shadow: 0 4px 18px rgba(0,0,0,.1); transition: transform .3s, box-shadow .3s; }
.sc:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,.17); }
.sc-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .4s; }
.sc:hover .sc-bg { transform: scale(1.06); }
.sc-ov { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,40,100,.88) 0%, rgba(12,40,100,.14) 65%, transparent 100%); }
.sc-lb { position: absolute; bottom: 0; left: 0; right: 0; padding: .9rem 1rem; color: #fff; font-weight: 700; font-size: .9rem; text-shadow: 0 1px 4px rgba(0,0,0,.4); }

/* ════════════════════════════
   RÉFÉRENCES
════════════════════════════ */
#references { padding: 70px 5vw; background: var(--light); }
.ref-hd { text-align: center; margin-bottom: 2.2rem; }
.ref-hd h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: var(--navy); }
.ref-hd h2 em { color: var(--green); font-weight: 300; font-style: normal; }
.ref-ln { width: 48px; height: 3px; background: var(--green); border-radius: 2px; margin: .6rem auto 0; }
.ref-q { text-align: center; max-width: 560px; margin: 0 auto 2.5rem; font-size: .97rem; font-style: italic; color: var(--muted); position: relative; padding: 0 2.5rem; }
.ref-q::before { content: '\201C'; position: absolute; top: -.5rem; left: 0; font-size: 3rem; color: var(--grey); font-style: normal; font-weight: 900; line-height: 1; }
.ref-q::after  { content: '\201D'; position: absolute; bottom: -1.2rem; right: 0; font-size: 3rem; color: var(--grey); font-style: normal; font-weight: 900; line-height: 1; }
.logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.logo-b { background: #fff; border: 2px solid var(--grey); border-radius: 8px; padding: .65rem 1.7rem; font-weight: 800; font-size: .95rem; cursor: default; transition: border-color .2s, transform .2s; }
.logo-b:hover { transform: translateY(-2px); border-color: rgba(27,79,155,.25); }

/* ════════════════════════════
   DEVIS + PARIS SPLIT
════════════════════════════ */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 570px; }
.split-l { background: var(--navy); padding: 60px 5vw 60px 6vw; position: relative; overflow: hidden; }
.split-l::before { content: ''; position: absolute; top: -20%; left: -10%; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(91,173,46,.07) 0%, transparent 70%); pointer-events: none; }
.split-l h2 { font-size: 1.85rem; font-weight: 800; color: #fff; margin-bottom: .4rem; }
.form-ln { width: 48px; height: 3px; background: var(--orange); border-radius: 2px; margin: .4rem 0 1.8rem; }
.fi { width: 100%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 5px; padding: .68rem 1rem; color: #fff; font-family: 'Poppins', sans-serif; font-size: .82rem; outline: none; transition: border-color .2s; margin-bottom: .75rem; }
.fi::placeholder { color: rgba(255,255,255,.38); }
.fi:focus { border-color: rgba(91,173,46,.6); }
.fi-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: .75rem; }
.fi-row .fi { margin-bottom: 0; }
select.fi option { background: var(--navy2); color: #fff; }
textarea.fi { resize: vertical; min-height: 85px; }
.btn-env { background: var(--orange); color: #fff; font-weight: 700; font-size: .88rem; letter-spacing: .05em; text-transform: uppercase; padding: .85rem 2.5rem; border: none; border-radius: 5px; cursor: pointer; box-shadow: 0 4px 14px rgba(232,130,26,.35); transition: background .2s, transform .15s; }
.btn-env:hover { background: #cc6f0a; transform: translateY(-1px); }
.ci { margin-top: 2rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.09); display: flex; flex-direction: column; gap: .5rem; }
.ci-t { font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.32); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .2rem; }
.ci a { font-size: .82rem; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: .5rem; transition: color .2s; }
.ci a:hover { color: #fff; }
.ci a strong { color: var(--green); }
.ci-note { font-size: .75rem; color: rgba(255,255,255,.32); line-height: 1.7; margin-top: .2rem; }
.split-r { position: relative; overflow: hidden; }
.paris-par { position: absolute; inset: -20%; background: url('https://images.unsplash.com/photo-1499856871958-5b9627545d1a?w=900&q=80') center/cover no-repeat; will-change: transform; }
.paris-ov { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,20,55,.15) 0%, rgba(10,20,55,.45) 100%); }
.paris-box { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; }
.pc { background: rgba(255,255,255,.1); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.15); border-radius: 12px; padding: 1.4rem; }
.pc-r { display: flex; align-items: center; gap: .6rem; color: #fff; font-size: .83rem; margin-bottom: .55rem; }
.pc-r:last-child { margin-bottom: 0; }
.pc-r strong { color: var(--green); }

/* ════════════════════════════
   FOOTER
════════════════════════════ */
footer.site-footer { background: var(--navy2); }
.ft-top { height: 4px; background: linear-gradient(90deg, var(--blue), var(--green)); }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding: 50px 5vw 40px; }
.ft-brand .nav-logo { font-size: 1.6rem; }
.ft-brand p { margin-top: .8rem; font-size: .77rem; color: rgba(255,255,255,.36); line-height: 1.75; max-width: 220px; }
.ft-links { margin-top: 1.3rem; display: flex; flex-direction: column; gap: .5rem; }
.ft-links a { font-size: .77rem; color: rgba(255,255,255,.48); display: flex; align-items: center; gap: .5rem; transition: color .2s; }
.ft-links a:hover { color: var(--green); }
.ft-col h5 { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: .9rem; }
.ft-col a,
.ft-col ul li a { display: block; font-size: .77rem; color: rgba(255,255,255,.46); margin-bottom: .3rem; line-height: 1.4; transition: color .2s; }
.ft-col a:hover,
.ft-col ul li a:hover { color: rgba(255,255,255,.88); }
.ft-col ul { list-style: none; padding: 0; margin: 0; }
.ft-col ul li { list-style: none; padding: 0; margin: 0; }
.ft-col .sub-menu { display: none; }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 1.4rem 5vw; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .8rem; }
.ft-bottom span, .ft-bottom a { font-size: .7rem; color: rgba(255,255,255,.22); }
.ft-bottom a:hover { color: rgba(255,255,255,.5); }

/* ════════════════════════════
   PAGE BANNER (pages internes)
════════════════════════════ */
.page-banner {
  margin-top: 66px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 60px 5vw 50px;
  position: relative; overflow: hidden;
}
.page-banner::after { content: ''; position: absolute; right: -5%; top: -30%; width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,.04); }
.page-banner h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: .5rem; position: relative; z-index: 1; }
.page-banner .breadcrumb { font-size: .8rem; color: rgba(255,255,255,.55); position: relative; z-index: 1; }
.page-banner .breadcrumb a { color: rgba(255,255,255,.7); transition: color .2s; }
.page-banner .breadcrumb a:hover { color: var(--green); }
.page-banner .breadcrumb span { margin: 0 .4rem; }

/* ════════════════════════════
   PAGE CONTENT (pages internes)
════════════════════════════ */
.page-wrap { max-width: 1140px; margin: 0 auto; padding: 60px 5vw; }
.page-wrap.with-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
.page-content h1, .page-content h2, .page-content h3 { color: var(--navy); font-weight: 700; margin-bottom: .8rem; line-height: 1.25; }
.page-content h2 { font-size: 1.6rem; margin-top: 2rem; }
.page-content h3 { font-size: 1.2rem; margin-top: 1.5rem; }
.page-content p { margin-bottom: 1.2rem; font-size: .95rem; line-height: 1.8; color: #2a3a52; }
.page-content ul, .page-content ol { margin: 0 0 1.2rem 1.5rem; font-size: .95rem; line-height: 1.8; color: #2a3a52; }
.page-content li { margin-bottom: .4rem; }
.page-content img { border-radius: 10px; margin: 1.5rem 0; }
.page-content a { color: var(--blue); text-decoration: underline; }
.page-content a:hover { color: var(--blue2); }
.entry-thumbnail { width: 100%; height: 360px; object-fit: cover; border-radius: 12px; margin-bottom: 2rem; }

/* ════════════════════════════
   BLOG – LAYOUT RESPONSIVE
════════════════════════════ */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.blog-layout > main { min-width: 0; }
.blog-layout > aside { min-width: 0; }

/* Grille articles */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

@media (max-width: 960px) {
  /* Sidebar passe sous les articles */
  .blog-layout { grid-template-columns: 1fr; }
  .blog-layout > aside { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-layout > aside { grid-template-columns: 1fr; }
}

/* ════════════════════════════
   BLOG – ARTICLES
════════════════════════════ */
.post-card {
  background: #fff; border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.12); }
.post-card-img { height: 200px; background: var(--light) center/cover no-repeat; display: block; }
.post-card-img img { width: 100%; height: 200px; object-fit: cover; }
.post-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.post-meta { font-size: .72rem; color: var(--muted); margin-bottom: .6rem; display: flex; align-items: center; gap: .5rem; }
.post-meta .cat { background: rgba(27,79,155,.08); color: var(--blue); font-weight: 600; padding: 2px 8px; border-radius: 50px; }
.post-card-body h2, .post-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: .6rem; }
.post-card-body h2 a, .post-card-body h3 a { color: inherit; transition: color .2s; }
.post-card-body h2 a:hover, .post-card-body h3 a:hover { color: var(--blue); }
.post-card-body p { font-size: .83rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; flex: 1; }
.read-more { display: inline-flex; align-items: center; gap: 5px; font-size: .8rem; font-weight: 700; color: var(--blue); margin-top: auto; transition: gap .2s; }
.read-more:hover { gap: 10px; }
.read-more::after { content: '→'; }

/* Pagination */
.pagination {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .4rem;
  margin-top: 3rem;
  list-style: none !important;
  padding: 0 !important;
}
.pagination ul,
.pagination ol { display: none !important; }
.page-num,
.pagination .page-numbers {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 .7rem;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  background: var(--light);
  color: var(--navy);
  border: 1.5px solid var(--grey);
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
  line-height: 1;
}
.page-num:hover,
.pagination .page-numbers:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.page-num.current,
.pagination .page-numbers.current { background: var(--blue); color: #fff; border-color: var(--blue); }
.page-num.dots,
.pagination .page-numbers.dots { background: transparent; border-color: transparent; color: var(--muted); min-width: 20px; }
.page-num.prev, .page-num.next,
.pagination .page-numbers.prev,
.pagination .page-numbers.next { font-size: 1.1rem; }

/* ════════════════════════════
   SINGLE POST
════════════════════════════ */
.single-post-header { margin-bottom: 2rem; }
.single-post-header h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: .8rem; }
.post-meta-full { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; align-items: center; font-size: .8rem; color: var(--muted); }
.post-meta-full .tag { background: var(--blue); color: #fff; padding: 3px 12px; border-radius: 50px; font-weight: 600; font-size: .75rem; }

/* ════════════════════════════
   SIDEBAR
════════════════════════════ */
.sidebar { display: flex; flex-direction: column; gap: 2rem; }
.widget { background: var(--light); border-radius: 12px; padding: 1.5rem; }
.widget-title { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 2px solid var(--grey); }
.widget ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.widget ul li a { font-size: .85rem; color: var(--navy); transition: color .2s, padding-left .2s; display: block; }
.widget ul li a:hover { color: var(--blue); padding-left: 4px; }
.widget-search input { width: 100%; padding: .7rem 1rem; border: 1.5px solid var(--grey); border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: .85rem; outline: none; transition: border-color .2s; }
.widget-search input:focus { border-color: var(--blue); }
.widget-cta { background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff; text-align: center; }
.widget-cta h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.widget-cta p { font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: 1rem; }
.widget-cta a { display: inline-block; background: var(--green); color: #fff; font-weight: 700; font-size: .85rem; padding: .7rem 1.5rem; border-radius: 6px; transition: background .2s; }
.widget-cta a:hover { background: var(--green2); }

/* ════════════════════════════
   ANIMATIONS
════════════════════════════ */
.anim { opacity: 1; transform: translateY(22px); transition: transform .65s ease; }
.anim.vis { transform: none; }

/* ════════════════════════════
   SINGLE SERVICE
════════════════════════════ */

/* Banner service avec photo */
.service-banner { padding: 0; min-height: 380px; }
.service-banner .page-banner { padding: 0; min-height: 380px; position: relative; }
.sb-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.sb-ov {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,30,80,.82) 0%, rgba(10,30,80,.55) 100%);
}
.sb-inner {
  position: relative; z-index: 2;
  max-width: 1140px; margin: 0 auto;
  padding: 60px 5vw 55px;
}
.sb-icon {
  font-size: 2.8rem; margin-bottom: .8rem; line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
}
.sb-inner h1 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; color: #fff; margin-bottom: .5rem; }
.sb-sub { font-size: 1rem; color: rgba(255,255,255,.72); font-style: italic; margin-bottom: .8rem; }
.sb-badges {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin-top: 1.4rem;
}
.sb-badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: .78rem; font-weight: 600;
  padding: .4rem 1rem; border-radius: 50px;
  backdrop-filter: blur(6px);
}

/* Titres de section */
.srv-section-title {
  font-size: 1.35rem; font-weight: 700; color: var(--navy);
  margin: 2.5rem 0 1.4rem; padding-bottom: .7rem;
  border-bottom: 2px solid var(--grey);
  display: flex; align-items: center; gap: .6rem;
}
.srv-section-title::before {
  content: ''; display: block;
  width: 4px; height: 1.2em;
  background: var(--blue); border-radius: 2px;
  flex-shrink: 0;
}

/* Points forts */
.srv-highlights { margin-bottom: 2rem; }
.srv-points-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
}
.srv-point {
  display: flex; align-items: flex-start; gap: .75rem;
  background: var(--light); border-radius: 8px;
  padding: .9rem 1rem;
  border-left: 3px solid var(--green);
}
.srv-point-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--green); color: #fff;
  font-size: .7rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.srv-point span { font-size: .88rem; color: var(--navy); font-weight: 500; line-height: 1.5; }

/* Corps éditeur */
.srv-body { margin-bottom: 2rem; }
.srv-body h2 { font-size: 1.3rem; }

/* Processus */
.srv-process { margin: 2rem 0; }
.srv-steps { display: flex; flex-direction: column; gap: 1rem; }
.srv-step {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.2rem; background: #fff;
  border: 1.5px solid var(--grey); border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.srv-step:hover { border-color: rgba(27,79,155,.2); box-shadow: 0 4px 18px rgba(0,0,0,.06); }
.srv-step-num {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff; font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(27,79,155,.25);
}
.srv-step-body h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.srv-step-body p  { font-size: .83rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* Services connexes */
.srv-related { margin-top: 2.5rem; }
.srv-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.srv-rel-card {
  position: relative; border-radius: 10px; overflow: hidden;
  aspect-ratio: 4/3; display: block;
  box-shadow: 0 3px 14px rgba(0,0,0,.1);
  transition: transform .3s, box-shadow .3s;
}
.srv-rel-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.15); }
.src-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .4s;
}
.src-fallback { background: linear-gradient(135deg, var(--light), var(--grey)); }
.srv-rel-card:hover .src-img { transform: scale(1.05); }
.src-ov {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(12,40,100,.88) 0%, transparent 60%);
}
.src-lb {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .8rem .9rem; color: #fff;
  font-weight: 700; font-size: .82rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .srv-points-grid { grid-template-columns: 1fr; }
  .srv-related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .srv-related-grid { grid-template-columns: 1fr; }
  .sb-badges { flex-direction: column; }
}

/* ════════════════════════════
   WPCF7 FORM OVERRIDE
════════════════════════════ */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  font-family: 'Poppins', sans-serif;
}
.wpcf7-not-valid-tip { font-size: .75rem; color: #f87171; margin-top: 3px; }
.wpcf7-response-output { font-size: .82rem; padding: .5rem 1rem; border-radius: 5px; margin-top: 1rem; }

/* ════════════════════════════
   PAGE DÉPARTEMENT SEO
════════════════════════════ */
.dep-page { overflow-x: hidden; }

/* Banner */
.dep-banner-emoji { font-size: 2.5rem; margin-bottom: .6rem; }
.dep-banner-sub { font-size: .95rem; color: rgba(255,255,255,.7); margin-top: .5rem; }

/* Stats bar */
.dep-stats-bar {
  display: flex; align-items: center; gap: 0;
  background: var(--navy); border-bottom: 3px solid var(--blue);
}
.dep-stat {
  flex: 1; text-align: center; padding: 1.2rem 1rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.dep-stat:last-child { border-right: none; }
.dep-stat strong {
  display: block; font-size: 1.6rem; font-weight: 800;
  background: linear-gradient(135deg,#fff,var(--green));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text; line-height: 1.1; margin-bottom: .2rem;
}
.dep-stat span { font-size: .72rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .08em; }
.dep-stat-cta { flex: 0 0 auto; padding: 1rem 2rem; }

/* Intro */
.dep-intro {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 3rem; align-items: start;
  max-width: 1100px; margin: 0 auto; padding: 60px 5vw;
}
.dep-intro-text h2 {
  font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 800;
  color: var(--navy); margin-bottom: 1rem;
}
.dep-intro-text p { font-size: .95rem; color: var(--muted); line-height: 1.8; margin-bottom: .8rem; }
.dep-spec {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(91,173,46,.1); border: 1px solid rgba(91,173,46,.25);
  border-radius: 8px; padding: .5rem 1rem;
  font-size: .85rem; color: var(--navy); font-weight: 500;
}

/* Liste villes */
.dep-villes { background: var(--light); padding: 4rem 5vw; border-top: 1px solid var(--grey); }
.dep-villes-inner { max-width: 1100px; margin: 0 auto; }
.dep-villes-inner h2 {
  font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: .6rem;
}
.dep-villes-sub { font-size: .87rem; color: var(--muted); margin-bottom: 2rem; }

.dep-villes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: .7rem;
}
.dep-ville-card {
  display: flex; align-items: center; gap: .8rem;
  background: #fff; border: 1.5px solid var(--grey); border-radius: 10px;
  padding: .85rem 1rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  text-decoration: none;
}
.dep-ville-card:hover {
  border-color: var(--blue); transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.dvc-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: var(--green);
}
.dvc-content { flex: 1; min-width: 0; }
.dvc-titre {
  font-size: .84rem; font-weight: 600; color: var(--navy);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dvc-extrait { font-size: .73rem; color: var(--muted); margin-top: 2px; }
.dvc-arrow { color: var(--blue); font-weight: 700; flex-shrink: 0; font-size: .9rem; }

/* Responsive */
@media (max-width: 900px) {
  .dep-intro { grid-template-columns: 1fr; }
  .dep-stats-bar { flex-wrap: wrap; }
  .dep-stat { flex: 1 0 45%; }
}
@media (max-width: 600px) {
  .dep-villes-grid { grid-template-columns: 1fr; }
  .dep-stat { flex: 1 0 100%; }
}

/* ════════════════════════════
   PAGE VILLE SEO
════════════════════════════ */
.ville-page { overflow-x: hidden; }

/* Banner ville */
.ville-banner-tag { margin-bottom: .6rem; }
.ville-banner-tag a {
  display: inline-block; font-size: .75rem; font-weight: 600;
  color: rgba(255,255,255,.8); background: rgba(255,255,255,.12);
  padding: .3rem .9rem; border-radius: 50px; border: 1px solid rgba(255,255,255,.2);
  transition: background .2s;
}
.ville-banner-tag a:hover { background: rgba(255,255,255,.2); color: #fff; }
.ville-banner-sub { font-size: .95rem; color: rgba(255,255,255,.7); margin-top: .5rem; }

/* Intro */
.ville-intro {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 3rem; align-items: start;
  max-width: 1100px; margin: 0 auto; padding: 60px 5vw;
}
.ville-intro-text h2 {
  font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 800;
  color: var(--navy); margin-bottom: 1rem;
}
.ville-intro-text p { font-size: .95rem; color: var(--muted); line-height: 1.8; margin-bottom: .8rem; }
.ville-content { margin-top: 1.2rem; font-size: .93rem; color: var(--muted); line-height: 1.8; }
.ville-intro-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }

/* Card contact */
.ville-contact-card {
  background: var(--navy); border-radius: 16px; padding: 1.6rem;
  position: sticky; top: 84px;
}
.vcc-head {
  display: flex; align-items: center; gap: .8rem; margin-bottom: 1.2rem;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.vcc-icon {
  width: 44px; height: 44px; background: rgba(255,255,255,.1);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.vcc-head strong { display: block; color: #fff; font-weight: 700; font-size: .9rem; }
.vcc-head span { color: rgba(255,255,255,.5); font-size: .77rem; }
.vcc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,.06);
  gap: .5rem;
}
.vcc-lbl { font-size: .75rem; color: rgba(255,255,255,.4); white-space: nowrap; }
.vcc-val { font-size: .82rem; color: rgba(255,255,255,.85); text-align: right; }
.vcc-val a { color: var(--green); }
.vcc-val a:hover { color: #fff; }
.vcc-btn {
  display: block; width: 100%; text-align: center; margin-top: 1.2rem;
  background: var(--green); color: #fff; font-weight: 700; font-size: .85rem;
  padding: .85rem; border-radius: 10px;
  transition: background .2s, transform .15s;
}
.vcc-btn:hover { background: var(--green2); transform: translateY(-1px); color: #fff; }

/* Services */
.ville-services {
  background: var(--light); padding: 4rem 5vw;
  border-top: 1px solid var(--grey); border-bottom: 1px solid var(--grey);
}
.ville-services h2 {
  font-size: 1.4rem; font-weight: 800; color: var(--navy);
  max-width: 1100px; margin: 0 auto 2rem;
}
.ville-services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem; max-width: 1100px; margin: 0 auto;
}
.ville-service-card {
  display: flex; align-items: center; gap: .8rem;
  background: #fff; border: 1.5px solid var(--grey); border-radius: 12px;
  padding: 1rem 1.2rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.ville-service-card:hover {
  border-color: var(--blue); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}
.vsc-ico { font-size: 1.4rem; flex-shrink: 0; }
.vsc-label { font-size: .85rem; font-weight: 600; color: var(--navy); flex: 1; }
.vsc-arrow { color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* Pourquoi */
.ville-why { padding: 4rem 5vw; }
.ville-why-inner { max-width: 1100px; margin: 0 auto; }
.ville-why h2 {
  font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 2rem;
}
.ville-why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.ville-why-card {
  background: var(--light); border-radius: 14px; padding: 1.5rem;
  border: 1px solid var(--grey);
}
.vwc-ico { font-size: 1.8rem; margin-bottom: .7rem; }
.ville-why-card h3 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.ville-why-card p { font-size: .82rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* Villes proches */
.ville-proches {
  background: var(--light); padding: 3rem 5vw;
  border-top: 1px solid var(--grey);
}
.ville-proches h2 {
  font-size: 1.2rem; font-weight: 700; color: var(--navy);
  max-width: 1100px; margin: 0 auto 1.5rem;
}
.ville-proches-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: .4rem; max-width: 1100px; margin: 0 auto;
}
.ville-proche-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: var(--navy); padding: .3rem .5rem;
  border-radius: 6px; transition: background .15s, color .15s;
}
.ville-proche-item:hover { background: rgba(27,79,155,.07); color: var(--blue); }
.vpi-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  background: var(--green);
}

/* CTA final */
.ville-cta-final {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 5rem 5vw; text-align: center;
}
.vcf-inner { max-width: 600px; margin: 0 auto; }
.vcf-inner h2 { font-size: 1.7rem; font-weight: 800; color: #fff; margin-bottom: .8rem; }
.vcf-inner p { color: rgba(255,255,255,.7); font-size: .93rem; line-height: 1.75; margin-bottom: 2rem; }
.vcf-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 900px) {
  .ville-intro { grid-template-columns: 1fr; }
  .ville-contact-card { position: static; }
  .ville-why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ville-why-grid { grid-template-columns: 1fr; }
  .ville-services-grid { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════
   PAGE ZONE D'INTERVENTION SEO
════════════════════════════ */
.zone-page { overflow-x: hidden; }

/* ── Intro ── */
.zone-intro-section { background: var(--light); border-bottom: 1px solid var(--grey); }
.zone-intro-wrap {
  max-width: 1100px; margin: 0 auto; padding: 50px 5vw;
  display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center;
}
.zone-lead { font-size: .95rem; color: var(--muted); line-height: 1.8; margin-bottom: .8rem; }
.zone-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.zone-stats-row { display: flex; gap: 1rem; flex-direction: column; }
.zone-stat-box {
  background: var(--navy); border-radius: 12px; padding: 1.2rem 1.8rem;
  text-align: center; min-width: 130px;
}
.zone-stat-box strong {
  display: block; font-size: 1.8rem; font-weight: 800;
  background: linear-gradient(135deg,#fff,var(--green));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text; line-height: 1.1;
}
.zone-stat-box span { font-size: .72rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; }

/* ── Nav ── */
.zone-nav-deps {
  max-width: 1100px; margin: 0 auto; padding: 2rem 5vw;
  border-bottom: 1px solid var(--grey);
}
.zone-nav-deps p { font-size: .8rem; font-weight: 700; color: var(--muted); margin-bottom: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.zone-nav-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.zone-pill {
  display: inline-block; font-size: .75rem; font-weight: 600;
  padding: .4rem 1rem; border-radius: 50px;
  background: #fff; border: 2px solid var(--pill-color, var(--grey));
  color: var(--pill-color, var(--navy));
  transition: all .2s;
}
.zone-pill:hover {
  background: var(--pill-color, var(--blue));
  color: #fff;
}

/* ── Sections département ── */
.zone-dep { padding: 3rem 5vw; }
.zone-dep-light { background: #f8fafc; }
.zone-dep-white { background: #fff; }
.zone-dep-inner { max-width: 1100px; margin: 0 auto; }

.zone-dep-header {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 1.5rem; align-items: start; margin-bottom: 2rem;
}
.zone-dep-badge {
  width: 70px; height: 70px; border-radius: 16px; flex-shrink: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}
.zdb-emoji { font-size: 1.5rem; line-height: 1.1; }
.zdb-num   { font-size: .72rem; font-weight: 800; color: rgba(255,255,255,.9); }

.zone-dep-info h2 {
  font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: .4rem;
}
.zone-dep-info p { font-size: .87rem; color: var(--muted); line-height: 1.65; margin-bottom: .7rem; }
.zone-dep-services {
  display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .5rem;
}
.zone-dep-services span {
  font-size: .7rem; font-weight: 600; padding: .2rem .7rem;
  border-radius: 50px; background: var(--light); border: 1px solid var(--grey);
  color: var(--navy);
}
.zone-dep-cta {
  display: inline-flex; align-items: center;
  padding: .65rem 1.4rem; border-radius: 8px;
  color: #fff; font-weight: 700; font-size: .82rem;
  white-space: nowrap; align-self: flex-start;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
  transition: opacity .2s, transform .15s;
}
.zone-dep-cta:hover { opacity: .85; transform: translateY(-1px); color: #fff; }

/* Grille villes */
.zone-villes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: .35rem .8rem;
  margin-bottom: 1.5rem;
}
.zone-ville {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; color: #3a4a62; line-height: 1.4;
  padding: .25rem .4rem; border-radius: 5px;
  transition: background .15s;
}
.zone-ville:hover { background: rgba(27,79,155,.05); }
.zv-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

.zone-dep-bottom {
  margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--grey);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.zone-dep-bottom p { font-size: .83rem; color: var(--muted); margin: 0; }
.zone-dep-link { font-size: .83rem; font-weight: 700; color: var(--blue); white-space: nowrap; }
.zone-dep-link:hover { color: var(--blue2); }

/* ── CTA final ── */
.zone-final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 5rem 5vw; text-align: center;
}
.zfc-inner { max-width: 600px; margin: 0 auto; }
.zfc-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.zfc-inner h2 { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: .8rem; }
.zfc-inner p { font-size: .93rem; color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 2rem; }
.zfc-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .zone-intro-wrap { grid-template-columns: 1fr; }
  .zone-stats-row { flex-direction: row; }
  .zone-dep-header { grid-template-columns: auto 1fr; }
  .zone-dep-cta { grid-column: 1 / -1; align-self: auto; }
}
@media (max-width: 600px) {
  .zone-villes-grid { grid-template-columns: 1fr 1fr; }
  .zone-stats-row { flex-direction: column; }
  .zone-dep-header { grid-template-columns: auto 1fr; }
}

/* ════════════════════════════
   PAGE STANDARD / LÉGALE
════════════════════════════ */
.legal-page {
  max-width: 860px; margin: 0 auto; padding: 60px 5vw 80px;
}
.legal-content .entry-thumbnail {
  width: 100%; height: 320px; object-fit: cover;
  border-radius: 12px; margin-bottom: 2.5rem;
}
.legal-body { font-size: .95rem; line-height: 1.85; color: #2a3a52; }
.legal-body h1 { font-size: 1.8rem; font-weight: 800; color: var(--navy); margin: 2rem 0 1rem; }
.legal-body h2 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin: 2rem 0 .8rem; padding-bottom: .5rem; border-bottom: 2px solid var(--grey); }
.legal-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin: 1.5rem 0 .6rem; }
.legal-body p  { margin-bottom: 1.1rem; }
.legal-body ul, .legal-body ol { margin: .8rem 0 1.2rem 1.5rem; }
.legal-body li { margin-bottom: .4rem; }
.legal-body a  { color: var(--blue); text-decoration: underline; }
.legal-body a:hover { color: var(--blue2); }
.legal-body strong { font-weight: 700; color: var(--navy); }
.legal-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .88rem; }
.legal-body th { background: var(--navy); color: #fff; padding: .7rem 1rem; text-align: left; font-weight: 600; }
.legal-body td { padding: .65rem 1rem; border-bottom: 1px solid var(--grey); }
.legal-body tr:nth-child(even) td { background: var(--light); }
.legal-body blockquote {
  border-left: 4px solid var(--blue); padding: 1rem 1.5rem;
  background: var(--light); border-radius: 0 8px 8px 0;
  margin: 1.5rem 0; font-style: italic; color: var(--muted);
}

/* ════════════════════════════
   BANNIÈRE RGPD / COOKIES
════════════════════════════ */
#rgpd-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99999;
  background: var(--navy2);
  border-top: 3px solid var(--blue);
  box-shadow: 0 -8px 40px rgba(0,0,0,.25);
  padding: 1.2rem 4vw;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  transform: translateY(0);
  transition: transform .4s ease;
}
#rgpd-banner.hidden { transform: translateY(110%); }
.rgpd-text {
  flex: 1; min-width: 250px;
  font-size: .82rem; color: rgba(255,255,255,.75); line-height: 1.6;
}
.rgpd-text strong { color: #fff; }
.rgpd-text a { color: var(--green); text-decoration: underline; }
.rgpd-text a:hover { color: #fff; }
.rgpd-actions {
  display: flex; align-items: center; gap: .7rem; flex-shrink: 0; flex-wrap: wrap;
}
.rgpd-btn-accept {
  background: var(--green); color: #fff;
  font-weight: 700; font-size: .82rem;
  padding: .6rem 1.4rem; border-radius: 6px; border: none;
  cursor: pointer; transition: background .2s, transform .15s;
  white-space: nowrap;
}
.rgpd-btn-accept:hover { background: var(--green2); transform: translateY(-1px); }
.rgpd-btn-refuse {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  font-weight: 600; font-size: .82rem;
  padding: .6rem 1.2rem; border-radius: 6px;
  border: 1px solid rgba(255,255,255,.15);
  cursor: pointer; transition: background .2s, color .2s;
  white-space: nowrap;
}
.rgpd-btn-refuse:hover { background: rgba(255,255,255,.15); color: #fff; }
.rgpd-btn-settings {
  color: rgba(255,255,255,.45); font-size: .75rem;
  background: none; border: none; cursor: pointer;
  text-decoration: underline; transition: color .2s;
  white-space: nowrap;
}
.rgpd-btn-settings:hover { color: rgba(255,255,255,.8); }

/* Modal préférences cookies */
#rgpd-modal {
  display: none; position: fixed; inset: 0; z-index: 100000;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 1rem;
}
#rgpd-modal.open { display: flex; }
.rgpd-modal-box {
  background: #fff; border-radius: 16px; max-width: 520px; width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  overflow: hidden;
}
.rgpd-modal-head {
  background: var(--navy); padding: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.rgpd-modal-head h3 { font-size: 1rem; font-weight: 700; color: #fff; }
.rgpd-modal-close {
  background: rgba(255,255,255,.1); border: none; color: #fff;
  width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; font-size: 1.1rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.rgpd-modal-close:hover { background: rgba(255,255,255,.2); }
.rgpd-modal-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.rgpd-cookie-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; padding: 1rem; border-radius: 10px;
  background: var(--light); border: 1px solid var(--grey);
}
.rgpd-cookie-info h4 { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: .25rem; }
.rgpd-cookie-info p { font-size: .78rem; color: var(--muted); line-height: 1.5; margin: 0; }
/* Toggle switch */
.rgpd-toggle { position: relative; flex-shrink: 0; }
.rgpd-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.rgpd-toggle-slider {
  display: block; width: 44px; height: 24px; background: var(--grey);
  border-radius: 12px; cursor: pointer; transition: background .2s;
  position: relative;
}
.rgpd-toggle-slider::after {
  content: ''; position: absolute; width: 18px; height: 18px;
  border-radius: 50%; background: #fff; top: 3px; left: 3px;
  transition: transform .2s; box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.rgpd-toggle input:checked + .rgpd-toggle-slider { background: var(--green); }
.rgpd-toggle input:checked + .rgpd-toggle-slider::after { transform: translateX(20px); }
.rgpd-toggle input:disabled + .rgpd-toggle-slider { opacity: .6; cursor: not-allowed; }
.rgpd-modal-foot {
  padding: 1rem 1.5rem; border-top: 1px solid var(--grey);
  display: flex; gap: .7rem; justify-content: flex-end;
}
.rgpd-save-btn {
  background: var(--blue); color: #fff;
  font-weight: 700; font-size: .85rem;
  padding: .65rem 1.5rem; border: none; border-radius: 8px;
  cursor: pointer; transition: background .2s;
}
.rgpd-save-btn:hover { background: var(--blue2); }

/* ════════════════════════════
   PAGE L'ENTREPRISE
════════════════════════════ */
.entreprise-page { max-width: 1100px; margin: 0 auto; padding: 60px 5vw 80px; }

/* ── Intro ── */
.ent-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; margin-bottom: 5rem;
}
.ent-intro-img { position: relative; }
.ent-intro-img img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
.ent-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--green); color: #fff;
  border-radius: 50%; width: 100px; height: 100px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(91,173,46,.4);
  text-align: center;
}
.ent-badge-num { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.ent-badge-lbl { font-size: .6rem; font-weight: 600; line-height: 1.3; opacity: .9; }

.ent-tag {
  display: inline-block; font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); background: rgba(27,79,155,.08);
  padding: .4rem 1rem; border-radius: 50px; margin-bottom: .9rem;
}
.ent-intro-text h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800;
  color: var(--navy); line-height: 1.2; margin-bottom: 1.2rem;
}
.ent-intro-text p { font-size: .93rem; color: var(--muted); line-height: 1.8; margin-bottom: .8rem; }
.ent-intro-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }
.btn-ent-ghost {
  display: inline-block; padding: .85rem 2rem; border-radius: 6px;
  border: 2px solid var(--blue); color: var(--blue);
  font-weight: 700; font-size: .9rem;
  transition: background .2s, color .2s;
}
.btn-ent-ghost:hover { background: var(--blue); color: #fff; }

/* ── Stats ── */
.ent-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-bottom: 5rem;
}
.ent-stat {
  background: var(--navy); border-radius: 16px;
  padding: 2rem 1.5rem; text-align: center;
  transition: transform .3s;
}
.ent-stat:hover { transform: translateY(-4px); }
.ent-stat-ico { font-size: 1.8rem; margin-bottom: .7rem; }
.ent-stat-num {
  font-size: 2.2rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, #fff, var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: .4rem;
}
.ent-stat-lbl { font-size: .75rem; color: rgba(255,255,255,.45); font-weight: 500; }

/* ── Values ── */
.ent-values {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 5rem;
}
.ent-values-col {
  background: var(--light); border-radius: 16px;
  border: 1.5px solid var(--grey); padding: 2rem;
}
.ent-values-icon { font-size: 2rem; margin-bottom: 1rem; }
.ent-values-col h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--navy);
  margin-bottom: 1rem; padding-bottom: .6rem;
  border-bottom: 2px solid var(--grey);
}
.ent-values-col p { font-size: .87rem; color: var(--muted); line-height: 1.75; margin-bottom: .7rem; }
.ent-list { display: flex; flex-direction: column; gap: .55rem; padding: 0; margin: 0; }
.ent-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .87rem; color: var(--navy); line-height: 1.5;
  list-style: none !important;
}
.ent-list li::before { content: '✓'; color: var(--green); font-weight: 900; flex-shrink: 0; }

/* ── Formation ── */
.ent-formation {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 20px; padding: 4rem; margin-bottom: 4rem;
  overflow: hidden; position: relative;
}
.ent-formation::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.ent-formation-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.ent-formation-text .ent-tag { color: var(--green); background: rgba(91,173,46,.15); }
.ent-formation-text h2 { color: #fff; font-size: 1.6rem; font-weight: 800; margin-bottom: 1rem; }
.ent-formation-text p { color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.75; margin-bottom: .8rem; }
.ent-formation-points { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.efp {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 1.2rem;
  display: flex; align-items: center; gap: .8rem;
}
.efp-ico { font-size: 1.4rem; flex-shrink: 0; }
.efp span { font-size: .85rem; color: rgba(255,255,255,.85); font-weight: 500; line-height: 1.4; }

/* ── Documents ── */
.ent-docs { margin-bottom: 4rem; }
.ent-docs h2 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.ent-docs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ent-doc-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--light); border: 1.5px solid var(--grey);
  border-radius: 12px; padding: 1.2rem 1.5rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.ent-doc-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.edc-ico { font-size: 1.8rem; flex-shrink: 0; }
.edc-title { font-size: .92rem; font-weight: 700; color: var(--navy); }
.edc-sub { font-size: .75rem; color: var(--muted); margin-top: 2px; }
.edc-dl { margin-left: auto; font-size: 1.2rem; color: var(--blue); }

/* ── Baseline ── */
.ent-baseline {
  text-align: center; padding: 4rem 2rem;
  background: var(--light); border-radius: 20px;
}
.ent-baseline p { font-size: .78rem; font-weight: 700; letter-spacing: .14em; color: var(--orange); text-transform: uppercase; margin-bottom: .8rem; }
.ent-baseline h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; color: var(--navy); max-width: 700px; margin: 0 auto 2rem; line-height: 1.3; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .ent-intro { grid-template-columns: 1fr; gap: 2rem; }
  .ent-intro-img img { height: 280px; }
  .ent-badge { bottom: 10px; right: 10px; }
  .ent-stats { grid-template-columns: 1fr 1fr; }
  .ent-values { grid-template-columns: 1fr; }
  .ent-formation-inner { grid-template-columns: 1fr; }
  .ent-docs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .ent-stats { grid-template-columns: 1fr 1fr; }
  .ent-formation-points { grid-template-columns: 1fr; }
}

/* ════════════════════════════
   PAGE RECRUTEMENT
════════════════════════════ */
.recrut-page { max-width: 1100px; margin: 0 auto; padding: 50px 5vw 80px; }

.recrut-intro {
  text-align: center; max-width: 680px; margin: 0 auto 3.5rem;
  padding: 2.5rem; background: var(--light); border-radius: 16px;
  border: 1.5px solid var(--grey);
}
.recrut-intro p { font-size: .97rem; color: var(--muted); line-height: 1.75; margin-bottom: 0; }

.recrut-title {
  font-size: 1.5rem; font-weight: 800; color: var(--navy);
  margin-bottom: 1.8rem; padding-bottom: .8rem;
  border-bottom: 3px solid var(--green);
  display: inline-block;
}

.recrut-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 3rem; }

.recrut-card {
  background: #fff; border-radius: 16px;
  border: 1.5px solid var(--grey);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.recrut-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }

.rc-header {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem;
}
.rc-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.rc-header h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.rc-badges { display: flex; flex-wrap: wrap; gap: .4rem; }
.rc-badge {
  font-size: .68rem; font-weight: 600; padding: .25rem .7rem;
  border-radius: 50px; background: rgba(255,255,255,.15); color: rgba(255,255,255,.9);
}
.rc-badge-green { background: rgba(91,173,46,.3); color: #8ef265; }

.rc-section { padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--grey); }
.rc-section h4 {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .7rem;
}
.rc-list { display: flex; flex-direction: column; gap: .4rem; padding: 0; margin: 0; }
.rc-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .85rem; color: var(--navy); line-height: 1.5;
  list-style: none !important;
}
.rc-list li::before {
  content: '→'; color: var(--green); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}

.rc-footer {
  padding: 1.2rem 1.5rem; display: flex;
  align-items: center; justify-content: space-between;
  margin-top: auto;
}
.rc-salaire { font-size: .83rem; font-weight: 600; color: var(--muted); }
.rc-btn {
  background: var(--green); color: #fff;
  font-weight: 700; font-size: .82rem;
  padding: .6rem 1.4rem; border-radius: 8px;
  transition: background .2s, transform .15s;
}
.rc-btn:hover { background: var(--green2); transform: translateY(-1px); color: #fff; }

/* Section postuler */
.recrut-postuler {
  background: var(--navy); border-radius: 20px;
  overflow: hidden; margin-top: 1rem;
}
.recrut-postuler-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.rp-left {
  padding: 3rem; border-right: 1px solid rgba(255,255,255,.1);
}
.rp-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.rp-left h2 { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: .8rem; }
.rp-left p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 1.5rem; }
.rp-avantages { display: flex; flex-direction: column; gap: .6rem; }
.rpa { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: rgba(255,255,255,.8); }
.rpa span { color: var(--green); font-size: 1rem; }

.rp-right { padding: 3rem; }
.rp-right h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; }
.rp-contacts { display: flex; flex-direction: column; gap: .8rem; }
.rp-contact-btn {
  display: flex; align-items: center; gap: .7rem;
  padding: .9rem 1.2rem; border-radius: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8); font-size: .88rem; font-weight: 500;
  transition: background .2s, color .2s;
}
.rp-contact-btn:hover { background: rgba(255,255,255,.15); color: #fff; }
.rp-contact-main {
  background: var(--green); border-color: var(--green);
  color: #fff; font-weight: 700; justify-content: center;
  margin-top: .4rem;
}
.rp-contact-main:hover { background: var(--green2); border-color: var(--green2); color: #fff; }

@media (max-width: 768px) {
  .recrut-grid { grid-template-columns: 1fr; }
  .recrut-postuler-inner { grid-template-columns: 1fr; }
  .rp-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
}

/* ════════════════════════════
   PAGE RÉFÉRENCES
════════════════════════════ */
.refs-page {
  max-width: 1100px; margin: 0 auto; padding: 50px 5vw 80px;
  overflow-x: hidden;
}
.refs-intro {
  text-align: center; max-width: 700px; margin: 0 auto 3rem;
  font-size: .95rem; color: var(--muted); line-height: 1.75;
}
.refs-section {
  margin-bottom: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid var(--grey);
}
.refs-section:last-child { border-bottom: none; }
.refs-cat-title {
  font-size: 1.3rem; font-weight: 700; color: var(--navy);
  margin-bottom: .4rem; display: flex; align-items: center; gap: .6rem;
}
.refs-cat-sub { font-size: .85rem; color: var(--muted); margin-bottom: 1.5rem; }
.refs-logos-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)) !important;
  gap: 1rem !important;
  margin-top: 1.5rem;
  width: 100%;
}
.refs-logo-item {
  background: #fff !important; border: 1.5px solid var(--grey) !important; border-radius: 12px;
  padding: 1.2rem !important; display: flex !important; flex-direction: column;
  align-items: center !important; justify-content: center; gap: .7rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  min-height: 110px;
}
.refs-logo-item:hover {
  border-color: rgba(27,79,155,.25) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.refs-logo-item img {
  max-width: 120px !important; max-height: 55px !important;
  width: auto !important; height: auto !important;
  object-fit: contain !important; display: block !important;
  filter: grayscale(20%); transition: filter .2s;
  margin: 0 auto !important;
}
.refs-logo-item:hover img { filter: grayscale(0%); }
.refs-logo-item span {
  font-size: .72rem !important; font-weight: 600; color: var(--muted);
  text-align: center; line-height: 1.3; display: block !important;
}

/* Témoignages */
.refs-testi-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-top: 1.5rem;
}
.refs-testi {
  background: var(--light); border-radius: 14px; padding: 1.8rem;
  border: 1.5px solid var(--grey);
}
.rt-stars { color: #FBBF24; font-size: 1rem; margin-bottom: .8rem; }
.refs-testi p {
  font-size: .92rem; font-style: italic; color: var(--navy);
  line-height: 1.7; margin-bottom: 1.2rem;
}
.rt-author { display: flex; align-items: center; gap: .8rem; }
.rt-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; color: #fff;
}
.rt-author strong { display: block; font-size: .85rem; color: var(--navy); }
.rt-author span { font-size: .75rem; color: var(--muted); }

/* ── Responsive refs ── */
@media (max-width: 768px) {
  .refs-logos-grid { grid-template-columns: repeat(2, 1fr); }
  .refs-testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .refs-logos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════
   PAGE CONTACT
════════════════════════════ */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 5vw;
  align-items: start;
}

/* ── Colonne formulaire ── */
.contact-form-col { padding-right: 3rem; }
.contact-form-wrap { background: #fff; }

.contact-form-head {
  display: flex; align-items: flex-start; gap: 1.2rem;
  margin-bottom: 2rem; padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--grey);
}
.cfh-icon { font-size: 2.2rem; flex-shrink: 0; line-height: 1; }
.contact-form-head h2 {
  font-size: 1.6rem; font-weight: 800;
  color: var(--navy); margin-bottom: .4rem;
}
.contact-form-head p {
  font-size: .88rem; color: var(--muted); line-height: 1.6; margin: 0;
}

/* Override CF7 dans la page contact */
.contact-form-col .wpcf7-form p { margin-bottom: 0; }
.contact-form-col .wpcf7-form input[type="text"],
.contact-form-col .wpcf7-form input[type="email"],
.contact-form-col .wpcf7-form input[type="tel"],
.contact-form-col .wpcf7-form select,
.contact-form-col .wpcf7-form textarea {
  width: 100%;
  border: 1.5px solid var(--grey);
  border-radius: 8px;
  padding: .8rem 1.1rem;
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  color: var(--navy);
  background: var(--light);
  outline: none;
  transition: border-color .2s, background .2s;
  margin-bottom: .9rem;
  display: block;
}
.contact-form-col .wpcf7-form input:focus,
.contact-form-col .wpcf7-form select:focus,
.contact-form-col .wpcf7-form textarea:focus {
  border-color: var(--blue);
  background: #fff;
}
.contact-form-col .wpcf7-form textarea { min-height: 130px; resize: vertical; }
.contact-form-col .wpcf7-form input[type="submit"] {
  background: var(--green);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  padding: .9rem 2.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: .04em;
  box-shadow: 0 4px 16px rgba(91,173,46,.35);
  transition: background .2s, transform .15s;
  margin-top: .3rem;
}
.contact-form-col .wpcf7-form input[type="submit"]:hover {
  background: var(--green2);
  transform: translateY(-2px);
}

/* ── Colonne infos ── */
.contact-info-col {
  display: flex; flex-direction: column; gap: 1.5rem;
}

/* Card coordonnées */
.contact-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 1.8rem;
  color: #fff;
}
.contact-card-title {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.3rem;
}
.contact-card-items { display: flex; flex-direction: column; gap: 1.1rem; }
.cci { display: flex; align-items: flex-start; gap: .9rem; }
.cci-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.cci-label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 3px;
}
.cci-val { font-size: .85rem; color: rgba(255,255,255,.8); line-height: 1.55; }
.cci-val a { color: var(--green); transition: color .2s; }
.cci-val a:hover { color: #fff; }

/* Card devis */
.contact-devis-card {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  border-radius: 16px;
  padding: 1.8rem;
  text-align: center;
  color: #fff;
}
.cdc-icon { font-size: 2rem; margin-bottom: .8rem; }
.contact-devis-card h3 {
  font-size: 1.1rem; font-weight: 700;
  color: #fff; margin-bottom: .5rem;
}
.contact-devis-card p {
  font-size: .83rem; color: rgba(255,255,255,.7);
  margin-bottom: 1.2rem;
}
.cdc-btn {
  display: inline-block;
  background: var(--green); color: #fff;
  font-weight: 700; font-size: .88rem;
  padding: .8rem 1.8rem; border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
  transition: background .2s, transform .15s;
  margin-bottom: 1rem;
}
.cdc-btn:hover { background: var(--green2); transform: translateY(-2px); color: #fff; }
.cdc-tel {
  font-size: .8rem; color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.cdc-tel a { color: #fff; font-weight: 600; }

/* Carte */
.contact-map { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.1); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .contact-section { grid-template-columns: 1fr; }
  .contact-form-col { padding-right: 0; margin-bottom: 2rem; }
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 960px) {
  .nav-menu { display: none !important; }
  .burger-btn { display: flex !important; }
  #drawer { display: block; }
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-r { min-height: 300px; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .tech { opacity: .3; }
  .page-wrap.with-sidebar { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .srv-grid { grid-template-columns: 1fr; }
  .fi-row { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; }
  .ibar-in { flex-direction: column; }
  .ib + .ib { border-left: none; border-top: 1px solid #E4ECF5; }
  .sidebar { grid-template-columns: 1fr; }
}
