/* =====================================================
   VARIABLES & RESET
   ===================================================== */
:root {
  --primary:   #1d4ed8;
  --primary-d: #1e3a8a;
  --accent:    #f97316;
  --accent-d:  #ea580c;
  --dark:      #0f172a;
  --gray:      #64748b;
  --gray-light:#94a3b8;
  --light:     #f8fafc;
  --surface:   #f1f5f9;
  --border:    #e2e8f0;
  --white:     #ffffff;
  --success:   #16a34a;
  --radius:    12px;
  --radius-lg: 20px;
  --container: 1200px;
  --shadow:    0 2px 16px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
}
h1,h2,h3,h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.xu9meow42 {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================================================
   HEADER
   ===================================================== */
.xu9m1wozx {
  background: var(--dark);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.xu9m9rjde {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.xu9m11g91 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.3px;
}
.xu9m11g91 span { color: var(--accent); }
.xu9m11g91:hover { text-decoration: none; opacity: .9; }
.xu9mlskxp { display: flex; align-items: center; gap: 12px; }
.xu9m1vqr8 {
  color: rgba(255,255,255,.7);
  font-weight: 500;
  font-size: .88rem;
}
.xu9m1vqr8:hover { text-decoration: none; color: var(--white); }

/* =====================================================
   BUTTONS
   ===================================================== */
.xu9m4ffpn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  white-space: nowrap;
  letter-spacing: .01em;
}
.xu9m4ffpn:hover { transform: translateY(-1px); text-decoration: none; }
.xu9m7hfot {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(249,115,22,.3);
}
.xu9m7hfot:hover {
  background: var(--accent-d);
  box-shadow: 0 8px 25px rgba(249,115,22,.45);
}
.xu9m1tqak { background: var(--white); color: var(--dark); }
.xu9m1tqak:hover { background: var(--light); box-shadow: 0 4px 15px rgba(0,0,0,.1); }
.xu9mgaemv { padding: 14px 36px; font-size: 1rem; }

/* =====================================================
   BREADCRUMB
   ===================================================== */
.xu9mm8exp {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
  font-size: .8rem;
}
.xu9m59qlu {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  color: var(--gray);
}
.xu9m59qlu a { color: var(--primary); }
.xu9m59qlu span.xu9m1bu8p { margin: 0 2px; opacity: .4; }

/* =====================================================
   HERO
   ===================================================== */
.xu9mdckz9 {
  background: linear-gradient(135deg, var(--primary-d) 0%, var(--primary) 55%, #3b82f6 100%);
  color: var(--white);
  padding: 80px 24px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Grid pattern overlay */
.xu9mdckz9::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
/* Wave bottom */
.xu9mdckz9::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--white);
  clip-path: ellipse(56% 100% at 50% 100%);
}
.xu9m6spt2 { position: relative; max-width: 780px; margin: 0 auto; z-index: 1; }
.xu9m59px2 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.28);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .77rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
}
.xu9mdckz9 h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -.025em;
}
.xu9mdckz9 p.xu9mzu41g {
  font-size: 1.1rem;
  opacity: .85;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}
.xu9m1cklr { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* =====================================================
   SEARCH BAR (home)
   ===================================================== */
.xu9mkpni9 { padding: 0 20px 40px; }
.xu9mhj6qj { max-width: 520px; margin: 0 auto; position: relative; }
.xu9mhj6qj input {
  width: 100%;
  padding: 15px 22px;
  font-size: 1rem;
  border: 2px solid var(--border);
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  outline: none;
  font-family: 'Outfit', sans-serif;
  box-sizing: border-box;
  transition: border-color .2s;
}
.xu9mhj6qj input:focus { border-color: var(--primary); }
.xu9m29qgc {
  text-align: center;
  margin-bottom: 12px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
}
.xu9mp5rdf {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  overflow: hidden;
}
.xu9mp5rdf a {
  display: block;
  padding: 12px 20px;
  color: var(--dark);
  text-decoration: none;
  font-size: .93rem;
  border-bottom: 1px solid var(--border);
}
.xu9mp5rdf a:last-child { border-bottom: none; }
.xu9mp5rdf a:hover { background: var(--light); color: var(--primary); }
.xu9mp5rdf .xu9mpx3jy { padding: 12px 20px; color: var(--gray); font-size: .9rem; }

/* =====================================================
   TRUST BADGES
   ===================================================== */
.xu9macll9 {
  background: var(--white);
  padding: 0 24px 44px;
  position: relative;
  z-index: 2;
}
.xu9m18p3n {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.xu9m1n4jg {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.xu9m1n4jg:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.xu9mpfx2u {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
}
.xu9mpfx2u .xu9m1nmko { stroke: rgba(255,255,255,.92); }
.xu9m139vm .xu9m1nmko { display: block; stroke: var(--primary); }
.xu9m1n4jg strong { display: block; font-size: .95rem; margin-bottom: 2px; font-weight: 700; }
.xu9m1n4jg span { font-size: .82rem; color: var(--gray); }

/* =====================================================
   WIDGET DEVIS
   ===================================================== */
.xu9mtphid {
  background: var(--surface);
  padding: 64px 24px;
}
.xu9m1pm5w {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.xu9m1pm5w h2 { font-size: 1.75rem; margin-bottom: 10px; letter-spacing: -.02em; }
.xu9m1pm5w p  { color: var(--gray); margin-bottom: 30px; }
.xu9mdagza {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 34px;
  border: 1px solid var(--border);
}

/* =====================================================
   SECTIONS COMMUNES
   ===================================================== */
section { padding: 72px 24px; }
.xu9ms7mbf {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -.025em;
}
.xu9ms7mbf::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 12px auto 0;
}
.xu9m1lymw {
  text-align: center;
  color: var(--gray);
  margin-bottom: 46px;
  font-size: .98rem;
}

/* =====================================================
   SERVICES GRID
   ===================================================== */
.xu9m3ucsq {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.xu9m11nnb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 30px 16px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
  transition: all .22s ease;
  color: var(--dark);
  position: relative;
  overflow: hidden;
}
.xu9m11nnb::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--svc-color, var(--primary));
  border-radius: 4px 4px 0 0;
}
.xu9m11nnb:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  border-color: var(--svc-color, var(--primary));
  text-decoration: none;
}
.xu9m11nnb .xu9m1nuhe { font-size: 2.4rem; }
.xu9mth2b9 { width: 44px; height: 44px; display: block; stroke: var(--primary); fill: none; overflow: visible; }
.xu9m11nnb strong { font-size: .95rem; font-weight: 700; }
.xu9m11nnb span { font-size: .8rem; color: var(--gray); line-height: 1.4; }

/* =====================================================
   WHY US SECTION
   ===================================================== */
.xu9mxn2c5 { background: var(--surface); }
.xu9m17v0o {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.xu9m17v0o::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.xu9m17v0o:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.xu9m139vm {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.xu9m139vm .xu9m1nmko { stroke: rgba(255,255,255,.92); display: block; }
.xu9m17v0o strong { display: block; margin-bottom: 8px; font-size: 1rem; font-weight: 700; }
.xu9m17v0o p { font-size: .87rem; color: var(--gray); line-height: 1.7; }

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.xu9m11exe { background: var(--surface); }
.xu9mi0whs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.xu9mi0whs::before {
  content: '';
  position: absolute;
  top: 25px;
  left: calc(16.66% + 26px);
  right: calc(16.66% + 26px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: .22;
}
.xu9m1pnpz { text-align: center; padding: 0 20px 28px; }
.xu9m149db {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 6px 22px rgba(29,78,216,.28);
  position: relative;
  z-index: 1;
}
.xu9m1pnpz h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.xu9m1pnpz p  { font-size: .87rem; color: var(--gray); }

/* =====================================================
   REVIEWS
   ===================================================== */
.xu9m1f0gj { background: var(--white); }
.xu9mluine {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}
.xu9m12bq2 {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}
.xu9m12bq2:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.xu9mwxokr {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.xu9m1lsh7 {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.xu9mhhk4s { font-weight: 700; font-size: .92rem; }
.xu9m1dth4 { font-size: .77rem; color: var(--gray-light); }
.xu9m8qmvr { color: #f59e0b; font-size: .95rem; letter-spacing: 1px; }
.xu9m1ql2t { color: #d1d5db; }
.xu9m58ule { font-size: .88rem; color: #475569; font-style: italic; line-height: 1.65; }
.xu9m3h5mb {
  text-align: center;
  margin-bottom: 34px;
  font-size: 1rem;
  color: var(--gray);
}
.xu9m3h5mb strong { color: var(--dark); font-size: 1.15rem; }

/* =====================================================
   FAQ
   ===================================================== */
.xu9mfh3mh { background: var(--surface); }
.xu9ml8957 { max-width: 720px; margin: 0 auto; }
details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
details[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform .25s ease;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  line-height: 1;
}
details[open] summary::after { transform: rotate(45deg); }
.xu9meejw1 {
  padding: 14px 22px 20px;
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}

/* =====================================================
   INTERNAL LINKS / ZONES
   ===================================================== */
.xu9m1xpf1 { background: var(--white); }
.xu9m1imr8 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  color: var(--dark);
}
.xu9mmn06q {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
  margin-bottom: 36px;
}
.xu9mmn06q a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: var(--light);
  border-radius: 8px;
  font-size: .84rem;
  border: 1px solid var(--border);
  transition: all .15s ease;
  color: var(--dark);
}
.xu9mmn06q a:hover {
  background: #dbeafe;
  border-color: var(--primary);
  text-decoration: none;
  color: var(--primary);
  transform: translateX(3px);
}
.xu9mmn06q a.xu9m1rtkr::before { content: '📍'; font-size: .72rem; }

/* =====================================================
   PRESTATIONS LIST
   ===================================================== */
.xu9m186dw {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin: 22px 0;
}
.xu9m1ra8z {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--light);
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: .88rem;
  transition: border-color .15s, background .15s;
}
.xu9m1ra8z:hover { border-color: var(--primary); background: #eff6ff; }
.xu9m1ra8z::before { content: '✓'; color: var(--success); font-weight: 800; flex-shrink: 0; }

/* =====================================================
   REGIONS / DEPTS GRID
   ===================================================== */
.xu9m1l886 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.xu9m5evi4 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: all .2s ease;
  color: var(--dark);
  position: relative;
  overflow: hidden;
}
.xu9m5evi4::after {
  content: '→';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  opacity: 0;
  transition: all .2s ease;
  color: var(--primary);
  font-size: 1.1rem;
}
.xu9m5evi4:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  padding-right: 38px;
}
.xu9m5evi4:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
.xu9m5evi4 strong { font-size: .95rem; font-weight: 700; }
.xu9m5evi4 span { font-size: .8rem; color: var(--gray); }

/* =====================================================
   CTA BAND
   ===================================================== */
.xu9m10qki {
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 50%, var(--primary-d) 100%);
  color: var(--white);
  padding: 84px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.xu9m10qki::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.xu9m10qki > .xu9meow42 { position: relative; z-index: 1; }
.xu9m10qki h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 14px;
  letter-spacing: -.025em;
}
.xu9m10qki p { opacity: .75; margin-bottom: 34px; font-size: 1.05rem; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 4px 15px rgba(249,115,22,.35); }
  55%       { box-shadow: 0 6px 32px rgba(249,115,22,.6), 0 0 0 10px rgba(249,115,22,.07); }
}
.xu9m10qki .xu9m7hfot,
.xu9mdckz9 .xu9m7hfot {
  animation: pulse-cta 2.8s cubic-bezier(0.4,0,0.6,1) infinite;
}
.xu9m10qki .xu9m7hfot:hover,
.xu9mdckz9 .xu9m7hfot:hover {
  animation: none;
}

/* =====================================================
   MAP SECTION
   ===================================================== */
.xu9m4uwez { background: var(--light); padding: 60px 24px; }
.xu9m1oedv { text-align: center; margin-bottom: 26px; }
.xu9m1oedv h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -.015em;
}
.xu9m1oedv p { color: var(--gray); font-size: .95rem; }
#city-map {
  height: 380px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}

/* =====================================================
   FOOTER
   ===================================================== */
.xu9m7wus3 {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding: 72px 24px 32px;
}
.xu9mqr3xx {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.xu9m1cimb .xu9m11g91 { font-size: 1.25rem; margin-bottom: 14px; }
.xu9m1cimb p { font-size: .85rem; line-height: 1.75; }
.xu9mxj8q2 h4 {
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.xu9mxj8q2 ul li { margin-bottom: 8px; }
.xu9mxj8q2 ul li a { color: rgba(255,255,255,.55); font-size: .85rem; transition: color .15s; }
.xu9mxj8q2 ul li a:hover { color: var(--white); text-decoration: none; }
.xu9mn231l {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
}
.xu9mn231l a { color: rgba(255,255,255,.4); }
.xu9mn231l a:hover { color: var(--white); text-decoration: none; }

/* =====================================================
   SERVICE DETAIL SECTION
   ===================================================== */
.xu9m1f2px { background: var(--white); }
.xu9m1jbdo {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.xu9m1f2px h2 { font-size: 1.45rem; margin-bottom: 14px; letter-spacing: -.015em; }
.xu9m1f2px p { color: var(--gray); margin-bottom: 18px; font-size: .95rem; line-height: 1.7; }
.xu9mstexo {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 26px;
  position: sticky;
  top: 84px;
}
.xu9mstexo h3 { font-size: 1rem; margin-bottom: 16px; color: var(--primary); font-weight: 700; }
.xu9m3fvzc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .87rem;
}
.xu9m3fvzc:last-child { border-bottom: none; padding-bottom: 0; }
.xu9m3fvzc .xu9mi09hw { color: var(--gray); }
.xu9m3fvzc .xu9m1ypgn { font-weight: 700; }

/* =====================================================
   STATS BAND (homepage)
   ===================================================== */
.xu9m9it5p {
  background: linear-gradient(135deg, var(--primary-d) 0%, var(--primary) 60%, #3b82f6 100%);
  padding: 36px 24px;
  color: var(--white);
}
.xu9m76ihw {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
.xu9m1bx0v {
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,.2);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.xu9m1bx0v:last-child { border-right: none; }

/* =====================================================
   ARTISANS LOCAUX
   ===================================================== */
.xu9m1tq2c { background: var(--surface); }
.xu9m1whf9 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.xu9mohcsv {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s, box-shadow .2s;
}
.xu9mohcsv:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.xu9m1g4i0 { display: flex; align-items: center; gap: 14px; }
.xu9mccmly {
  width: 46px; height: 46px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.xu9m1az2v { display: block; font-weight: 700; font-size: .95rem; margin-bottom: 2px; }
.xu9mgudxw { font-size: .78rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.xu9m1b23h { font-size: .82rem; color: var(--gray); }
.xu9mhkrql { padding: 8px 18px; font-size: .85rem; margin-top: 4px; align-self: flex-start; }

/* =====================================================
   CITY STATS
   ===================================================== */
.xu9m1g4x9 {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 30px 0 0;
  justify-content: center;
}
.xu9mz6qrg {
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: .82rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

/* =====================================================
   404
   ===================================================== */
.xu9mo2gv8 { text-align: center; padding: 120px 24px; }
.xu9mo2gv8 h1 { font-size: 6rem; color: var(--border); margin-bottom: 10px; font-weight: 800; }
.xu9mo2gv8 h2 { font-size: 1.5rem; margin-bottom: 16px; }
.xu9mo2gv8 p  { color: var(--gray); margin-bottom: 30px; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .xu9mqr3xx { grid-template-columns: 1fr 1fr; }
  .xu9m1jbdo { grid-template-columns: 1fr; }
  .xu9mstexo { position: static; }
}
@media (max-width: 640px) {
  .xu9m76ihw { grid-template-columns: 1fr; }
  .xu9m1bx0v { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); padding: 14px 16px; }
  .xu9m1bx0v:last-child { border-bottom: none; }
  .xu9m18p3n { grid-template-columns: 1fr; }
  .xu9mi0whs { grid-template-columns: 1fr; gap: 20px; }
  .xu9mi0whs::before { display: none; }
  .xu9mqr3xx { grid-template-columns: 1fr; gap: 28px; }
  .xu9m1vqr8 { display: none; }
  .xu9mdckz9 { padding: 60px 16px 80px; }
  .xu9mdckz9 h1 { font-size: 1.8rem; }
  section { padding: 50px 16px; }
  .xu9mn231l { flex-direction: column; text-align: center; }
  .xu9macll9 { padding: 24px 16px 36px; }
  #city-map { height: 280px; }
}

/* =====================================================
   VARIANTES DE DESIGN PAR SITE (body classes)
   Injectées par layout.php selon $CONTENT['design']
   ===================================================== */

/* Boutons */
body.xu9mt4qmp .xu9m4ffpn { border-radius: 999px; }
body.xu9myc0t0 .xu9m4ffpn { border-radius: 4px; }

/* Cartes : flat = bordure fine sans ombre */
body.xu9m1eric :is(.xu9m11nnb, .xu9m12bq2, .xu9m17v0o, .xu9m5evi4, .xu9m1n4jg, .xu9m1pnpz) {
  box-shadow: none;
  border: 1px solid var(--border);
}
body.xu9m1eric :is(.xu9m11nnb, .xu9m5evi4):hover {
  box-shadow: none;
  border-color: var(--primary);
}

/* Cartes : bordered = bordure marquée + ombre légère */
body.xu9m1j8g6 :is(.xu9m11nnb, .xu9m12bq2, .xu9m17v0o, .xu9m5evi4, .xu9m1n4jg, .xu9m1pnpz) {
  border: 2px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
body.xu9m1j8g6 :is(.xu9m11nnb, .xu9m5evi4):hover {
  border-color: var(--accent);
}

/* Hero aligné à gauche */
body.xu9m1ob2d .xu9m6spt2 {
  text-align: left;
  margin-left: 0;
  max-width: 720px;
}
body.xu9m1ob2d .xu9m1cklr { justify-content: flex-start; }
body.xu9m1ob2d .xu9m59px2 { margin-left: 0; }

/* =====================================================
   VARIANTES DE STRUCTURE PAR SITE (anti-footprint)
   ===================================================== */

/* ── Header : light (fond blanc) ── */
body.xu9m146dd .xu9m1wozx {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
body.xu9m146dd .xu9m1wozx .xu9m11g91 { color: var(--dark); }
body.xu9m146dd .xu9m1vqr8 { color: var(--gray); }
body.xu9m146dd .xu9m1vqr8:hover { color: var(--dark); }

/* ── Header : primary (fond couleur du site) ── */
body.xu9m1bo54 .xu9m1wozx { background: var(--primary-d); }

/* ── Services : liste horizontale (icône à gauche) ── */
body.xu9m4tpy8 .xu9m3ucsq {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 12px;
}
body.xu9m4tpy8 .xu9m11nnb {
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 2px;
  text-align: left;
  align-items: start;
  padding: 18px 20px;
}
body.xu9m4tpy8 .xu9m11nnb::before {
  width: 4px;
  height: auto;
  top: 0; bottom: 0; right: auto; left: 0;
  border-radius: 4px 0 0 4px;
}
body.xu9m4tpy8 .xu9m11nnb .xu9m1nuhe {
  grid-row: 1 / 3;
  align-self: center;
  font-size: 1.9rem;
}
body.xu9m4tpy8 .xu9m11nnb .xu9mth2b9 { width: 36px; height: 36px; }

/* ── Avis : carrousel horizontal ── */
body.xu9mxa27p .xu9mluine {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 14px;
  -webkit-overflow-scrolling: touch;
}
body.xu9mxa27p .xu9m12bq2 {
  flex: 0 0 auto;
  width: min(320px, 82vw);
  scroll-snap-align: start;
}

/* ── Étapes : cartes indépendantes (sans ligne) ── */
body.xu9m8j6cf .xu9mi0whs { gap: 16px; }
body.xu9m8j6cf .xu9mi0whs::before { display: none; }
body.xu9m8j6cf .xu9m1pnpz {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px;
}

/* ── Étapes : timeline verticale ── */
body.xu9m1udz0 .xu9mi0whs {
  grid-template-columns: 1fr;
  max-width: 560px;
  gap: 0;
}
body.xu9m1udz0 .xu9mi0whs::before {
  top: 26px; bottom: 40px;
  left: 25px; right: auto;
  width: 2px; height: auto;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}
body.xu9m1udz0 .xu9m1pnpz {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 18px;
  text-align: left;
  padding: 0 0 30px;
}
body.xu9m1udz0 .xu9m149db { grid-row: 1 / 3; margin: 0; }
body.xu9m1udz0 .xu9m1pnpz h3 { align-self: center; }

/* ── Footer : centré ── */
body.xu9m1jndz .xu9mqr3xx {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 30px;
}
body.xu9m1jndz .xu9mxj8q2 ul li { display: inline-block; margin: 0 12px 8px 0; }
body.xu9m1jndz .xu9m1cimb p { max-width: 560px; margin: 0 auto; }

/* =====================================================
   NIVEAU 1 — AMBIANCES DE FOND
   (redéfinissent les variables : tout le site suit)
   ===================================================== */
body.xu9m14fgi {
  --white:   #fdfbf7;
  --light:   #f8f3ea;
  --surface: #f3ecdd;
  --border:  #e9dfcd;
  background: var(--white);
}
body.xu9m1y9r5 {
  --white:   #fafbfc;
  --light:   #f1f4f7;
  --surface: #e9edf2;
  --border:  #dbe1e8;
  background: var(--white);
}
body.xu9m1296f {
  --light:   color-mix(in srgb, var(--primary) 4%, #ffffff);
  --surface: color-mix(in srgb, var(--primary) 7%, #ffffff);
  --border:  color-mix(in srgb, var(--primary) 14%, #e2e8f0);
}

/* =====================================================
   NIVEAU 1 — ÉCHELLES TYPOGRAPHIQUES
   ===================================================== */
body.xu9m1fatm { font-size: 17px; }
body.xu9m1fatm .xu9mdckz9 h1        { font-size: clamp(2.3rem, 5.2vw, 3.7rem); }
body.xu9m1fatm .xu9ms7mbf  { font-size: clamp(1.7rem, 3.4vw, 2.35rem); }
body.xu9m1fatm .xu9m10qki h2    { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
body.xu9m1y33q { font-size: 15.5px; }
body.xu9m1y33q .xu9mdckz9 h1       { font-size: clamp(1.75rem, 3.8vw, 2.6rem); }
body.xu9m1y33q .xu9ms7mbf { font-size: clamp(1.35rem, 2.6vw, 1.7rem); }
body.xu9m1y33q .xu9m10qki h2   { font-size: clamp(1.5rem, 2.6vw, 1.95rem); }

/* =====================================================
   NIVEAU 1 — STYLES DE TITRES DE SECTIONS
   ===================================================== */
body.xu9m1nrbp .xu9ms7mbf::after { display: none; }
body.xu9m1nrbp .xu9ms7mbf { margin-bottom: 14px; }
body.xu9m1qpb7 .xu9ms7mbf {
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
}
body.xu9m1qpb7 .xu9ms7mbf::after { width: 56px; height: 2px; }
body.xu9m15d8d .xu9ms7mbf,
body.xu9m15d8d .xu9m1lymw { text-align: left; }
body.xu9m15d8d .xu9ms7mbf::after { margin-left: 0; }
body.xu9m15d8d .xu9m3h5mb { text-align: left; }

/* =====================================================
   NIVEAU 1 — DENSITÉ VERTICALE
   ===================================================== */
body.xu9m5hosl section { padding: 98px 24px; }
body.xu9m5hosl .xu9m1lymw { margin-bottom: 58px; }
body.xu9m5hosl .xu9mtphid { padding: 84px 24px; }
body.xu9m6ugy7 section { padding: 52px 24px; }
body.xu9m6ugy7 .xu9m1lymw { margin-bottom: 32px; }
body.xu9m6ugy7 .xu9mtphid { padding: 48px 24px; }
body.xu9m6ugy7 .xu9mdckz9 { padding: 58px 24px 70px; }
@media (max-width: 640px) {
  body.xu9m5hosl section { padding: 64px 16px; }
  body.xu9m6ugy7 section { padding: 40px 16px; }
}

/* =====================================================
   NIVEAU 1 — SÉPARATEUR BAS DE HERO
   ===================================================== */
body.xu9m5njzk .xu9mdckz9::after {
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  height: 64px;
}
body.xu9m13pza .xu9mdckz9::after { display: none; }
body.xu9m13pza .xu9mdckz9 { padding-bottom: 72px; }

/* =====================================================
   NIVEAU 2 — STRUCTURES DE HERO
   ===================================================== */
/* split : texte à gauche, panneau décoratif à droite */
body.xu9mmj9aa .xu9mdckz9 { text-align: left; }
body.xu9mmj9aa .xu9m6spt2 {
  max-width: var(--container);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  column-gap: 56px;
  align-items: center;
}
body.xu9mmj9aa .xu9m6spt2 > * { grid-column: 1; }
body.xu9mmj9aa .xu9m6spt2::after {
  content: '';
  grid-column: 2;
  grid-row: 1 / span 8;
  align-self: stretch;
  min-height: 300px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.16) 0 22%, transparent 23%),
    radial-gradient(circle at 75% 70%, rgba(255,255,255,.1) 0 30%, transparent 31%),
    linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(2px);
}
body.xu9mmj9aa .xu9mzu41g { margin-left: 0; }
body.xu9mmj9aa .xu9m1cklr { justify-content: flex-start; }
body.xu9mmj9aa .xu9m1g4x9 { justify-content: flex-start; }
@media (max-width: 900px) {
  body.xu9mmj9aa .xu9m6spt2 { grid-template-columns: 1fr; }
  body.xu9mmj9aa .xu9m6spt2::after { display: none; }
}

/* boxed : carte colorée posée sur fond clair */
body.xu9m18tr1 .xu9mdckz9 { background: var(--surface); padding: 56px 24px; }
body.xu9m18tr1 .xu9mdckz9::before, body.xu9m18tr1 .xu9mdckz9::after { display: none; }
body.xu9m18tr1 .xu9m6spt2 {
  background-image: linear-gradient(135deg, var(--primary-d), var(--primary));
  max-width: 920px;
  padding: 60px 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 640px) { body.xu9m18tr1 .xu9m6spt2 { padding: 40px 22px; } }

/* band : bandeau compact aligné à gauche (sobre) */
body.xu9mshbbr .xu9mdckz9 { padding: 46px 24px 54px; text-align: left; }
body.xu9mshbbr .xu9mdckz9::after { display: none; }
body.xu9mshbbr .xu9m6spt2 { max-width: var(--container); margin: 0 auto; }
body.xu9mshbbr .xu9mdckz9 h1 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: 12px; }
body.xu9mshbbr .xu9m59px2 { display: none; }
body.xu9mshbbr .xu9mzu41g { margin-left: 0; margin-bottom: 22px; }
body.xu9mshbbr .xu9m1cklr { justify-content: flex-start; }
body.xu9mshbbr .xu9m1g4x9 { justify-content: flex-start; margin-top: 22px; }

/* =====================================================
   NIVEAU 2 — STRUCTURES DE HEADER
   ===================================================== */
body.xu9m1hko1 .xu9m9rjde {
  flex-direction: column;
  height: auto;
  padding: 14px 0 14px;
  gap: 10px;
}
.xu9m1u3ur {
  background: var(--primary-d);
  color: rgba(255,255,255,.88);
  font-size: .78rem;
  padding: 7px 24px;
}
.xu9m9xia8 {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
body.xu9m1bo54 .xu9m1u3ur { background: var(--dark); }

/* =====================================================
   NIVEAU 2 — FAQ EN 2 COLONNES
   ===================================================== */
body.xu9m122n8 .xu9ml8957 { max-width: 1020px; columns: 2; column-gap: 18px; }
body.xu9m122n8 details { break-inside: avoid; }
@media (max-width: 760px) { body.xu9m122n8 .xu9ml8957 { columns: 1; } }

/* =====================================================
   NIVEAU 2 — STYLES DU BANDEAU CTA
   ===================================================== */
body.xu9m1xvgj .xu9m10qki { background: var(--surface); padding: 72px 24px; }
body.xu9m1xvgj .xu9m10qki::before { display: none; }
body.xu9m1xvgj .xu9m10qki > .xu9meow42 {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-d) 100%);
  color: var(--white);
  max-width: 920px;
  padding: 56px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
body.xu9m11u13 .xu9m10qki { padding: 46px 24px; }
body.xu9m11u13 .xu9m10qki h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin-bottom: 8px; }
body.xu9m11u13 .xu9m10qki p { margin-bottom: 20px; font-size: .95rem; }

/* =====================================================
   GUIDES & ARTICLES
   ===================================================== */
.xu9moiwlh { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; padding: 56px 0; }
.xu9mfp230 {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px;
  box-shadow: var(--shadow); color: var(--dark);
  transition: transform .15s ease, box-shadow .15s ease;
}
.xu9mfp230:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.xu9mfp230 h2 { font-size: 1.15rem; line-height: 1.3; }
.xu9mfp230 p { color: var(--gray); font-size: .92rem; flex: 1; }
.xu9mceg7z { color: var(--gray-light); font-size: .8rem; }
.xu9m1g9zp { color: var(--primary); font-weight: 600; font-size: .9rem; }

.xu9mere6d { max-width: 760px; margin: 0 auto; padding: 48px 20px 8px; }
.xu9mere6d h2 { margin: 32px 0 12px; font-size: 1.45rem; }
.xu9mere6d p { margin-bottom: 14px; }

/* =====================================================
   ESTIMATEUR DE PRIX
   ===================================================== */
.xu9m1kdtf {
  background: var(--light); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px;
  margin: 0 auto 22px; max-width: 640px; text-align: left;
}
.xu9m4qdz2 h3 { font-size: 1.1rem; margin-bottom: 4px; }
.xu9m4qdz2 p { color: var(--gray); font-size: .9rem; }
.xu9m1fbgp { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin: 14px 0 16px; }
.xu9m1f4ph { display: flex; flex-direction: column; gap: 6px; font-size: .88rem; font-weight: 600; }
.xu9m1f4ph select {
  padding: 10px 12px; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--white);
  font: inherit; font-weight: 400;
}
.xu9m1xqz5 { margin-top: 16px; padding: 16px; background: var(--white); border: 1px dashed var(--primary); border-radius: var(--radius); text-align: center; }
.xu9m1xok6 { display: block; font-size: 1.6rem; color: var(--primary); margin: 6px 0; }
.xu9m1tg7b { color: var(--gray); font-size: .85rem; }

/* Lien Guides dans le header (s'adapte aux styles hd-*) */
.xu9m290y0 { color: rgba(255,255,255,.78); font-weight: 600; font-size: .95rem; }
.xu9m290y0:hover { color: var(--white); text-decoration: none; }
body.xu9m146dd .xu9m290y0 { color: var(--gray); }
body.xu9m146dd .xu9m290y0:hover { color: var(--dark); }

/* Section guides sur la home */
.xu9m1h8th { background: var(--light); }
.xu9m1h8th .xu9moiwlh { padding: 28px 0 8px; }
.xu9mfp230 h3 { font-size: 1.15rem; line-height: 1.3; }
.xu9m1hjoi { text-align: center; padding-bottom: 8px; }
.xu9m1hjoi a { font-weight: 600; }

/* Corps d'article : H3, listes */
.xu9mere6d h3 { margin: 22px 0 8px; font-size: 1.15rem; }
.xu9mere6d ul { margin: 0 0 16px 24px; }
.xu9mere6d li { margin-bottom: 6px; }
.xu9mere6d a { font-weight: 600; }
