/* =============================================
   ANNUAIRE BATIMENT — Paysagiste (espaces verts)
   Palette : surchargee par site via CSS vars inline (primary_color / accent_color).
   Background hero : bk-paysagiste.webp
   ============================================= */

/* --- Fonts self-hosted (no Google Fonts) --- */
/* Subset latin : U+0000-00FF couvre tous les accents FR (a, e, i, o, u, c). */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/inter-700.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 800; font-display: swap; src: url('../fonts/inter-800.woff2') format('woff2'); }

/* --- Tokens --- */
:root {
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --blue-50: #eef4fb;
  --blue-100: #d4e4f7;
  --blue-200: #a9c9ef;
  --blue-400: #2b7bd4;
  --blue-500: #0a6abf;
  --blue-600: #045097;
  --blue-700: #034078;
  --blue-800: #022f59;
  --blue-900: #011f3b;
  --blue-glow: rgba(4, 80, 151, 0.15);
  --blue-light: #2b7bd4;
  --orange-400: #ffe44d;
  --orange-500: #FFD700;
  --orange-600: #e6c200;
  --orange-700: #cca900;
  --orange-light: #fff3a0;
  --amber-400: #ffe44d;
  --amber-500: #FFD700;
  --green-50: #eef4fb;
  --green-600: #045097;
  --green-700: #034078;
  --dark: #0f172a;
  --dark-card: #1e293b;
  --white: #ffffff;
  --off-white: #f8fafc;
  --text: #1e293b;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --text-on-dark: rgba(255,255,255,0.75);
  --border-light: #e2e8f0;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --r: 12px;
  --r-lg: 16px;
  --max: 1120px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
.hero-stats {
  color: var(--orange-500);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 6px 0 0;
  letter-spacing: 0.02em;
}
body {
  font-family: var(--font);
  background: var(--off-white);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 0;
}
a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* =============================================
   HEADER — Dark elegant with blur
   ============================================= */
.site-header {
  background: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 68px;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--border-light);
}
.site-header .container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}
.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo:hover { text-decoration: none; opacity: .9; }
.logo img { height: 40px; width: auto; }
.logo-text {
  font-weight: 700;
  color: var(--dark);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}
.main-nav { display: flex; align-items: center; gap: 24px; position: absolute; left: 50%; transform: translateX(-50%); }
.main-nav a {
  color: var(--slate-600);
  font-size: .88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--dark); text-decoration: none; }
.btn-contact {
  padding: 10px 20px;
  background: linear-gradient(135deg, #0a6abf, #034078);
  color: #fff !important;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  border: none;
  transition: all .2s;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
.btn-contact:hover {
  background: linear-gradient(135deg, #034078, #0a6abf);
  text-decoration: none;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(37,99,235,0.45);
  transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  display: block;
}
.mobile-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.6);
  z-index: 200;
  backdrop-filter: blur(4px);
}
.mobile-drawer-overlay.active { display: block; }
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: var(--dark);
  z-index: 201;
  transition: right .3s ease;
  box-shadow: -4px 0 40px rgba(0,0,0,.3);
  border-left: 1px solid rgba(10,106,191,0.15);
}
.mobile-drawer.active { right: 0; }
.mobile-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-drawer-logo {
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}
.mobile-drawer-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.4);
}
.mobile-drawer-close:hover { color: var(--white); }
.mobile-drawer-nav {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
}
.mobile-drawer-link {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  font-size: .95rem;
  transition: color 0.2s;
}
.mobile-drawer-link:hover { color: var(--white); }
.mobile-drawer-cta {
  margin-top: 20px;
  padding: 14px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--dark);
  text-align: center;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  display: block;
}

/* =============================================
   BREADCRUMBS
   ============================================= */
.breadcrumbs {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
}
.breadcrumbs .container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; list-style: none; font-size: .78rem; gap: 0; }
.breadcrumb-item { color: var(--text-muted); display: flex; align-items: center; }
.breadcrumb-item + .breadcrumb-item::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.breadcrumb-item a { color: var(--text-light); }
.breadcrumb-item a:hover { color: var(--blue-600); text-decoration: none; }
.breadcrumb-item.active { color: var(--text); font-weight: 600; }

/* =============================================
   PAGE TITLE (Hero) — Pattern + gradients
   ============================================= */
.page-title {
  background: url('../img/bk-paysagiste.webp') center/cover no-repeat;
  padding: 30px 0 30px;
  position: relative;
  overflow: hidden;
}
.page-title::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(1, 20, 40, 0.7);
  pointer-events: none;
}
.page-title::after {
  display: none;
}
/* Hero lightning bolts */
.hero-bolts { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.bolt { position: absolute; }
.bolt-1 { width: 56px; top: 8%; left: 6%; transform: rotate(-15deg); opacity: 0.3; }
.bolt-2 { width: 32px; top: 55%; left: 1%; transform: rotate(22deg); opacity: 0.22; }
.bolt-3 { width: 44px; top: 15%; right: 4%; transform: rotate(-28deg); opacity: 0.28; }
.bolt-4 { width: 26px; top: 65%; right: 8%; transform: rotate(12deg); opacity: 0.2; }
.bolt-5 { width: 36px; bottom: 6%; left: 42%; transform: rotate(-10deg); opacity: 0.22; }
.bolt-7 { width: 38px; top: 80%; right: 20%; transform: rotate(-18deg); opacity: 0.2; }
.bolt-8 { width: 22px; top: 5%; left: 30%; transform: rotate(5deg); opacity: 0.16; }
.bolt-9 { width: 28px; top: 45%; right: 2%; transform: rotate(-35deg); opacity: 0.24; }
@media (max-width: 768px) { .hero-bolts { display: none; } }

.page-title .container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.page-title h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}
.page-title h1 span { color: var(--orange-500); }
.page-title .subtitle {
  color: var(--text-on-dark);
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
}
.page-title .hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #fff;
  margin-top: 16px;
}
.page-title .hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10,106,191,0.12);
  border: 1px solid rgba(10,106,191,0.2);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--blue-light);
}
.page-title .hero-stat svg {
  width: 15px;
  height: 15px;
  stroke: var(--blue-light);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
/* Hero rating badge */
.hero-badge-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(39, 61, 113);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.hero-stars { display: inline-flex; gap: 2px; }
.hero-stars svg { width: 16px; height: 16px; }
.hero-rating-text { font-size: .88rem; font-weight: 700; color: var(--orange-400); }
.hero-rating-sep { color: rgba(255,255,255,0.3); }
.hero-rating-projects { font-size: .82rem; color: rgb(255, 255, 255); font-weight: 500; }

.hero-subtitle-orange {
  color: var(--orange-500);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 12px 0 10px;
}

.page-title .page-cta { margin-top: 28px; }

/* Hero two-column layout: text left, iframe right */
.hero-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-left { }
.hero-right {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 24px;
  backdrop-filter: blur(4px);
}
.hero-right-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.4;
}
.hero-right-sub {
  font-size: .82rem;
  color: var(--orange-400);
  font-weight: 600;
  margin-bottom: 14px;
}
.hero-iframe-wrap {
  border-radius: 10px;
  background: #fff;
  margin-bottom: 16px;
}
.hero-iframe-wrap iframe {
  display: block;
  width: 100%;
  height: auto;
  min-height: 438px;
  border: none;
}

/* =============================================
   Hero CTA box — Premium Blue/Orange edition (electricien)
   ============================================= */
.hero-right-cta { background: none; border: none; backdrop-filter: none; padding: 0; }
.hero-right-cta { position: relative; }
.hero-right-cta::before,
.hero-right-cta::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 56px;
  pointer-events: none;
  z-index: 5;
  border-radius: 18px;
  opacity: 0;
  transition: opacity .25s ease;
}
.hero-right-cta::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(15,23,42,0.9), rgba(15,23,42,0));
}
.hero-right-cta::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.9), rgba(15,23,42,0));
}
.hero-right-cta.is-scrollable::after,
.hero-right-cta.scroll-top::after { opacity: 1; }
.hero-right-cta.scroll-bottom::before,
.hero-right-cta.scroll-middle::before,
.hero-right-cta.scroll-middle::after { opacity: 1; }

.hero-scroll-hint {
  position: absolute;
  left: 50%; bottom: 10px;
  transform: translateX(-50%);
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,215,0,0.95);
  box-shadow: 0 4px 14px rgba(255,215,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  pointer-events: none;
  z-index: 6;
  animation: heroScrollBounce 1.6s ease-in-out infinite;
  opacity: 0;
  transition: opacity .25s ease;
}
.hero-scroll-hint svg { width: 18px; height: 18px; }
.hero-right-cta.is-scrollable .hero-scroll-hint,
.hero-right-cta.scroll-top .hero-scroll-hint,
.hero-right-cta.scroll-middle .hero-scroll-hint { opacity: 1; }
.hero-right-cta.scroll-bottom .hero-scroll-hint { opacity: 0; }
@keyframes heroScrollBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 6px); }
}

.hero-cta-box {
  position: relative;
  background: linear-gradient(160deg, rgba(30, 58, 138, 0.55) 0%, rgba(15, 23, 42, 0.7) 100%);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 18px;
  padding: 13px 13px 13px 13px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 20px 50px -10px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 1px 0 rgba(255, 215, 0, 0.18) inset;
  max-height: 849px;
  overflow-y: auto;
  overflow-x: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,215,0,0.6) rgba(255,255,255,0.08);
}
.hero-cta-box::-webkit-scrollbar { width: 10px; }
.hero-cta-box::-webkit-scrollbar-track { background: rgba(255,255,255,0.08); border-radius: 8px; margin: 4px; }
.hero-cta-box::-webkit-scrollbar-thumb { background: rgba(255,215,0,0.7); border-radius: 8px; border: 2px solid transparent; background-clip: padding-box; }
.hero-cta-box::-webkit-scrollbar-thumb:hover { background: rgba(255,215,0,0.95); background-clip: padding-box; border: 2px solid transparent; }
.hero-cta-box::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 215, 0, 0.6) 50%, transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
}
.hero-cta-box:hover { transform: translateY(-3px); box-shadow: 0 28px 60px -10px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 215, 0, 0.3) inset; }
.hero-cta-box:hover::before { opacity: 1; }

/* Ribbon "GRATUIT" en haut à droite */
.hero-cta-box::after {
  content: "GRATUIT";
  position: absolute;
  top: 14px;
  right: -34px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: #000;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  padding: 4px 38px;
  transform: rotate(35deg);
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.5);
  text-shadow: none;
}

.hero-cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 215, 0, 0.14);
  color: var(--orange-400);
  border: 1px solid rgba(255, 215, 0, 0.45);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.hero-cta-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange-500);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange-500);
}
.hero-cta-sub {
  display: block;
  font-size: .65em;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-top: -2px;
  text-transform: none;
  letter-spacing: 0;
}
.hero-cta-offer {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-cta-offer span {
  display: block;
  font-size: 1rem;
  color: var(--orange-400);
  font-weight: 700;
  letter-spacing: 3px;
}
.hero-cta-desc {
  font-size: .85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  margin: 14px 0 22px;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
.btn-cta-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 60%, var(--orange-700) 100%);
  color: #fff;
  font-size: .98rem;
  font-weight: 800;
  border-radius: 12px;
  text-decoration: none;
  letter-spacing: .01em;
  box-shadow:
    0 8px 20px -4px rgba(234, 88, 12, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.25) inset;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  position: relative;
  text-shadow: 0 1px 0 rgba(0,0,0,0.15);
}
.btn-cta-hero:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px -4px rgba(234, 88, 12, 0.7),
    0 1px 0 rgba(255, 255, 255, 0.35) inset;
  filter: brightness(1.05);
}
.btn-cta-hero:active { transform: translateY(0); }
.btn-cta-hero svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn-cta-hero::after {
  content: "→";
  font-size: 1.1rem;
  font-weight: 900;
  margin-left: 4px;
  transition: transform .25s ease;
}
.btn-cta-hero:hover::after { transform: translateX(4px); }

.hero-urgency {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: .76rem;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}
.hero-live-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.8);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); transform: scale(1); }
  70%  { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); transform: scale(1.1); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); transform: scale(1); }
}

.hero-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  color: rgb(255, 255, 255);
  line-height: 1.4;
}
.hero-benefits li svg {
  width: 14px;
  height: 14px;
  stroke: var(--orange-400);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .hero-cols { grid-template-columns: 1fr; gap: 24px; }
  .hero-right { order: 1; }
}
@media (max-width: 520px) {
  .hero-right { padding: 1px; }
  .hero-cta-box { padding: 28px 18px 22px; border-radius: 14px; }
  .hero-cta-box::after { font-size: .58rem; padding: 3px 32px; right: -36px; }
  .hero-cta-offer { font-size: 2.4rem; }
  .btn-cta-hero { padding: 14px 18px; font-size: .92rem; }
  .hero-iframe-wrap iframe { height: 280px; }
}

/* =============================================
   BUTTONS — Gradient CTAs with glow
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .88rem;
  border: none;
  transition: all .25s;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover { text-decoration: none; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--blue-600);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-700);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.btn-outline {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--border-light);
}
.btn-outline:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
  background: var(--white);
}

.btn-devis {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(255,215,0,0.3),
              0 2px 8px rgba(255,215,0,0.15);
  position: relative;
  overflow: hidden;
}
.btn-devis::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.12), transparent);
  animation: shimmer 3s infinite;
}
.btn-devis:hover {
  box-shadow: 0 8px 28px rgba(255,215,0,0.4),
              0 4px 12px rgba(255,215,0,0.2);
  color: #fff;
  transform: translateY(-1px);
}

/* Boutons listing (city/city_service) : meme palette que le sticky floating-cta */
.btn-devis.btn-sm {
  background: linear-gradient(135deg, #0a6abf, #034078);
  box-shadow: 0 6px 20px rgba(10,106,191,0.35),
              0 2px 8px rgba(0,0,0,0.1);
}
.btn-devis.btn-sm:hover {
  background: linear-gradient(135deg, #034078, #0a6abf);
  box-shadow: 0 8px 28px rgba(10,106,191,0.5),
              0 4px 12px rgba(0,0,0,0.15);
}

/* Hero CTA - bigger, with pulse */
.btn-devis-hero {
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  box-shadow: 0 8px 35px rgba(255,215,0,0.4),
              0 2px 10px rgba(255,215,0,0.2),
              inset 0 1px 0 rgba(255,255,255,0.3);
  border: 1px solid var(--orange-600);
  animation: heroPulse 2.5s ease-in-out infinite;
}
.btn-devis-hero:hover {
  background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
  transform: translateY(-2px);
  box-shadow: 0 12px 45px rgba(255,215,0,0.5),
              0 4px 15px rgba(255,215,0,0.3),
              inset 0 1px 0 rgba(255,255,255,0.4);
}

@keyframes heroPulse {
  0%, 100% {
    box-shadow: 0 8px 35px rgba(255,215,0,0.4),
                0 2px 10px rgba(255,215,0,0.2),
                inset 0 1px 0 rgba(255,255,255,0.3);
  }
  50% {
    box-shadow: 0 12px 50px rgba(255,215,0,0.6),
                0 4px 20px rgba(255,215,0,0.3),
                inset 0 1px 0 rgba(255,255,255,0.4);
    transform: scale(1.02);
  }
}
@keyframes shimmer {
  0% { transform: translateX(-200%) translateY(-200%) rotate(45deg); }
  100% { transform: translateX(200%) translateY(200%) rotate(45deg); }
}

.btn-green { background: var(--green-600); color: #fff; }
.btn-green:hover { background: var(--green-700); color: #fff; transform: translateY(-1px); }
.btn-sm { padding: 8px 16px; font-size: .8rem; border-radius: 8px; }
.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: 12px; }

/* (.hero-urgency / .hero-live-dot maintenant définis dans le bloc Hero CTA premium plus haut) */

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--blue-900);
  padding: 18px 0;
  border-bottom: 1px solid rgba(10,106,191,0.15);
}
.trust-bar .container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: .88rem;
  font-weight: 500;
}
.trust-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange-400);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.trust-item strong { color: var(--orange-400); }

/* =============================================
   SECTIONS — Well-spaced, alternating
   ============================================= */
.section {
  padding: 20px 0;
}
.section .container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section-alt { background: var(--white); }
.section-bg { background: var(--white); }

.section-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--blue-600);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}
.section-desc {
  font-size: .95rem;
  color: var(--text-light);
  max-width: 100%;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* =============================================
   LOCATION GRID — Regions, departments
   ============================================= */
.loc-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}
.grid-3 { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); padding-top: 35px; }

.loc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--border-light);
  transition: all .25s;
  text-decoration: none;
  min-height: 72px;
}
.cities-grid, .services-grid { contain: layout; }
.loc-card:hover {
  border-color: var(--blue-400);
  box-shadow: 0 6px 24px var(--blue-glow);
  transform: translateY(-3px);
  text-decoration: none;
}
.loc-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.loc-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue-600);
  fill: none;
  stroke-width: 2;
}
.loc-card-body { flex: 1; min-width: 0; }
.loc-card-name { font-size: .92rem; font-weight: 600; color: var(--text); }
.loc-card-meta { font-size: .78rem; color: var(--text-muted); margin-top: 3px; }
.loc-card-arrow {
  color: var(--slate-300);
  font-size: 1.3rem;
  font-weight: 300;
  transition: all .25s;
  flex-shrink: 0;
}
.loc-card:hover .loc-card-arrow { color: var(--blue-600); transform: translateX(4px); }

/* Pills for cities - Nearby style */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-size: .84rem;
  font-weight: 500;
  color: var(--text-light);
  transition: all .25s;
}
.pill:hover {
  background: rgba(3,64,120,0.06);
  border-color: var(--blue-400);
  color: var(--blue-700);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--blue-glow);
}
.pill .pill-distance {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(10,106,191,0.06);
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

/* =============================================
   VOYANTE-STYLE LISTINGS (Mystique pattern)
   ============================================= */
.listings-online { padding: 70px 0; background: var(--off-white); }
.listings-online .container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.listings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.listing-row {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); padding: 22px 24px; transition: all .3s;
}
.listing-row:hover {
  border-color: var(--blue-400);
  box-shadow: 0 6px 24px var(--blue-glow);
  transform: translateY(-3px);
}
.listing-row-info { flex: 1; min-width: 0; }
.listing-row-top { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
.listing-row-name { font-size: 1.1rem; font-weight: 700; color: var(--text); text-decoration: none; transition: color .2s; }
.listing-row-name:hover { color: var(--blue-600); text-decoration: none; }
.listing-row-spec {
  font-size: .68rem; font-weight: 700; color: var(--blue-600);
  background: rgba(3,64,120,0.08); padding: 3px 10px;
  border-radius: 4px; text-transform: uppercase; letter-spacing: .5px;
}
.listing-row-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.listing-row-rating .stars { display: inline-flex; gap: 1px; }
.listing-row-rating span { font-size: .82rem; font-weight: 600; color: var(--text); }
.listing-row-rating small { font-size: .75rem; color: var(--text-light); }
.listing-row-details { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; margin-bottom: 8px; }
.detail-item { display: flex; align-items: flex-start; gap: 6px; font-size: .83rem; color: var(--text-light); }
.detail-item svg { width: 15px; height: 15px; stroke: var(--blue-400); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.detail-item a { color: var(--blue-600); font-weight: 600; }
.detail-item a:hover { text-decoration: underline; }
.listing-row-review {
  background: rgba(3,64,120,0.04);
  border-left: 3px solid var(--blue-400);
  padding: 10px 14px; border-radius: 0 8px 8px 0; margin-top: 10px;
}
.listing-row-review p { font-size: .83rem; color: var(--text-light); font-style: italic; line-height: 1.6; margin: 0; }
.listing-row-review .review-author {
  font-size: .75rem; color: var(--blue-600); font-weight: 600;
  font-style: normal; margin-top: 4px; display: block;
}

.no-cabinets {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); padding: 32px; text-align: center;
}
.no-cabinets p { font-size: .95rem; color: var(--text-light); line-height: 1.7; }

/* Cabinets guide + nearby (inside section) */
.cabinets-guide {
  margin-top: 20px; padding: 18px 22px;
  background: linear-gradient(135deg, rgba(3,64,120,0.04), rgba(255,215,0,0.03));
  border-left: 3px solid var(--blue-400);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}
.cabinets-guide h3 { font-size: 1.3rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.cabinets-guide p { font-size: 1rem; color: var(--text-light); line-height: 1.8; margin: 0; }
.cabinets-guide strong { color: var(--blue-700); }

/* City services */
.city-services {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  padding: 24px;
  margin-top: 32px;
}
.city-services h3 { font-size: 1rem; font-weight: 600; margin-bottom: 16px; color: var(--text); }
.city-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.city-service-group h4 { font-size: .82rem; font-weight: 600; color: var(--blue-600); margin-bottom: 8px; }
.city-service-group ul { list-style: none; padding: 0; margin: 0; }
.city-service-group li {
  font-size: .82rem; color: var(--text-light); padding: 5px 0; border-bottom: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 6px;
}
.city-service-group li:last-child { border-bottom: none; }
.city-service-group li::before { content: ""; width: 5px; height: 5px; background: var(--blue-400); border-radius: 50%; flex-shrink: 0; }
@media (max-width: 768px) { .city-services-grid { grid-template-columns: 1fr; } }

/* City FAQ */
.city-faq {
  margin-top: 32px;
}
.city-faq h3 { font-size: 1rem; font-weight: 600; margin-bottom: 14px; color: var(--text); }

/* Map section */
.city-map-section {
  margin-top: 40px;
}
.city-map {
  width: 100%;
  height: 400px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  z-index: 1;
  position: relative;
}
@media (max-width: 520px) {
  .city-map { height: 280px; border-radius: 10px; }
}

.cabinets-nearby { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border-light); }
.cabinets-nearby h3 { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 16px; }
.nearby-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.nearby-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; background: rgba(3,64,120,0.04);
  border: 1px solid rgba(3,64,120,0.12); border-radius: 8px;
  text-decoration: none; transition: all .2s;
}
.nearby-card:hover { background: rgba(3,64,120,0.08); border-color: rgba(3,64,120,0.25); text-decoration: none; }
.nearby-name { font-size: .84rem; font-weight: 500; color: var(--text); }
.nearby-distance {
  font-size: .72rem; font-weight: 600; color: var(--text-muted);
  background: rgba(3,64,120,0.06); padding: 2px 8px; border-radius: 20px; white-space: nowrap; margin-left: 8px;
}

@media (max-width: 960px) {
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .nearby-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .listings-online { padding: 40px 0; }
  .listings-grid { grid-template-columns: 1fr; }
  .nearby-grid { grid-template-columns: 1fr; }
  .listing-row { padding: 16px; }
  .listing-row-name { font-size: 1rem; }
  .cabinets-guide { padding: 18px; }
  .cabinets-guide h3 { font-size: .92rem; }
  .cabinets-guide p { font-size: .84rem; }
}

/* =============================================
   ARTISAN CARDS — Featured review, SVG icons
   ============================================= */
.listing-list { display: flex; flex-direction: column; gap: 16px; }

.listing-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all .3s;
}
.listing-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-3px);
  border-color: var(--blue-400);
}

.listing-card-top {
  display: flex;
  gap: 16px;
  padding: 22px 24px 0;
}
.listing-card-rank {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .95rem;
  flex-shrink: 0;
  color: var(--white);
  background: var(--slate-400);
}
.listing-card-rank[data-rank="1"] { background: linear-gradient(135deg, #ffe44d, #FFD700); color: var(--dark); }
.listing-card-rank[data-rank="2"] { background: linear-gradient(135deg, #a1a1aa, #71717a); }
.listing-card-rank[data-rank="3"] { background: linear-gradient(135deg, #d97706, #92400e); }
.listing-card-info { flex: 1; min-width: 0; }

.listing-card-name-link { text-decoration: none; }
.listing-card-name-link:hover { text-decoration: none; }
.listing-card-name { font-size: 1.1rem; font-weight: 700; color: var(--text); transition: color 0.2s; }
.listing-card-name-link:hover .listing-card-name { color: var(--blue-600); }

.listing-card-rating { display: flex; align-items: center; gap: 6px; margin-top: 5px; }

.stars-rating { display: inline-flex; gap: 1px; }
.star { font-size: .95rem; line-height: 1; }
.star-full { color: var(--amber-500); }
.star-half { color: var(--amber-400); }
.star-empty { color: var(--slate-200); }
.rating-text { font-size: .8rem; color: var(--text-muted); font-weight: 500; }

.listing-card-address {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.listing-card-address svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* Featured review inside card */
.listing-card-review {
  margin: 12px 24px 0;
  background: rgba(3,64,120,0.04);
  border-left: 3px solid var(--blue-400);
  padding: 12px 16px;
  border-radius: 0 10px 10px 0;
}
.listing-card-review p {
  font-size: .84rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}
.listing-card-review .review-author {
  font-size: .75rem;
  color: var(--blue-600);
  font-weight: 600;
  font-style: normal;
  margin-top: 4px;
  display: block;
}

.listing-card-body { padding: 16px 24px 22px; }
.listing-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.listing-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--green-600);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: .85rem;
  transition: all .2s;
}
.listing-phone svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}
.listing-phone:hover { background: var(--green-700); color: #fff; text-decoration: none; transform: translateY(-1px); }

.listing-website {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--blue-50);
  color: var(--blue-600);
  border-radius: 10px;
  font-weight: 600;
  font-size: .84rem;
  transition: all .2s;
}
.listing-website svg {
  width: 15px;
  height: 15px;
  stroke: var(--blue-600);
  fill: none;
  stroke-width: 2;
}
.listing-website:hover { background: var(--blue-100); color: var(--blue-700); text-decoration: none; }

.listing-gmaps {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--white);
  color: var(--text-light);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-size: .82rem;
  transition: all .2s;
}
.listing-gmaps svg {
  width: 15px;
  height: 15px;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 2;
}
.listing-gmaps:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
  text-decoration: none;
}
.listing-gmaps:hover svg { stroke: var(--blue-600); }

.listing-card-hours {
  padding: 14px 24px 16px;
  border-top: 1px solid var(--slate-100);
  background: var(--slate-50);
}
.listing-card-hours summary {
  font-size: .82rem;
  color: var(--text-light);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.listing-card-hours summary svg {
  width: 15px;
  height: 15px;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 2;
}
.listing-card-hours .hours-list {
  margin-top: 8px;
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =============================================
   GUIDE SECTION (How to choose)
   ============================================= */
.guide-section {
  margin-top: 48px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(3,64,120,0.04), rgba(255,215,0,0.03));
  border-left: 3px solid var(--blue-400);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}
.guide-section h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.guide-section p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0 0 8px;
}
.guide-section p:last-child { margin-bottom: 0; }
.guide-section strong { color: var(--blue-700); }
.guide-section ul {
  margin: 8px 0 8px 20px;
  list-style: disc;
}
.guide-section li {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 4px;
}

/* =============================================
   PROFILE PAGE
   ============================================= */
.profile-header {
  background: var(--dark);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.profile-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 30% 50%, rgba(3,64,120,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(255,215,0,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.profile-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
.profile-header .container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.profile-header h1 {
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}
.profile-header-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.profile-header-meta .rating-text { color: var(--text-on-dark); }
.profile-header-address {
  font-size: .88rem;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.profile-header-address svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.55);
  fill: none;
  stroke-width: 2;
}

.profile-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px 24px;
}
.profile-main { display: flex; flex-direction: column; gap: 20px; }
.profile-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.profile-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 28px;
}
.profile-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--slate-100);
  display: flex;
  align-items: center;
  gap: 8px;
}
.profile-card h2 svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue-600);
  fill: none;
  stroke-width: 2;
}

/* Profile about grid */
.profile-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.profile-about-item { display: flex; flex-direction: column; padding: 8px 0; border-bottom: 1px solid var(--border-light); }
.profile-about-item strong { font-size: .72rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: .3px; margin-bottom: 2px; }
.profile-about-item span { font-size: .88rem; color: var(--text); }
.profile-about-item a { color: var(--blue-600); }

/* Profile hours */
.profile-hours-line { font-size: .86rem; color: var(--text-light); padding: 5px 0; border-bottom: 1px solid var(--border-light); display: flex; justify-content: space-between; }
.profile-hours-line:last-child { border-bottom: none; }

.profile-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.profile-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--slate-50);
  border-radius: var(--r);
  border: 1px solid var(--slate-100);
  transition: all 0.2s;
}
.profile-info-item:hover {
  border-color: var(--blue-200);
  background: var(--blue-50);
}
.profile-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.profile-info-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue-600);
  fill: none;
  stroke-width: 2;
}
.profile-info-label {
  font-size: .7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}
.profile-info-value {
  color: var(--text);
  font-weight: 500;
  font-size: .88rem;
  margin-top: 3px;
}
.profile-info-value a { color: var(--blue-600); }
.profile-info-value a:hover { text-decoration: underline; }

/* Reviews */
.review-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 1px solid #fde68a;
  border-radius: var(--r);
  margin-bottom: 20px;
}
.review-summary-score {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.review-summary-count { font-size: .85rem; color: var(--text-light); margin-top: 4px; }

.review-card {
  padding: 18px 0;
  border-bottom: 1px solid var(--slate-100);
}
.review-card:last-child { border-bottom: none; }
.review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.review-author { font-weight: 700; color: var(--text); font-size: .9rem; }
.review-date { font-size: .76rem; color: var(--text-muted); }
.review-source { font-size: .7rem; color: var(--blue-600); margin-left: auto; }
.review-text { font-size: .88rem; color: var(--text-light); line-height: 1.7; }

/* Sidebar CTA */
.sidebar-cta {
  background: linear-gradient(135deg, #eef4fb, #e0f2fe);
  border: 2px solid var(--blue-400);
  border-radius: var(--r-lg);
  padding: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sidebar-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #0a6abf, #034078);
}
.sidebar-cta-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--green-50);
  color: var(--green-600);
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 14px;
  border: 1px solid #bbf7d0;
}
.sidebar-cta-tag {
  display: inline-block;
  background: linear-gradient(135deg, #0a6abf, #034078);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.sidebar-cta h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.sidebar-cta p {
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.55;
}
.sidebar-cta-devis { background: linear-gradient(135deg, #eef4fb, #f0fdf4); border: 1px solid var(--blue-200); }
.sidebar-cta-devis::before { display: none; }
.sidebar-cta-list { list-style: none; padding: 0; margin: 0 0 16px; }
.sidebar-cta-list li { font-size: .84rem; color: var(--text); padding: 4px 0; display: flex; align-items: center; gap: 6px; }
.sidebar-cta-list svg { width: 16px; height: 16px; stroke: #22c55e; fill: none; stroke-width: 2.5; flex-shrink: 0; }

/* =============================================
   MAILLAGE
   ============================================= */
.maillage-box {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 28px;
}
.maillage-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
}

/* =============================================
   SERVICES TABS
   ============================================= */
.services-section { padding: 30px 0; background: var(--white); }
.services-section .container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.tabs-nav { display: flex; gap: 6px; margin-bottom: 28px; overflow-x: auto; padding-bottom: 4px; }
.tab-btn {
  padding: 10px 20px; border: 1px solid var(--border-light); border-radius: 8px;
  background: var(--white); color: var(--text-light); font-size: .82rem; font-weight: 600;
  white-space: nowrap; transition: all .2s; cursor: pointer; font-family: var(--font);
}
.tab-btn:hover { border-color: var(--blue-400); color: var(--blue-600); }
.tab-btn.active { background: var(--blue-600); color: #fff; border-color: var(--blue-600); }

.tab-pane { display: none; }
.tab-pane.active { display: block; }
.tab-heading { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.tab-intro { font-size: .9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }

.service-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.service-list__item {
  padding: 16px 20px; background: var(--slate-50);
  border: 1px solid var(--slate-100); border-radius: var(--r);
  font-size: .88rem; color: var(--text-light); line-height: 1.7;
}
.service-list__item strong { color: var(--text); }
.service-list__duration { font-size: .8rem; color: var(--text-muted); font-weight: 500; }
.service-list__price { font-size: .85rem; color: #045097; font-weight: 700; }
.service-list__description { margin-top: 6px; font-size: .84rem; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   CERTIFICATIONS ACCORDION
   ============================================= */
.expertise-section { padding: 70px 0; background: var(--off-white); }
.expertise-section .container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.accordion-item {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r); margin-bottom: 10px; overflow: hidden; transition: all .25s;
}
.accordion-item:hover { border-color: var(--blue-400); box-shadow: 0 4px 16px var(--blue-glow); }
.accordion-header {
  width: 100%; text-align: left; padding: 18px 22px;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font); font-size: .95rem; font-weight: 600; color: var(--text);
  transition: color .2s;
}
.accordion-header:hover { color: var(--blue-600); }
.accordion-title-wrapper { display: flex; align-items: center; gap: 12px; }
.accordion-title-wrapper svg { stroke: var(--blue-400); flex-shrink: 0; }
.accordion-chevron { transition: transform .3s; color: var(--blue-400); flex-shrink: 0; }
.accordion-item.open .accordion-chevron { transform: rotate(180deg); }
.accordion-content {
  max-height: 0; overflow: hidden; transition: max-height .35s ease-out;
}
.accordion-item.open .accordion-content { padding: 18px 26px 22px; }
.accordion-content p, .accordion-content ul {
  font-size: .92rem; color: var(--text-light); line-height: 1.75; margin: 0 0 12px;
}
.accordion-content ul { padding-left: 22px; }
.accordion-content li { margin-bottom: 6px; }
.accordion-content p:last-child, .accordion-content ul:last-child { margin-bottom: 0; }
.accordion-content strong { color: var(--text, #1e293b); font-weight: 700; }

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section { padding: 70px 0; background: var(--white); }
.faq-section .container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.faq-container { }
.faq-section .accordion-header span { flex: 1; }

@media (max-width: 520px) {
  .tabs-nav { gap: 4px; }
  .tab-btn { padding: 8px 14px; font-size: .75rem; }
  .services-section, .expertise-section, .faq-section { padding: 40px 0; }
}

/* =============================================
   EMPTY STATE + SEO
   ============================================= */
.empty-state {
  text-align: center;
  padding: 64px 24px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
}
.empty-state-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
}
.empty-state-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 1.5;
  margin: 0 auto;
}
.empty-state h3 { font-size: 1.05rem; color: var(--text-light); margin-bottom: 8px; }

.seo-block {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 32px;
  font-size: .9rem;
  line-height: 1.8;
  color: var(--text-light);
}
.seo-block h2 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 14px;
  font-weight: 700;
}
.seo-block p { margin-bottom: 14px; }
.seo-block p:last-child { margin-bottom: 0; }

/* =============================================
   CTA FINAL SECTION
   ============================================= */
.cta-final {
  padding: 90px 0;
  text-align: center;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(3,64,120,0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,215,0,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.cta-final::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
.cta-final-inner { position: relative; z-index: 2; }
.cta-offer-box {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(3,64,120,0.15), rgba(255,215,0,0.06));
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 20px;
  padding: 48px 40px;
}
.cta-offer-tag {
  display: inline-block;
  background: var(--orange-500);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.cta-final h2 { font-size: 2rem; margin-bottom: 12px; line-height: 1.2; }
.cta-offer-desc { font-size: .95rem; color: var(--text-on-dark); margin-bottom: 24px; line-height: 1.6; }
.cta-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.cta-trust-badges span {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.cta-trust-badges span svg {
  width: 14px;
  height: 14px;
  stroke: var(--orange-400);
  fill: none;
  stroke-width: 2;
}
.cta-final .small-text {
  margin-top: 16px;
  font-size: .78rem;
  color: rgba(255,255,255,0.35);
}

/* =============================================
   MODAL DEVIS
   ============================================= */
.devis-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.devis-modal.is-open { display: flex; }
.devis-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.7);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.devis-modal-box {
  position: relative;
  background: #fff;
  border: 1px solid rgba(255,215,0,.35);
  border-radius: 18px;
  width: 100%;
  max-width: 900px;
  max-height: 92vh;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,.5);
  color: #1e293b;
  display: flex;
  flex-direction: column;
}
.devis-modal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: rgba(255,215,0,.12);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  color: #e6c200;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: background .2s, color .2s;
}
.devis-modal-close:hover { background: #e6c200; color: #fff; }
.devis-modal-head {
  padding: 22px 28px 16px;
  text-align: center;
  background: linear-gradient(160deg, rgba(1,31,59,.04) 0%, rgba(255,215,0,.06) 100%);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
/* Meme style que .hero-cta-tag mais fond clair */
.devis-modal-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 18px;
  background: rgba(255,215,0,.18);
  color: #cca900;
  border: 1px solid rgba(255,215,0,.55);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.devis-modal-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--orange-500);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange-500);
}
/* Meme style que .hero-cta-offer (taille hero) */
.devis-modal-title {
  font-size: 2.6rem;
  font-weight: 900;
  margin: 14px 0 0;
  line-height: 1;
  color: #0f172a;
}
.devis-modal-title small {
  display: block;
  font-size: .95rem;
  color: var(--orange-600);
  font-weight: 700;
  letter-spacing: 3px;
  margin-top: 10px;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .devis-modal-title { font-size: 1.9rem; }
  .devis-modal-title small { font-size: .8rem; letter-spacing: 2px; }
}
.devis-modal-body {
  padding: 0;
  overflow-y: auto;
  background: #fff;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,215,0,.6) #f1f5f9;
}
.devis-modal-body::-webkit-scrollbar { width: 8px; }
.devis-modal-body::-webkit-scrollbar-track { background: #f1f5f9; }
.devis-modal-body::-webkit-scrollbar-thumb { background: rgba(255,215,0,.6); border-radius: 8px; }

.listing-row-name-link { color: var(--blue-700); text-decoration: none; font-weight: 700; }
.listing-row-name-link:hover { color: var(--orange-600); text-decoration: underline; }

/* PRESTATIONS CITY — format tableau groupe (different des onglets home) */
.city-services-section { background: var(--off-white, #f8fafc); }
.city-prest-group { margin-top: 28px; background: #fff; border: 1px solid var(--border-light, #e2e8f0); border-radius: 12px; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,.03); }
.city-prest-group:first-of-type { margin-top: 24px; }
.city-prest-cat {
  margin: 0;
  padding: 14px 20px;
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, var(--blue-700, #034078) 0%, var(--blue-600, #045097) 100%);
  border-left: 4px solid var(--orange-500, #FFD700);
  letter-spacing: .2px;
}
.city-prest-table { width: 100%; border-collapse: collapse; }
.city-prest-table thead tr { background: rgba(37, 99, 235, .04); }
.city-prest-table th {
  padding: 10px 20px;
  text-align: left;
  font-size: .78rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .6px;
  border-bottom: 1px solid var(--border-light, #e2e8f0);
}
.city-prest-table th:nth-child(2), .city-prest-table th:nth-child(3) { text-align: right; }
.city-prest-table td {
  padding: 11px 20px;
  font-size: .92rem;
  border-top: 1px solid #f1f5f9;
  vertical-align: middle;
}
.city-prest-table tbody tr:hover { background: rgba(255, 215, 0, .04); }
.city-prest-label { color: #1e293b; font-weight: 500; }
.city-prest-duration { text-align: right; color: #64748b; font-size: .85rem; white-space: nowrap; }
.city-prest-price { text-align: right; color: var(--blue-700, #034078); font-weight: 700; white-space: nowrap; }

@media (max-width: 640px) {
  .city-prest-table thead { display: none; }
  .city-prest-table tr { display: block; padding: 10px 14px; border-top: 1px solid #f1f5f9; }
  .city-prest-table td { display: block; padding: 2px 0; border: 0; font-size: .88rem; text-align: left !important; }
  .city-prest-label { font-weight: 600; margin-bottom: 4px; }
  .city-prest-duration::before { content: "Durée : "; color: #94a3b8; font-size: .78rem; }
  .city-prest-price::before { content: "Tarif : "; color: #94a3b8; font-size: .78rem; font-weight: 500; }
}
.devis-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.devis-modal-close:hover { color: var(--text); }
.devis-modal-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--green-50);
  color: var(--green-600);
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid #bbf7d0;
}
.devis-modal-box h2 { font-size: 1.25rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.devis-modal-artisan { font-size: .92rem; font-weight: 600; color: var(--blue-600); margin-bottom: 12px; }
.devis-modal-desc { font-size: .86rem; color: var(--text-light); line-height: 1.6; margin-bottom: 22px; }
.devis-modal-info { font-size: .82rem; color: var(--text-muted); margin-bottom: 16px; text-align: center; }
.devis-modal-cta { width: 100%; }
.devis-modal-legal { font-size: .7rem; color: var(--text-muted); text-align: center; margin-top: 16px; }

/* =============================================
   FOOTER — Dark, organized
   ============================================= */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.55);
  padding: 50px 0 24px;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.site-footer .container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand .footer-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  display: block;
}
.footer-brand p { font-size: .84rem; line-height: 1.6; max-width: 320px; }
.footer-col h4 {
  color: var(--blue-light);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.45);
  padding: 5px 0;
  font-size: .85rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; text-decoration: none; }

.footer-regions {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 24px;
  margin-bottom: 24px;
}
.footer-regions h4 {
  color: rgba(255,255,255,.25);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.footer-regions-links { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-regions-links a {
  padding: 6px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  transition: all 0.2s;
}
.footer-regions-links a:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
}

.footer-disclosure {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .72rem;
  color: rgba(255,255,255,.25);
  text-align: center;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 16px;
  margin-top: 16px;
  font-size: .74rem;
  color: rgba(255,255,255,.2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* Cookie */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-card);
  color: #fff;
  padding: 16px;
  z-index: 300;
  border-top: 1px solid rgba(10,106,191,0.15);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-content {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-content p { font-size: .82rem; margin: 0; }
.cookie-content a { color: var(--orange-400); }
.cookie-actions { display: flex; gap: 8px; }
.btn-small { padding: 7px 14px; font-size: .78rem; border-radius: 8px; }
.btn-secondary {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  font-weight: 600;
  font-size: .78rem;
  transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,.18); color: #fff; text-decoration: none; }

/* =============================================
   FLOATING CTA — desktop bottom-right / mobile full-width bottom
   ============================================= */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.floating-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0a6abf, #034078);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,99,235,0.4), 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.floating-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,99,235,0.55), 0 4px 12px rgba(0,0,0,0.2);
  background: linear-gradient(135deg, #034078, #0a6abf);
}
.floating-cta a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.floating-cta-label-desktop { display: inline; }
.floating-cta-label-mobile { display: none; }
@media (max-width: 640px) {
  .floating-cta-label-desktop { display: none; }
  .floating-cta-label-mobile { display: inline; }
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* ===== TABLET <=960px ===== */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .btn-contact { display: none; }
  .mobile-menu-toggle { display: flex; }
  .site-header { height: 56px; }

  .page-title { padding: 48px 0 40px; }
  .page-title h1 { font-size: 2.2rem; }

  .loc-grid, .grid-3 { grid-template-columns: repeat(2, 1fr); }

  .section { padding: 50px 0; }
  .section-title { font-size: 1.6rem; }

  .profile-layout { grid-template-columns: 1fr; padding: 16px 0; gap: 14px; }
  .profile-card { padding: 16px; }
  .profile-sidebar { position: static; }
  .profile-sidebar { position: static; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .trust-bar-inner { gap: 20px; }
  .trust-item { font-size: .82rem; gap: 8px; }
  .trust-item svg { width: 16px; height: 16px; }

  .cta-final { padding: 64px 0; }
  .cta-final h2 { font-size: 1.7rem; }
  .cta-offer-box { padding: 36px 28px; }

  .floating-cta {
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 0;
  }
  .floating-cta a {
    border-radius: 0;
    justify-content: center;
    padding: 16px 24px;
    font-size: .9rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  }
  .floating-cta a:hover {
    transform: none;
  }
}

/* ===== MOBILE <=520px ===== */
@media (max-width: 520px) {
  .container { padding: 0 16px; }
  .site-header { height: 50px; }
  .site-header .container { padding: 0 16px; }

  .page-title { padding: 32px 0 28px; }
  .page-title h1 { font-size: 2.2rem; text-align: center; }
  .page-title .subtitle { font-size: .84rem; }
  .hero-badge-rating { display: flex; justify-content: center; }
  .hero-subtitle-orange { text-align: left; font-size: 1.2rem; }
  .hero-benefits { align-items: flex-start; }
  .site-header .logo { position: absolute; left: 50%; transform: translateX(-50%); }

  .trust-bar { display: none; }

  .section { padding: 36px 0; }
  .section-label { font-size: .65rem; }
  .section-title { font-size: 1.25rem; }
  .section-desc { font-size: .84rem; margin-bottom: 24px; }

  .loc-grid, .grid-3 { grid-template-columns: repeat(2, 1fr); }

  .loc-card { gap: 8px; padding: 12px 10px; }
  .loc-card-icon {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    flex-shrink: 0;
  }
  .loc-card-icon svg { width: 14px; height: 14px; }
  .loc-card-name { font-size: .8rem; }
  .loc-card-meta { font-size: .68rem; }
  .loc-card-arrow { display: none; }

  .listing-card-top { flex-direction: column; gap: 10px; }
  .listing-card-actions { flex-direction: column; align-items: stretch; }

  .profile-info-grid { grid-template-columns: 1fr; }
  .profile-header h1 { font-size: 1.6rem; }
  .profile-header { padding: 36px 0 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .cookie-content { flex-direction: column; text-align: center; }
  .devis-modal-box { padding: 28px 22px; margin: 10px; }

  .cta-final { padding: 44px 0; }
  .cta-final h2 { font-size: 1.3rem; }
  .cta-offer-box { padding: 24px 18px; border-radius: 14px; }
  .cta-trust-badges span { font-size: .68rem; padding: 5px 10px; }

  .btn-devis-hero { padding: 14px 24px; font-size: .92rem; }
  .btn-lg { padding: 14px 24px; font-size: .92rem; }

  .guide-section { padding: 20px; }
  .guide-section h3 { font-size: .95rem; }
  .guide-section p { font-size: .84rem; }

  .floating-cta a { padding: 14px 20px; font-size: .85rem; }
}

/* ===== CATEGORY TABS ===== */
.category-tabs { background: var(--white); border-bottom: 1px solid var(--border-light); }
.cat-tabs-inner { display: flex; gap: 4px; overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 10px 0; }
.cat-tab { padding: 8px 20px; border-radius: 30px; font-size: .85rem; font-weight: 600; color: var(--text-muted); background: var(--bg-light); text-decoration: none; white-space: nowrap; transition: all .2s; border: 1px solid transparent; }
.cat-tab:hover { color: var(--primary, #045097); background: rgba(37,99,235,0.06); }
.cat-tab-active { color: var(--white); background: var(--primary, #045097); border-color: var(--primary, #045097); }

/* ===== CITY INFO BAR ===== */
.city-info-bar { background: var(--bg-light); border-bottom: 1px solid var(--border-light); padding: 16px 0; }
.city-info-grid { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.city-info-item { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--text); }
.city-info-item svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary, #045097); }
.city-info-item strong { font-weight: 700; color: var(--primary-dark, #034078); }
.city-info-item span { color: var(--text-muted); }

/* ===== CLIMATE BAR ===== */
.city-climate-bar { background: var(--white); border-bottom: 1px solid var(--border-light); padding: 12px 0; }

/* ===== RATING DISTRIBUTION ===== */
.city-rating-dist { padding: 20px 0; background: var(--white); border-bottom: 1px solid var(--border-light); }
.rating-dist-box { display: flex; gap: 28px; align-items: center; }
.rating-dist-left { text-align: center; flex-shrink: 0; min-width: 80px; }
.rating-dist-big { font-size: 2.2rem; font-weight: 800; color: var(--primary, #045097); line-height: 1; }
.rating-dist-left .stars { margin: 6px 0 4px; }
.rating-dist-left small { font-size: .72rem; color: var(--text-muted); }
.rating-dist-bars { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.rating-bar-row { display: flex; align-items: center; gap: 8px; }
.rating-bar-label { font-size: .75rem; font-weight: 700; color: var(--text-muted); width: 12px; text-align: right; }
.rating-bar-track { flex: 1; height: 8px; background: var(--bg-light); border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: linear-gradient(90deg, #ffe44d, #FFD700); border-radius: 4px; transition: width .6s ease; }
.rating-bar-pct { font-size: .72rem; color: var(--text-muted); width: 32px; }
.city-rating-dist-inline { padding: 24px 0; background: none; border-bottom: none; border-top: 1px solid var(--border-light); margin-top: 32px; }
.city-info-bar-inline { background: rgba(37,99,235,0.04); border: 1px solid var(--border-light); border-radius: 12px; padding: 16px; margin-bottom: 16px; }
.city-info-bar-inline .city-info-grid { justify-content: flex-start; }
.city-climate-bar-inline { background: rgba(37,99,235,0.03); border: 1px solid var(--border-light); border-radius: 12px; padding: 16px; margin-top: 24px; }
.city-climate-bar-inline .city-info-grid { justify-content: flex-start; }

@media (max-width: 520px) {
  .city-info-grid { gap: 12px 20px; justify-content: flex-start; }
  .city-info-item { font-size: .8rem; }
  .cat-tabs-inner { padding: 8px 0; }
  .cat-tab { padding: 6px 14px; font-size: .8rem; }
  .rating-dist-box { flex-direction: column; gap: 16px; align-items: flex-start; }
  .rating-dist-left { display: flex; gap: 12px; align-items: center; }
  .rating-dist-big { font-size: 1.6rem; }
}

/* ===== SMALL MOBILE <=380px ===== */
@media (max-width: 380px) {
  .page-title h1 { font-size: 1.5rem; }
  .section-title { font-size: 1.1rem; }
  .cta-final h2 { font-size: 1.15rem; }
  .profile-header h1 { font-size: 1.4rem; }
  .btn-devis-hero { padding: 12px 20px; font-size: .85rem; }
  .loc-grid, .grid-3 { grid-template-columns: 1fr; }
}

/* ==============================
   PAGES SECONDAIRES (legal, privacy, contact, terms, cookies)
   ============================== */
.seo-content {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  padding: 40px 44px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  border: 1px solid var(--border);
}
.seo-content h1 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--primary);
}
.seo-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 12px;
}
.seo-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 20px 0 8px;
}
.seo-content p {
  font-size: .92rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 14px;
}
.seo-content ul, .seo-content ol {
  margin: 12px 0 18px 20px;
  font-size: .92rem;
  line-height: 1.75;
  color: var(--text-light);
}
.seo-content li { margin-bottom: 6px; }
.seo-content a { color: var(--primary); text-decoration: underline; }
.seo-content a:hover { color: var(--blue-700); }
.seo-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: .88rem;
}
.seo-content th, .seo-content td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
}
.seo-content th {
  background: var(--off-white);
  font-weight: 600;
  color: var(--text);
}
.seo-content strong { color: var(--text); }

/* Contact info */
.contact-info {
  background: var(--off-white);
  border-radius: 10px;
  padding: 20px 24px;
  border: 1px solid var(--border);
}
.contact-info p { margin-bottom: 6px; font-size: .9rem; }
.contact-info a { color: var(--primary); }

/* Form */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .92rem;
  font-family: inherit;
  background: var(--off-white);
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* Alerts */
.alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: .9rem;
  margin-bottom: 20px;
}
.alert-success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.alert-danger {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

@media (max-width: 640px) {
  .seo-content { padding: 24px 20px; border-radius: 10px; }
  .seo-content h1 { font-size: 1.3rem; }
}

/* ===== SUB-CATEGORIES GRID ===== */
.city-subcategories { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border-light); }
.city-subcategories h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.subcategories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 10px; }
.subcategory-card { display: flex; align-items: center; gap: 10px; padding: 14px 18px; background: var(--white); border: 1px solid var(--border-light); border-radius: 10px; text-decoration: none; color: var(--text); transition: all .2s; }
.subcategory-card:hover { border-color: var(--blue-600); background: var(--blue-50); }
.subcategory-card svg { margin-left: auto; flex-shrink: 0; stroke: var(--text-muted); }
.subcategory-card:hover svg { stroke: var(--blue-600); }
.subcategory-name { font-weight: 600; font-size: .9rem; }
.subcategory-city { font-size: .78rem; color: var(--text-muted); }

/* =============================================
   LOCAL CLUSTER — styles spécifiques
   ============================================= */

/* DEBUG: textes générés par OpenAI en rouge vif */
.ai-generated { color: #ff0000 !important; }
.ai-generated * { color: #ff0000 !important; }
.ai-generated h2, .ai-generated h3 { color: #ff0000 !important; }
.ai-generated p { color: #ff0000 !important; }
.ai-generated a { color: #ff0000 !important; text-decoration: underline; }

/* Maillage villes — grille responsive */
.cities-maillage { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
@media (max-width: 900px) { .cities-maillage { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cities-maillage { grid-template-columns: 1fr; } }

.city-maillage-card { background: var(--white); border: 1px solid var(--border-light); border-radius: 12px; padding: 20px 24px; }
.city-maillage-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.city-maillage-name { font-size: 1.05rem; font-weight: 700; color: var(--text); text-decoration: none; }
.city-maillage-name:hover { color: var(--blue-600); }
.city-maillage-meta { font-size: .8rem; color: var(--text-muted); margin-top: 2px; }
.city-maillage-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.5; margin: 0 0 12px; }
.city-maillage-links { display: flex; flex-wrap: wrap; gap: 8px; }
.city-maillage-link { padding: 5px 12px; background: var(--blue-50, #eef4fb); border: 1px solid var(--border-light); border-radius: 6px; font-size: .78rem; color: var(--text); text-decoration: none; transition: border-color .15s, background .15s; }
.city-maillage-link:hover { border-color: var(--blue-600); background: var(--blue-100, #d4e4f7); }

/* Pricing table (city pages) */
.local-pricing-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.local-pricing-table thead tr { background: var(--blue-600); color: #fff; }
.local-pricing-table th { text-align: left; padding: 12px 16px; font-weight: 600; }
.local-pricing-table th:last-child { text-align: right; }
.local-pricing-table td { padding: 10px 16px; }
.local-pricing-table td:last-child { text-align: right; font-weight: 600; white-space: nowrap; color: var(--blue-600); }
.local-pricing-table tbody tr { border-bottom: 1px solid var(--border-light); }
.local-pricing-table tbody tr:nth-child(even) { background: var(--blue-50, #f8fafc); }

/* Local content blocks */
.local-text-block { max-width: 900px; margin: 0 auto; font-size: .92rem; line-height: 1.8; color: var(--text-muted); }
.local-text-block h3 { font-size: 1.1rem; color: var(--text); margin: 0 0 12px; }
.local-text-block p { margin: 0 0 14px; }

/* =============================================
   PROSE BLOCKS — sections IA distribuees
   ============================================= */
.prose-block {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}
.prose-block p {
  margin-bottom: 16px;
}
.prose-block p:last-child {
  margin-bottom: 0;
}
.prose-block ul {
  margin: 14px 0;
  padding-left: 22px;
}
.prose-block ul li {
  margin-bottom: 8px;
  list-style: disc;
}
.prose-block strong {
  color: var(--text);
  font-weight: 700;
}
.prose-block em {
  font-style: italic;
  color: var(--text-light);
}
.case-study-block-OLD-DISABLED {
  background: #fff;
  border-left: 4px solid var(--orange-500);
  padding: 28px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
  font-size: 1.02rem;
}
.case-study-block p:first-child::first-line {
  font-weight: 600;
  color: var(--blue-700);
}
.hero-intro {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-on-dark);
  margin: 6px 0 12px;
  max-width: 640px;
}
.hero-intro p {
  margin: 0;
}
.hero-tagline {
  font-size: 1.05rem;
  line-height: 1.4;
  color: rgb(255, 255, 255);
  margin: 10px 0 0;
  font-weight: 500;
  max-width: 640px;
}

/* Bloc infos ville (meteo, AQI, demographie, prix m2) */
.city-info-block { padding: 24px 0 8px; }
.city-info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 14px; margin-top: 16px; }
.ci-card { background: #fff; border: 1px solid var(--border-light, #e2e8f0); border-radius: 10px; padding: 16px 14px; text-align: center; transition: transform .15s ease, box-shadow .15s ease; }
.ci-card:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(4,80,151,.08); }
.ci-card-wide { grid-column: span 2; }
.ci-icon { font-size: 1.75rem; line-height: 1; margin-bottom: 6px; }
.ci-value { font-size: 1.15rem; font-weight: 700; color: var(--blue-700, #034078); line-height: 1.25; }
.ci-label { font-size: .74rem; color: var(--text-muted, #94a3b8); margin-top: 4px; text-transform: lowercase; letter-spacing: .02em; }

.case-study-block {
  border-left: 3px solid var(--orange-500);
  padding-left: 18px;
  font-size: 1.02rem;
}

/* =============================================
   UTILITY CLASSES — remplace les styles inline
   ============================================= */
.section-alt { background: var(--off-white); }
.section-fade { background: linear-gradient(180deg, #fff 0%, var(--off-white) 100%); }
.section-white { background: #fff; }

.container-narrow { max-width: 820px; margin-left: auto; margin-right: auto; }
.container-medium { max-width: 860px; margin-left: auto; margin-right: auto; }

.mt-22 { margin-top: 22px; }
.mt-16 { margin-top: 16px; }
.mt-14 { margin-top: 14px; }
.mt-12 { margin-top: 12px; }
.mt-8 { margin-top: 8px; }

.text-center { text-align: center; }
.flex-center { display: flex; gap: 8px; flex-wrap: nowrap; justify-content: center; }

/* Breadcrumb minimaliste pour city_service */
.silo-breadcrumb {
  padding: 16px 0;
  background: var(--off-white);
  font-size: .88rem;
  color: var(--text-light);
}
.silo-breadcrumb a { color: var(--blue-600); }

/* Dept leaflet map */
.dept-leaflet-map {
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.dept-leaflet-map.map-city { height: 420px; }

/* CTA simple */
.cta-btn-row {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}
.cta-btn-row .btn { flex: 1; text-align: center; white-space: nowrap; min-width: 0; }

/* Pricing-after-table spacing */
.pricing-table-wrap { margin-top: 22px; }

/* Page statiques (legal, contact, etc.) */
.seo-content { max-width: 800px; margin: 0 auto; }
.seo-content h1 { font-size: 1.4rem; font-weight: 800; margin-bottom: 20px; color: var(--text); }
.seo-content h2 { font-size: 1.15rem; font-weight: 700; margin: 20px 0 10px; color: var(--text); }
.seo-content h3 { font-size: 1.02rem; font-weight: 700; margin: 16px 0 8px; }
.seo-content p { margin-bottom: 12px; line-height: 1.7; }
.seo-content ul { margin: 12px 0 12px 22px; }
.seo-content ul li { margin-bottom: 6px; list-style: disc; }
.seo-content a { color: var(--blue-600); text-decoration: underline; }
.seo-content table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.seo-content table th, .seo-content table td { border: 1px solid #ddd; padding: 8px; text-align: left; }
.seo-content table th { background: var(--off-white); }

.contact-info-box {
  background: var(--off-white);
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}
.contact-form .form-group { margin-bottom: 14px; }
.contact-form label { display: block; margin-bottom: 6px; font-weight: 600; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
}
.contact-form textarea { resize: vertical; }

.alert-danger { padding: 12px; background: #fee; border: 1px solid #fcc; border-radius: 6px; margin: 16px 0; color: #c33; }
.alert-success { padding: 12px; background: #efe; border: 1px solid #cfc; border-radius: 6px; margin: 16px 0; color: #363; }

/* Artisan CTA btn row in listing */
.listing-cta-row {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}
.listing-cta-row .btn {
  flex: 1;
  text-align: center;
  white-space: nowrap;
  min-width: 0;
}

/* city_service silo breadcrumb (section version) */
.section-breadcrumb {
  padding: 16px 0;
  background: var(--off-white);
}
.section-breadcrumb .container {
  font-size: .88rem;
  color: var(--text-light);
}
.section-breadcrumb a {
  color: var(--blue-600);
}

/* city_service bottom back link */
.section-back-link {
  text-align: center;
  padding: 32px 0;
  background: var(--off-white);
}

/* =============================================
   MAP DEPARTEMENT — markers + popups
   ============================================= */
.map-legend-covered { color: #FFD700; }
.map-legend-other { color: #045097; }

.marker-dot-covered {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50% 50% 50% 0;
  background: #0965B6;
  border: 2px solid #fff;
  transform: rotate(-45deg);
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
}
.marker-dot-other {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #045097;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,.25);
}

.map-popup { min-width: 200px; }
.map-popup-name { font-size: .95rem; display: block; }
.map-popup-city {
  display: block;
  color: #64748b;
  font-size: .8rem;
}
.map-popup-rating { margin-top: 6px; }
.map-popup-rating .rating-score { color: #FFD700; font-weight: 700; }
.map-popup-rating .rating-count { color: #94a3b8; font-size: .8rem; }
.map-popup-phone { margin-top: 4px; }
.map-popup-phone a { color: #045097; }
.map-popup-link { color: #045097; font-weight: 700; text-decoration: none; }
.map-popup-link:hover { text-decoration: underline; }
.map-popup-cta { margin-top: 8px; padding-top: 6px; border-top: 1px solid #e2e8f0; }
.map-popup-cta a { color: #FFD700; font-weight: 600; font-size: .85rem; text-decoration: none; }
.map-popup-cta a:hover { text-decoration: underline; }

/* =============================================
   CTA BOX (mid / bottom)
   ============================================= */
.cta-section { padding: 32px 0; }
.cta-box {
  border-radius: var(--r, 12px);
  padding: 32px;
  text-align: center;
}
.cta-box-mid {
  background: var(--blue-50, #eef4fb);
  border: 2px solid var(--blue-200, #a9c9ef);
}
.cta-box-bottom {
  background: linear-gradient(135deg, var(--blue-600, #045097) 0%, var(--blue-700, #034078) 100%);
  color: #fff;
}
.cta-title {
  font-size: 1.35rem;
  margin: 0 0 8px;
}
.cta-box-mid .cta-title { color: var(--text, #1e293b); }
.cta-box-bottom .cta-title { color: #fff; }
.cta-sub {
  margin: 0 0 20px;
  font-size: .95rem;
}
.cta-box-mid .cta-sub { color: var(--text-light); }
.cta-box-bottom .cta-sub { color: rgba(255,255,255,.85); }
.cta-main-btn-bottom {
  background: #fff;
  color: var(--blue-700, #034078);
  font-weight: 700;
}
.cta-footnote {
  margin: 12px 0 0;
  font-size: .8rem;
  color: rgba(255,255,255,.85);
}

/* =============================================
   SUBSECTION (services apres villes sur home)
   ============================================= */
.subsection-services {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light, #e2e8f0);
}
.subsection-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text, #1e293b);
  margin: 0 0 8px;
}
.subsection-desc {
  color: var(--text-light);
  margin: 0 0 20px;
  font-size: .95rem;
}
.services-grid .loc-card { background: #fff; }
.map-extra-intro { margin-bottom: 16px; }

/* =============================================
   MISC utility
   ============================================= */
.hero-iframe-wrap { margin: 12px 0 0; }
.devis-modal-overlay.is-hidden { display: none; }

/* =============================================
   City page : pin icone dans la ligne spec pour pros voisins (< 5-20 km)
   ============================================= */
.listing-row-spec-icon {
  display: inline-block;
  vertical-align: -2px;
  margin-right: 2px;
  color: var(--blue-600, #0a6abf);
}

/* =============================================
   Artisan page : hero empile (1 colonne, devis pleine largeur, hauteur fixe 800px)
   ============================================= */
.hero-cols--stack {
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}
.hero-cols--stack .hero-right { width: 100%; max-width: none; }
.hero-cols--stack .hero-cta-box { height: 800px; max-height: 800px; }
.hero-cols--stack .hero-scroll-hint { display: none; }
.hero-cols--stack .hero-right-cta::before,
.hero-cols--stack .hero-right-cta::after { display: none; }

/* hero-left : centre + grossis nom, etoiles, note, adresse */
.hero-cols--stack .hero-left { text-align: center; }
.hero-cols--stack .profile-header h1 { font-size: 3.4rem; margin-bottom: 18px; }
.hero-cols--stack .profile-header-meta { justify-content: center; gap: 12px; }
.hero-cols--stack .profile-header-meta .star { font-size: 2rem; }
.hero-cols--stack .profile-header-meta .rating-text { font-size: 1.25rem; font-weight: 600; }
.hero-cols--stack .profile-header-address { justify-content: center; font-size: 1.1rem; margin-top: 6px; color: rgba(255,255,255,0.8); }
.hero-cols--stack .profile-header-address svg { width: 20px; height: 20px; }
.hero-cols--stack .hero-subtitle-orange { font-size: 2rem; }

.listings-online { padding: 20px 0; }
